/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a5490;
    --secondary-color: #2c7ab8;
    --accent-color: #27ae60;
    --accent-light: #2ecc71;
    --dark-text: #2c3e50;
    --light-text: #ecf0f1;
    --light-gray: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    line-height: 1.68;
    color: var(--dark-text);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.3px;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 40px;
}

@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--accent-color);
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.98);
}

.nav-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: -0.3px;
}

.nav-logo:hover {
    color: var(--accent-color);
    transform: scale(1.04);
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    font-size: 15px;
    letter-spacing: 0.2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transition: var(--transition);
    border-radius: 1.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(26, 84, 144, 0.1);
}

.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    /* Full viewport height */
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    /* Remove margin if nav is sticky/transparent */
}

/* Original Background for Home Page */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../content/hero_bg_new.png');
    /* Reverted */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    filter: brightness(0.5);
    /* Adjusted brightness for readability */
}

/* New Background for Inner Pages */
.page-header {
    background-image: url('../content/hero_bg_new.png') !important;
    /* New generated image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    margin-top: 0;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Overlay */
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.7) 0%, rgba(39, 174, 96, 0.5) 100%);
    /* Original overlay gradient roughly */
    z-index: 2;
}

/* Floating Elements - Enhanced */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.float-item {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.8);
    animation: float 8s ease-in-out infinite;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.float-img {
    width: 80%;
    height: auto;
    opacity: 0.8;
}

/* Symmetrical floating positions */
.float-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(-10deg);
}

.float-2 {
    top: 70%;
    right: 8%;
    animation-delay: 2s;
    transform: rotate(10deg);
}

.float-3 {
    top: 25%;
    right: 12%;
    animation-delay: 4s;
    transform: rotate(5deg);
}

.float-4 {
    bottom: 15%;
    left: 15%;
    animation-delay: 6s;
    transform: rotate(-5deg);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 95%;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    padding-top: 60px;
}

.hero-text-wrapper {
    animation: fadeInUp 1.2s ease;
    max-width: 1000px;
    width: 100%;
}

.hero-title {
    font-size: 72px;
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: -1.5px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 28px;
    margin-bottom: 50px;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

/* Hero Stats - Below CTA */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 80px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 40px;
}

.stat-badge {
    background: transparent;
    padding: 10px;
    border: none;
    box-shadow: none;
    min-width: auto;
    text-align: center;
}

.stat-badge:hover {
    background: transparent;
    transform: translateY(-5px);
    box-shadow: none;
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #4cd137;
    /* Vibrant Green */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
}

.stat-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Old Stats Removed */

.cta-primary {
    margin-top: 20px;
    background: linear-gradient(135deg, var(--accent-color), #229954);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.4);
    padding: 16px 50px;
    font-size: 18px;
}

/* Stats Section */
.stats-section {
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 80px;
    background: white;
    padding: 50px 70px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    z-index: 4;
    backdrop-filter: blur(10px);
    display: none;
}

.stat-item {
    text-align: center;
    min-width: 140px;
}

.stat-item h3 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.stat-item p {
    color: #666;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Know More Section */
.know-more {
    padding: 80px 0 40px;
    background: #fafbfc;
}

/* Mission & Vision Section */
/* Mission & Vision Section - New Layout */
.mission-vision-wrapper {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.mv-cards-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mv-image-column {
    flex: 1;
    height: 100%;
}

.mission-vision-card.small-card {
    padding: 30px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 25px;
    min-height: auto;
}

.mv-icon.small-icon {
    font-size: 32px;
    margin-bottom: 0;
    min-width: 40px;
}

.mv-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.mv-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Overview Section - New Layout */
.overview-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 60px;
}

.overview-image-column {
    flex: 1;
}

.overview-content-column {
    flex: 1;
}

.overview-content-column h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.overview-content-column p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Common Image Placeholder */
.image-placeholder {
    width: 100%;
    min-height: 350px;
    height: 100%;
    background-color: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #aaa;
    transition: var(--transition);
}

.image-placeholder:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.image-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
}

/* Responsive for New Layouts */
@media (max-width: 992px) {

    .mission-vision-wrapper,
    .overview-wrapper {
        flex-direction: column;
    }

    .overview-wrapper {
        flex-direction: column-reverse;
    }

    .image-placeholder {
        min-height: 250px;
    }
}

/* Old styles to remove or override if needed */
.mission-vision-section {
    display: none;
}

.mission-vision-card {
    background: linear-gradient(135deg, white 0%, #f9fafb 100%);
    padding: 55px 45px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--accent-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.mission-vision-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(26, 84, 144, 0.1) 50%, transparent 100%);
}

.mission-vision-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
    border-top-color: #1a5490;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(39, 174, 96, 0.04), transparent 70%);
    border-radius: 16px;
}

.mv-icon {
    font-size: 60px;
    color: var(--accent-color);
    margin-bottom: 24px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    display: inline-block;
}

.mission-vision-card:hover .mv-icon {
    transform: scale(1.15) rotate(-8deg);
    color: var(--primary-color);
}

.mission-vision-card h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: -0.3px;
}

.mission-vision-card p {
    color: #555;
    line-height: 1.85;
    font-size: 15px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.2px;
}

.quick-overview {
    text-align: center;
    margin-bottom: 80px;
}

.quick-overview h2 {
    color: var(--primary-color);
    font-size: 44px;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.quick-overview h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.quick-overview h2+p {
    color: #555;
    font-size: 18px;
    margin-bottom: 60px;
    letter-spacing: 0.2px;
    font-weight: 400;
}

.overview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 95%;
    margin: 0 auto;
}

.overview-card {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 5px solid var(--accent-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(26, 84, 144, 0.1) 50%, transparent 100%);
}

.overview-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.06), transparent);
    border-radius: 50%;
}

.overview-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
    border-top-color: #1a5490;
}

.overview-icon {
    font-size: 56px;
    color: var(--accent-color);
    margin-bottom: 22px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    display: inline-block;
}

.overview-card:hover .overview-icon {
    transform: scale(1.2) rotate(-8deg);
    color: var(--primary-color);
}

.overview-card h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.2px;
    position: relative;
    z-index: 1;
}

.overview-card p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.2px;
}

.home-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 65px;
    flex-wrap: wrap;
}

.cta-button-secondary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    padding: 14px 38px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 8px 25px rgba(26, 84, 144, 0.2);
    letter-spacing: 0.3px;
}

.cta-button-secondary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 84, 144, 0.3);
}

/* About Preview Section */
.about-preview {
    padding: 110px 40px;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}

.about-preview h2 {
    text-align: center;
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: -0.5px;
}

.about-preview h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 70px;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.about-text h3 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.82;
    color: #555;
    margin-bottom: 20px;
    letter-spacing: 0.2px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 50px 0;
}

.stat-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 38px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.16);
}

.stat-box h4 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.stat-box p {
    color: rgba(255, 255, 255, 0.93);
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* Services Preview Section */
.services-preview {
    padding: 40px 40px;
    background: white;
}

.services-preview h2 {
    text-align: center;
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: -0.5px;
}

.services-preview h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.services-preview>.container {
    margin-top: 70px;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-preview-card {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 16px 16px 0 0;
}

.service-preview-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.06), transparent);
    border-radius: 50%;
}

.service-preview-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

.service-preview-card .service-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 15px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    display: inline-block;
}

.service-preview-card:hover .service-icon {
    transform: scale(1.22) rotate(12deg);
    color: var(--primary-color);
}

.service-preview-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.2px;
    position: relative;
    z-index: 1;
}

.service-preview-card p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 1;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

.services-cta .cta-button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 15px 45px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.25);
}

.services-cta .cta-button:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(26, 84, 144, 0.3);
}


/* Clients & Partners Slider */
.clients-slider {
    padding: 50px 40px;
    background: linear-gradient(180deg, #f8f9fa 0%, #f0f2f5 100%);
}

.clients-slider h2 {
    text-align: center;
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: -0.5px;
}

.clients-slider h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.clients-slider>.container {
    margin-top: 70px;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.clientsSwiper {
    padding: 40px 0 30px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
}

.client-logo {
    width: 100%;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 14px;
    padding: 20px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    background: white;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
    transform: scale(1.08) translateY(-6px);
}

.client-logo:hover::before {
    opacity: 1;
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    padding: 16px;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

.client-logo:hover img {
    filter: grayscale(0%);
}

.swiper-pagination {
    position: relative !important;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    background: var(--accent-color) !important;
    width: 10px;
    height: 10px;
    opacity: 0.4;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #fafbfc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 35px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 12px 12px 0 0;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 56px;
    color: var(--accent-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--primary-color);
}

.service-card h3 {
    color: var(--dark-text);
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* Research Details */
.research-details {
    padding: 100px 0;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.research-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.research-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.research-item h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
}

.research-item ul {
    list-style: none;
}

.research-item li {
    padding: 10px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    transition: var(--transition);
}

.research-item li:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.research-item li:last-child {
    border-bottom: none;
}

.research-item li:before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 10px;
}

/* Key Strengths */
.key-strengths {
    padding: 100px 0;
    background: #fafbfc;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.strength-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--accent-color);
    position: relative;
}

.strength-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -30px;
    width: 80px;
    height: 80px;
    background: rgba(39, 174, 96, 0.05);
    border-radius: 50%;
}

.strength-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.strength-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.strength-card p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
}

.swiper {
    width: 100%;
    padding: 40px 0;
}

.client-logo-placeholder {
    width: 100%;
    height: 120px;
    background: var(--light-gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
}

.client-logo-placeholder img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.gallery-item:hover .gallery-placeholder {
    background: linear-gradient(135deg, #d0d0d0 0%, #e5e5e5 100%);
    border-color: var(--accent-color);
}

.gallery-placeholder i {
    font-size: 56px;
    color: #bbb;
    margin-bottom: 15px;
    transition: var(--transition);
}

.gallery-item:hover .gallery-placeholder i {
    color: var(--accent-color);
    transform: scale(1.15);
}

.gallery-placeholder p {
    color: #999;
    font-size: 14px;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: white;
}

.team-subsection {
    margin-bottom: 70px;
}

.team-subsection h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
    font-weight: 700;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 30px;
}

.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.team-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-placeholder::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 50%);
}

.team-card h4 {
    padding: 20px 20px 10px;
    color: var(--dark-text);
    font-size: 18px;
    font-weight: 600;
}

.team-title {
    padding: 0 20px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-bio {
    padding: 10px 20px 20px;
    color: #666;
}

/* Team Section - New List Layout */
.team-section-container {
    max-width: 1300px;
    margin: 0 auto;
}

.team-wrapper {
    margin-bottom: 80px;
}

.team-category-title {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
    position: relative;
    text-align: left;
}

.team-category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
}

.team-list-item {
    display: flex;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-list-img {
    flex: 0 0 250px;
    background: #f1f3f5;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-list-img i {
    font-size: 80px;
    color: #c0c0c0;
}

.team-list-content {
    padding: 30px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.team-list-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-list-role {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-list-bio {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 768px) {
    .team-list-item {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .team-list-img {
        flex: 0 0 auto;
        height: 200px;
        width: 100%;
    }

    .team-list-content {
        padding: 20px 15px;
    }

    .team-list-role {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .team-wrapper {
        margin-bottom: 40px;
    }
}

.team-bio {
    font-size: 13px;
    line-height: 1.6;
}

/* Footer Logo Fix for Dark Background */
.footer-logo-fix {
    filter: invert(1);
    mix-blend-mode: screen;
    margin-bottom: 20px;
    border-radius: 0;
    box-shadow: none;
    max-width: 140px;
    background: transparent;
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: #fafbfc;
}

.projects-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-button {
    background: white;
    border: 2px solid var(--border-color);
    color: var(--dark-text);
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
}

.tab-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-button.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.projects-content {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.project-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.project-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #229954);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.project-card p {
    color: #666;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #fafbfc;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.contact-item p {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.8;
    font-size: 14px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    height: fit-content;
    border-top: 4px solid var(--primary-color);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    background: #f9fafb;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(26, 84, 144, 0.1);
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    font-size: 16px;
    box-shadow: var(--shadow-md);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-button:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 40px 30px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr auto auto auto auto;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    white-space: nowrap;
}

.footer-logo-section img {
    max-width: 140px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
    display: block;
}

.footer-logo-section img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(39, 174, 96, 0.6));
    transform: scale(1.05);
}

.footer-description {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.2px;
    display: none;
}

/* Footer Stats */
.footer-stats {
    display: flex;
    gap: 40px;
    padding: 0;
    border-top: none;
    border-bottom: none;
}

.footer-stat {
    text-align: center;
    transition: var(--transition);
    white-space: nowrap;
}

.footer-stat:hover {
    transform: translateY(-2px);
}

.footer-stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.footer-stat-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: fit-content;
}

.footer-section h4 {
    margin-bottom: 8px;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.2px;
    white-space: nowrap;
}

.footer-section h4 i {
    font-size: 18px;
}

.footer-section p {
    line-height: 1.8;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.footer-section ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-section li {
    margin-bottom: 0;
    white-space: nowrap;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: var(--transition);
    font-size: 13px;
    position: relative;
    letter-spacing: 0.2px;
}

.footer-section a::before {
    content: '→';
    position: absolute;
    left: -16px;
    opacity: 0;
    transition: var(--transition);
    color: var(--accent-color);
}

.footer-section a:hover {
    color: var(--accent-color);
    padding-left: 8px;
}

.footer-section a:hover::before {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 0;
    flex-wrap: nowrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(39, 174, 96, 0.15);
    border: 2px solid rgba(39, 174, 96, 0.35);
    border-radius: 50%;
    font-size: 18px;
    color: var(--accent-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    z-index: -1;
    transition: var(--transition);
}

.social-links a:hover {
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.social-links a:hover::before {
    left: 0;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    margin: 50px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.35);
    padding: 35px 20px;
    text-align: center;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin: 10px 0;
    line-height: 1.7;
    letter-spacing: 0.2px;
}

.footer-bottom-content strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Overlay for Mobile Menu */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(4px);
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.no-scroll {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        /* Start off-screen natively */
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
        padding: 90px 0 30px;
        /* Top padding for hamburger clearance */
        transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1100;
        /* Higher than sticky header */
        gap: 0;
        /* Remove gap between items, let padding handle it */
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 16px 25px;
        font-size: 16px;
        color: var(--dark-text);
        font-weight: 500;
        transition: background 0.3s, color 0.3s;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: rgba(26, 84, 144, 0.05);
        color: var(--primary-color);
    }

    .hamburger {
        display: flex;
        z-index: 1200;
        position: relative;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
    }

    .hamburger span {
        width: 100%;
        height: 3px;
        background: var(--primary-color);
        margin: 0;
        border-radius: 3px;
        transition: all 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    }

    /* Reduce container padding for mobile */
    .container {
        padding: 0 20px;
        max-width: 100%;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
        background-color: var(--primary-color);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0.2);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
        background-color: var(--primary-color);
    }

    .hero {
        height: 500px;
        margin-bottom: 60px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .hero-stats {
        gap: 10px;
        margin: 25px 0 20px;
    }

    .stat-badge {
        padding: 15px 20px;
        min-width: 120px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stats-section {
        flex-direction: column;
        gap: 25px;
        bottom: -120px;
        padding: 30px 40px;
        width: 90%;
    }

    .stat-item h3 {
        font-size: 36px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .projects-tabs {
        gap: 10px;
    }

    .tab-button {
        padding: 10px 18px;
        font-size: 12px;
    }

    .section-title {
        font-size: 32px;
    }

    /* About Preview Responsive */
    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-preview h2 {
        font-size: 32px;
    }

    .about-text h3 {
        font-size: 26px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Mission Vision Responsive */
    .mission-vision-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Services Preview Responsive */
    .services-preview {
        padding: 40px 10px;
    }

    .services-preview>.container {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        margin-top: 30px;
    }

    .services-preview h2 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-preview-card {
        padding: 30px 25px;
    }

    .service-preview-card .service-icon {
        font-size: 44px;
    }

    /* Clients Slider Responsive */
    .clients-slider h2 {
        font-size: 32px;
    }

    .client-logo {
        height: 110px;
    }

    .know-more {
        padding: 50px 0 30px;
    }

    .overview-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
    }

    /* Footer Responsive */
    .footer-content {
        gap: 40px;
    }

    .footer-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .footer-logo-section img {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 380px;
        margin-bottom: 60px;
    }

    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 14px;
    }

    .hero-stats {
        gap: 12px;
        margin: 25px 0 25px;
    }

    .stat-badge {
        padding: 12px 15px;
        min-width: 100px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 10px;
    }

    .float-item {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .float-1 {
        top: 10%;
        left: 8%;
    }

    .float-2 {
        top: 50%;
        right: 10%;
    }

    .float-3 {
        top: 20%;
        right: 12%;
    }

    .float-4 {
        bottom: 15%;
        left: 10%;
    }

    .stats-section {
        flex-direction: column;
        gap: 20px;
        bottom: -110px;
        padding: 25px 20px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .stat-item p {
        font-size: 11px;
    }

    .nav-logo {
        font-size: 16px;
    }

    .services-preview {
        padding: 40px 0;
    }

    .services-preview>.container {
        padding: 0 10px;
        /* Minimal padding for cards */
        max-width: 100%;
        margin-top: 30px;
    }

    .services-grid,
    .research-grid,
    .strengths-grid,
    .team-grid,
    .gallery-grid,
    .projects-grid,
    .stats-grid,
    .about-stats,
    .mission-vision-section {
        grid-template-columns: 1fr;
        gap: 15px;
        /* Tighter gap */
    }

    .section-title {
        font-size: 26px;
    }

    .page-header {
        padding: 50px 0;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header p {
        font-size: 14px;
        padding: 0 10px;
    }

    .projects-filter,
    .gallery-filters,
    .projects-tabs {
        flex-direction: column;
        gap: 8px;
    }

    .filter-btn,
    .gallery-filter-btn,
    .tab-button {
        width: 100%;
    }

    .overview-card {
        padding: 25px 15px;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .about-text h3 {
        font-size: 22px;
    }

    .team-card h4 {
        font-size: 16px;
    }

    .project-card,
    .contact-item {
        padding: 20px;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .footer-stat-number {
        font-size: 22px;
    }

    .footer-stat-label {
        font-size: 10px;
    }

    .footer-section h4 {
        font-size: 14px;
    }

    .social-links {
        gap: 10px;
    }

    .social-links a {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

/* Breadcrumb */
.breadcrumb {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--light-gray) 100%);
    padding: 20px 0;
    margin-top: 70px;
    border-bottom: 1px solid #e8eaed;
}

.breadcrumb a,
.breadcrumb span {
    color: var(--dark-text);
    font-size: 14px;
}

.breadcrumb a {
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(39, 174, 96, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* About Page Styles */
.about-main {
    padding: 80px 0 40px;
    /* Reduced bottom padding */
}

/* New responsive inner section styles for About page */
.about-main h2 {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    letter-spacing: -0.5px;
}

.about-main h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.about-main>.container>div>p,
.about-main>.container>p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-inline: auto;
}

.overview-section,
.strengths-section,
.presence-section,
.mission-vision-section {
    margin-top: 80px;
}

.mission-vision-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.mission-card,
.vision-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 4px solid var(--accent-color);
    height: 100%;
}

.card-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--accent-color);
}

.stat-card h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-card p {
    color: #666;
}

.presence-map {
    margin: 40px 0 10px;
    /* Reduced bottom margin */
}

.placeholder {
    width: 100%;
    height: 400px;
    background: var(--light-gray);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
}

.placeholder i {
    font-size: 64px;
    color: #bbb;
    margin-bottom: 20px;
}

.placeholder p {
    color: #999;
}

/* Services Page Styles */
.services-main {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.service-card-main {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-color);
}

.service-card-main:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon-main {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card-main h3 {
    color: var(--dark-text);
    margin-bottom: 15px;
    font-size: 22px;
}

.service-card-main p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary-color);
}

.service-detail-section {
    margin: 60px 0;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 10px;
}

.service-detail-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 28px;
}

.service-detail-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.detail-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.detail-item ul {
    list-style: none;
}

.detail-item li {
    padding: 8px 0;
    color: var(--dark-text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.detail-item li:last-child {
    border-bottom: none;
}

.detail-item li:before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 10px;
}

.consultancy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.consultancy-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.consultancy-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.consultancy-item p {
    color: #666;
}

.capacity-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature i {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature p {
    color: #666;
}

.implementation-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.impl-service {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.impl-service h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.impl-service p {
    color: #666;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

/* Team Page Styles */
.team-main {
    padding: 80px 0;
}

.team-category {
    margin-bottom: 60px;
}

.team-category h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
}

.category-intro {
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

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

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.member-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    padding: 20px 20px 10px;
    color: var(--dark-text);
    font-size: 18px;
}

.member-role {
    padding: 0 20px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
}

.member-title {
    padding: 0 20px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 8px;
}

.member-bio {
    padding: 10px 20px 20px;
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

.team-intro {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 50px;
    border-left: 4px solid var(--accent-color);
}

.team-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-text);
}

.founder-member {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
}

.field-team-table {
    margin-top: 30px;
    overflow-x: auto;
}

.field-team-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.field-team-table th,
.field-team-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.field-team-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.field-team-table tr:hover {
    background: var(--light-gray);
}

/* Projects Page Styles */
.projects-main {
    padding: 80px 0;
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.project-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-header {
    margin-bottom: 15px;
}

.project-category {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.project-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.project-card p {
    color: #666;
    margin-bottom: 10px;
    font-size: 14px;
}

/* Gallery Page Styles */
.gallery-main {
    padding: 80px 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--primary-color);
    color: white;
}

.gallery-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item-main {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid var(--accent-color);
}

.gallery-image-placeholder i {
    font-size: 48px;
    color: #bbb;
}

.gallery-info {
    padding: 15px;
}

.gallery-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.gallery-info p {
    color: #666;
    font-size: 13px;
}

/* Contact Page Styles */
.contact-main {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-color);
}

.box-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-box p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-box a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-box a:hover {
    color: var(--accent-color);
}

.regional-office {
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.regional-office:first-of-type {
    border-top: none;
    margin-bottom: 0;
    padding-top: 0;
}

.regional-office h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent-color);
}

.contact-form-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.contact-form-section h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 24px;
}

.contact-form-section>p {
    color: #666;
    margin-bottom: 30px;
}

.contact-form-main {
    display: flex;
    flex-direction: column;
}

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

.form-group label {
    display: block;
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 84, 144, 0.1);
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
}

.submit-btn:hover {
    background: var(--accent-color);
}

.map-section {
    margin: 60px 0;
    text-align: center;
}

.map-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 28px;
}

.map-placeholder {
    width: 100%;
    height: auto;
    /* Changed from fixed 400px to auto to fit image */
    background: transparent;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
}

.map-placeholder i {
    font-size: 64px;
    color: #bbb;
    margin-bottom: 20px;
}

.map-placeholder p {
    color: #999;
}

.business-hours {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.hours-box {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.hours-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.hours-box p {
    color: #666;
    line-height: 1.8;
}

.hours-box strong {
    color: var(--primary-color);
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

    .about-main {
        padding: 40px 0 10px;
    }

    .presence-map {
        margin: 20px 0 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-section {
        height: auto;
    }

    .projects-grid,
    .gallery-grid-main,
    .service-detail-content,
    .consultancy-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .founder-member {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .stats-section {
        gap: 15px;
        padding: 20px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .stat-item p {
        font-size: 12px;
    }

    .nav-logo {
        font-size: 18px;
    }

    .services-grid,
    .research-grid,
    .strengths-grid,
    .team-grid,
    .gallery-grid,
    .projects-grid,
    .gallery-grid-main,
    .stats-grid,
    .capacity-features,
    .implementation-services,
    .business-hours,
    .about-stats {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .page-header p {
        font-size: 14px;
    }

    .projects-filter,
    .gallery-filters,
    .projects-tabs {
        flex-direction: column;
        gap: 8px;
    }

    .filter-btn,
    .gallery-filter-btn,
    .tab-button {
        width: 100%;
    }
}

/* --- New Premium Styles --- */

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-header h2 {
    font-size: 48px;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: -1px;
}

.section-header.white-header h2 {
    color: white;
}

.header-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* Identity Block */
.identity-block {
    text-align: center;
    margin: 60px 0;
}

.identity-logo {
    max-width: 150px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.identity-logo:hover {
    transform: scale(1.05);
}

/* Overview Section */
.overview-section {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.overview-content h3 {
    font-size: 32px;
    color: var(--dark-text);
    margin-bottom: 30px;
    font-weight: 700;
}

.overview-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

/* Thematic Areas */
.thematic-areas {
    padding: 60px 0;
    background: #f4f6f9;
}

.thematic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.thematic-card {
    background: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.thematic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: var(--primary-color);
}

.thematic-card i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.thematic-card:hover i {
    color: white;
}

.thematic-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
    transition: var(--transition);
}

.thematic-card:hover h4 {
    color: white;
}

/* Presence */
/* Presence */
.presence-strengths {
    position: relative;
    padding: 60px 0;
    background: var(--primary-color);
    color: white;
    overflow: hidden;
}

.presence-overlay {
    display: none;
}

.presence-strengths .container {
    position: relative;
    z-index: 2;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.presence-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.presence-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.presence-map-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 24px;
    font-weight: 600;
    padding: 20px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    width: fit-content;
}

.strengths-content {
    display: grid;
    gap: 30px;
}

.strength-item {
    display: flex;
    gap: 25px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.strength-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.strength-item i {
    font-size: 32px;
    color: var(--accent-light);
}

.strength-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.strength-item p {
    font-size: 15px;
    opacity: 0.8;
    margin: 0;
}

/* Service List */
.service-list {
    text-align: left;
    margin-top: 20px;
    padding-left: 20px;
    color: #666;
}

.service-list li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Responsive Update */
@media (max-width: 900px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 40px;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .know-more {
        padding: 80px 0;
    }
}

/* --- Robust Footer Styles --- */
.footer {
    background: var(--primary-color);
    color: #ffffff;
    padding: 60px 0 20px;
    position: relative;
    z-index: 10;
}

.footer-content {
    margin-bottom: 40px;
}

/* Enhanced Logo Fix */
.footer-logo-fix {
    filter: grayscale(1) contrast(20) invert(1);
    mix-blend-mode: screen;
    margin-bottom: 20px;
    border-radius: 0;
    box-shadow: none;
    max-width: 140px;
    background: transparent;
    display: block;
}

/* Ensure footer links are visible */
.footer a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

/* Unified Contact Section Styles */
.unified-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.unified-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.unified-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-header i {
    font-size: 28px;
    color: var(--primary-color);
}

.card-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.card-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    width: 100%;
    margin-bottom: 30px;
    opacity: 0.3;
}

.info-group {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-group:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(39, 174, 96, 0.1);
    /* Light green tint */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--accent-color);
    font-size: 18px;
}

.info-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.info-content p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.info-content a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.info-content a:hover {
    color: var(--accent-color);
}

.social-icons-unified {
    display: flex;
    gap: 15px;
}

.social-icons-unified a {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons-unified a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Full Width Form Styling */
.contact-form-section.full-width-form {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    padding: 50px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-section.full-width-form h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-form-section.full-width-form p {
    margin-bottom: 40px;
    color: #666;
}

.contact-form-main {
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .unified-contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-section.full-width-form {
        padding: 30px 20px;
    }

    .unified-card {
        padding: 30px 20px;
    }
}

/* Contact Form Split Layout */
.contact-split-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
    /* Stretch items to match height */
    margin-bottom: 60px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Optional: Shadow for the whole block */
    overflow: hidden;
    /* Ensure image doesn't overflow */
}

.form-split-left {
    flex: 1;
    /* Takes remaining space, or define ratio */
    padding: 50px 40px;
    /* Removed max-width centering */
}

.form-split-left h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.form-split-left p {
    color: #666;
    margin-bottom: 30px;
    font-size: 15px;
}

.contact-image-placeholder {
    flex: 1;
    /* Equal width, or adjust */
    background: #f1f3f5;
    position: relative;
    min-height: 500px;
    /* Ensure height if form is short */
}

.contact-side-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Adjust form styling for split view */
.form-split-left .contact-form-main {
    max-width: 100%;
    /* Use full width of the column */
}

.form-split-left .submit-btn {
    margin-top: 10px;
}

/* Responsive Split */
@media (max-width: 992px) {
    .contact-split-wrapper {
        flex-direction: column;
    }

    .contact-image-placeholder {
        height: 300px;
        /* Specific height for mobile image */
        min-height: auto;
    }

    .form-split-left {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .form-split-left {
        padding: 30px 20px;
    }
}