@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@400;500;600&family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg-color: #ffffff;
    --nav-bg: rgba(255, 255, 255, 0.92);
    --nav-text: #000000;
    --nav-text-secondary: rgba(0, 0, 0, 0.6);
    --text-primary: #000000;
    --text-secondary: rgba(0, 0, 0, 0.7);
    --accent: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    min-height: 200vh; /* for scroll demonstration */
}

/* Navbar Component Styles */
snitechx-navbar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1001;
}

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

.logo img {
    height: 28px;
    width: auto;
    display: block;
}

.desktop-nav {
    display: none;
    gap: 2.5rem;
    align-items: center;
}

.desktop-nav a {
    color: var(--nav-text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--nav-text);
}

.cta-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cta-button {
    display: none;
    background: var(--nav-text);
    color: #ffffff;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.mobile-toggle {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

.mobile-menu {
    display: none; /* hidden by default, toggled via JS */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.mobile-nav-links a {
    color: var(--nav-text);
    text-decoration: none;
    font-size: 1.75rem;
    font-weight: 500;
    opacity: 0; /* for stagger animation */
    letter-spacing: -0.01em;
}

.mobile-cta {
    margin-top: 1.5rem;
    background: var(--nav-text);
    color: #ffffff !important;
    padding: 0.85rem 2.25rem;
    border-radius: 999px;
    font-size: 1.1rem !important;
    font-weight: 600;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-container {
    padding-top: 90px;   /* just enough for navbar clearance */
    padding-bottom: 0;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-height: 100vh;
}

.hero-wrapper {
    width: 90vw;
    position: relative;
}

/* Blue card — contains everything including phone and CTA */
.hero-box {
    background-color: #016bac;
    width: 100%;
    height: auto;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Headline — centered inside the blue box */
.hero-box h1 {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 52px;
    line-height: 145%;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 auto;
    padding-top: clamp(40px, 6vh, 80px);
    max-width: 900px;
}

/* Subtext */
.hero-box p {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 145%;
    text-align: center;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    margin: 35px auto 0;
    max-width: 640px;
    padding-bottom: 0;
}

/* Phone mockup container — flex item with 50px top margin */
.hero-mockup-container {
    position: relative;
    width: 100%;
    max-width: clamp(280px, 42vh, 420px);
    flex: 0 0 auto;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 2;
}

.hero-mockup {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA pill — pinned to bottom of blue box */
.cta-input-container {
    position: absolute;
    width: calc(100% - 48px);
    max-width: 446px;
    height: 62px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 32px;
    display: flex;
    align-items: center;
    background-color: #003480;
    padding: 6px 6px 6px 8px;
    border-radius: 999px;
    box-shadow: 0 10px 40px rgba(0, 34, 80, 0.4);
    z-index: 10;
}

.discovery-input {
    flex: 1;
    height: 100%;
    background-color: #ffffff;
    border: none;
    padding: 0 1.5rem;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #333333;
    outline: none;
}

.discovery-input::placeholder {
    color: #888888;
}

.discovery-button {
    height: 100%;
    background: none;
    border: none;
    color: #ffffff;
    padding: 0 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discovery-button:hover {
    opacity: 0.85;
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 1023px) {
    /* Navbar */
    .desktop-nav, .cta-button {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }

    /* Hero wrapper */
    .hero-wrapper {
        width: 92vw;
    }



    /* Heading */
    .hero-box h1 {
        font-size: 28px;
        padding-top: 50px;
        letter-spacing: 0.05em;
        max-width: 90%;
        flex-shrink: 0;
    }

    /* Subtext */
    .hero-box p {
        font-size: 12px;
        max-width: 88%;
        margin-top: 10px;
        letter-spacing: 0.04em;
        flex-shrink: 0;
    }

    /* Phone container max-width for mobile/tablet */
    .hero-mockup-container {
        max-width: 280px;
    }

    /* CTA pill — compact and fully inside blue box */
    .cta-input-container {
        height: 50px;
        bottom: 20px;
        padding: 5px 5px 5px 6px;
    }

    .discovery-input {
        font-size: 11px;
        padding: 0 1rem;
    }

    .discovery-button {
        font-size: 11px;
        padding: 0 1rem;
        white-space: nowrap;
    }
}

@media (min-width: 1024px) {
    .logo img {
        height: 36px;
    }
    .desktop-nav, .cta-button {
        display: flex;
    }
    .mobile-toggle {
        display: none;
    }
}

/* =========================================
   SECTION LAYOUT UTILITIES
   ========================================= */
.section-spacer {
    height: 75px;
    width: 100%;
}

/* =========================================
   WHO ARE WE SECTION
   ========================================= */
.about-section {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--bg-color);
}

.about-wrapper {
    width: 90vw;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-content h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(32px, 4vw, 48px);
    color: #000000;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.about-content h2 .highlight-blue {
    color: #016bac;
}

.about-content p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.8;
    color: #333333;
    max-width: 100%;
}

/* Stats Grid */
.about-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(1, 107, 172, 0.12);
}

.stat-number-wrapper {
    display: flex;
    align-items: center;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 800; /* Ultra-bold */
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.1;
    color: #000000;
    display: inline-block;
    /* Modern digital styling */
    background: linear-gradient(135deg, #000000 30%, #016bac 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(13px, 1.2vw, 15px);
    color: #666666;
    margin-top: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Desktop 60/40 Split */
@media (min-width: 1024px) {
    .about-wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 80px;
    }

    .about-content {
        width: 58%; /* ~60% */
        padding-right: 20px;
    }

    .about-stats {
        width: 38%; /* ~40% */
        gap: 50px 40px;
    }
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--bg-color);
    overflow: hidden; /* prevents horizontal scrollbar on page level */
}

.services-container {
    width: 90vw;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.services-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(32px, 4vw, 48px);
    color: #000000;
    letter-spacing: 0.02em;
}

.services-header h2 .highlight-blue {
    color: #016bac;
}

.services-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    width: 100%;
}

/* Blue Card */
.services-blue-card {
    background: linear-gradient(180deg, #016bac 31.76%, #FFFFFF 104.08%);
    border-radius: 8px;
    padding: 32px 32px 24px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 359px;
    position: relative;
    z-index: 5; /* Sits above the sliding track */
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.08);
}

.services-blue-top {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 20px;
}

.services-logo {
    height: 24px;
    width: auto;
}

.services-blue-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: clamp(20px, 2.2vw, 22px);
    line-height: 145%;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    margin-bottom: 24px;
    max-width: 340px;
}

.services-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.service-pill {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 11px;
    padding: 6px 14px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.services-blue-bottom {
    display: none; /* Hidden on mobile */
}

/* Scrollable Track Wrapper */
.services-track-wrapper {
    width: 100%;
    position: relative;
    z-index: 1; /* Sits behind blue card */
    display: flex;
    flex-direction: column;
}

.services-track {
    display: flex;
    align-items: stretch;
    flex: 1;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.services-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Service Card */
.service-card {
    background: #EBEBEB;
    border-radius: 8px;
    overflow: hidden;
    width: 320px;
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-image-wrapper {
    width: 100%;
    height: 180px;
    background-color: #dddddd;
    overflow: hidden;
}

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

.service-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    margin-bottom: 12px;
    line-height: 140%;
}

.service-content p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 145%;
    letter-spacing: 0.05em;
    color: #000000;
}

/* Mobile Swipe Cue */
.mobile-swipe-cue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #666666;
    margin-top: 8px;
    animation: pulseSwipe 2s infinite ease-in-out;
}

@keyframes pulseSwipe {
    0%, 100% { opacity: 0.5; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(4px); }
}

@media (min-width: 1024px) {
    .mobile-swipe-cue {
        display: none;
    }
}

/* Desktop Layout */
@media (min-width: 1024px) {
    .services-body {
        flex-direction: row;
        align-items: stretch;
        gap: 0;
    }

    .services-blue-card {
        width: 422px;
        flex: 0 0 422px;
        min-height: 359px;
    }

    .services-blue-bottom {
        display: flex;
        justify-content: flex-end;
        width: 100%;
        margin-top: 24px;
    }

    .service-arrows {
        display: flex;
        gap: 12px;
    }

    .service-arrow {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #FFFFFF;
        border: 1px solid #000000;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .service-arrow:hover {
        background: #f0f0f0;
        transform: scale(1.05);
    }

    .services-track-wrapper {
        flex: 1;
        overflow: hidden;
        margin-left: -20px;
        padding-left: 44px; /* Gives gap between blue card and first service card */
    }
}

/* =========================================
   PROCESS SECTION
   ========================================= */
.process-section {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--bg-color);
}

.process-container {
    width: 90vw;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(32px, 4vw, 48px);
    color: #000000;
    letter-spacing: 0.02em;
}

.process-header h2 .highlight-blue {
    color: #016bac;
}

.process-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

/* Left Grey Box */
.process-image-box {
    background-color: #D9D9D9;
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 1;
    max-width: 540px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.process-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Right Steps List */
.process-steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateX(8px);
}

.step-badge {
    background-color: #000000;
    color: #FFFFFF;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    flex-shrink: 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .step-badge {
    background-color: #016bac;
    box-shadow: 0 0 15px rgba(1, 107, 172, 0.4);
}

.step-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.step-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: #000000;
    margin-bottom: 8px;
    line-height: 140%;
}

.step-content p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    line-height: 150%;
    letter-spacing: 0.02em;
}

/* Desktop Layout */
@media (min-width: 1024px) {
    .process-body {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 80px;
    }

    .process-image-box {
        flex: 0 0 45%;
        margin: 0;
    }

    .process-steps-list {
        flex: 1;
        gap: 40px;
    }
}

/* =========================================
   WHAT SETS US APART SECTION
   ========================================= */
.apart-section {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--bg-color);
}

.apart-container {
    width: 90vw;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.apart-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(32px, 4vw, 48px);
    color: #000000;
    letter-spacing: 0.02em;
}

.apart-header h2 .highlight-blue {
    color: #016bac;
}

/* Grid */
.apart-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
}

/* Card */
.apart-card {
    background-color: #EBEBEB;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apart-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(1, 107, 172, 0.08);
}

.apart-card-top h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: #000000;
    margin-bottom: 16px;
    line-height: 140%;
}

.apart-card-top h3 .blue-dot {
    color: #016bac;
}

.apart-card-top p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    line-height: 160%;
    margin-bottom: 24px;
}

/* Bottom Area with Divider */
.apart-card-bottom {
    border-top: 1px solid #016bac;
    padding-top: 20px;
    margin-top: auto; /* Pushes bottom area to align perfectly at bottom across all cards */
    display: flex;
    flex-direction: column;
}

.apart-stat-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
}

.apart-stat-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: #000000;
    line-height: 1.2;
}

.apart-stat-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #666666;
}

.apart-highlight-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #086088;
    margin-top: 8px;
    line-height: 140%;
}

/* Desktop Grid */
@media (min-width: 1024px) {
    .apart-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* =========================================
   INDUSTRIES SECTION
   ========================================= */
.industry-section {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--bg-color);
}

.industry-container {
    width: 90vw;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.industry-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(32px, 4vw, 48px);
    color: #000000;
    letter-spacing: 0.02em;
}

.industry-header h2 .highlight-blue {
    color: #016bac;
}

/* Grid */
.industry-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile 1 column */
    gap: 30px;
    width: 100%;
}

/* Card Wrapper for Drop Shadow */
.industry-card-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.05));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.industry-card-wrapper:hover {
    transform: translateY(-6px);
    filter: drop-shadow(0 12px 28px rgba(1, 107, 172, 0.15));
}

.industry-card-wrapper:hover .industry-image {
    transform: scale(1.08);
}

/* Card Container with Chamfered Clip Path */
.industry-card {
    background-color: #EBEBEB;
    display: flex;
    flex-direction: column;
    padding: 24px 24px 44px 24px;
    min-height: 360px;
    width: 100%;
    flex: 1;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), calc(100% - 36px) 100%, 0 100%);
}

.industry-image-wrapper {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.industry-image {
    max-width: 90%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.industry-divider {
    width: calc(100% + 48px);
    margin-left: -24px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.12);
    margin-top: 10px;
    margin-bottom: 20px;
}

.industry-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.industry-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #016bac;
    margin-bottom: 8px;
    line-height: 140%;
}

.industry-content p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #333333;
    line-height: 150%;
}

/* Tablet Grid (2x2) */
@media (min-width: 768px) and (max-width: 1023px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Desktop Grid (3x3) */
@media (min-width: 1024px) {
    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* Bottom CTA Button matching Figma Rectangle 85 */
.industry-cta-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
}

.industry-cta-button {
    width: 180px;
    height: 50px;
    background: #000000;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.industry-cta-button:hover {
    transform: translateY(-2px);
    background: #016bac;
    box-shadow: 0 8px 24px rgba(1, 107, 172, 0.25);
}

/* Tablet & Desktop Sizing */
@media (min-width: 768px) {
    .industry-cta-button {
        width: 216px;
        height: 63px;
        font-size: 16px;
    }
}

/* =========================================
   BLOG SECTION
   ========================================= */
.blog-section {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--bg-color);
    padding: 0 0 100px 0;
}

.blog-container {
    width: 90vw;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(32px, 4vw, 48px);
    color: #000000;
    letter-spacing: 0.02em;
}

.blog-header h2 .highlight-blue {
    color: #016bac;
}

/* Grid */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
}

/* Card */
.blog-card {
    background: #D9D9D9;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(1, 107, 172, 0.12);
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-card:hover .blog-arrow-btn {
    background-color: #000000;
    transform: rotate(45deg);
}

.blog-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
    background-color: #cccccc;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.blog-content {
    padding: 28px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.blog-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #000000;
    line-height: 140%;
    margin-bottom: 32px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.blog-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.blog-time {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #000000;
    line-height: 1.2;
}

.blog-author {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #000000;
    line-height: 1.2;
}

.blog-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #016bac;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(1, 107, 172, 0.3);
}

/* Tablet Grid (2 columns) */
@media (min-width: 768px) and (max-width: 1023px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Desktop Grid (3 columns) */
@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* =========================================
   BLOG DETAIL SECTION (blog.html)
   ========================================= */
.blog-detail-section {
    width: 100%;
    background-color: var(--bg-color);
    padding: 140px 0 80px 0;
    display: flex;
    justify-content: center;
}

.blog-detail-wrapper {
    width: 90vw;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.blog-detail-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
}

.blog-detail-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 500;
    color: #016bac;
    line-height: 1.4;
}

.blog-detail-meta {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #666666;
    display: flex;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 24px;
}

.blog-detail-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-detail-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 16px;
}

.blog-detail-subheading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 600;
    color: #003480;
    margin-bottom: 12px;
}

.blog-detail-p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    letter-spacing: 0.01em;
}

.blog-detail-mix {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    background: #FFFFFF;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
    .blog-detail-mix {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

.blog-detail-mix-img {
    width: 100%;
    height: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* =========================================
   CTA BANNER & FOOTER SECTION
   ========================================= */
.footer-overlap-wrapper {
    position: relative;
    width: 100%;
    margin-top: 120px;
}

/* Overlapping Blue Banner */
.cta-banner-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%); /* Pulls the banner 50% upwards so it perfectly overlaps the white background and navy footer */
    width: 90vw;
    max-width: 1400px;
    z-index: 10;
}

.cta-banner-box {
    background: linear-gradient(135deg, #003B73 0%, #014785 100%);
    border-radius: 16px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: 0 20px 40px rgba(0, 59, 115, 0.25);
}

.cta-banner-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.cta-banner-content h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(24px, 3vw, 36px);
    color: #FFFFFF;
    line-height: 130%;
}

.cta-banner-content p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.5vw, 16px);
    color: rgba(255, 255, 255, 0.9);
}

.brochure-button {
    background: #FFFFFF;
    color: #003B73;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    white-space: nowrap;
}

.brochure-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

/* Dark Navy Footer */
.snitechx-footer {
    background-color: #020E1E; /* Rich deep navy */
    width: 100%;
    padding-top: 240px; /* Ample clearance for the overlapping blue banner */
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
    color: #FFFFFF;
}

.footer-container {
    width: 90vw;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    width: 100%;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 32px;
    width: auto;
    align-self: flex-start;
}

.footer-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 160%;
}

.footer-col h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #016bac;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.phone-number, .email-address {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #FFFFFF;
}

.location-address {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 150%;
}

.map-iframe-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.footer-bottom-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 80px;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-socials {
    display: flex;
    gap: 24px;
}

.footer-socials a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-socials a:hover {
    color: #016bac;
}

/* =========================================
   CONTACT US SECTION
   ========================================= */
.contact-section {
    width: 100%;
    background-color: var(--bg-color);
    padding: 20px 0 80px 0;
    position: relative;
    display: flex;
    justify-content: center;
}

#connect {
    position: absolute;
    top: -100px;
}

.contact-wrapper {
    width: 90vw;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
}

/* Left Direct Card */
.contact-direct-card {
    background: linear-gradient(180deg, #016bac 0%, #004875 100%);
    border-radius: 16px;
    padding: 48px 40px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(1, 107, 172, 0.2);
}

.contact-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.contact-direct-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(22px, 2.5vw, 26px);
    font-weight: 600;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.contact-direct-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 36px;
    color: #FFFFFF;
}

.contact-phone-box {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 16px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.contact-phone-box:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.contact-email-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.contact-email-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Right Interactive Form Card */
.contact-form-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form-card form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
}

.form-group label span {
    color: #016bac;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #333333;
    background: #FFFFFF;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input {
    height: 52px;
}

.form-group select {
    height: 52px;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%23333333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #016bac;
    box-shadow: 0 0 0 3px rgba(1, 107, 172, 0.1);
}

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

.contact-submit-btn {
    background: #000000;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    height: 56px;
    width: 100%;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-submit-btn:hover {
    background: #222222;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .contact-form-card {
        padding: 32px 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Tablet Layout (2 columns) */
@media (min-width: 768px) and (max-width: 1023px) {
    .cta-banner-box {
        flex-direction: row;
        text-align: left;
        padding: 56px 48px;
    }

    .cta-banner-content {
        text-align: left;
        max-width: 60%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 56px 40px;
    }

    .footer-bottom-row {
        flex-direction: row;
    }
}

/* Desktop Layout (4 columns) */
@media (min-width: 1024px) {
    .cta-banner-box {
        flex-direction: row;
        text-align: left;
        padding: 64px 64px;
        background: linear-gradient(135deg, #003480 0%, #001f4d 100%);
        box-shadow: 0 20px 40px rgba(0, 52, 128, 0.25);
    }

    .contact-direct-card {
        background: linear-gradient(180deg, #003480 0%, #001f4d 100%);
        box-shadow: 0 20px 40px rgba(0, 52, 128, 0.25);
    }

    .cta-banner-content {
        text-align: left;
        max-width: 65%;
    }

    .footer-grid {
        grid-template-columns: 2fr 1.5fr 1.5fr 2.5fr;
        gap: 60px;
    }

    .footer-bottom-row {
        flex-direction: row;
    }
}

