/* Global Vars */
:root {
    /* Brand Colors */
    --brand-dark-blue: #112C97;
    --brand-green: #27A94D;
    --brand-green-hover: #1f8a3d;

    /* Legacy colors for backward compatibility */
    --primary-blue: #112C97;
    --primary-blue-hover: #0d2275;
    --secondary-green: #27A94D;
    --secondary-green-hover: #1f8a3d;

    --text-dark: #1A1A1A;
    --text-medium: #4A5568;
    --text-light: #718096;
    --text-white: #FFFFFF;

    --bg-light: #F7FAFC;
    --bg-white: #FFFFFF;
    --bg-blue-section: #007BFF;

    --border-color: #E2E8F0;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --container-width: 1200px;
    --font-main: 'Inter', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Helpers */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--brand-green);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--brand-green-hover);
}

.btn-secondary {
    background-color: #F0F4F8;
    /* Light gray/blueish */
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: #E1E8F0;
}

.btn-outline-light {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
}

.btn-success {
    background-color: var(--secondary-green);
    color: var(--text-white);
}

.btn-success:hover {
    background-color: var(--secondary-green-hover);
}

/* Header */
.header {
    background-color: var(--bg-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    /* Adjust based on generated image aspect ratio */
    width: auto;
}

.logo-text {
    margin-left: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.2;
    max-width: 200px;
    /* Prevent it from getting too wide on small screens if it wraps */
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 0.9rem;
        max-width: 150px;
    }
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--brand-dark-blue);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--brand-green);
}

/* Dropdown Styles */
.nav-item {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    padding: 0;
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: background 0.2s;
    white-space: nowrap;
}

.dropdown li a:hover {
    background-color: #f8f9fa;
    color: var(--brand-green);
}

/* Mobile Dropdown Adjustments */
@media (max-width: 768px) {
    .dropdown {
        position: static;
        box-shadow: none;
        visibility: visible;
        opacity: 1;
        transform: none;
        display: none;
        /* Hidden by default on mobile */
        padding-left: 20px;
        background: transparent;
    }

    .nav-item.active .dropdown {
        display: block;
    }

    .dropdown li a {
        padding: 8px 0;
        font-size: 0.85rem;
    }

    /* Add chevron for mobile indication if needed, 
       but for now simplistic toggling on click */
}

.header-actions {
    display: flex;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 120px;
    background-color: #000;
    color: var(--text-white);
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.slider-dots .dot.active {
    background: white;
    border-color: white;
    width: 14px;
    height: 14px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.badge {
    display: inline-block;
    background-color: var(--secondary-green);
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Trusted By */
.trusted-by {
    padding: 60px 0;
    text-align: center;
    background-color: var(--bg-white);
}

.section-label {
    font-size: 0.90rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: var(--brand-dark-blue);
    margin-bottom: 30px;
    text-transform: uppercase;
}

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

.partner-logo {
    height: 90px;
    width: auto;
    filter: (100%);
    opacity: 0.9;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: transparent;
    /* Ensure no white box */
    object-fit: contain;
    /* Ensure aspect ratio is kept */
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Services */
.services {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.section-subtitle {
    display: block;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--text-dark);
}

.link-arrow {
    color: var(--primary-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.link-arrow:hover {
    gap: 12px;
}

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

.service-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 102, 204, 0.1);
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.icon-box.blue {
    background-color: #E6F0FF;
    color: var(--primary-blue);
}

.icon-box.blue-light {
    background-color: #E3F8FF;
    color: #00A3C4;
}

.service-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--text-medium);
    line-height: 1.5;
}

/* Stats */
.stats {
    background-color: var(--bg-blue-section);
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* CTA */
.cta {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.cta-box {
    background-color: var(--bg-white);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-medium);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 16px;
}

.cta-image {
    font-size: 150px;
    color: #E6F0FF;
    position: absolute;
    right: 50px;
    bottom: -20px;
    z-index: 1;
}

/* Footer */
.footer {
    background-color: var(--bg-white);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Projects Page Updates */
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.mb-4 {
    margin-bottom: 30px;
}

/* Services Page Redesign */
.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-text {
    flex: 1;
}

.service-image {
    flex: 1;
}

.expertise-label {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.service-text h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-text p {
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-blue);
    background: #eef2f6;
    border-radius: 50%;
    opacity: 0.8;
}

.btn-light-outline {
    display: inline-block;
    padding: 12px 28px;
    background-color: #f8f9fa;
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-light-outline:hover {
    background-color: #e2e6ea;
    color: var(--primary-blue);
}

.placeholder-img-lg {
    width: 100%;
    height: 350px;
    background-color: #e2e8f0;
    border-radius: 8px;
}

/* About Page Redesign */
.about-overview {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.overview-stats {
    display: flex;
    justify-content: center;
}

.stat-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 2px solid var(--primary-blue);
}

.stat-card h3 {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-card p {
    color: var(--text-medium);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

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

.mv-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-card .icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.mv-card .icon-box.blue {
    background-color: rgba(0, 102, 204, 0.1);
    color: var(--primary-blue);
}

.mv-card .icon-box.blue-light {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--secondary-green);
}

.mv-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.mv-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    /* Changed from center for multi-line support */
    gap: 10px;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.values-list li i {
    color: var(--primary-blue);
    margin-top: 4px;
    /* Align icon with first line of text */
}

@media (max-width: 992px) {
    .service-row {
        flex-direction: column;
        gap: 40px;
        text-align: left;
        /* Keep left align as per design usually */
    }

    .service-row.reverse {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
    }

    .placeholder-img-lg {
        height: 250px;
    }

    .about-overview {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-medium);
    font-size: 0.9rem;
    max-width: 300px;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.1rem;
}

.social-links a:hover {
    color: var(--primary-blue);
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--primary-blue);
}

.footer-col address {
    font-style: normal;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.footer-col address a {
    color: var(--text-medium);
    display: inline-block;
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.8rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

/* Responsiveness */
@media (max-width: 1024px) {
    :root {
        --container-width: 90%;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .stat-item {
        width: 45%;
    }
}

@media (max-width: 768px) {

    .header-actions,
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
        flex-direction: column;
    }

    .nav.active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero {
        padding: 60px 0;
        min-height: auto;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .cta-content {
        margin-bottom: 30px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta-image {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    /* Page Header (Common) */
    .page-header {
        background-color: #F8F9FA;
        padding: 60px 0;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

    .page-header h1 {
        font-size: 2.5rem;
        color: var(--text-dark);
        margin-bottom: 15px;
    }

    .page-header p {
        color: var(--text-medium);
        font-size: 1.1rem;
    }

    .section-padding {
        padding: 80px 0;
    }

    .bg-light {
        background-color: var(--bg-light);
    }

    .bg-blue {
        background-color: var(--primary-blue);
    }

    .text-white {
        color: white;
    }

    .section-header-center {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 50px;
    }

    .section-header-center h2 {
        font-size: 2.25rem;
        margin-bottom: 15px;
    }

    /* About Page Styles */
    .about-overview {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .overview-stats {
        display: flex;
        justify-content: center;
    }

    .stat-card {
        background: var(--bg-white);
        padding: 40px;
        border-radius: var(--radius-md);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        text-align: center;
        border: 2px solid var(--primary-blue);
    }

    .stat-card h3 {
        font-size: 3.5rem;
        color: var(--primary-blue);
        margin-bottom: 5px;
    }

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

    .mv-card {
        background: var(--bg-white);
        padding: 40px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-color);
    }

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

    .value-item i {
        font-size: 2.5rem;
        color: var(--secondary-green);
        margin-bottom: 20px;
    }

    .value-item h4 {
        margin-bottom: 10px;
        font-size: 1.2rem;
    }

    .operations-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .operations-list span {
        background: rgba(255, 255, 255, 0.1);
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: 500;
    }

    /* Projects Page Styles */
    .section-title-line {
        border-bottom: 2px solid var(--border-color);
        padding-bottom: 15px;
        margin-bottom: 40px;
        font-size: 1.75rem;
    }

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

    .project-card {
        background: var(--bg-white);
        border-radius: var(--radius-md);
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        border: 1px solid var(--border-color);
    }

    .project-img-placeholder {
        height: 200px;
        background-color: #E2E8F0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #A0AEC0;
        font-weight: 600;
    }

    .project-content {
        padding: 25px;
    }

    .badge-ongoing {
        background-color: #FEFCBF;
        color: #B7791F;
    }

    .badge-completed {
        background-color: #C6F6D5;
        color: #276749;
    }

    .project-cat {
        display: block;
        color: var(--text-light);
        font-size: 0.85rem;
        margin: 10px 0 5px;
        text-transform: uppercase;
        font-weight: 600;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .gallery-item.placeholder {
        aspect-ratio: 1/1;
        background-color: #EDF2F7;
        border: 2px dashed #CBD5E0;
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #A0AEC0;
    }

    /* New Gallery Styles */
    .gallery-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: var(--radius-md);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .gallery-item img:hover {
        transform: scale(1.03);
    }

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-md);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .overview-text {
        align-self: center;
    }

    /* Services Page Styles */
    .services-full-grid {
        display: grid;
        gap: 40px;
    }

    .service-full-card {
        display: grid;
        grid-template-columns: 300px 1fr;
        gap: 30px;
        background: var(--bg-white);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: 30px;
    }

    .service-img-placeholder {
        background-color: #E2E8F0;
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #A0AEC0;
    }

    .service-features {
        margin-top: 20px;
    }

    .service-features li {
        margin-bottom: 8px;
        font-size: 0.9rem;
        color: var(--text-medium);
    }

    .service-features i {
        color: var(--secondary-green);
        margin-right: 8px;
    }

    /* Contact Page Styles */
    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 50px;
    }

    .contact-info-panel,
    .contact-form-panel {
        background: var(--bg-white);
        padding: 40px;
        border-radius: var(--radius-md);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .contact-item {
        display: flex;
        gap: 15px;
        margin-bottom: 25px;
    }

    .contact-item i {
        width: 40px;
        height: 40px;
        background-color: #E6F0FF;
        color: var(--primary-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .map-placeholder {
        height: 200px;
        background-color: #EDF2F7;
        border-radius: var(--radius-md);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #718096;
        margin-top: 30px;
    }

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

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #CBD5E0;
        border-radius: var(--radius-sm);
        font-family: inherit;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--primary-blue);
        outline: none;
    }

}

/* Responsive Adjs for New Pages */
@media (max-width: 768px) {

    .about-overview,
    .contact-wrapper,
    .service-full-card {
        grid-template-columns: 1fr;
    }

    .service-img-placeholder {
        height: 200px;
    }
}

/* --- New Projects Page Design Styles --- */

/* Projects Header & Filters */
.projects-header {
    margin-bottom: 40px;
}

.projects-header h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.projects-header p {
    color: var(--text-medium);
    max-width: 600px;
    margin-bottom: 30px;
}

.project-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    border: none;
    background-color: var(--bg-white);
    padding: 10px 24px;
    border-radius: 30px;
    /* Pill shape */
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--text-medium);
    transition: all 0.2s;
    border: 1px solid #E2E8F0;
}

.filter-btn:hover {
    background-color: #F8FAFC;
}

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

/* Modern Project Grid */
.projects-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.project-card-modern {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #EDEDED;
    transition: transform 0.2s;
}

.project-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.card-image.placeholder-img {
    height: 220px;
    background-color: #CBD5E0;
    width: 100%;
    /* In a real scenario, use actual images */
    background: linear-gradient(45deg, #CBD5E0, #E2E8F0);
}

.card-body {
    padding: 24px;
}

.card-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.card-tags span {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.tag-blue {
    background-color: #EBF8FF;
    color: #2B6CB0;
}

.tag-gray {
    background-color: #F7FAFC;
    color: #718096;
}

.project-card-modern h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.project-card-modern p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
}

/* Why Choose Us */
.why-choose-us-card {
    background: white;
    border-radius: 12px;
    padding: 60px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.title-underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary-blue);
    margin: 15px auto 0;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
    margin-top: 50px;
}

.feature-item {
    padding: 0 10px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: #EBF8FF;
    /* Light blue circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.feature-item h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.feature-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Modern CTA Section */
.cta-modern-section {
    background-color: #F8FAFC;
    /* Very light gray/white */
}

.cta-modern-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-modern-section p {
    color: var(--text-medium);
    margin-bottom: 35px;
}

.cta-buttons-center {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-outline-dark {
    background-color: white;
    border: 1px solid #CBD5E0;
    color: var(--text-dark);
}

.btn-outline-dark:hover {
    background-color: #F7FAFC;
    border-color: var(--text-dark);
}

/* Add padding bottom utility */
.pb-0 {
    padding-bottom: 0 !important;
}