body {

    font-family: 'Poppins', sans-serif;
    color: #fff;
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}


@font-face {
    font-family: 'Submariner';
    src: url('../fonts/submariner/submariner-r24-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}


/* =============================================
   HEADER / NAVBAR
============================================= */
.custom-navbar {
    border-radius: 22px;
    border: 1px solid rgba(255, 215, 128, 0.25);
}

.sticky-top {
    background-color: white;
}
 
.logo-box { border-radius: 14px; }
 
.logo-box img {
    max-width: 250px;
    height: 70px;
}
 
/* =============================================
   NAV LINKS
============================================= */
.nav-link {
    position: relative;
    color: #000000 !important;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease-in-out;
}
 
.nav-link.active {
    color: #0B55F9 !important;
    font-weight: 600;
}
 
.nav-link:hover {
    color: #0B55F9 !important;
}
 
/* =============================================
   CONTACT BUTTON
============================================= */
.contact-btn {
    background: linear-gradient(90deg, #4a6cff, #8a63ff);
    color: #fff !important;
    border-radius: 25px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}
 
.contact-btn:hover {
    background: linear-gradient(135deg, #4a6cff, #8a63ff);
    color: #fff !important;
}
 
/* =============================================
   TOGGLER
============================================= */
.navbar-toggler {
    border: 2px solid #0B55F9;
    color: #0B55F9;
    font-size: 18px;
    padding: 4px 10px;
    background: transparent;
}
 
.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}
 
/* =============================================
   DROPDOWN WRAPPER
============================================= */
.nav-dropdown {
    position: relative;
}
 
.nav-dropdown-toggle {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    user-select: none;
}
 
.dropdown-chevron {
    flex-shrink: 0;
    transition: transform 0.28s ease;
    margin-top: 1px;
}
 
/* Rotate chevron on hover (desktop) or open (mobile) */
.nav-dropdown:hover .dropdown-chevron,
.nav-dropdown.open .dropdown-chevron {
    transform: rotate(180deg);
}
 
/* =============================================
   DROPDOWN MENU — DESKTOP
============================================= */
.nav-dropdown-menu {
    list-style: none;
    padding: 8px 0;
    margin: 0;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    min-width: 260px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e4e9f8;
    box-shadow: 0 12px 36px rgba(36, 86, 246, 0.14);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: opacity 0.26s ease, transform 0.26s ease, visibility 0.26s ease;
}
 
/* Arrow pointer */
.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-left: 1px solid #e4e9f8;
    border-top: 1px solid #e4e9f8;
    rotate: 45deg;
    border-radius: 2px 0 0 0;
}
 
/* Show on hover — DESKTOP ONLY */
@media (min-width: 993px) {
    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}
 
/* Dropdown links */
.nav-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #222 !important;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease;
    border-radius: 8px;
    margin: 2px 6px;
}
 
.nav-dropdown-menu li a:hover {
    background: #eef2ff;
    color: #2456f6 !important;
}
 
.dd-icon {
    width: 30px;
    height: 30px;
    background: #2456f6;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
    transition: background 0.18s ease;
}
 
.nav-dropdown-menu li a:hover .dd-icon {
    background: #1a3ae0;
}
 
/* =============================================
   MOBILE (≤992px) — collapse-style dropdown
============================================= */
@media (max-width: 992px) {
 
    /* Reset desktop absolute positioning */
    .nav-dropdown-menu {
        position: static !important;
        transform: none !important;
        min-width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 10px;
        background: #f5f7ff;
        padding: 0;
        margin: 6px 0 0;
        /* Hidden by default */
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition:
            opacity 0.26s ease,
            max-height 0.30s ease,
            padding 0.22s ease,
            visibility 0.26s ease;
    }
 
    .nav-dropdown-menu::before {
        display: none;
    }
 
    /* OPEN state — triggered by JS adding .open class */
    .nav-dropdown.open .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
        padding: 6px 0;
    }
 
    /* Make sure hover doesn't interfere on mobile */
    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
    }
 
    .nav-dropdown.open:hover .nav-dropdown-menu,
    .nav-dropdown.open .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
    }
}
 
/* =============================================
   RESPONSIVE — Extra Small (≤576px)
============================================= */
@media (max-width: 576px) {
    .custom-navbar      { padding: 10px; }
    .logo-box img       { max-width: 200px; height: auto; }
    .navbar-nav         { gap: 8px !important; width: 100%; padding: 10px 0; }
}
 
/* =============================================
   RESPONSIVE — Small Tablets (577px – 768px)
============================================= */
@media (min-width: 577px) and (max-width: 768px) {
    .logo-box img   { max-width: 160px; }
    .navbar-nav     { gap: 15px !important; }
}
 
/* =============================================
   RESPONSIVE — Medium Devices (769px – 992px)
============================================= */
@media (min-width: 769px) and (max-width: 992px) {
    .logo-box img   { max-width: 180px; }
    .navbar-nav     { gap: 18px !important; }
}
 
/* =============================================
   RESPONSIVE — Large Desktops (993px – 1200px)
============================================= */
@media (min-width: 993px) and (max-width: 1200px) {
    .logo-box img   { max-width: 220px; }
    .navbar-nav     { gap: 20px !important; }
}


/* =============================================
   SECTION BASE
============================================= */
.engineered-section {
    position: relative;
    font-family: 'Inter', sans-serif;
}

.engineered-section #engineeredCarousel,
.engineered-section .carousel-inner {
    height: 100%;
}

/* =============================================
   ALL SLIDES — shared height
============================================= */
.engineered-section .carousel-item {
    height: 90vh;
    min-height: 600px;
}

/* =============================================
   SLIDE 1 — HERO
============================================= */
.engineered-section .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.engineered-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.65) 0%,
            rgba(255, 255, 255, 0.35) 45%,
            rgba(255, 255, 255, 0.05) 100%);
    z-index: 2;
}

.engineered-section .hero-content-wrap {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.engineered-section .hero-content {
    color: #fff;
    text-align: center;
}
.hero-main-heading {
    font-family: 'Submariner', sans-serif;
    font-size: clamp(28px, 6vw, 100px);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #18407b;
}

.engineered-section
{
    font-size: clamp(28px, 6vw, 100px);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #ffffff;
}


.hero-main-desc {
    font-size: 27px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.75;
    margin-bottom: 34px;
    color: #18407b;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.engineered-section .hero-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.engineered-section .hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #4a6cff, #8a63ff);
    color: #fff;
    font-size: clamp(13px, 1.4vw, 15px);
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 40px;
    text-decoration: none;
    border: none;
    min-width: 140px;
    transition: opacity 0.22s ease, transform 0.2s ease;
}

.engineered-section .hero-btn-primary:hover {
    opacity: 0.88;
    color: #fff;
    transform: translateY(-2px);
}

.engineered-section .hero-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #fff;
    font-size: clamp(13px, 1.4vw, 15px);
    font-weight: 700;
    padding: 12px 36px;
    border-radius: 40px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.72);
    min-width: 140px;
    transition: all 0.22s ease;
}

.engineered-section .hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* =============================================
   SLIDES 2–8 — ENGINEERED STYLE
============================================= */
.engineered-section .engineered-slide {
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0 60px;
}

.engineered-section .engineered-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.55) 45%,
            rgba(0, 0, 0, 0.08) 100%);
    z-index: 0;
}

.engineered-section .engineered-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* Brand row */
.engineered-section .eng-brand-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.engineered-section .eng-brand-line {
    width: 40px;
    height: 2.5px;
    background: #00d4ff;
    flex-shrink: 0;
    border-radius: 2px;
}

.engineered-section .eng-brand-label {
    font-size: clamp(10px, 1.1vw, 13px);
    font-weight: 600;
    color: #00d4ff;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Giant heading */
.engineered-section .eng-giant-heading {
    font-size: clamp(32px, 7.5vw, 90px);
    font-weight: 900;
    color: #fff;
    line-height: 1.0;
    letter-spacing: -2px;
    margin-bottom: 28px;
}

.engineered-section .eng-cyan-word {
    color: #00aaff;
    /*display: block;*/
}

/* Description */
.engineered-section .eng-desc {
    font-size: clamp(13px, 1.5vw, 17px);
    color: rgba(200, 220, 255, 0.85);
    line-height: 1.72;
    max-width: 800px;
    margin-bottom: 32px;
}

/* Buttons */
.engineered-section .eng-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.engineered-section .eng-btn-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2456f6;
    color: #fff;
    font-size: clamp(12.5px, 1.3vw, 15px);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid #2456f6;
    transition: all 0.22s ease;
    cursor: pointer;
}

.engineered-section .eng-btn-blue:hover {
    background: #1a3ae0;
    border-color: #1a3ae0;
    color: #fff;
    transform: translateY(-2px);
}

.engineered-section .eng-btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: clamp(12.5px, 1.3vw, 15px);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.52);
    transition: all 0.22s ease;
}

.engineered-section .eng-btn-dark:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

.engineered-section .eng-btn-cyan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #00ccee;
    color: #000;
    font-size: clamp(12.5px, 1.3vw, 15px);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid #00ccee;
    transition: all 0.22s ease;
    cursor: pointer;
}

.engineered-section .eng-btn-cyan:hover {
    background: #00b8d9;
    border-color: #00b8d9;
    color: #000;
    transform: translateY(-2px);
}

/* =============================================
   CAROUSEL INDICATORS
============================================= */
.engineered-section .carousel-indicators {
    margin-bottom: 24px;
    z-index: 10;
}

.engineered-section .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    margin: 0 4px;
    transition: background 0.3s, transform 0.3s;
}

.engineered-section .carousel-indicators .active {
    background: #ffffff;
    transform: scale(1.3);
}

/* =============================================
   PREV / NEXT CONTROLS
============================================= */
.engineered-section .eng-ctrl-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.18) !important;
    border: 2px solid rgba(255, 255, 255, 0.45) !important;
    border-radius: 50% !important;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.24s, border-color 0.24s;
    backdrop-filter: blur(4px);
    position: absolute;
}

.engineered-section .eng-ctrl-btn.carousel-control-prev {
    left: 20px;
}

.engineered-section .eng-ctrl-btn.carousel-control-next {
    right: 20px;
}

.engineered-section .eng-ctrl-btn:hover {
    background: rgba(255, 255, 255, 0.34) !important;
    border-color: #fff !important;
}

.engineered-section .eng-ctrl-btn .carousel-control-prev-icon,
.engineered-section .eng-ctrl-btn .carousel-control-next-icon {
    width: 18px;
    height: 18px;
}

/* =============================================
   RESPONSIVE — LAPTOP (993px – 1199px)
============================================= */
@media (min-width: 993px) and (max-width: 1199px) {
    .engineered-section .eng-giant-heading {
        font-size: 78px;
        letter-spacing: -1.5px;
    }

    .engineered-section .hero-main-heading {
        font-size: 58px;
    }
}

/* =============================================
   RESPONSIVE — TABLET LANDSCAPE (768px – 992px)
============================================= */
@media (min-width: 768px) and (max-width: 992px) {

    .engineered-section .carousel-item,
    .engineered-section .engineered-slide {
        height: auto;
        min-height: 580px;
    }

    .engineered-section .engineered-slide {
        padding: 80px 0 60px;
    }

    .engineered-section .eng-giant-heading {
        font-size: 60px;
        letter-spacing: -1.2px;
        margin-bottom: 20px;
    }

    .engineered-section .hero-main-heading {
        font-size: 48px;
    }

    .engineered-section .hero-main-desc {
        font-size: 15px;
    }

    .engineered-section .eng-ctrl-btn {
        width: 42px;
        height: 42px;
    }

    .engineered-section .eng-ctrl-btn.carousel-control-prev {
        left: 14px;
    }

    .engineered-section .eng-ctrl-btn.carousel-control-next {
        right: 14px;
    }

    .engineered-section .eng-btn-blue,
    .engineered-section .eng-btn-dark,
    .engineered-section .eng-btn-cyan {
        padding: 12px 22px;
    }

    .engineered-section .hero-btn-primary,
    .engineered-section .hero-btn-outline {
        min-width: 130px;
        padding: 12px 26px;
    }
}

/* =============================================
   RESPONSIVE — TABLET PORTRAIT (576px – 767px)
============================================= */
@media (min-width: 576px) and (max-width: 767px) {

    .engineered-section .carousel-item,
    .engineered-section .engineered-slide {
        height: auto;
        min-height: 520px;
    }

    .engineered-section .engineered-slide {
        padding: 80px 0 50px;
    }

    .engineered-section .eng-giant-heading {
        font-size: 44px;
        letter-spacing: -0.8px;
        margin-bottom: 16px;
    }

    .engineered-section .hero-main-heading {
        font-size: 36px;
        letter-spacing: -0.5px;
    }

    .engineered-section .hero-main-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .engineered-section .eng-desc {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 22px;
    }

    .engineered-section .eng-brand-label {
        font-size: 10.5px;
        letter-spacing: 2px;
    }

    .engineered-section .eng-brand-row {
        margin-bottom: 16px;
    }

    .engineered-section .eng-buttons {
        gap: 10px;
    }

    .engineered-section .eng-btn-blue,
    .engineered-section .eng-btn-dark,
    .engineered-section .eng-btn-cyan {
        padding: 12px 18px;
        font-size: 13px;
    }

    .engineered-section .hero-btns {
        gap: 10px;
    }

    .engineered-section .hero-btn-primary,
    .engineered-section .hero-btn-outline {
        min-width: 120px;
        padding: 12px 20px;
        font-size: 13px;
    }

    .engineered-section .eng-ctrl-btn {
        width: 38px;
        height: 38px;
    }

    .engineered-section .eng-ctrl-btn.carousel-control-prev {
        left: 10px;
    }

    .engineered-section .eng-ctrl-btn.carousel-control-next {
        right: 10px;
    }

    .engineered-section .eng-ctrl-btn .carousel-control-prev-icon,
    .engineered-section .eng-ctrl-btn .carousel-control-next-icon {
        width: 14px;
        height: 14px;
    }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤575px)
============================================= */
@media (max-width: 575px) {

    .engineered-section .carousel-item,
    .engineered-section .engineered-slide {
        height: 80svh;
        min-height: 80svh;
    }

    .engineered-section .engineered-slide {
        padding: 90px 0 80px;
        align-items: flex-start;
        padding-top: 100px;
    }

    .engineered-section .hero-content-wrap {
        align-items: center;
    }

    /* Heading sizes */
    .engineered-section .eng-giant-heading {
        font-size: clamp(28px, 9vw, 40px);
        letter-spacing: -0.5px;
        margin-bottom: 14px;
        line-height: 1.08;
    }

    .engineered-section .hero-main-heading {
        font-size: clamp(26px, 8vw, 38px);
        letter-spacing: -0.3px;
        line-height: 1.2;
        text-align: center;
    }

    /* Brand row compact */
    .engineered-section .eng-brand-line {
        width: 24px;
    }

    .engineered-section .eng-brand-label {
        font-size: 9.5px;
        letter-spacing: 1.5px;
    }

    .engineered-section .eng-brand-row {
        margin-bottom: 14px;
        gap: 10px;
    }

    /* Description */
    .engineered-section .eng-desc {
        font-size: 13px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .engineered-section .hero-main-desc {
        font-size: 13px;
        margin-bottom: 22px;
    }

    /* Buttons — stacked, full width */
    .engineered-section .eng-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .engineered-section .eng-btn-blue,
    .engineered-section .eng-btn-dark,
    .engineered-section .eng-btn-cyan {
        width: 100%;
        justify-content: center;
        padding: 13px 16px;
        font-size: 13.5px;
        border-radius: 9px;
    }

    /* Hero buttons side by side */
    .engineered-section .hero-btns {
        gap: 8px;
    }

    .engineered-section .hero-btn-primary,
    .engineered-section .hero-btn-outline {
        flex: 1;
        min-width: 0;
        padding: 12px 12px;
        font-size: 13px;
        justify-content: center;
        border-radius: 35px;
    }

    /* Indicators closer to bottom content */
    .engineered-section .carousel-indicators {
        margin-bottom: 18px;
    }

    .engineered-section .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }

    /* Hide prev/next arrows on small mobile */
    .engineered-section .eng-ctrl-btn {
        display: none;
    }
}

/* =============================================
   RESPONSIVE — VERY SMALL MOBILE (≤380px)
============================================= */
@media (max-width: 380px) {
    .engineered-section .engineered-slide {
        padding-top: 90px;
        padding-bottom: 70px;
    }

    .engineered-section .eng-giant-heading {
        font-size: 26px;
    }

    .engineered-section .hero-main-heading {
        font-size: 24px;
    }

    .engineered-section .eng-btn-blue,
    .engineered-section .eng-btn-dark,
    .engineered-section .eng-btn-cyan {
        font-size: 13px;
        padding: 12px 14px;
    }

    .engineered-section .hero-btn-primary,
    .engineered-section .hero-btn-outline {
        font-size: 12px;
        padding: 11px 10px;
    }
}



/* =============================================
           BOOKING BANNER SECTION
        ============================================= */
.booking-banner {
    margin: 0 auto;
    margin-top: -20px;
    background: linear-gradient(100deg, #2456f6 0%, #3a5ff8 35%, #7b5fff 70%, #9b6fff 100%);
}

/* =============================================
           BANNER CARD
        ============================================= */
.booking-banner .booking-banner-card {
    position: relative;
    overflow: hidden;
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    min-height: 72px;
}

/* World map SVG dot pattern background */
.booking-banner .booking-banner-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
    background-size: 18px 18px;
    z-index: 0;
    opacity: 0.6;
    /* Clip to world-map-like shape using mask */
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cellipse cx='600' cy='60' rx='580' ry='58'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cellipse cx='600' cy='60' rx='580' ry='58'/%3E%3C/svg%3E");
    mask-size: 100% 100%;
}

/* Soft radial glow center */
.booking-banner .booking-banner-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 120% at 20% 50%, rgba(36, 86, 246, 0.30) 0%, transparent 60%),
        radial-gradient(ellipse 50% 100% at 80% 50%, rgba(155, 111, 255, 0.25) 0%, transparent 60%);
    z-index: 0;
}

/* All content above overlays */
.booking-banner .booking-banner-card>* {
    position: relative;
    z-index: 1;
}

/* =============================================
           HEADING TEXT
        ============================================= */
.booking-banner .banner-heading {
    font-size: clamp(15px, 2vw, 20px);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.1px;
}

/* =============================================
           BOOKING BUTTON
        ============================================= */
.booking-banner .banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(90, 80, 220, 0.55);
    color: #ffffff;
    font-size: clamp(13px, 1.4vw, 15px);
    font-weight: 600;
    padding: 11px 24px;
    border-radius: 50px;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.booking-banner .banner-btn:hover {
    background: rgba(110, 95, 240, 0.75);
    border-color: rgba(255, 255, 255, 0.50);
    transform: translateY(-1px);
    color: #fff;
}

.booking-banner .banner-btn img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Pill tag */
.booking-banner .portfolio-tag {
    display: inline-block;
    background: #dce8ff;
    color: #2456f6;
    font-size: 13.5px;
    font-weight: 500;
    padding: 7px 22px;
    border-radius: 50px;
    letter-spacing: 0.2px;
}

/* =============================================
           RESPONSIVE — LAPTOP (993px – 1199px)
        ============================================= */
@media (min-width: 993px) and (max-width: 1199px) {
    .booking-banner-card {
        padding: 20px 36px;
        gap: 28px;
    }
}

/* =============================================
           RESPONSIVE — TABLET LANDSCAPE (768px – 992px)
        ============================================= */
@media (max-width: 992px) {
    .booking-banner {
        padding: 0 16px;
    }

    .booking-banner-card {
        padding: 20px 28px;
        gap: 22px;
        border-radius: 14px;
    }

    .banner-heading {
        font-size: 16px;
        white-space: normal;
    }
}

/* =============================================
           RESPONSIVE — TABLET PORTRAIT (576px – 767px)
        ============================================= */
@media (max-width: 767px) {
    .booking-banner-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 22px;
        gap: 16px;
        border-radius: 14px;
        min-height: unset;
    }

    .banner-heading {
        font-size: 17px;
        white-space: normal;
    }

    .banner-btn {
        padding: 11px 28px;
        font-size: 14px;
    }
}

/* =============================================
           RESPONSIVE — SMALL MOBILE (≤575px)
        ============================================= */
@media (max-width: 575px) {
    .booking-banner {
        padding: 0 12px;
    }

    .booking-banner-card {
        padding: 20px 18px;
        gap: 14px;
        border-radius: 12px;
    }

    .banner-heading {
        font-size: 15.5px;
    }

    .banner-btn {
        padding: 10px 24px;
        font-size: 13.5px;
        width: 100%;
        justify-content: center;
    }

    .booking-tagline {
        font-size: 12.5px;
        margin-top: 14px;
    }
}

/* =============================================
           RESPONSIVE — VERY SMALL MOBILE (≤380px)
        ============================================= */
@media (max-width: 380px) {
    .booking-banner-card {
        padding: 18px 14px;
        gap: 12px;
    }

    .banner-heading {
        font-size: 14.5px;
    }

    .banner-btn {
        font-size: 13px;
        padding: 10px 18px;
    }

    .booking-tagline {
        font-size: 12px;
        margin-top: 12px;
    }
}


/* =============================================
           OUTER WRAPPER — light blue-grey page bg
        ============================================= */
.next-era-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Top Right Shape */
.next-era-page .top-shape-img {
    position: absolute;
    top: 855px;
    right: 0;
    width: 100px;
    z-index: 1;
}

/* =============================================
           MAIN CARD — white rounded container
        ============================================= */
/* Top right decorative image */
.next-era-page .top-pattern {
    position: absolute;
    top: 3150px;
    right: -20px;
    width: 150px;
}

.next-era-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 40px 40px;
    box-shadow: 0 4px 30px rgba(30, 60, 180, 0.08);
}

.next-era-card .next-era-heading {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    color: #0d0d0d;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.next-era-card .next-era-sub {
    font-size: clamp(14px, 1.8vw, 16px);
    color: #555;
    font-weight: 400;
    margin-bottom: 14px;
}

.next-era-card .next-era-body {
    font-size: clamp(13px, 1.6vw, 15.5px);
    color: #444;
    line-height: 1.75;
    max-width: 860px;
    margin: 0 auto 44px;
}

.next-era-card .service-card {
    background: #eef2ff;
    border-radius: 18px;
    padding: 30px 28px 36px;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/*.next-era-card .service-card:hover {*/
/*    transform: translateY(-4px);*/
/*    box-shadow: 0 12px 36px rgba(30, 80, 220, 0.12);*/
/*}*/

/* Icon Box */
.next-era-card .service-icon-box {
    width: 52px;
    height: 52px;
    background: #2456f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 22px;
    color: #ffffff;
}

.next-era-card .service-card h5 {
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 700;
    color: #0d0d0d;
    margin-bottom: 12px;
}

.next-era-card .service-card p {
    font-size: clamp(13px, 1.4vw, 14.5px);
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.next-era-card .bottom-info-card {
    background: #eef2ff;
    border-radius: 18px;
    padding: 36px 44px;
    margin-top: 28px;
}

.next-era-card .bottom-info-card p {
    font-size: clamp(13px, 1.6vw, 15.5px);
    color: #333;
    line-height: 1.8;
    margin-bottom: 12px;
}

.next-era-card .bottom-info-card p:last-child {
    margin-bottom: 0;
}

.next-era-card .bottom-info-card .highlight-line {
    font-size: clamp(14px, 1.8vw, 17px);
    font-weight: 600;
    color: #111;
}

/* =============================================
   RESPONSIVE — LAPTOP (993px – 1199px)
============================================= */
@media (min-width: 993px) and (max-width: 1199px) {
    .next-era-card {
        padding: 52px 48px 46px;
    }

    .next-era-card .next-era-body {
        max-width: 760px;
    }
}

/* =============================================
   RESPONSIVE — TABLET LANDSCAPE (768px – 992px)
============================================= */
@media (max-width: 992px) {
    .next-era-page {
        padding: 50px 16px;
    }

    .next-era-card {
        padding: 44px 32px 40px;
        border-radius: 20px;
    }

    .next-era-card .bottom-info-card {
        padding: 28px 26px;
    }

    .next-era-card .next-era-body {
        margin-bottom: 32px;
    }

    .next-era-page .top-pattern {
        width: 130px;
    }
}

/* =============================================
   RESPONSIVE — TABLET PORTRAIT (576px – 767px)
============================================= */
@media (max-width: 767px) {
    .next-era-page {
        padding: 40px 14px;
        min-height: unset;
    }

    .next-era-card {
        padding: 34px 20px 32px;
        border-radius: 18px;
    }

    .next-era-card .next-era-heading {
        font-size: 28px;
        letter-spacing: -0.2px;
        margin-bottom: 10px;
    }

    .next-era-card .next-era-sub {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .next-era-card .next-era-body {
        font-size: 14px;
        margin-bottom: 26px;
    }

    .next-era-card .service-card {
        padding: 24px 22px 28px;
        border-radius: 14px;
    }

    .next-era-card .service-icon-box {
        width: 46px;
        height: 46px;
        font-size: 20px;
        border-radius: 10px;
        margin-bottom: 16px;
    }

    .next-era-card .service-card h5 {
        font-size: 16px;
    }

    .next-era-card .service-card p {
        font-size: 13.5px;
    }

    .next-era-card .bottom-info-card {
        padding: 22px 18px;
        border-radius: 14px;
        margin-top: 20px;
    }

    .next-era-card .bottom-info-card .highlight-line {
        font-size: 15px;
    }

    .next-era-card .bottom-info-card p {
        font-size: 13.5px;
    }

    .next-era-page .top-pattern {
        width: 100px;
    }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤575px)
============================================= */
@media (max-width: 575px) {
    .next-era-page {
        padding: 30px 12px;
    }
    
    .next-era-page .top-pattern {
        display: none;
    }

    .next-era-card {
        padding: 26px 14px 26px;
        border-radius: 16px;
    }

    .next-era-card .next-era-heading {
        font-size: 22px;
        letter-spacing: 0;
        margin-bottom: 8px;
    }

    .next-era-card .next-era-sub {
        font-size: 13.5px;
    }

    .next-era-card .next-era-body {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 22px;
    }

    .next-era-card .service-card {
        padding: 20px 16px 22px;
        border-radius: 12px;
    }

    .next-era-card .service-icon-box {
        width: 42px;
        height: 42px;
        font-size: 18px;
        border-radius: 9px;
        margin-bottom: 14px;
    }

    .next-era-card .service-card h5 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .next-era-card .service-card p {
        font-size: 13px;
        line-height: 1.65;
    }

    .next-era-card .bottom-info-card {
        padding: 18px 14px;
        border-radius: 12px;
        margin-top: 16px;
    }

    .next-era-card .bottom-info-card .highlight-line {
        font-size: 13.5px;
        margin-bottom: 8px;
    }

    .next-era-card .bottom-info-card p {
        font-size: 13px;
        line-height: 1.7;
    }

    .next-era-page .top-pattern {
        width: 80px;
    }
}

/* =============================================
   RESPONSIVE — VERY SMALL MOBILE (≤380px)
============================================= */
@media (max-width: 380px) {
    .next-era-card {
        padding: 22px 12px 22px;
    }

    .next-era-card .next-era-heading {
        font-size: 20px;
    }

    .next-era-card .bottom-info-card {
        padding: 16px 12px;
    }

    .next-era-page .top-pattern {
        width: 60px;
    }
}


/* =============================================
   PAGE WRAPPER
============================================= */
.portfolio-page {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* =============================================
   OUTER WHITE CARD
============================================= */
.portfolio-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 30px 30px;
    box-shadow: 0 4px 30px rgba(30, 60, 180, 0.07);
}

/* =============================================
   HEADING BLOCK
============================================= */

/* Pill tag */
.portfolio-tag {
    display: inline-block;
    background: #dce8ff;
    color: #2456f6;
    font-size: 13.5px;
    font-weight: 500;
    padding: 7px 22px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.2px;
}

.portfolio-heading {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 800;
    color: #0d0d0d;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.portfolio-desc {
    font-size: clamp(13.5px, 1.6vw, 15.5px);
    color: #555;
    line-height: 1.75;
    max-width: 820px;
    margin: 0 auto 30px;
}

.portfolio-sub-heading {
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 700;
    color: #111;
    margin-bottom: 28px;
}

/* =============================================
   ANCHOR WRAPPER
============================================= */
.svc-card-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
    border-radius: 18px;
    outline: none;
}

/* =============================================
   SERVICE CARD
============================================= */
.svc-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    border: 2px solid #e8ecf8;
    transition: 0.3s;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

.svc-card-link:hover .svc-card {
    border: 2px solid #2456f6;
    box-shadow:
        0 0 0 3px rgba(36, 86, 246, 0.18),
        0 16px 40px rgba(30, 80, 220, 0.16);
}

/* ── IMAGE ZONE ── */
.svc-img-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
}

.svc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.svc-card-link:hover .svc-img-wrap img {
    transform: scale(1.04);
}

.svc-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.38) 50%,
            rgba(0, 0, 0, 0.10) 100%);
    border-radius: 14px 14px 0 0;
}

.svc-img-label {
    position: absolute;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.svc-icon-box {
    width: 40px;
    height: 40px;
    background: #2456f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.svc-card-link:hover .svc-icon-box {
    background: #4a72ff;
}

.svc-img-label h5 {
    font-size: clamp(14px, 1.8vw, 17px);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* ── BODY ── */
.svc-body {
    padding: 22px 22px 26px;
}

.svc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.svc-list li {
    position: relative;
    padding-left: 16px;
    font-size: clamp(12.5px, 1.4vw, 14px);
    color: #333;
    margin-bottom: 7px;
    line-height: 1.5;
}

.svc-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.svc-footer-text {
    font-size: clamp(12px, 1.3vw, 13.5px);
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* =============================================
   PLATFORM PAGE
============================================= */
.platform-page {
    display: flex;
    justify-content: center;
}

.platform-outer-card {
    border-radius: 24px;
}

/* =============================================
   SHARED HEADING STYLES
============================================= */
.section-heading {
    font-size: clamp(28px, 4.5vw, 46px);
    font-weight: 800;
    color: #0d0d0d;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: clamp(13.5px, 1.6vw, 15.5px);
    color: #555;
    line-height: 1.75;
    max-width: 720px;
    margin: 0 auto 36px;
}

/* =============================================
   DIGITAL PLATFORM SUITE — horizontal image card
============================================= */

.platform-card {
    background: #2456f6;
    border-radius: 16px;
    overflow: hidden;
    border: none;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(36, 86, 246, 0.25);
}

/*.platform-card:hover {*/
/*    transform: translateY(-4px);*/
/*    box-shadow: 0 14px 38px rgba(36, 86, 246, 0.38);*/
/*}*/

/* ── LEFT: Image zone ── */
.platform-img-wrap {
    position: relative;
    width: 150px;
    min-width: 150px;
    height: auto;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 16px;
}

.platform-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transition: transform 0.35s ease;
}

/*.platform-card:hover .platform-img-wrap img {*/
/*    transform: scale(1.05);*/
/*}*/

.platform-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.18) 0%,
        rgba(0, 0, 0, 0.05) 100%
    );
    border-radius: 16px;
}

/* Hide old pseudo-element styles */
.platform-img-wrap::before,
.platform-img-wrap::after {
    display: none;
}

.platform-icon-box {
    display: none;
}

/* ── RIGHT: Body ── */
.platform-body {
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.platform-body h6 {
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.25;
    letter-spacing: -0.1px;
}

.platform-body p {
    font-size: clamp(12px, 1.25vw, 13.5px);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.68;
    margin: 0;
}

/* =============================================
   SECTION DIVIDER
============================================= */
.section-divider {
    margin: 52px 0 44px;
    border: none;
    border-top: 1px solid #e8ecf8;
}

/* =============================================
   THE PRASELTAN ADVANTAGE
============================================= */
.advantage-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px 30px;
    border: 1px solid #e5eaf8;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/*.advantage-card:hover {*/
/*    transform: translateY(-4px);*/
/*    box-shadow: 0 14px 38px rgba(30, 80, 220, 0.12);*/
/*}*/

.adv-icon-box {
    width: 52px;
    height: 52px;
    background: #2456f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.advantage-card h6 {
    font-size: clamp(13.5px, 1.6vw, 15.5px);
    font-weight: 700;
    color: #0d0d0d;
    margin-bottom: 10px;
    line-height: 1.3;
}

.advantage-card p {
    font-size: clamp(12px, 1.3vw, 13px);
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* =============================================
   RESPONSIVE — LAPTOP (993px – 1199px)
============================================= */
@media (min-width: 993px) and (max-width: 1199px) {
    .portfolio-card {
        padding: 46px 40px 46px;
    }
    .svc-img-wrap {
        height: 190px;
    }
    .platform-img-wrap {
        width: 160px;
        min-width: 160px;
    }
    .platform-body {
        padding: 20px 18px;
    }
}

/* =============================================
   RESPONSIVE — TABLET LANDSCAPE (≤992px)
============================================= */
@media (max-width: 992px) {
    .portfolio-page {
        padding: 40px 16px 50px;
    }
    .portfolio-card {
        padding: 40px 30px 40px;
        border-radius: 20px;
    }
    .svc-img-wrap {
        height: 185px;
    }
    .platform-img-wrap {
        width: 150px;
        min-width: 150px;
    }
    .platform-body {
        padding: 20px 18px;
    }
    .platform-outer-card {
        padding: 0;
    }
    .section-divider {
        margin: 40px 0 36px;
    }
    .adv-icon-box {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
    .advantage-card {
        padding: 24px 20px 26px;
    }
}

/* =============================================
   RESPONSIVE — TABLET PORTRAIT (≤767px)
============================================= */
@media (max-width: 767px) {
    .portfolio-page {
        padding: 30px 12px 40px;
    }
    .portfolio-card {
        padding: 32px 18px 32px;
        border-radius: 18px;
    }
    .svc-img-wrap {
        height: 170px;
    }
    .svc-img-label {
        bottom: 14px;
        left: 14px;
        gap: 10px;
    }
    .svc-icon-box {
        width: 36px;
        height: 36px;
        font-size: 16px;
        border-radius: 8px;
    }
    .svc-body {
        padding: 18px 18px 22px;
    }
    .platform-card {
        border-radius: 14px;
    }
    .platform-img-wrap {
        width: 130px;
        min-width: 130px;
        border-radius: 14px;
    }
    .platform-body {
        padding: 16px 16px;
    }
    .platform-body h6 {
        font-size: 13.5px;
        margin-bottom: 7px;
    }
    .platform-body p {
        font-size: 12px;
    }
    .section-divider {
        margin: 30px 0 26px;
    }
    .adv-icon-box {
        width: 44px;
        height: 44px;
        font-size: 19px;
        margin-bottom: 16px;
    }
    .advantage-card {
        padding: 20px 18px 22px;
    }
    .portfolio-tag {
        font-size: 12.5px;
        padding: 6px 16px;
    }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤575px)
============================================= */
@media (max-width: 575px) {
    .portfolio-page {
        padding: 24px 10px 32px;
    }
    .portfolio-card {
        padding: 24px 12px 26px;
        border-radius: 16px;
    }
    .portfolio-tag {
        font-size: 11.5px;
        padding: 5px 14px;
    }
    .portfolio-heading {
        font-size: 22px;
        letter-spacing: 0;
        margin-bottom: 10px;
    }
    .portfolio-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .portfolio-sub-heading {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .svc-img-wrap {
        height: 155px;
    }
    .svc-img-label {
        bottom: 12px;
        left: 12px;
        gap: 8px;
    }
    .svc-icon-box {
        width: 32px;
        height: 32px;
        font-size: 14px;
        border-radius: 7px;
    }
    .svc-img-label h5 {
        font-size: 13.5px;
    }
    .svc-body {
        padding: 14px 14px 18px;
    }
    .svc-list li {
        font-size: 12.5px;
        margin-bottom: 6px;
    }
    .svc-footer-text {
        font-size: 12px;
    }
    .platform-card {
        flex-direction: row;
        border-radius: 12px;
    }
    .platform-img-wrap {
        width: 110px;
        min-width: 110px;
        border-radius: 12px;
    }
    .platform-body {
        padding: 14px 14px;
    }
    .platform-body h6 {
        font-size: 13px;
        margin-bottom: 6px;
    }
    .platform-body p {
        font-size: 11.5px;
        line-height: 1.6;
    }
    .section-heading {
        font-size: 20px;
        letter-spacing: 0;
    }
    .section-desc {
        font-size: 13px;
        margin-bottom: 24px;
    }
    .section-divider {
        margin: 24px 0 22px;
    }
    .adv-icon-box {
        width: 40px;
        height: 40px;
        font-size: 17px;
        margin-bottom: 14px;
        border-radius: 10px;
    }
    .advantage-card {
        padding: 18px 14px 20px;
        border-radius: 12px;
    }
    .advantage-card h6 {
        font-size: 13px;
        margin-bottom: 8px;
    }
    .advantage-card p {
        font-size: 12px;
    }
}

/* =============================================
   RESPONSIVE — VERY SMALL MOBILE (≤380px)
============================================= */
@media (max-width: 380px) {
    .portfolio-card {
        padding: 20px 10px 22px;
    }
    .svc-img-wrap {
        height: 140px;
    }
    .platform-img-wrap {
        width: 90px;
        min-width: 90px;
    }
    .platform-body {
        padding: 12px 12px;
    }
    .platform-body h6 {
        font-size: 12px;
    }
    .platform-body p {
        font-size: 11px;
    }
    .portfolio-heading {
        font-size: 20px;
    }
    .section-heading {
        font-size: 18px;
    }
    .advantage-card {
        padding: 16px 12px 18px;
    }
}


/* =============================================
   CTA OUTER WRAPPER
============================================= */
.cta-wrapper {
    margin: 0 auto;
}

.cta-wrapper .cta-card {
    background: linear-gradient(135deg, #2e5cf6 0%, #3a6fff 60%, #2456f6 100%);
    border-radius: 24px;
    padding: 60px 70px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Dot grid overlay */
.cta-wrapper .cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    z-index: 0;
}

/* Decorative circle top-right */
.cta-wrapper .cta-card::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    z-index: 0;
    box-shadow: -160px 120px 0 rgba(255, 255, 255, 0.04);
}

.cta-wrapper .cta-card .row {
    position: relative;
    z-index: 1;
}

/* ── Heading ── */
.cta-wrapper .cta-heading {
    font-size: clamp(22px, 4.5vw, 50px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

/* ── Sub text ── */
.cta-wrapper .cta-sub {
    font-size: clamp(13px, 1.8vw, 17px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    margin-bottom: 10px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Mission ── */
.cta-wrapper .cta-mission {
    font-size: clamp(14.5px, 2.2vw, 22px);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Button wrap ── */
.cta-wrapper .cta-btn-wrap {
    display: flex;
    justify-content: center;
}

/* ── CTA Button ── */
.cta-wrapper .cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #2456f6;
    font-size: clamp(13px, 1.7vw, 17px);
    font-weight: 700;
    padding: 20px 48px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    transition: all 0.28s ease;
    letter-spacing: 0.1px;
    white-space: normal;
    word-break: break-word;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    width: 30%;
    max-width: 680px;
    text-align: center;
    line-height: 1.5;
}

.cta-wrapper .cta-btn:hover {
    background: #f0f4ff;
    color: #1a3ae0;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.20);
}

.cta-wrapper .cta-btn:active {
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE — LAPTOP (993px – 1199px)
============================================= */
@media (min-width: 993px) and (max-width: 1199px) {
    .cta-wrapper .cta-card {
        padding: 56px 60px 52px;
    }

    .cta-wrapper .cta-btn {
        padding: 18px 42px;
        max-width: 640px;
    }
}

/* =============================================
   RESPONSIVE — TABLET LANDSCAPE (768px – 992px)
============================================= */
@media (max-width: 992px) {
    .cta-wrapper {
        padding: 16px 16px;
    }

    .cta-wrapper .cta-card {
        padding: 50px 44px 48px;
        border-radius: 22px;
    }

    .cta-wrapper .cta-btn {
        padding: 18px 36px;
        max-width: 580px;
    }

    .cta-wrapper .cta-mission {
        margin-bottom: 34px;
    }
}

/* =============================================
   RESPONSIVE — TABLET PORTRAIT (576px – 767px)
============================================= */
@media (max-width: 767px) {
    .cta-wrapper {
        padding: 14px 14px;
    }

    .cta-wrapper .cta-card {
        padding: 40px 28px 40px;
        border-radius: 20px;
    }

    .cta-wrapper .cta-heading {
        font-size: 26px;
        letter-spacing: -0.2px;
        margin-bottom: 16px;
    }

    .cta-wrapper .cta-sub {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .cta-wrapper .cta-mission {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .cta-wrapper .cta-btn {
        padding: 16px 28px;
        font-size: 14px;
        max-width: 100%;
    }

    /* Shrink decorative circle on tablet */
    .cta-wrapper .cta-card::after {
        width: 220px;
        height: 220px;
        top: -50px;
        right: -50px;
    }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤575px)
============================================= */
@media (max-width: 575px) {
    .cta-wrapper {
        padding: 12px 12px;
    }

    .cta-wrapper .cta-card {
        padding: 32px 16px 34px;
        border-radius: 18px;
    }

    .cta-wrapper .cta-heading {
        font-size: 22px;
        letter-spacing: 0;
        margin-bottom: 14px;
    }

    .cta-wrapper .cta-sub {
        font-size: 13px;
        line-height: 1.65;
        margin-bottom: 8px;
    }

    .cta-wrapper .cta-mission {
        font-size: 14.5px;
        margin-bottom: 24px;
        line-height: 1.55;
    }

    .cta-wrapper .cta-btn {
        padding: 15px 18px;
        font-size: 13.5px;
        border-radius: 40px;
        max-width: 100%;
    }

    /* Hide decorative circle on small mobile */
    .cta-wrapper .cta-card::after {
        width: 160px;
        height: 160px;
        top: -40px;
        right: -40px;
    }
}

/* =============================================
   RESPONSIVE — VERY SMALL MOBILE (≤380px)
============================================= */
@media (max-width: 380px) {
    .cta-wrapper .cta-card {
        padding: 26px 12px 28px;
        border-radius: 16px;
    }

    .cta-wrapper .cta-heading {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .cta-wrapper .cta-sub {
        font-size: 12.5px;
    }

    .cta-wrapper .cta-mission {
        font-size: 13.5px;
        margin-bottom: 20px;
    }

    .cta-wrapper .cta-btn {
        padding: 14px 16px;
        font-size: 13px;
    }

    /* Hide decorative circle entirely */
    .cta-wrapper .cta-card::after {
        display: none;
    }
}


/* =============================================
   CONSULTATION SECTION — BASE
============================================= */
.consult-section {
    position: relative;
    overflow: visible;
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}

/* ── BACKGROUND IMAGE ── */
.consult-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* ── DARK OVERLAY ── */
.consult-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(8, 27, 94, 0.90) 0%,
        rgba(15, 55, 150, 0.88) 100%);
    z-index: 1;
}

/* ── CONTAINER ABOVE OVERLAY ── */
.consult-container {
    position: relative;
    z-index: 2;
}

/* =============================================
   FORM CARD
============================================= */
.consult-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 30px 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    margin-bottom: -200px;
}

/* Form header inside card */
.consult-form-header {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eef2ff;
}

.consult-form-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0d0d0d;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.consult-form-header p {
    font-size: 13px;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

/* ── FIELD GROUP ── */
.consult-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.consult-field label {
    font-size: 12px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.1px;
    text-transform: uppercase;
}

.consult-field input,
.consult-field textarea {
    width: 100%;
    background: #f2f4fb;
    border: 1.5px solid #e4e9f5;
    border-radius: 10px;
    padding: 10px 13px;
    font-size: 13.5px;
    color: #222;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}

.consult-field input:focus,
.consult-field textarea:focus {
    border-color: #2456f6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(36, 86, 246, 0.10);
}

.consult-field input::placeholder,
.consult-field textarea::placeholder {
    color: #aaa;
}

.consult-field textarea {
    resize: vertical;
    min-height: 80px;
}

/* ── SELECT ── */
.consult-select-wrap {
    position: relative;
    width: 100%;
}

.consult-select-wrap select {
    width: 100%;
    background: #f2f4fb;
    border: 1.5px solid #e4e9f5;
    border-radius: 10px;
    padding: 10px 40px 10px 13px;
    font-size: 13.5px;
    color: #333;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    font-family: inherit;
    line-height: 1.4;
}

.consult-select-wrap select:focus {
    border-color: #2456f6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(36, 86, 246, 0.10);
}

.consult-select-arrow {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── BOOK BUTTON ── */
.consult-book-btn {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 13px 20px;
    background: linear-gradient(100deg, #1a3ae0 0%, #2456f6 100%);
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 0.2px;
    font-family: inherit;
}

.consult-book-btn:hover {
    opacity: 0.93;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(36, 86, 246, 0.40);
}

.consult-book-btn:active {
    transform: translateY(0);
    opacity: 1;
}

/* =============================================
   RIGHT CONTENT AREA
============================================= */
.consult-content {
    padding-left: 44px;
    color: #fff;
}

/* ── PILL TAG ── */
.consult-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.30);
    color: #ffffff;
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

/* ── HEADING ── */
.consult-heading {
    font-size: clamp(26px, 3.8vw, 42px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

/* ── DESCRIPTION ── */
.consult-desc {
    font-size: clamp(13.5px, 1.5vw, 15px);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.78;
    max-width: 460px;
    margin-bottom: 24px;
}

/* ── FEATURE BULLETS ── */
.consult-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 34px;
}

.consult-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
}

.cf-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

/* ── INFO BOXES ── */
.consult-info-boxes {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.consult-info-box {
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 16px 10px 10px;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    backdrop-filter: blur(4px);
    transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
    flex: 1 1 180px;
    min-width: 0;
}

.consult-info-box:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-3px);
    color: #fff;
}

.consult-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.consult-icon-blue  { background: #ffffff; }
.consult-icon-indigo { background: #0B55F9; }

.consult-info-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.consult-info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.consult-info-text small {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    white-space: nowrap;
}

.consult-info-text strong {
    font-size: 13.5px;
    font-weight: 600;
    color: #ffffff;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =============================================
   RESPONSIVE — LAPTOP (993px – 1199px)
============================================= */
@media (min-width: 993px) and (max-width: 1199px) {
    .consult-content {
        padding-left: 32px;
    }

    .consult-form-card {
        padding: 26px 24px 24px;
    }

    .consult-heading {
        font-size: 32px;
    }

    .consult-info-box {
        flex: 1 1 100%;
    }
}

/* =============================================
   RESPONSIVE — TABLET LANDSCAPE (768px – 992px)
   Two columns still visible but tighter
============================================= */
@media (max-width: 992px) {
    .consult-section {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    .consult-form-card {
        padding: 26px 22px 22px;
        border-radius: 20px;
        /* No negative margin on tablet — stacks naturally */
        margin-bottom: 0;
    }

    .consult-content {
        padding-left: 0;
        padding-top: 8px;
        text-align: center;
    }

    .consult-pill {
        margin-bottom: 16px;
    }

    .consult-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .consult-features {
        align-items: center;
        margin-bottom: 26px;
    }

    .consult-info-boxes {
        justify-content: center;
    }

    .consult-info-box {
        flex: 0 0 auto;
    }
}

/* =============================================
   RESPONSIVE — TABLET PORTRAIT (576px – 767px)
============================================= */
@media (max-width: 767px) {
    .consult-section {
        padding-top: 46px !important;
        padding-bottom: 46px !important;
    }

    .consult-form-card {
        padding: 22px 18px 20px;
        border-radius: 18px;
    }

    .consult-form-header h3 {
        font-size: 16px;
    }

    .consult-field label {
        font-size: 11.5px;
    }

    .consult-field input,
    .consult-field textarea,
    .consult-select-wrap select {
        font-size: 13px;
        padding: 9px 12px;
    }

    .consult-select-wrap select {
        padding: 9px 36px 9px 12px;
    }

    .consult-book-btn {
        font-size: 14px;
        padding: 12px 18px;
    }

    .consult-content {
        padding-left: 0;
        padding-top: 0;
        text-align: center;
    }

    .consult-heading {
        font-size: 28px;
    }

    .consult-desc {
        font-size: 14px;
    }

    .consult-features {
        align-items: center;
    }

    .consult-feature-item {
        font-size: 13.5px;
    }

    .consult-info-boxes {
        justify-content: center;
        gap: 12px;
    }

    .consult-info-box {
        flex: 0 1 calc(50% - 6px);
        min-width: 180px;
    }
}

/* =============================================
   RESPONSIVE — MOBILE (≤575px)
   Full single column, all elements stack
============================================= */
@media (max-width: 575px) {
    .consult-section {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }

    /* On mobile: form first, content below */
    .consult-form-card {
        padding: 20px 16px 18px;
        border-radius: 16px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    }

    .consult-form-header {
        margin-bottom: 16px;
        padding-bottom: 14px;
    }

    .consult-form-header h3 {
        font-size: 15px;
    }

    .consult-form-header p {
        font-size: 12px;
    }

    /* On mobile: stack the two col-6 into full width */
    .consult-field label {
        font-size: 11px;
    }

    .consult-field input,
    .consult-field textarea,
    .consult-select-wrap select {
        font-size: 13px;
        padding: 9px 11px;
        border-radius: 9px;
    }

    .consult-select-wrap select {
        padding: 9px 34px 9px 11px;
    }

    .consult-book-btn {
        font-size: 14px;
        padding: 12px 16px;
        border-radius: 10px;
    }

    /* Right content */
    .consult-content {
        padding-left: 0;
        padding-top: 4px;
        text-align: center;
    }

    .consult-pill {
        font-size: 10px;
        padding: 6px 16px;
        margin-bottom: 14px;
    }

    .consult-heading {
        font-size: 24px;
        margin-bottom: 12px;
        letter-spacing: -0.3px;
    }

    .consult-desc {
        font-size: 13.5px;
        margin-bottom: 18px;
    }

    .consult-features {
        align-items: flex-start;
        display: inline-flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 22px;
        text-align: left;
    }

    .consult-feature-item {
        font-size: 13px;
    }

    .cf-icon {
        width: 22px;
        height: 22px;
        min-width: 22px;
    }

    /* Stack info boxes on mobile */
    .consult-info-boxes {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .consult-info-box {
        width: 100%;
        max-width: 300px;
        flex: unset;
        padding: 9px 14px 9px 9px;
        border-radius: 12px;
    }

    .consult-info-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 8px;
    }

    .consult-info-icon img {
        width: 19px;
        height: 19px;
    }

    .consult-info-text strong {
        font-size: 13px;
    }

    .consult-info-text small {
        font-size: 9.5px;
    }
}

/* =============================================
   RESPONSIVE — VERY SMALL (≤380px)
============================================= */
@media (max-width: 380px) {
    .consult-section {
        padding-top: 28px !important;
        padding-bottom: 28px !important;
    }

    .consult-form-card {
        padding: 16px 13px 15px;
        border-radius: 14px;
    }

    .consult-heading {
        font-size: 21px;
    }

    .consult-desc {
        font-size: 13px;
    }

    /* Force col-6 pair to full width on tiny screens */
    .consult-form-card .col-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .consult-info-box {
        max-width: 100%;
    }
}


.industries-section {
    padding-top: 200px;
}

/* TEXT */
.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.section-subtitle {
    max-width: 900px;
    margin: 0 auto 60px;
    color: #777;
}

/* LEFT IMAGE */
.triangle-img {
    width: 200px;
    position: relative;
    z-index: 2;
}

/* BLUE CONTAINER */
.industries-blue-box {
    position: relative;
    background: linear-gradient(135deg, #4c63f0, #3f5cf4);
    padding: 60px 60px 60px 140px;
    margin-left: -120px;
    border-radius: 0 30px 30px 0;
    overflow: hidden;
}

/* PERFECT LEFT CURVE SHAPE */
.industries-blue-box::before {
    content: "";
    position: absolute;
    left: -180px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 360px;
    background: #fff;
    /* same as section background */
    border-radius: 50%;
}

.industry-pill {
    background: #fff;
    color: #000;
    padding: 14px 0;
    width: 250px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
    white-space: wrap;
    font-size: 14px;
}

/*.industry-pill:hover {*/
/*    transform: translateY(-3px);*/
/*}*/


@media (max-width: 576px) {

    .industries-section {
        margin-top: -150px;
    }

    .section-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 14px;
        padding: 0 12px;
        margin-bottom: 40px;
    }

    /* Center triangle */
    .triangle-img {
        width: 160px;
        margin: 0 auto 20px;
        display: block;
        rotate: 90deg;
    }

    /* Blue container fix */
    .industries-blue-box {
        margin-left: 0;
        padding: 30px 20px;
        border-radius: 20px;
    }

    /* Remove curve on mobile */
    .industries-blue-box::before {
        display: none;
    }

    /* Pills full width */
    .industry-pill {
        width: 100%;
        max-width: 100%;
        padding: 12px 16px;
        font-size: 14px;
        white-space: normal;
    }
}

@media (min-width: 577px) and (max-width: 768px) {

    .section-title {
        font-size: 30px;
    }

    .triangle-img {
        width: 150px;
        margin-bottom: 20px;
    }

    .industries-blue-box {
        margin-left: 0;
        padding: 40px 30px;
        border-radius: 25px;
    }

    .industries-blue-box::before {
        display: none;
    }

    .industry-pill {
        width: 100%;
        max-width: 240px;
        font-size: 14px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    .section-title {
        font-size: 34px;
    }

    .triangle-img {
        width: 170px;
    }

    .industries-blue-box {
        margin-left: -60px;
        padding: 50px 40px 50px 100px;
    }

    .industry-pill {
        width: 230px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {

    .industries-blue-box {
        padding: 60px 50px 60px 130px;
    }

    .industry-pill {
        width: 250px;
    }
}


/* SECTION BACKGROUND */
.faq-section {
    background: #f5f5f7;
}

/* LEFT SIDE */
.small-title {
    color: #7a7cff;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 20px;
}

.main-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #000;
}

.description {
    color: #777;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-custom {
    background: #1f56e6;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-custom:hover {
    background: #1746c4;
    color: #fff;
}

/* ACCORDION CUSTOM STYLE */
.accordion-item {
    border: none;
    border-bottom: 1px solid #ddd;
}

.accordion-button {
    font-weight: 600;
    font-size: 18px;
    background: transparent;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background: #1f56e6;
    color: #fff;
    box-shadow: none;
    border-radius: 15px 15px 0 0;
    border-bottom: 2px solid #ddd;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background: #1f56e6;
    color: #fff;
    border-radius: 0 0 15px 15px;
    padding: 20px;
    font-size: 15px;
}

/* Rounded effect for active accordion */
.accordion-item:first-of-type .accordion-button {
    border-radius: 15px;
}

@media (max-width: 576px) {

    .faq-section {
        padding: 40px 0;
    }

    .small-title {
        font-size: 16px;
        margin-bottom: 12px;
        text-align: center;
    }

    .main-heading {
        font-size: 26px;
        text-align: center;
        line-height: 1.3;
    }

    .description {
        font-size: 14px;
        text-align: center;
        margin-bottom: 20px;
    }

    .btn-custom {
        display: block;
        margin: 0 auto 30px;
        padding: 10px 26px;
        font-size: 14px;
    }

    .accordion-button {
        font-size: 15px;
        padding: 16px;
    }

    .accordion-body {
        font-size: 14px;
        padding: 16px;
    }

    /* Remove hard radius stacking issues */
    .accordion-button:not(.collapsed),
    .accordion-body {
        border-radius: 12px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {

    .faq-section {
        padding: 60px 0;
    }

    .main-heading {
        font-size: 32px;
    }

    .description {
        font-size: 15px;
    }

    .accordion-button {
        font-size: 16px;
        padding: 18px;
    }

    .accordion-body {
        font-size: 14px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    .main-heading {
        font-size: 36px;
    }

    .description {
        font-size: 16px;
    }

    .accordion-button {
        font-size: 17px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {

    .main-heading {
        font-size: 42px;
    }
}


/* =============================================
           FOOTER MAIN
        ============================================= */
.footer-main {
    background: #3f5efb;
    color: #ffffff;
    padding-top: 52px;
    font-family: 'Poppins', sans-serif;
}

/* =============================================
           LOGO
        ============================================= */
.footer-logo {
    width: 300px;
    height: auto;
    display: block;
    margin-bottom: 22px;
    background-color: #ffffff;
    border-radius: 10px;
}

/* =============================================
           BRAND DESCRIPTION
        ============================================= */
.footer-brand-desc {
    font-size: clamp(13px, 1.4vw, 15px);
    font-weight: 600;
    line-height: 1.75;
    color: #ffffff;
    margin-bottom: 18px;
    max-width: 360px;
}

/* Tagline */
.footer-tagline {
    font-size: clamp(16px, 2vw, 15px);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.3px;
}

/* =============================================
           COLUMN TITLES
        ============================================= */
.footer-title {
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: 0.2px;
}

.footer-subtitle {
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 5px;
}

.footer-text {
    font-size: 15px;
    line-height: 1.7;
    text-align: justify;
}

/* Phone & Email Links */
.footer-text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: #000000; /* match your theme */
}


/* =============================================
           NAV LINKS
        ============================================= */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 5px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(13px, 1.4vw, 15px);
    font-weight: 400;
    opacity: 0.95;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* =============================================
           SOCIAL ICONS
        ============================================= */
.footer-social {
    display: flex;
    gap: 14px;
    align-items: center;
}

.footer-social a {
    font-size: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.footer-social i {
    font-size: 26px;
}

/* =============================================
           BOTTOM BAR
        ============================================= */
.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.45);
    margin-top: 44px;
    padding: 18px 30px;
    width: 100%;
}

.footer-bottom p {
    margin: 0;
    font-size: clamp(12.5px, 1.3vw, 14px);
    color: #ffffff;
    opacity: 0.92;
    font-weight: 400;
}

.footer-main .eng-btn-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #000000;
    font-size: clamp(12.5px, 1.3vw, 15px);
    font-weight: 700;
    width: 200px;
    height: 50px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid #2456f6;
    transition: all 0.22s ease;
}

.footer-main .eng-btn-blue:hover {
    background: #1a3ae0;
    border-color: #1a3ae0;
    color: #fff;
    transform: translateY(-2px);
}

.footer-main .eng-btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: clamp(12.5px, 1.3vw, 15px);
    font-weight: 700;
    width: 200px;
    height: 50px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.52);
    transition: all 0.22s ease;
}

.footer-main .eng-btn-dark:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}


/* =============================================
           RESPONSIVE — LAPTOP (993px – 1199px)
        ============================================= */
@media (min-width: 993px) and (max-width: 1199px) {
    .footer-brand-desc {
        max-width: 300px;
        font-size: 13.5px;
    }

    .footer-logo {
        width: 180px;
    }
}

/* =============================================
           RESPONSIVE — TABLET LANDSCAPE (768px – 992px)
        ============================================= */
@media (max-width: 992px) {
    .footer-main {
        padding-top: 44px;
    }

    .footer-brand-desc {
        max-width: 100%;
    }

    .footer-logo {
        width: 170px;
        margin-bottom: 16px;
    }

    .footer-bottom {
        margin-top: 32px;
        padding: 16px 20px;
    }
}

/* =============================================
           RESPONSIVE — TABLET PORTRAIT (576px – 767px)
        ============================================= */
@media (max-width: 767px) {
    .footer-main {
        padding-top: 38px;
    }

    .footer-logo {
        width: 160px;
        margin-bottom: 14px;
    }

    .footer-brand-desc {
        font-size: 13.5px;
    }

    .footer-tagline {
        font-size: 14px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-social i {
        font-size: 24px;
    }

    .footer-bottom {
        margin-top: 28px;
        padding: 14px 18px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}

/* =============================================
           RESPONSIVE — SMALL MOBILE (≤575px)
        ============================================= */
@media (max-width: 575px) {
    .footer-main {
        padding-top: 32px;
    }

    .footer-logo {
        width: 250px;
        margin-bottom: 12px;
    }

    .footer-brand-desc {
        font-size: 13px;
        line-height: 1.65;
    }

    .footer-tagline {
        font-size: 14px;
    }

    .footer-title {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .footer-links li {
        margin-bottom: 9px;
    }

    .footer-links a {
        font-size: 13.5px;
    }

    .footer-social {
        gap: 12px;
    }

    .footer-social i {
        font-size: 22px;
    }

    .footer-bottom {
        margin-top: 24px;
        padding: 14px 16px;
    }

    .footer-bottom p {
        font-size: 12.5px;
    }
}


