/* Global Reset & Box Sizing */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0136b4;
    /* Classic Corporate Blue */
    --secondary-color: #001f5c;
    /* Deep Professional Navy */
    --accent-color: #fbc929;
    --gold-color: #fbc929;
    /* Brand Yellow/Gold */
    --text-color: #2d3436;
    /* Softer Dark Text */
    --light-text: #ffffff;
    --bg-light: #f4f7f6;
    /* Premium Grey-ish White */
    --bg-white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    /* Modern, clean body font */
    --transition-speed: 0.4s;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

body {
    font-family: var(--font-body);
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.section-padding {
    padding: 8rem 0;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.text-white {
    color: var(--light-text);
}

.text-gold {
    color: var(--gold-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Top Bar */
/* Top Bar */
.top-bar {
    background-color: var(--secondary-color);
    color: #ccc;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
}

.contact-info span i {
    color: var(--gold-color);
    margin-right: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a:hover {
    color: var(--gold-color);
}

/* Header */
#main-header {
    background-color: var(--bg-white);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-icon {
    display: none;
    color: var(--secondary-color);
    font-size: 1.8rem;
    cursor: pointer;
    transition: 0.3s;
}

.mobile-menu-icon:hover {
    color: var(--gold-color);
}

.logo-link {
    display: inline-block;
}

.logo-img {
    height: 60px;
    /* Adjust based on logo aspect ratio */
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    /* Make white for dark footer if needed, remove if colored logo looks good on dark bg */
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--secondary-color);
    position: relative;
    font-size: 0.95rem;
}

.nav-links a:not(.cta-button)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold-color);
    transition: width var(--transition-speed);
}

.nav-links a:not(.cta-button):hover::after {
    width: 100%;
}

.cta-button {
    background: var(--gold-color);
    color: var(--secondary-color) !important;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    /* Pillow shape for modern classic look */
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(251, 201, 41, 0.3);
    transition: all var(--transition-speed);
    display: inline-block;
    border: 2px solid var(--gold-color);
}

.cta-button:hover {
    background: transparent;
    color: var(--secondary-color) !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(251, 201, 41, 0.4);
}

.cta-button.outline {
    background: transparent;
    border: 2px solid var(--gold-color);
    color: var(--gold-color) !important;
}

.cta-button.outline:hover {
    background: var(--gold-color);
    color: var(--secondary-color) !important;
}

/* Page Header Hero (Generic for About, Services, Contact) */
.hero {
    background-image: linear-gradient(rgba(0, 31, 92, 0.85), rgba(0, 31, 92, 0.75)),
        url('https://images.unsplash.com/photo-1454165833767-1330084bc6f9?auto=format&fit=crop&q=80&w=2070');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 10rem 0 6rem !important;
    /* Increased padding for impact */
    margin-bottom: 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-hero {
    background-image: linear-gradient(rgba(0, 31, 92, 0.88), rgba(0, 31, 92, 0.78)),
        url('https://images.unsplash.com/photo-1554224155-8d2694bb72ce?auto=format&fit=crop&q=80&w=2070');
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--gold-color);
}

.hero h1 {
    color: white !important;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        padding: 8rem 0 4rem !important;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

/* Hero Slider Styles - Executive Edition */
.hero-slider {
    position: relative;
    height: 85vh;
    width: 100%;
    min-height: 650px;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    background: #000;
}

.slider-container {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: -webkit-optimize-contrast;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            rgba(0, 31, 92, 0.9) 0%,
            rgba(0, 31, 92, 0.5) 100%);
    z-index: 2;
}

.slide.active {
    opacity: 1;
    z-index: 2;
    animation: kenBurnsZoom 20s ease-out forwards;
}

@keyframes kenBurnsZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.slide-content {
    color: var(--light-text);
    z-index: 3;
    position: relative;
    padding: 0 2rem;
    max-width: 900px;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 2rem;
}

.slide-content h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.prev-slide,
.next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-slide {
    left: 4rem;
}

.next-slide {
    right: 4rem;
}

.prev-slide:hover,
.next-slide:hover {
    background: var(--gold-color);
    border-color: var(--gold-color);
    color: var(--secondary-color);
    transform: translateY(-50%) scale(1.15);
}

.slide-indicators {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.2rem;
    z-index: 10;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
}

.indicator.active {
    background: var(--gold-color);
    border-color: var(--gold-color);
    width: 50px;
    border-radius: 10px;
}

/* Mobile Slider Adjustments */
@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 3rem;
    }

    .prev-slide {
        left: 2rem;
    }

    .next-slide {
        right: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .prev-slide,
    .next-slide {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .slide-indicators {
        bottom: 2rem;
    }
}



/* Generic Section Styles */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    position: relative;
    color: var(--secondary-color);
    font-weight: 800;
}

.section-title span {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--gold-color);
    border-radius: 10px;
}

/* About Us */
#about-us {
    background-color: var(--bg-white);
    padding-bottom: 3rem;
}

/* Services */
#services-page {
    background-color: var(--bg-light);
    background-image: radial-gradient(var(--gold-color) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    background-position: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 4rem 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: left;
    /* Classic left align */
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(1, 54, 180, 0.1);
}

.service-card::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 1.2rem;
    color: var(--gold-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.service-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--bg-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    border-radius: 50%;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background-color: var(--gold-color);
    color: var(--primary-color);
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card ul {
    margin-top: auto;
    width: 100%;
}

.service-card ul li {
    font-weight: 500;
    color: #555;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.service-card ul li i {
    color: var(--gold-color);
    font-size: 0.8rem;
}

/* Why Choose Us */
.why-us {
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-speed);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    color: var(--gold-color);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.feature-text {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* Who We Serve */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.client-card {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: all var(--transition-speed);
}

.client-card:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.client-card:hover h4,
.client-card:hover i {
    color: var(--light-text) !important;
}

.client-card h4 {
    margin-bottom: 0;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-light);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card i {
    color: var(--gold-color);
    font-size: 1.5rem;
    position: absolute;
    top: 2rem;
    left: 2rem;
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
    position: relative;
    z-index: 1;
}

.client-info h5 {
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

.client-info span {
    font-size: 0.9rem;
    color: #888;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
    padding: 8rem 0;
}

.cta-section h2 {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.cta-section .btn-light {
    background-color: var(--gold-color);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 5px;
    font-weight: 700;
    display: inline-block;
    margin-top: 2rem;
    transition: transform var(--transition-speed);
}

.cta-section .btn-light:hover {
    transform: scale(1.05);
    background-color: #fff;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--gold-color);
    color: var(--primary-color);
    padding: 5rem 0 2rem;
    font-size: 0.95rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Force 4 columns on desktop */
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablets */
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
    }
}

.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
    font-weight: 600;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    position: relative;
    margin-top: 1rem;
}

.newsletter-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    padding-right: 3.5rem;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    color: var(--primary-color);
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(1, 54, 180, 0.6);
}

.newsletter-form input:focus {
    background-color: #fff;
    border-color: var(--secondary-color);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #fff;
    transform: scale(1.05);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20b857;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* WhatsApp Chat Popup */
.whatsapp-chat-popup {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 320px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow: hidden;
    display: none;
    animation: slideUp 0.3s ease;
}

.whatsapp-chat-popup.active {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: #25d366;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    padding: 2px;
}

.chat-header-info h4 {
    margin: 0;
    font-size: 14px;
    font-family: var(--font-body);
}

.chat-header-info p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
}

.chat-close {
    margin-left: auto;
    cursor: pointer;
    font-size: 20px;
    opacity: 0.8;
}

.chat-body {
    padding: 15px;
    background: #f5f5f5;
}

.chat-message {
    background: #e5f4ea;
    padding: 10px 15px;
    border-radius: 10px 10px 10px 0;
    font-size: 14px;
    line-height: 1.5;
}

.chat-message p {
    margin: 0;
    color: #333;
}

.chat-message .time {
    font-size: 10px;
    color: #666;
    margin-top: 5px;
    display: block;
}

.chat-footer {
    padding: 15px;
    background: white;
    border-top: 1px solid #eee;
}

.chat-footer a {
    display: block;
    background: #25d366;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.chat-footer a:hover {
    background: #20b857;
}

/* Hide on very small screens */
@media (max-width: 480px) {
    .whatsapp-chat-popup {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
    }
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(1, 54, 180, 0.2);
    padding-top: 2rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    /* ... (rest of media query remains) */
}

/* Specific About Page Image Effects */
.about-content img {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease;
    animation: revealImg 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes revealImg {
    0% {
        clip-path: inset(0 100% 0 0);
        transform: scale(1.1);
    }

    100% {
        clip-path: inset(0 0 0 0);
        transform: scale(1);
    }
}

.about-content img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Responsive Improvements */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .nav-links {
        gap: 1.5rem;
    }

    .logo-img {
        height: 55px;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    #main-header {
        padding: 0.8rem 0;
    }

    nav {
        position: relative;
    }

    .mobile-menu-icon {
        display: block;
        position: absolute;
        right: 4%;
        transform: translateX(50%);
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.4rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 64%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 3rem;
        gap: 1.5rem;
        transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.3rem;
        padding: 0.8rem 2rem;
        width: 100%;
        text-align: center;
    }

    .nav-links .cta-button {
        padding: 0.7rem 1.5rem;
        width: 32%;
        text-align: center;
        margin: 0 auto;
        font-size: 0.9rem;
    }

    .logo-img {
        height: 50px;
    }

    .section-padding {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Fix for flex layouts in pages */
    .flex-mobile-stack {
        flex-direction: column !important;
        gap: 3rem !important;
        text-align: center !important;
    }
}

/* Trust Bar & Stats */
.trust-bar {
    background: var(--bg-white);
    padding: 3rem 0;
    /* Added padding */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-bar-container {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    align-items: center;
    gap: 3rem;
}

.trust-title {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--secondary-color);
    text-transform: uppercase;
    position: relative;
    padding-left: 2.5rem;
    line-height: 1.4;
}

.trust-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 3px;
    background: var(--gold-color);
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.08), transparent);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 0.2rem;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
}

@media (max-width: 992px) {
    .trust-bar-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .trust-title {
        padding-left: 0;
    }

    .trust-title::before {
        display: none;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }
}

/* Expertise Section (Our Expertise) */
#services-intro {
    background: linear-gradient(rgba(0, 31, 92, 0.95), rgba(0, 31, 92, 0.88)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    position: relative;
    padding: 10rem 0;
}

@media (max-width: 768px) {
    #services-intro {
        background-attachment: scroll !important;
        padding: 6rem 0;
    }
}

#services-intro .section-title {
    color: white;
}

#services-intro .section-title span {
    color: var(--gold-color);
}

#services-intro .service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.5s ease;
}

#services-intro .service-card h3 {
    color: white;
}

#services-intro .service-card p {
    color: rgba(255, 255, 255, 0.7);
}

#services-intro .service-card ul li {
    color: rgba(255, 255, 255, 0.8) !important;
}

#services-intro .service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-color: var(--gold-color);
}

#services-intro .service-icon {
    background: rgba(251, 201, 41, 0.1);
    color: var(--gold-color);
    box-shadow: 0 0 20px rgba(251, 201, 41, 0.2);
}

/* Methodology Section */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-top: 2rem;
}

.method-step {
    position: relative;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-speed);
    text-align: center;
}

.method-step:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px);
    border-color: var(--gold-color);
}

.step-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--gold-color);
    opacity: 0.1;
    position: absolute;
    top: 1rem;
    right: 2rem;
    line-height: 1;
    font-family: var(--font-heading);
}

.method-step i {
    font-size: 2.5rem;
    color: var(--gold-color);
    margin-bottom: 2rem;
    display: block;
}

.method-step h3 {
    font-size: 1.6rem;
    color: white !important;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.method-step p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.8;
}