@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #EAEFF5;
    color: #ffffff;
    min-height: 100vh;
    padding: 24px; /* Creates the clean outer border look seen in the screenshot */
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 48px);
    border-radius: 24px;
    background: linear-gradient(rgba(20, 24, 33, 0.65), rgba(20, 24, 33, 0.65)), 
                url('images/home_bg.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
}

.main-header {
    width: 100%;
    max-width: 1400px;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.logo-img {
    height: 100px;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: #000000;
}

/* Header Contact Button */
.contact-btn {
    text-decoration: none;
    background-color: #3b71ca; /* Matches the clean corporate blue layout */
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.contact-btn:hover {
    background-color: #2b579a;
    transform: translateY(-1px);
}

/* --- Hero Content Area Grid --- */
.hero-content-grid {
    width: 100%;
    max-width: 1400px;
    margin: auto 0; /* Perfectly spaces the layout blocks downstream from header */
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    padding: 60px 20px 40px 20px;
    align-items: center;
}

/* Left Typography Column */
.hero-left h1 {
    font-size: clamp(2.5rem, 5vw, 4.8rem); /* Fluid scaling system */
    font-weight: 500;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -1px;
}

.hero-left .italic-text {
    font-style: italic;
    font-weight: 300;
}

/* Right Typography & Button Column */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding-left: 20px;
}

.hero-description {
    font-size: 2rem;
    line-height: 1.5;
    color: #e2e8f0;
    font-weight: 300;
}

/* --- Custom Action Token Button --- */
.consultation-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 6px 6px 6px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: #611535; /* Deep wine accent */
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* Clean UI micro-interactions */
.consultation-btn:hover {
    background-color: #f8fafc;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.consultation-btn:hover .arrow-circle {
    transform: translate(2px, -2px);
}
/* --- Core Mobile Breakpoints (CSS Grid Optimization) --- */
@media (max-width: 992px) {
    .main-header {
        padding: 16px 24px;
    }
    
    .nav-menu {
        display: flex; /* Add a toggle burger script later if necessary */
    }
    
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
        margin-top: 40px;
    }
    
    .hero-right {
        padding-left: 0;
    }
}

/* --- About & Stats Section Configuration --- */
.about-stats-section {
    background-color: #ebf0f6; /* Soft blue/grey tint background */
    padding: 60px 40px;
    border-radius: 24px;
    font-family: Arial, sans-serif;
    color: #1e293b;
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
}

/* Who We Are Pill Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
    color: #475569;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #611535; /* Deep wine accent dot */
    border-radius: 50%;
}

/* Core Paragraph Typography */
.about-text {
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    line-height: 1.4;
    font-weight: 400;
    color: #111827;
    margin-bottom: 48px;
    max-width: 1300px;
}

/* --- Metric Cards Grid Matrix --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 500;
    color: #3b71ca; /* Muted tech blue text color */
    margin-bottom: 12px;
}

.stat-description {
    font-size: 14px;
    line-height: 1.5;
    color: #475569;
}

/* --- Responsive Layout Optimization --- */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr); /* Forms a 2x2 grid stack on tablets */
    }
}

@media (max-width: 640px) {
    .about-stats-section {
        padding: 40px 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr; /* Single column layout on mobile viewports */
    }
}

/* --- Main Section Layout --- */
.expertise-section {
    background-color: #ebf0f6; /* Soft background */
    padding: 60px 40px;
    border-radius: 24px;
    font-family: Arial, sans-serif;
    max-width: 1400px;
    margin: 40px auto;
}

/* Typography for the Heading */
.expertise-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #3b71ca;
    margin-bottom: 40px;
    font-weight: 500;
}

.expertise-title .italic-text {
    font-style: italic;
    font-weight: 300;
}

/* --- The 3-Column Grid --- */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* --- The Interactive Card --- */
.expertise-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    text-decoration: none; /* Removes the default link underline */
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative; /* CRITICAL: Allows absolute positioning of the arrow inside this box */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    
    /* Smoothly animates both the shrinking and the shadow */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

/* --- The Hidden Hover Arrow --- */
.hover-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    background-color: #611535; /* Deep wine accent */
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    
    /* Start hidden and slightly shrunk */
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

/* --- THE HOVER TRIGGER --- */
.expertise-card:hover {
    transform: scale(0.97); /* Shrinks the card slightly inward */
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.15); /* Adds a deeper shadow to compensate for the shrink */
}

.expertise-card:hover .hover-arrow {
    opacity: 1; /* Makes arrow visible */
    transform: scale(1); /* Pops the arrow to full size */
}

/* --- Card Inner Content Styling --- */
.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.card-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.card-title {
    font-size: 1.25rem;
    color: #3b71ca;
    line-height: 1.4;
    font-weight: 500;
}

.card-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 640px) {
    .expertise-section {
        padding: 40px 20px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}

/* --- CTA Banner Container --- */
.cta-banner-section {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    min-height: 450px;
    border-radius: 24px;
    
    /* Background Image Setup */
    background: url('images/bg-images.avif') no-repeat center center;
    background-size: cover;
    
    /* Flex layout to push the glass box to the bottom */
    display: flex;
    align-items: flex-end;
    padding: 24px; /* Creates the gap between the image edge and the glass box */
}

.cta-glass-box {
    width: 100%;
    /* Creates the dark translucent effect */
    background: rgba(30, 41, 59, 0.45); 
    /* The magic blur property for the frosted glass look */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); /* For Safari support */
    
    border-radius: 16px;
    padding: 32px 40px;
    
    /* Layout for button and text */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    
    /* Optional: A very subtle top border makes the glass edge pop */
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* --- CTA Typography --- */
.cta-heading {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: #ffffff;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* --- Button Styling (Reused & Tweaked for CTA) --- */
.get-touch-btn {
    text-decoration: none; /* In case you use an <a> tag instead of <button> */
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background-color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 6px 6px 6px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.get-touch-btn .arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #611535; /* Deep wine accent */
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.get-touch-btn:hover {
    background-color: #f8fafc;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.get-touch-btn:hover .arrow-circle {
    transform: translate(2px, -2px);
}
@media (max-width: 640px) {
    .cta-banner-section {
        min-height: 400px;
        padding: 16px;
    }
    
    .cta-glass-box {
        padding: 24px 20px;
    }
}

/* --- Section Layout --- */
.value-proposition-section {
    background-color: #ebf0f6; /* Matches the soft background from the previous section */
    padding: 80px 20px;
    text-align: center; /* Automatically centers the badge, text, and button */
    font-family: Arial, sans-serif;
}

/* --- Badge Adjustment --- */
/* (Assuming you still have the .section-badge and .badge-dot CSS from earlier) */
/* Adding this just to ensure it behaves well when centered */
.value-proposition-section .section-badge {
    display: inline-flex;
    margin: 0 auto; 
}

/* --- Typography --- */
.value-statement {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #172554; /* Deep navy blue to match the screenshot */
    font-weight: 400;
    line-height: 1.5;
    max-width: 900px; /* Constrains the width so the text wraps nicely */
    margin: 32px auto 40px auto; /* Spacing between badge, text, and button */
}

/* --- Inverted Black Button --- */
.testimonial-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background-color: #000000; /* Black body */
    color: #ffffff; /* White text */
    text-decoration: none;
    border-radius: 50px;
    padding: 8px 8px 8px 24px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* White Circle with Wine-Colored Arrow */
.testimonial-btn .arrow-circle-alt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff; /* White circle */
    color: #611535; /* Deep wine accent arrow */
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* --- Hover Interactions --- */
.testimonial-btn:hover {
    transform: translateY(-2px); /* Lifts the whole button slightly */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Adds a soft drop shadow */
}

.testimonial-btn:hover .arrow-circle-alt {
    transform: translate(2px, -2px); /* Pops the arrow up and to the right */
}

/* --- Main Section Wrapper --- */
.how-we-work-section {
    background-color: #ebf0f6; /* Matches the global soft background */
    padding: 60px 40px;
    font-family: Arial, sans-serif;
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
}

/* --- The 2-Column Grid --- */
.hww-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px; /* Space between the white card and the image */
    align-items: stretch; /* Ensures both columns stretch to the same height */
}

/* --- Left Column: White Content Card --- */
.hww-content-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.hww-content-card .section-badge {
    margin-bottom: 32px;
}

/* --- Typography --- */
.hww-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: #3b71ca; /* The signature tech blue */
    font-weight: 300;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.hww-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 40px;
    font-weight: 400;
}

/* --- Right Column: Image Mask --- */
.hww-image-card {
    border-radius: 24px;
    overflow: hidden; /* This clips the image to follow the border-radius */
    min-height: 400px; /* Ensures the image doesn't collapse if text is short */
    position: relative;
}

.hww-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Acts like background-size: cover for an <img> tag */
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .hww-grid {
        grid-template-columns: 1fr; /* Stacks the cards vertically on smaller screens */
    }
    
    .hww-image-card {
        min-height: 350px; /* Gives the image a fixed height when stacked */
    }
}

@media (max-width: 640px) {
    .how-we-work-section {
        padding: 40px 20px;
    }
    
    .hww-content-card {
        padding: 40px 24px;
    }
    
    .hww-title {
        font-size: 2.5rem;
    }
}

/* --- Main Section Wrapper --- */
.final-cta-section {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 60px auto;
    min-height: 550px;
    border-radius: 24px;
    overflow: hidden; /* Keeps the background image contained within the rounded corners */
    
    /* Background Image */
    background: url('images/meet-img.webp') no-repeat center center;
    background-size: cover;
    /* Layout: Aligns the glass card to the left */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px;
}

/* --- Optional Dark Tint Overlay --- */
/* This slightly dims the background image so the white text is always readable */
.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.3); /* Dark blue/slate tint */
    z-index: 1;
}

/* --- The Glassmorphism Card --- */
.cta-glass-card {
    position: relative;
    z-index: 2; /* Keeps the card above the dark overlay */
    max-width: 480px; /* Constrains the width of the card */
    
    /* The Frosted Glass Effect */
    background: rgba(30, 41, 59, 0.5); /* Semi-transparent dark background */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle bright edge lighting */
    
    border-radius: 20px;
    padding: 48px 40px;
    
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px; /* Consistent spacing between title, text, and button */
}

/* --- Typography --- */
.cta-glass-card h2 {
    font-family: Arial, sans-serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: #ffffff;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.cta-glass-card .italic-text {
    font-style: italic;
    font-weight: 300;
}

.cta-glass-card p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #e2e8f0; /* Soft off-white for better readability */
    font-weight: 400;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .final-cta-section {
        padding: 40px 20px;
        min-height: auto;
    }
    
    .cta-glass-card {
        padding: 40px 24px;
        max-width: 100%; /* Allows the card to fill the screen on mobile */
    }
}
.site-footer {
    background-color: #ffffff;
    padding: 80px 40px 40px 40px;
    font-family: Arial, sans-serif;
    color: #475569;
    border-top: 1px solid #e2e8f0;
    margin-left: -24px;
    margin-right: -24px;
    margin-bottom: -24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.5fr; 
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Brand Column --- */
.footer-logo {
    max-width: 150px;
    margin-bottom: 24px;
}

.brand-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1e293b;
    max-width: 280px;
}

/* --- Headings --- */
.footer-heading {
    font-size: 1.8rem;
    color: #6384f5; /* Soft vibrant blue matching the design */
    font-weight: 500;
    margin-bottom: 24px;
}

/* --- Links (Menu & Socials) --- */
.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #475569;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #6384f5; /* Hover matches the heading color */
}

/* --- Contact Column --- */
.contact-email {
    display: block;
    text-decoration: none;
    color: #475569;
    margin-bottom: 24px;
    font-size: 1rem;
}

.contact-email:hover {
    color: #6384f5;
}

.location-block {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.location-block a {
    text-decoration: none;
    color: #475569;
}

.location-block a:hover {
    color: #6384f5;
}

/* --- Bottom Copyright Area --- */
.footer-bottom {
    max-width: 1400px;
    margin: 60px auto 0 auto;
    text-align: right; /* Aligns text to the right as seen in the image */
    font-size: 0.85rem;
    color: #94a3b8; /* Lighter gray for copyright */
    line-height: 1.5;
}

/* --- Responsive Layout Breakpoints --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* Drops to a 2x2 grid on tablets */
        gap: 60px 40px;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 60px 20px 20px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr; /* Stacks everything straight down on phones */
        gap: 40px;
    }
    
    .footer-bottom {
        text-align: left; /* Flips copyright to left-align on mobile for better flow */
        margin-top: 40px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&display=swap');
/* --- Global Overrides for Typography --- */
body {
    font-family: 'Inter', Arial, sans-serif; /* Applying the new premium font */
    background-color: #ebf0f6; /* Global soft background */
    color: #333333;
}

/* --- 1. Page Hero Banner --- */
.services-hero {
    position: relative;
    width: calc(100% - 48px); /* Accounts for your 24px body padding frame */
    margin: 0 auto 60px auto;
    height: 400px;
    border-radius: 24px;
    background: url('hero-meeting.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(15, 23, 42, 0.6); /* Dark tint */
    z-index: 1;
}

.page-title {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 600;
}

/* --- 2. Services Section Header --- */
.services-list-section {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #2b579a; /* Matching the blue from the screenshot */
    margin-top: 16px;
}

.section-title .italic-text {
    font-style: italic;
    font-weight: 300;
}

/* --- 3. The Service Row Layout --- */
.service-row {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* Visual card is slightly narrower than details */
    gap: 24px;
    min-height: 450px;
}

/* Visual Left Card */
.service-visual-card {
    position: relative;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: flex-end; /* Pushes content to the bottom */
    padding: 40px;
}

.visual-gradient-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Fades from dark at the bottom to transparent at the top */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
}

.visual-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.visual-content h3 {
    color: #ffffff;
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 500;
}

/* Details Right Card */
.service-details-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.details-heading {
    color: #3b71ca;
    font-size: 1.4rem;
    font-weight: 500;
    margin: 24px 0 12px 0;
}

.details-heading:first-child {
    margin-top: 0;
}

.service-details-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
}

/* Custom Checklist Styling */
.service-checklist {
    list-style: none; /* Removes standard bullets */
    padding: 0;
}

.service-checklist li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #475569;
    line-height: 1.5;
}

.service-checklist li::before {
    content: '✓'; /* Custom checkmark character */
    position: absolute;
    left: 0;
    color: #1e293b; /* Dark slate color for the check */
    font-weight: bold;
    font-size: 1.1rem;
}

/* --- 4. Partners/Logos Grid --- */
.partners-section {
    max-width: 1000px;
    margin: 60px auto;
}

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

.partner-card {
    background-color: #ffffff;
    border-radius: 16px;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.partner-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.8; /* Slightly dims logos for a cleaner look */
    transition: opacity 0.3s ease;
}

.partner-card:hover img {
    opacity: 1;
}

/* --- Mobile Breakpoints --- */
@media (max-width: 1024px) {
    .service-row {
        grid-template-columns: 1fr; /* Stacks visual on top of details */
    }
    .service-visual-card {
        min-height: 400px;
    }
}

@media (max-width: 640px) {
    .service-visual-card {
        padding: 24px;
    }
    .service-details-card {
        padding: 32px 24px;
    }
    .partner-card {
        width: 140px;
    }
}

.nav-link:hover,
.nav-link.active {
    color: #3b71ca;
    text-decoration: underline;
}

/* --- Desktop Defaults (Hide Mobile Elements) --- */
.mobile-menu-toggle {
    display: none;
}
.mobile-only-btn {
    display: none;
}

/* --- Mobile & Tablet Breakpoint (992px and below) --- */
@media (max-width: 992px) {
    /* 1. Hide Desktop Elements */
    .desktop-only-btn {
        display: none;
    }

    /* 2. Style the Header for Mobile Layout */
    .main-header {
        position: relative; /* Crucial so the absolute menu positions relative to this header */
        padding: 16px 24px;
    }

    /* 3. The 2-Line Hamburger Button */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 14px; /* Controls the gap between the two lines */
        width: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 50; /* Keeps the button above the dropdown menu */
    }

    .hamburger-line {
        width: 100%;
        height: 2px;
        background-color: #1e293b;
        transition: transform 0.3s ease, opacity 0.3s ease;
        border-radius: 2px;
    }

    /* 4. The Hidden Dropdown Menu Container */
    .nav-menu {
        position: absolute;
        top: 100%; /* Drops it immediately below the white header box */
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 32px 24px;
        border-radius: 0 0 20px 20px; /* Rounds the bottom corners */
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        
        /* Animation properties (Hidden by default) */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 40;
    }

    .main-header.is-active {
        border-radius: 20px 20px 0 0;
    }

    /* Show the mobile contact button inside the menu */
    .mobile-only-btn {
        display: inline-block;
        margin-top: 16px;
        width: 100%;
        text-align: center;
    }

    /* --- ACTIVE STATES (Triggered via JavaScript) --- */
    
    /* Reveal the menu */
    .nav-menu.is-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Animate the 2-line icon into an 'X' */
    .mobile-menu-toggle.is-active .top-line {
        transform: translateY(6px) rotate(45deg);
    }
    
    .mobile-menu-toggle.is-active .bottom-line {
        transform: translateY(-6px) rotate(-45deg);
    }
}