/* File Path: public/frontend/css/frontend.css */
  
/* ========================================================= */
/* ===================  DESKTOP HEADER  ==================== */
/* ========================================================= */
    /* Font Awesome Brands */
    @font-face {
    font-family: "Font Awesome 5 Brands";
    src: url("/fonts/fa-brands-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    }

    /* Font Awesome Solid */
    @font-face {
    font-family: "Font Awesome 5 Free";
    src: url("/fonts/fa-solid-900.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
    }

    /* Bootstrap Icons */
    @font-face {
    font-family: "Bootstrap Icons";
    src: url("/fonts/bootstrap-icons.woff2") format("woff2");
    font-weight: 1; /* or normal */
    font-style: normal;
    font-display: swap;
    }
    html {
        scroll-padding-top: 100px;
    }    
    
    /* Sticky Contact Us Button */
    .sticky-contact-btn {
        position: fixed;
        right: 0;
        top: 40%;
        z-index: 1000;
        background-color: #ef3639;
        color: white;
        width: 40px;
        height: 160px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }
    
    .sticky-contact-btn:hover {
        background: rgba(64,176,70,1) !important;
    }
    
    /* Rotate text vertically */
    .sticky-contact-btn .rotate-text {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        font-size: 1rem;
        font-family: 'Electrolize', sans-serif;
        font-weight: bold;
        letter-spacing: 1px;
    }

    .desktop-header .social a,
    .tablet-header .social a,
    .mobile-menu .mobile-social a,
    .footer-social a {
        color: #ffffff !important;
    }

    .industry-card,
    .industries-mobile__card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    /* when JS adds .in-view */
    .industry-card.in-view,
    .industries-mobile__card.in-view {
    opacity: 1;
    transform: translateY(0);
    }

    .flowchart .vt,
    .flowchart .vb-cen-lin,
    .flowchart .t-circle-line,
    .flowchart [id^="ht-lef-pip"],
    .flowchart [id^="ht-rit-pip"] {
    transform-origin: top center;
    transform: scaleY(0);
    }

    /* make the step panels invisible until scroll */
    .flowchart .ht-lef-dis,
    .flowchart .ht-rit-dis {
    opacity: 0;
    y: 30px;
    }

    
    @media (min-width: 992px) {
        .desktop-header {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 2rem;
            top: 0;
            z-index: 1000;
        }
        .desktop-header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 80%;
            max-width: 1600px; /* Optional: prevent too wide on 4K screens */
        }
        .sticky-header {
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .desktop-header .brand { display: flex; align-items: center; gap: .5rem; }
        .desktop-header .logo { width: 60px; height: 60px; }
        .desktop-header .company-name { color: #fff; font-size: 1.6rem; font-weight: 600; }
        .desktop-header .nav-links a {
        color: #fff; margin: 0 1rem; text-decoration: none; font-weight: 500; font-size: 1.2rem;
        }
        .desktop-header .nav-links a:hover { opacity: 0.8; }
        .desktop-header .actions { display: flex; align-items: center; gap: 1rem; }
        .desktop-header .phone-btn {
        background: transparent; border: none; color: #fff; font-size: 1.2rem;
        }
        .desktop-header .social a { color: #fff; margin-left: .5rem; font-size: 1.3rem; }
    
        /* hide other headers & mobile menu */
        .tablet-header, .mobile-header, .mobile-menu { display: none !important; }
        
        /* Hide number by default */
        .phone-btn {
            background: transparent;
            border: none;
            color: #ffffff;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }
        .phone-btn .phone-number {
            display: none;
        }
        
        /* When toggled */
        .phone-btn.show-number {
            background: #ffffff;
            color: #1e1c60;
            border-radius: 40px;
            padding: 6px 14px;
            font-weight: 600;
        }
        .phone-btn.show-number i {
            color: #1e1c60;
        }
        .phone-btn.show-number .phone-number {
            display: inline;
        }
        
    }

/* ========================================================= */
/* =================== GLOBAL FOOTER STYLES ================= */
/* ========================================================= */

    .newsletter-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 1rem;
    }
    
    .newsletter-input,
    .subscribe-btn {
        width: 90%;
        max-width: 250px;
        font-family: 'Electrolize', sans-serif;
        text-align: center;
        box-sizing: border-box;
    }
    
    .newsletter-input::placeholder {
        color: gray;
    }

      
/* ========================================================= */
/* ===================  DESKTOP FOOTER  ==================== */
/* ========================================================= */

    @media (min-width: 992px) {
        .main-footer {
        background-color: #000;
        padding: 3rem 0;
        color: #fff;
        font-family: 'Electrolize', sans-serif;
        }
    
        .main-footer h5,
        .footer-subheading {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 1rem;
        }
    
        .footer-links {
        list-style: none;
        padding: 0;
        }
    
        .footer-links li {
        margin-bottom: 0.4rem;
        font-size: 1.2rem;
        }
    
        .footer-links a {
        color: #fff;
        text-decoration: none;
        }
    
        .footer-links a:hover {
        color: #ef3639;
        }
    
        .social-icons a {
        color: #ef3639;
        font-size: 1.6rem;
        margin-left: 10px;
        }
    
        .social-icons a:hover {
        color: #29A9A9;
        }
    
        .newsletter-img {
        width: 100%;
        max-height: 200px;
        object-fit: contain;
        margin-bottom: 1rem;
        }
    
        .newsletter-input {
        padding: 0.6rem 1rem;
        font-size: 1rem;
        border: 1px solid #333;
        border-radius: 1rem;
        background-color: #fff;
        color: #000;
        margin-bottom: 0.75rem;
        }
    
        .subscribe-btn {
        padding: 0.6rem 1rem;
        font-size: 1rem;
        font-weight: bold;
        border-radius: 1rem;
        border: none;
        background-color: #ef3639;
        color: #fff;
        }
    
        .subscribe-btn:hover {
        background-color: #29A9A9;
        color: #fff;
        }
    
        .main-footer .col-md-3.text-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        }
    }
  
/* ============================================================================ */
/* ===================  DESKTOP LANDING PAGE HOME SECTION  ==================== */
/* ============================================================================ */

    :root{
        --hero-title-size: 2.75rem;
        --hero-desc-size: 1.10rem;
        --info-tag-size: 1.40rem;
        --info-subtag-size: 1.10rem;
        --delivery-tag-size: 2rem;
        --cta-font-size: 1rem;
        --qr-img-width: 200px;
        --info-box-gap: 1rem;
    }
    
    
    .hero-section{
        color:#fff;
        min-height:70vh;
        display:flex;
        align-items:center;
    }
    
    /* ----------------  DESKTOP ≥992px  ---------------- */
    @media (min-width:992px){
    
        .hero-container{width:90%;max-width:1400px;padding:0 1rem;margin:auto; }
    
        /* left column */
        .hero-left{display:flex;flex-direction:column;justify-content:center;height:100%; }
        .hero-left-inner{display:flex;flex-direction:column;justify-content:space-between;gap:1.5rem;height:100%;}
        .hero-title{font-size:var(--hero-title-size);font-weight:600;line-height:1.3;}
        .hero-desc{font-size:var(--hero-desc-size);margin:0;}
    
        .btn-hero-cta{
            font-size:var(--cta-font-size);
            padding:.5rem 1.5rem;
            font-weight:600;
            color:#fff;
            background: #ef3639 !important;
            /* border:2px solid #fff; */
            border-radius:50px;
            transition:.3s;
        }
        .btn-hero-cta:hover{background: rgba(64,176,70,1) !important; transform:scale(1.05);}
    
        .info-box{
            width:90%;
            background:rgba(255,255,255,.10);
            border-radius:1rem;
            padding:1rem 1.5rem;
            display:flex;justify-content:space-between;
            gap:var(--info-box-gap);
        }
        .info-text{width:60%;}
        .info-qr{display:flex;justify-content:flex-end;align-items:center;}
        .qr-img{width:var(--qr-img-width);max-width:100%;height:auto;}
        #qrLottie svg { width: 100%; height: auto;}
        .info-tag{font-size:var(--info-tag-size);font-weight:500;}
        .info-subtag{font-size:var(--info-subtag-size);opacity:.9;}
    
        .social-icons{margin-top:.75rem;display:flex;gap:1rem;}
        .social-icons a{color:#fff;font-size:1.25rem;transition:color .3s;}
        .social-icons a:hover{color:#ef3639;}
    
        /* right column */
        .delivery-tag{font-size:var(--delivery-tag-size);font-weight:500;text-align:center;}
        .hero-right{width:100%;height:100%;min-height:500px;}
        .hero-lottie-animation{width:100%;height:100%;max-width:100%;}
    }
    
    /* =============================================================================== */
    /* ===================  DESKTOP LANDING PAGE SERVICE SECTION  ==================== */
    /* =============================================================================== */

    @media (min-width: 992px) {

        /* ───────────── BACKGROUND & SECTION ───────────── */
        .srv-section {
            padding: 4rem 0;
        }

        .srv-wrapper {
            background: #fff;
            width: 90%;
            margin: 0 auto;                 /* centers it inside .srv-section */
            padding: 16px; 
            border-radius: 1.75rem;
            box-sizing: border-box;         /* ensures padding doesn't break width */
        }
        
        .srv-container {
            background: transparent;        /* since white is on wrapper now */
            border-radius: 1.5rem;
            overflow: hidden;
            width: 100%;
            margin: 0;
            padding: 0;
        }
        .fixed-service-height {
            min-height: 200px; /* or whatever works well for all 4 blocks */
            align-items: center;
        }   
    
        .srv-intro-wrapper {
            margin-bottom: 5rem;
            padding: 0 2rem;
        }
            
        .srv-page-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.75rem;
        }
            
        .srv-page-subtitle {
            font-size: 1.25rem;
            line-height: 1.6;
            color: #ffffff;
            max-width: 900px;
            margin: 0 auto;
        }
          
        /* ───────────── HEADER ROW ───────────── */
        .srv-header {
            margin-bottom: 0;                      /* no gap to next row */
            align-items: center;
            border-radius: 1.5rem 1.5rem 0 0;      /* top-left and top-right rounded */
            overflow: hidden;
        }
    
        .srv-heading h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
        }
    
        .srv-tagline {
        font-size: 1.75rem;
        font-weight: 500;
        color: #000;
        text-align: center;
        }

        /* Ensure .srv-header row stretches all children equally */
        .srv-header {
            display: flex;
            align-items: stretch; /* Ensures equal height */
        }
        
        /* LEFT COLUMN (heading) */
        #srvHeadingBg {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 1.25rem;
            color: #fff;
            border-top-right-radius: 1rem;
        }
        
        /* RIGHT COLUMN (tagline) */
        .srv-tagline-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 1.25rem;
            background: #fff;
            color: #000;
        }
        
        .srv-tagline-wrapper h3 {
            margin: 0;
            font-size: 1.75rem;
            font-weight: 500;
            text-align: center;
        }
        
        /* ───────────── BODY ROW ───────────── */
        .srv-body {
            border-radius: 0;
            margin-bottom: 0;
            color: #fff;
            padding: 3rem 2.5rem;
          
            height: 380px;               /* ✅ Fixed height */
            max-height: 380px;
            overflow: hidden;            /* ✅ Prevents content from pushing it */
            display: flex;
            align-items: center;         /* Vertically center inner row */
          }
          
    
        .srv-desc {
        font-size: 1.4rem;
        line-height: 1.6;
        }
    
        .srv-btn-group-wrapper {
            display: flex;
            width: 50%;
            gap: 1rem;
            margin-top: 1rem;
        }
        

        .srv-btn-explore,
        .srv-btn-contact {
            flex: 1;
            text-align: center;
            border-radius: 50px;
            padding: 0.6rem 2rem;
            font-weight: 600;
            font-size: 1.2rem;
            background: #fff !important;
            color: #000 !important;
            border: none !important;
            text-decoration: none !important;
            transition: all 0.3s ease;
            display: inline-block;
        }

        /* Hover + Active state for both */
        .srv-btn-explore:hover,
        .srv-btn-contact:hover,
        .srv-btn-explore.active,
        .srv-btn-contact.active {
            background: rgba(64,176,70,1) !important;
            color: #fff !important;
            text-decoration: none !important;
        }

        /* Contact: Transparent with border */
        .btn-contact {
        background: transparent;
            color: #fff;
            border: 2px solid #fff;
        }

        .btn-contact:hover {
            background: #fff;
            color: #000;
        }
    
        /* ───────────── TABS ROW ───────────── */
        .srv-tabs {
            margin-top: 0;                           /* no gap above */
            background: #fff;
            border-radius: 0 0 1.5rem 1.5rem;        /* bottom-left and bottom-right rounded */
            overflow: hidden;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            padding: 0;
        }
    
        .srv-tab {
            flex: 1 1 25%;
            text-align: center;
            padding: 1rem 0;
            font-size: 1.2rem;
            font-weight: 600;
            border: none;                        /* ✅ Remove ALL borders */
            cursor: pointer;
            transition: background 0.3s, color 0.3s;
            background: #fff;
            color: #000;
            border-radius: 0; 
        }
    
        .srv-tab.active {
            background: var(--active-tab-bg, #000);  /* ✅ Color injected via JS */
            color: #fff;
            border-radius: 0 0 1rem 1rem;            /* ✅ Rounded bottom-left & bottom-right only */
        }
        
        .srv-tab:not(.active):hover {
            background: #f5f5f5;
            color: #000;
        }

        /* ─────────── Visual Column Full-Width Fix ─────────── */
        .srv-visual-column {
            display: flex;
            align-items: stretch !important;
            justify-content: center;
            height: 100%; 
        }
        
        /* Override the old max-width and force full height */
        .srv-visual {
            width: 100% !important;
            height: 100% !important;
            display: flex;
        }
            
        #serviceVisual {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        #serviceVisual canvas,
        #serviceVisual svg,
        #serviceVisual img {
          width: 100% !important;
          height: 100% !important;
          object-fit: contain;         /* or "cover" if you want edge cropping */
          display: block;
        }
        
    
    
    }
    
    /* ======================================================================== */
    /* ========BASE LANDING PAGE INDUSTRY SECTION CODE STYLES (all devices)==== */
    /* ======================================================================== */

    /* Flush out Bootstrap padding so edges are clean */
    .row.no-edge .col-12,
    .row.no-edge .col-sm-6 {
    padding-left: 0;
    padding-right: 0;
    }
    .industry-grid {
    margin-left: 0;
    margin-right: 0;
    }
    .industry-grid > .col-md-6 {
    padding-left: 0;
    padding-right: 0;
    }

    /* Industry cards: core layout, masks, and hover effect */
    .industry-card {
    position: relative;
    max-height: 18rem;
    min-height: 18rem;
    overflow: hidden;
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
    -webkit-mask-mode: alpha;
            mask-mode: alpha;
    z-index: 2;
    margin: 8px;
    }
    .industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
    }

    /* Quarter‐circle holes */
    .industry-card.card1 {
    -webkit-mask-image: radial-gradient(circle at bottom right,
        transparent 9.5rem, rgba(0,0,0,0.5) 9.9rem, black 10rem);
            mask-image: radial-gradient(circle at bottom right,
        transparent 9.5rem, rgba(0,0,0,0.5) 9.9rem, black 10rem);
    }
    .industry-card.card2 {
    -webkit-mask-image: radial-gradient(circle at bottom left,
        transparent 9.5rem, rgba(0,0,0,0.5) 9.9rem, black 10rem);
            mask-image: radial-gradient(circle at bottom left,
        transparent 9.5rem, rgba(0,0,0,0.5) 9.9rem, black 10rem);
    }
    .industry-card.card3 {
    -webkit-mask-image: radial-gradient(circle at top right,
        transparent 9.5rem, rgba(0,0,0,0.5) 9.9rem, black 10rem);
            mask-image: radial-gradient(circle at top right,
        transparent 9.5rem, rgba(0,0,0,0.5) 9.9rem, black 10rem);
    }
    .industry-card.card4 {
    -webkit-mask-image: radial-gradient(circle at top left,
        transparent 9.5rem, rgba(0,0,0,0.5) 9.9rem, black 10rem);
            mask-image: radial-gradient(circle at top left,
        transparent 9.5rem, rgba(0,0,0,0.5) 9.9rem, black 10rem);
    }

    /* Card typography */
    .industry-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    line-height: 1.3;
    white-space: normal;
    word-break: break-word;
    max-width: 60%;
    text-align: inherit;
    padding-top: 11px;
    padding-bottom: 11px;
    }
    .industry-desc {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.4;
    text-align: inherit;
    }

    /* Interior layout & colors */
    .card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    }
    .card-image {
    flex: 1;
    }
    .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    }
    .card-text {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    }
    .industry-icon {
    width: 1.5rem;
    margin-right: 0.5rem;
    }

    /* Background & text per card */
    .industry-card.card1 { background: #80ccba; color: #2b2d6c; }
    .industry-card.card2 { background: #dfe4cd; color: #5f4779; }
    .industry-card.card3 { background: #d9e1df; color: #2b2d6c; }
    .industry-card.card4 { background: #4ba9f1; color: #043386; }

    /* Conditional padding */
    .industry-card.card1,
    .industry-card.card2 { padding-top: 0; }
    .industry-card.card3,
    .industry-card.card4 { padding-bottom: 0; }

    /* Text alignment overrides */
    .card1 .card-text { text-align: left;  align-items: flex-start; }
    .card2 .card-text { text-align: right; align-items: flex-end; }
    .card3 .card-text { text-align: left;  align-items: flex-start; }
    .card4 .card-text { text-align: right; align-items: flex-end; }

    .card4 .card-text {
        justify-content: flex-end !important;  /* 🔽 pushes all children to bottom */
        align-items: flex-end;                /* 🧭 aligns them to the right (as you had) */
        gap: 0.5rem;                          /* spacing between title & desc */
      }
      
      
/* ======================================================================== */
/* =========LANDING PAGE INDUSTRY SECTION DESKTOP OVERRIDES (≥992px)======= */
/* ======================================================================== */
    @media (min-width: 992px) {
        
    .industry-section {
        padding: 4rem 0;
    }
    .industry-container {
        width: 85%;
        margin: 0 auto;
    }

    /* Heading & subheading */
    .industry-heading {
        color: #fff;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    .industry-subheading {
        color: #fff;
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* Cards wrapper & central circle */
    .industry-cards-wrapper {
        position: relative;
        margin-top: 2rem;
    }
    .industry-central-circle {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 20rem;
        height: 20rem;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        overflow: hidden;
        z-index: 1;
    }
    }

/* =============================================================================== */
/* ===================  DESKTOP LANDING PAGE WHY US SECTION  ==================== */
/* =============================================================================== */
    @media (min-width: 992px) {
        .why-us-section {
            --gap: 8px;
            --base: clamp(2rem, 8cqi, 80px);
            --speed: 0.6s;
            --easing: ease;
            color: #000;
        }


        .why-us-section {
            color: #fff;
            padding: 4rem 0;
        }


        .why-us-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .why-us-intro {
            font-size: 1.2rem;
            max-width: 78ch;
            margin: 0 auto 3rem;
            line-height: 1.55;
            opacity: 0.9;
        }

        .why-us-grid {
            list-style: none;
            margin: 0 auto;
            padding: 0;
            display: grid;
            grid-template-columns: 10fr 1fr 1fr 1fr 1fr 1fr 1fr;
            gap: var(--gap);
            height: clamp(500px, 40vh, 760px);           /* ↑ more vertical room */
            width: min(1200px, calc(100% - 2rem));       /* ↑ more horizontal width */
            transition: grid-template-columns var(--speed) var(--easing);
            container-type: inline-size;
        }

        /* collapsed (inactive) cards = dark text on light panel */
        .why-us-grid li {
            position: relative;
            overflow: hidden;
            min-width: var(--base);
            border-radius: 8px;
            border: 1px solid color-mix(in hsl, canvas, canvasText 50%);
            background: light-dark(#fff, #000);
            color: #2b2d6c;
        }

        /* expanded (active) card = white text */
        .why-us-grid li[data-active="true"] {
            color: #fff;
        }

        .why-card {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            gap: 1rem;
            padding: 1rem;
            width: var(--why-card-width, 100%);
            font-family: monospace;
            background: linear-gradient(90deg,#1e1c60,#9f5590);
        }

        /* Bring heading, paragraph, and link above the image */
        .why-card h3,
        .why-card p,
        .why-card a {
            position: relative;
            z-index: 2;
            color: inherit;
        }

        /* Rotated heading, vertically centered (collapsed mode) */
        .why-card h3 {
            position: absolute;
            top: 1rem;
            left: 2.2rem;
            transform: rotate(90deg);
            transform-origin: top left;
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            white-space: nowrap;
            color: #ffffff;
            z-index: 2;
            padding-right: 0.5rem; /* avoids clipping */
            max-width: calc(100% - 2rem);
            overflow: hidden;
            text-overflow: ellipsis;
        }


        .why-card p {
            font-size: 1.2rem;
            font-weight: 700;
            line-height: 1.4;
            margin: 0;
            opacity: 0;
        }

        .why-card a {
            font-size: 0.85rem;
            font-weight: 600;
            color: inherit;
            opacity: 0;
            text-underline-offset: 4px;
        }

        .why-card a:hover {
            text-decoration: underline;
        }

        .why-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 85%;
            object-fit: cover;
            filter: grayscale(1) brightness(1.4);
            transform: scale(1.1);
            transition: filter var(--speed) var(--easing), transform var(--speed) var(--easing);
            z-index: 0;
        }

        /* Dark gradient overlay on active card */
        .why-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 40%, transparent 70%);
            opacity: 0;
            transition: opacity var(--speed) var(--easing);
            z-index: 1;
        }

        .why-us-grid li[data-active="true"] .why-card::after {
            opacity: 1;
        }

        /* Activation states for content */
        .why-us-grid li[data-active="true"] img {
            filter: grayscale(0) brightness(1);
            transform: scale(1);
        }

        .why-us-grid li[data-active="true"] :is(h3, p, a) {
            opacity: 1;
            transition: opacity var(--speed) var(--easing) 0.15s;
        }
    }

/* ==================================================================================== */
/* ===================  DESKTOP LANDING PAGE TESTIMONIALS SECTION  ==================== */
/* ==================================================================================== */

    .testimonial-section {
        color: #fff;
        overflow: hidden;
        padding: 3rem 0;
    }
    
    .testimonial-inner-wrapper {
        width: 90%;
        max-width: 90%;
        overflow: hidden;
    }
    
    /* Title Styling */
    .testimonial-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    /* Marquee Wrapper */
    .testimonial-marquee-wrapper {
        position: relative;
        overflow: hidden;
    }
    
    /* Marquee Row Container */
    .testimonial-marquee {
        white-space: nowrap;
        overflow: hidden;
    }
    
    /* Row Settings */
    .testimonial-row {
        display: flex;
        gap: 2rem;
        flex-wrap: nowrap;
    }
    
    /* Testimonial Card */
    .testimonial-card {
        flex: 0 0 calc(33.333% - 2rem); /* 3 per row with gap */
        padding: 1.5rem;
        min-width: 300px;
        max-width: 100%;
        color: #fff;
        background-color: #4ba9f1; /* fallback */
        border-radius: 1rem;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
        white-space: normal;
    }
    
    /* Testimonial Text */
    .testimonial-text {
        font-size: 1.2rem;
        line-height: 1.6;
        overflow: hidden;
        white-space: normal;
        text-overflow: ellipsis;
    }
    
    /* Author & Role */
    .testimonial-author {
        font-size: 1.3rem;
        font-weight: 600;
        margin-top: 1rem;
    }
    
    .testimonial-role {
        font-size: 1rem;
        opacity: 0.9;
    }
    
    /* Background colors (can be assigned via inline style or randomizer class) */
    .testimonial-bg-1 { background-color: #1ea1bb; }
    .testimonial-bg-2 { background-color: #80ccba; }
    .testimonial-bg-3 { background-color: #b0a8f6; }
    .testimonial-bg-4 { background-color: #4ba9f1; }
    .testimonial-bg-5 { background-color: #bab3ec; }
    .testimonial-bg-6 { background-color: #5bafc0; }
    
    /* =================== Marquee Animations =================== */
    .marquee-left .testimonial-row {
        animation: marquee-left 20s linear infinite;
    }
    
    .marquee-right .testimonial-row {
        animation: marquee-right 22s linear infinite;
    }
    
    @keyframes marquee-left {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-100%); }
    }
    
    @keyframes marquee-right {
        0%   { transform: translateX(-100%); }
        100% { transform: translateX(0); }
    }

/* ================================================================================== */
/* ===================  DESKTOP LANDING PAGE PROCESS SECTION  ======================= */
/* ================================================================================== */
    
    #process h2 {
        font-size: 2.5rem;
        font-weight: bold;
    }
    #process h4 {
        font-size: 1.6rem;
        color: rgba(255,255,255,0.8);
    }
    #process p.lead {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto;
        color: rgba(255,255,255,0.9);
    }

    #process .text-muted {
        color: #fff !important;
    }
    
    
    /* ======================= Flowchart Grid ======================= */
    .flowchart {
        display: grid;
        grid-template-columns: 40% 50px 10px 6px 10px 50px 40%;
        grid-template-rows: 10px 40px 10px 6px 10px auto 10px;
        grid-template-areas:
        ". . . vt-cen-lin . . ."
        "ht-lef-dis . . vt . . ht-rit-dis"
        "ht-lef-dis . t-circle-line t-circle-line t-circle-line . ht-rit-dis"
        "ht-lef-dis ht-lef-pip t-circle-line t-circle-line t-circle-line ht-rit-pip ht-rit-dis"
        "ht-lef-dis . t-circle-line t-circle-line t-circle-line . ht-rit-dis"
        "ht-lef-dis . . vb-cen-lin . . ht-rit-dis"
        ". . . vb-cen-lin . . .";

        justify-content: center;
        align-content: start;
        position: relative;
        margin-bottom: 3rem;
    }
    
    /* vertical & pivot lines */
    .vt, .vt-cen-lin, .vb-cen-lin,
    #ht-lef-pip, #ht-rit-pip {
        background: #000;
    }
    .vt { grid-area: vt; }
    .vt-cen-lin { grid-area: vt-cen-lin; }
    .vb-cen-lin { grid-area: vb-cen-lin; }
    #ht-lef-pip { grid-area: ht-lef-pip; }
    #ht-rit-pip { grid-area: ht-rit-pip; }
    
    /* center circle */
    .t-circle-line {
        grid-area: t-circle-line;
        background: #fff;
        border: 5px solid #000;
        border-radius: 50%;
        width: 30px; height: 30px;
        justify-self: center; align-self: center;
    }
    
    /* ======================= Text & Icon Boxes ======================= */
    /* Left text box */
    .ht-lef-dis {
        grid-area: ht-lef-dis;
        background: transparent;
        padding: 1rem;
        color: #fff;
    }
    /* Right text box */
    .ht-rit-dis {
        grid-area: ht-rit-dis;
        background: transparent;
        padding: 1rem;
        color: #fff;
    }
    
    /* ensure headings, paragraphs and hr in boxes are white */
    .ht-lef-dis h3, .ht-rit-dis h3,
    .ht-lef-dis p, .ht-rit-dis p,
    .ht-lef-dis hr, .ht-rit-dis hr {
        color: #fff;
    }
    .ht-lef-dis hr, .ht-rit-dis hr {
        border-color: rgba(255,255,255,0.3);
    }
    
    /* ======================= Icon Boxes ======================= */
    .lef-icon, .rit-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1.5rem;
    }
    .process-icon {
        font-size: 4rem;
        color: #fff;
        background: rgba(0,0,0,0.2);
        border-radius: 8px;
        padding: 0.75rem;
    }
    
    /* ========== Step Backgrounds with Rounded Corners ========== */
    .step-1-bg {
        background-color: #4B1062;
        border-radius: 12px;
    }
    .step-2-bg {
        background-color: #1f5290;
        border-radius: 12px;
    }
    .step-3-bg {
        background-color: #5ba5b0;
        border-radius: 12px;
    }
    .step-4-bg {
        background-color: #51235a;
        border-radius: 12px;
    }
    .step-5-bg {
        background-color: #c85f2e;
        border-radius: 12px;
    }
    .step-6-bg {
        background-color: #1e336f;
        border-radius: 12px;
    }
    .step-7-bg {
        background-color: #5bafc0;
        border-radius: 12px;
    }
    
    /* Override icon backgrounds to match text box background color */
    .icon-step-1 {
        background-color: #4B1062 !important;
    }
    .icon-step-2 {
        background-color: #1f5290 !important;
    }
    .icon-step-3 {
        background-color: #5ba5b0 !important;
    }
    .icon-step-4 {
        background-color: #51235a !important;
    }
    .icon-step-5 {
        background-color: #c85f2e !important;
    }
    .icon-step-6 {
        background-color: #1e336f !important;
    }
    .icon-step-7 {
        background-color: #5bafc0 !important;
    }
    
    /* ======================= Alignment Helpers ======================= */
    .rit-txt { text-align: right; margin-top: 35px; }
    .lef-txt { text-align: left;  margin-top: 35px; }
   

/* ================================================================================== */
/* ===================  DESKTOP LANDING PAGE CONTACT US SECTION  ==================== */
/* ================================================================================== */
    .cta-form-section {
        padding: 2rem 1rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .cta-form-wrapper {
        background-color: #fff;
        border-radius: 2rem;
        padding: 3rem;
        width: 90%;
        max-width: 1200px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .cta-left-form,
    .cta-right-info {
        flex: 1;
    }
    
    /* Fonts */
    .cta-heading {
        font-size: 2rem;
        font-weight: 700;
        color: #025185;
        margin-bottom: 1rem;
    }
    
    .cta-description {
        font-size: 1.2rem;
        color: #555;
        line-height: 1.6;
    }
    
    .cta-form-container {
        display: flex;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    /* Input Fields */
    .cta-left-form input.form-control,
    .cta-left-form textarea.form-control {
        border-radius: 0.75rem;
        border: 1px solid #ddd;
        padding: 0.75rem;
        background-color: #f9f9f9;
        box-shadow: none;
        resize: none;
    }
    
    /* Labels */
    .cta-left-form label {
        font-weight: 500;
        color: #555;
        margin-bottom: 0.25rem;
        display: block;
    }
    
    /* Style when user is typing or input is filled */
    .cta-left-form input.form-control:focus,
    .cta-left-form input.form-control:not(:placeholder-shown),
    .cta-left-form textarea.form-control:focus,
    .cta-left-form textarea.form-control:not(:placeholder-shown) {
        background-color: #025185;
        color: #ffffff;
        border-color: #362052;
    }
    
    /* When user has typed and left the field */
    .cta-left-form input.form-control.filled,
    .cta-left-form textarea.form-control.filled {
        background-color: #362052;
        color: #ffffff;
        border-color: #362052;
    }
    
    /* Optional: keep placeholder light when not focused */
    .cta-left-form input::placeholder,
    .cta-left-form textarea::placeholder {
        color: #ccc;
    }
    
    /* Submit Button */
    .cta-submit-btn {
        background-color: #ef3639;
        color: white;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 2rem;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
        .cta-submit-btn:hover {
        background-color: #3fb147;
        color: #fff;
        }
    
    
    .cta-right-info {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .contact-desc,
    .social-desc {
        font-weight: 600;
        color: #025185;
        margin-bottom: 0.5rem;
    }
    
    .cta-right-info p {
        color: #333;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
    }
    
    .cta-right-info p i {
        font-size: 1.1rem;
        color: #025185;
        min-width: 20px; /* Ensures consistent spacing */
        margin-right: 0.5rem;
    }
    
    .cta-horizontal-info i {
        font-size: 1.2rem;
        color: #025185;
    }
    
    .cta-horizontal-info span {
        color: #333;
        font-weight: 500;
    }
    
    .cta-horizontal-info > div {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .cta-map-wrapper iframe {
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        width: 100%;
    }

    .cta-map-wrapper {
        width: 100%;
        aspect-ratio: 2 / 1; /* height = 50% of width */
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
      
 
/* ============================================================= */
/* ================ ABOUT US PAGE ================= */
/* ============================================================= */
/* ======================================================== */
/* ================ ABOUT US HERO SECTION ================= */
/* ======================================================== */
    .hero-about-section {
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 4rem 1rem;
        /* flex-direction: column; */
    }

    .hero-about-wrapper {
        width: 80%;
        max-width: 100%;
        padding: 0 1rem;
        margin: 0;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .hero-about-title {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1e1c60;
        line-height: 1.4;
    }

    .hero-about-subtext {
        font-size: 1.1rem;
        font-weight: 400;
        color: #1e1c60;
        max-width: 90%;
    }

    .book-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 70%;
        position: relative;
        margin-top: 10rem;
        margin-bottom: 10rem;
    }

    /* BOOK */
    .book {
        position: relative;
        width: 100%;
        max-width: 100%;     
        height: auto;
        aspect-ratio: 3 / 2;
        perspective: 1000px;
        margin: 0 auto;
    }

    /* COVER & PAGE */
    .cover,
    .page {
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 100%;
        transform-origin: 100% 0;
        border-radius: 5px 0 0 5px;
        box-shadow: inset 3px 0px 20px rgba(0, 0, 0, 0.2),
                    0px 0px 15px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
        padding: 1rem;
    }

    /* COVER */
    .cover {
        background-color: #36354e;
        z-index: 0;
    }

    .cover.turn {
        animation: bookCover 3s forwards;
    }

    /* PAGE */
    .page {
        background-color: #e9e6c4;
        z-index: 1;
        text-align: right;
        font-size: 8px;
        color: #777;
        font-family: monospace;
    }

    .page::before,
    .page::after {
        display: block;
        border-top: 1px dashed rgba(0, 0, 0, 0.3);
        content: "";
        padding-bottom: 1rem;
    }

    .page.turn {
        animation: bookOpen 3s forwards;
    }

    /* Text overlays: hidden by default */
    .page-text-left,
    .page-text-right {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out 0.2s;
    z-index: 1000;
    }

    /* Left page text */
    .page-text-left {
    left: 0;
    width: 50%;
    transform-origin: 100% 0;
    /* transform: rotateY(180deg); */
    }

    /* Right page text */
    .page-text-right {
    right: 0;
    width: 50%;
    transform-origin: 0 0;
    transform: rotateY(0deg);
    }

    /* When visible, fade in */
    .page-text-left.visible,
    .page-text-right.visible {
    opacity: 1;
    }

    .page:nth-of-type(1) { animation-delay: 0.05s; }
    .page:nth-of-type(2) { animation-delay: 0.33s; }
    .page:nth-of-type(3) { animation-delay: 0.66s; }
    .page:nth-of-type(4) {
        animation: bookOpen150deg 3s forwards;
        animation-delay: 0.99s;
    }
    .page:nth-of-type(5) {
        animation: bookOpen30deg 3s forwards;
        animation-delay: 1.2s;
    }
    .page:nth-of-type(6) {
        animation: bookOpen55deg 3s forwards;
        animation-delay: 1.25s;
    }

    /* ===== KEYFRAMES ===== */
    @keyframes bookOpen {
        30% { z-index: 999; }
        100% {
        transform: rotateY(180deg);
        z-index: 999;
        }
    }

    @keyframes bookCover {
        30% { z-index: 999; }
        100% {
        transform: rotateY(180deg);
        z-index: 1;
        }
    }

    @keyframes bookOpen150deg {
        30% { z-index: 999; }
        100% {
        transform: rotateY(150deg);
        z-index: 999;
        }
    }

    @keyframes bookOpen55deg {
        30% { z-index: 999; }
        100% {
        transform: rotateY(25deg);
        z-index: 999;
        }
    }

    @keyframes bookOpen30deg {
        50% { z-index: 999; }
        100% {
        transform: rotateY(30deg);
        z-index: 999;
        }
    }

/* ============================================================= */
/* ================ MISSION & VISION & VALUES SECTION ================= */
/* ============================================================= */
    .mvv-section {
        color: #fff;
        padding: 3rem 1rem;
    }
    
    .mvv-container {
        display: flex;
        flex-wrap: nowrap;
        max-width: 1400px;
        margin: auto;
        height: 100%;
        align-items: stretch;
        gap: 2rem;
    }
    
    .mvv-left {
        flex: 0 0 70%;
        padding-right: 2rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        justify-content: space-between;
    }
    
    .mvv-top {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .mvv-middle,
    .mvv-bottom {
        display: flex;
    }

    .mvv-middle {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-grow: 1;
    }
    
    .mvv-title {
        font-size: 2rem;
        font-weight: 700;
    }
    
    .mvv-intro {
        font-size: 1.2rem;
        color: #f0f0f0;
    }
    
    .mvv-block {
        display: flex;
        align-items: stretch;
        font-size: 1.4rem;
    }
    
    .mvv-label {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        background: #fff;
        color: #000;
        font-weight: 700;
        padding: 0.5rem 0.5rem;
        border-radius: 1rem;
        margin-right: 1.5rem;
        text-align: center;
    }
    
    .mvv-content h3 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
        color: #fff;
    }
    
    .mvv-content p {
        font-size: 1.2rem;
        line-height: 1.6;
        color: #f0f0f0;
    }
    
    .mvv-right {
        flex: 0 0 30%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .value-card {
        background: #fff;
        color: #000;
        padding: 1rem;
        border-radius: 0.75rem;
    }
    
    .value-card h4 {
        font-weight: 700;
        margin-bottom: 0.3rem;
    }
    
    .value-card p {
        margin: 0;
        font-size: 0.95rem;
    }
  
/* ========================================================================= */
/* ================ COMPANY INFO & FOUNDER MESSAGE SECTION ================= */
/* ========================================================================= */

    .company-info-section {
        padding: 3rem 1rem;
    }

    .company-info-wrapper {
        width: 70%;
        margin: 0 auto;
    }
    
    
    .info-block {
        margin-bottom: 4rem;
    }
    
    .info-image {
        flex: 0 0 45%;
        max-width: 45%;
        padding: 1rem;
    }
    
    .info-image img {
        width: 90%;
        height: auto;
        border-radius: 0.75rem;
    }
    
    .info-text {
        flex: 1;
        padding: 1rem 2rem;
    }
    
    .info-title {
        font-size: 2rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }
    
    .info-subtitle {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #ffffff;
    }
    
    .info-text p {
        font-size: 1.3rem;
        line-height: 1.7;
        color: #ffffff;
        margin-bottom: 1rem;
    }
    
    .info-list {
        font-size: 1.3rem;
        list-style: disc;
        padding-left: 1.2rem;
        margin-bottom: 1rem;
        color: #ffffff;
    }
    
    .info-list li {
        margin-bottom: 0.4rem;
    }
    
    blockquote {
        border-left: 4px solid #9f5590;
        padding: 1rem 1.5rem;
        font-style: italic;
        color: #ffffff;
        border-radius: 0.5rem;
    }
    
    blockquote footer {
        margin-top: 1rem;
        font-weight: 600;
        color: #ffffff;
    }
    
    /* Reverse layout for even blocks (right image) */
    .info-block.reverse {
        flex-direction: row-reverse;
    }
    
    /* Responsive */
    @media (max-width: 991px) {
        .info-image, .info-text {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0.75rem 0;
        }
    
        .info-text {
        padding: 0.5rem 0;
        }
    
        .info-block.reverse {
        flex-direction: column;
        }
    }
    
/* =============================================== */
/* ================ TEAM SECTION ================= */
/* =============================================== */
    /* .team-section {
        background: linear-gradient(90deg,#1e1c60,#9f5590);
    } */
    
    .team-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: #ffffff;
    }
    
    .team-intro {
        font-size: 1.1rem;
        color: #ffffff;
    }
    
    .team-card {
        padding: 1.5rem 1rem;
        border-radius: 2rem;
        width: 100%;
        max-width: 280px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    }
    
    .team-img-wrapper {
        width: 150px;
        height: 150px;
        margin: 0 auto 0.75rem;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .team-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .team-badge {
        display: inline-block;
        background: #f9a825;
        color: #fff;
        font-size: 0.85rem;
        font-weight: 600;
        padding: 0.3rem 0.7rem;
        border-radius: 1rem;
        margin-top: 0.2rem;
    }
    
    .team-name {
        font-weight: 700;
        font-size: 1.1rem;
        margin-top: 0.75rem;
        color: #000;
    }
    
    .team-desc {
        font-size: 0.95rem;
        color: #333;
        margin-top: 0.25rem;
    }

/* ============================================================= */
/* ================ SERVICES PAGE ================= */
/* ============================================================= */
    @media (min-width: 992px) {

    /* Shared skeleton */
    .srv-section         { 
        padding:4rem 0; }
    .srv-wrapper         { background:#fff; width:85%; margin:0 auto; padding:16px; border-radius:1.75rem; }
    .srv-container       { overflow:hidden; border-radius:1.5rem; }
    
    .srv-header {
        display: flex;
        width: 100%;
      }
    
      .srv-heading {
        width: 30% !important;
        flex: 0 0 30%;
        max-width: 30%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 1.25rem;
        border-top-right-radius: 1.5rem;

      }
    
      .srv-tagline-wrapper {
        width: 70% !important;
        flex: 0 0 70%;
        max-width: 70%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 1.25rem;
      }
    .srv-body            { display:flex; flex-wrap:wrap; padding:3rem 2.5rem; color:#fff; }
    .srv-desc            { font-size:1.2rem; line-height:1.6; }
    .srv-btn-group-wrapper{display:flex;gap:1rem;margin-top:1rem;}
    .srv-btn-explore,
    .srv-btn-contact     { flex:1;text-align:center;border-radius:50px;padding:.6rem 2rem;font-weight:600;font-size:1.2rem;background:#fff;color:#000;text-decoration:none;transition:.3s; }
    .srv-btn-explore:hover,
    .srv-btn-contact:hover{background:#000;color:#fff;}

    /* === Color scoping per service === */
    .phlebo-service .srv-heading,
    .phlebo-service .srv-body   { background:#00a1ab; }
    .logistic-service .srv-heading,
    .logistic-service .srv-body { background:#222155; }
    .ecom-service .srv-heading,
    .ecom-service .srv-body     { background:#841023; }
    .whitecollar-service .srv-heading,
    .whitecollar-service .srv-body { background:#54206d; }
    }
    
/* =================================================== */
/* ================ T&C and Policies ================= */
/* =================================================== */

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1rem;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    background-color: #fff;
    color: #333;
  }

  .terms-container h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
  }

  .terms-container .toc {
    margin-bottom: 2rem;
    background: #f3f4f6;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.2rem;
  }

  .terms-container .toc a {
    display: block;
    padding: 0.3rem 0;
    color: #1e1c60;
    text-decoration: none;
  }

  .terms-container .toc a:hover {
    text-decoration: underline;
  }

  .terms-container h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
    font-weight: 600;
    color: #1e1c60;
  }

  .terms-container p {
    margin: 0.6rem 0;
    font-size: 1.2rem;
  }

  .policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1rem;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    background-color: #fff;
    color: #333;
  }

  .policy-container h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
  }

  .policy-container .toc {
    margin-bottom: 2rem;
    background: #f3f4f6;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.2rem;
  }

  .policy-container .toc a {
    display: block;
    padding: 0.3rem 0;
    color: #1e1c60;
    text-decoration: none;
  }

  .policy-container .toc a:hover {
    text-decoration: underline;
  }

  .policy-container h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
    font-weight: 600;
    color: #1e1c60;
  }

  .policy-container p {
    margin: 0.6rem 0;
    font-size: 1.2rem;
  }


/* =================================================== */
/* ====================== FAQ ======================== */
/* =================================================== */

  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
  }
  
  .faq-item {
    background: #37abe1;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
  }
  
  /* Style the toggle summary */
  .faq-question {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    font-size: 1.3rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    color: #202d4d;
  }
  
  /* Hide default marker */
  .faq-question::-webkit-details-marker {
    display: none;
  }
  
  /* Custom + / – indicator */
  .faq-question::after {
    content: '+';
    font-size: 1.25rem;
  }
  .faq-item[open] > .faq-question::after {
    content: '–';
  }
  
  /* Answer panel */
  .faq-answer {
    padding: 0 1.25rem 1rem;
    line-height: 1.6;
    border-top: 1px solid #eee;
    color: #ffffff;
    font-size: 1.2rem;
  }
  
/* ====================================================== */
/* ====================== CAREER ======================== */
/* ====================================================== */
.career-section {
    padding: 2rem 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .career-wrapper {
    background-color: #fff;
    border-radius: 2rem;
    padding: 3rem;
    width: 90%;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .career-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #024f81;
    margin-bottom: 1rem;
  }
  
  .career-description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
  }
  
  .career-form-container {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .career-left-form,
  .career-right-info {
    flex: 1;
  }
  
  /* Inputs */
  .career-left-form input.form-control,
  .career-left-form textarea.form-control,
  .career-left-form select.form-select {
    border-radius: 0.75rem;
    border: 1px solid #ddd;
    padding: 0.75rem;
    background-color: #f9f9f9;
    box-shadow: none;
    resize: none;
  }
  
    .career-left-form input.form-control.filled,
    .career-left-form textarea.form-control.filled {
        background-color: #362052;
        color: #ffffff;
        border-color: #362052;
    }
    .career-left-form input::placeholder,
    .career-left-form textarea::placeholder {
        color: #ccc;
    }
    

  .career-left-form label {
    font-weight: 500;
    color: #555;
    margin-bottom: 0.25rem;
    display: block;
  }
  
  .career-left-form input:focus,
  .career-left-form textarea:focus,
  .career-left-form select:focus {
    background-color: #024f81;
    color: #fff;
    border-color: #024f81;
  }
  
  /* Button */
  .career-submit-btn {
     background-color: #ef3639;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  .career-submit-btn:hover {
        background-color: #3fb147;
        color: #fff;
        }
    
  /* Contact-info icons */
  .career-right-info i {
    font-size: 1.1rem;
    color: #024f81;
    min-width: 20px;
    margin-right: 0.5rem;
  }
  
  .career-map-wrapper iframe {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .career-contact-info span {
    color: #000000;
    font-weight: 500;
  }