/* Basic Styles */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

a {
    text-decoration: none;
    color: #1976D2;
}

ul {
    list-style: none;
    padding: 0;
}

/* Header & Navigation */
header {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1976D2;
}

nav ul {
    display: flex;
    gap: 20px;
}

nav ul li a {
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #FF9800;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, rgba(25, 118, 210, 0.8), rgba(255, 152, 0, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background: #FF9800;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #e68a00;
}

/* Core Services Section */
.core-services {
    padding: 80px 20px;
    text-align: center;
}

.core-services h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.service-item h3 {
    font-family: 'Montserrat', sans-serif;
    color: #1976D2;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Services Page */
.page-header {
    background: #1976D2;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
}

.services-content {
    padding: 80px 20px;
    width: 80%;
    margin: 0 auto;
}

.service-category {
    background: #fff;
    margin-bottom: 30px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-category h2 {
    font-family: 'Montserrat', sans-serif;
    color: #1976D2;
    border-bottom: 2px solid #FF9800;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.service-category ul {
    list-style: disc;
    padding-left: 20px;
}

.service-category ul li {
    margin-bottom: 10px;
}

/* Portfolio Page */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 80px 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.portfolio-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 118, 210, 0.9);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s;
    text-align: center;
    padding: 20px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

/* About Us Page */
.about-content {
    padding: 80px 20px;
    width: 80%;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 40px;
}

.about-section h2 {
    font-family: 'Montserrat', sans-serif;
    color: #1976D2;
    border-bottom: 2px solid #FF9800;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-member h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 5px;
}

.skills {
    margin-top: 10px;
}

.skills span {
    background: #1976D2;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    margin: 2px;
    display: inline-block;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partners-grid img {
    height: 60px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partners-grid img:hover {
    opacity: 1;
}

/* Blog Page */
.blog-content {
    padding: 80px 20px;
    width: 80%;
    margin: 0 auto;
}

.blog-post {
    display: flex;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.blog-post img {
    width: 300px;
    object-fit: cover;
}

.post-content {
    padding: 30px;
}

.post-content h2 {
    font-family: 'Montserrat', sans-serif;
    color: #1976D2;
    margin-bottom: 10px;
}

.post-meta {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Contact Page */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 20px;
    gap: 40px;
    width: 80%;
    margin: 0 auto;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-form-container h2, .contact-details h2 {
    font-family: 'Montserrat', sans-serif;
    color: #1976D2;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.social-media {
    margin-top: 20px;
}

.social-media a {
    margin-right: 15px;
    font-weight: bold;
}

.map-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}
