* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: "Poppins", sans-serif;
    background: #f5f7fb;
    color: #222;
}

.main-header {
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}


/* LOGO */

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}


/* ========== NAV (DESKTOP) ========== */

.nav {
    flex: 1;
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
}

.nav li {
    position: relative;
}

.nav a {
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1A237E;
    /* UPDATED: universal link color */
    white-space: nowrap;
    transition: color 0.2s ease, transform 0.2s ease;
}


/* Hover + Active */

.nav li.active>a,
.nav a:hover {
    color: #0D47A1 !important;
    /* UPDATED */
    transform: translateY(-1px);
}


/* CTA button */

.nav li.nav-cta>a {
    padding: 8px 18px;
    border-radius: 999px;
    background: #1A237E;
    /* UPDATED */
    color: #ffffff !important;
    /* UPDATED */
    box-shadow: 0 10px 24px rgba(26, 35, 126, 0.4);
    /* Match theme */
}

.nav li.nav-cta>a:hover {
    background: #0D47A1 !important;
    /* UPDATED */
}


/* ========== JOIN US DROPDOWN (DESKTOP) ========== */

.join-us-item>a {
    color: #1A237E !important;
    /* UPDATED */
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.join-us-item>a::after {
    content: "▾";
    font-size: 10px;
    color: #1A237E !important;
    /* UPDATED */
}


/* Dropdown box */

.nav .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 12px;
    padding: 14px 0;
    min-width: 260px;
    list-style: none;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transition: all 0.2s ease;
    z-index: 999;
}


/* Show on hover */

.has-dropdown:hover>.dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(4px);
}


/* Dropdown items */

.nav .dropdown li {
    border-top: 1px dashed #1A237E;
    /* UPDATED */
}

.nav .dropdown li:first-child {
    border-top: none;
}

.nav .dropdown a {
    display: block;
    padding: 10px 26px;
    color: #1A237E !important;
    /* UPDATED */
    font-size: 15px;
    font-weight: 700;
    transform: none;
}

.nav .dropdown a:hover {
    background: #E3F2FD !important;
    /* UPDATED */
    color: #0D47A1 !important;
    /* UPDATED */
}


/* Hide glowing underline in dropdown */

.nav .dropdown a::after {
    display: none;
}


/* ========== HAMBURGER BUTTON (MOBILE) ========== */

.menu-toggle {
    display: none;
    width: 40px;
    height: 34px;
    border-radius: 10px;
    border: none;
    background: #1A237E;
    /* UPDATED */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 0;
}

.menu-toggle .line {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: all 0.2s ease;
}


/* Cross animation */

.menu-toggle.is-open .line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open .line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open .line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


/* ========== RESPONSIVE NAV (<= 991px) ========== */

@media (max-width: 991px) {
    .main-header .container {
        padding: 10px 16px;
    }
    .menu-toggle {
        display: inline-flex;
    }
    .nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: #ffffff;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform-origin: top;
        transition: max-height 0.25s ease, opacity 0.25s ease;
    }
    .nav.open {
        max-height: 420px;
        opacity: 1;
        visibility: visible;
    }
    .nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 12px 16px 16px;
    }
    .nav a {
        padding: 6px 2px;
        transform: none;
        color: #1A237E !important;
        /* UPDATED */
    }
    .nav a:hover {
        color: #0D47A1 !important;
        /* UPDATED */
    }
    /* Mobile dropdown */
    .nav .dropdown {
        position: static;
        transform: none;
        margin-top: 4px;
        padding: 4px 0 8px;
        min-width: 0;
        border-radius: 10px;
        box-shadow: none;
        background: #f4f6ff;
        opacity: 1;
        visibility: visible;
    }
    .nav .dropdown a {
        padding-left: 26px;
        color: #1A237E !important;
        /* UPDATED */
    }
}


/* Force dropdown visible */

.nav .dropdown {
    display: block !important;
}

.nav .dropdown li {
    display: block !important;
}

.nav .dropdown a {
    display: block !important;
    color: #1A237E !important;
    /* UPDATED */
}


/* =========================
   FIX: No default pill on active items
   Only show pill on hover for top-level links
   Ensure Contact Us hover works
   ========================= */


/* 1) Remove any default pill for active items (force transparent) */

.nav>ul>li.active>a,
.nav>ul>li.active:not(.nav-cta)>a {
    background: transparent !important;
    color: #1A237E !important;
    box-shadow: none !important;
}


/* 2) Ensure all top-level links use fixed padding (prevent movement) */

.nav>ul>li>a {
    display: inline-block;
    padding: 10px 22px;
    /* fixed */
    border-radius: 999px;
    background: transparent !important;
    color: #1A237E !important;
    transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}


/* 3) STRONG hover override for ALL top-level links (including Contact Us) */

.nav>ul>li>a:hover,
.nav>ul>li>a:focus {
    background: linear-gradient(135deg, #1A237E, #0D47A1) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 30px rgba(13, 71, 161, 0.25) !important;
}


/* 4) Ensure nav-cta (List Your Service) stays plain by default but still shows pill on hover */

.nav li.nav-cta>a {
    background: transparent !important;
    color: #1A237E !important;
    box-shadow: none !important;
    font-weight: 700;
}

.nav li.nav-cta>a:hover {
    background: linear-gradient(135deg, #1A237E, #0D47A1) !important;
    color: #fff !important;
    box-shadow: 0 12px 30px rgba(13, 71, 161, 0.25) !important;
}


/* 5) Keep dropdown links unaffected (plain) */

.nav .dropdown a {
    background: transparent !important;
    box-shadow: none !important;
    color: #1A237E !important;
}


/* 6) Mobile: keep same behaviour */

@media (max-width: 991px) {
    .nav>ul>li>a {
        padding: 10px 22px;
    }
    .nav>ul>li>a:hover {
        border-radius: 14px;
    }
    .nav .dropdown a {
        padding-left: 36px !important;
    }
}


/* ============ HERO BANNER (TOP IMAGE) ============ */

.contact-hero-banner {
    padding: 40px 6vw 50px;
    background: #eef1f5 url("images/abstract-bg.png") center/cover no-repeat;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-image: linear-gradient( 90deg, #ffb300, #ff4c4c, #9c27b0, #2196f3, #00c853) 1;
}

.chb-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    gap: 40px;
}

.chb-left .tag {
    font-size: 16px;
    color: #39b449;
    font-weight: 600;
    margin-bottom: 8px;
}

.chb-left h1 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.chb-left h1 span {
    color: #0089cf;
}

.chb-right img {
    width: 100%;
    max-width: 420px;
    display: block;
    margin-left: auto;
    filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.25));
}


/* ============ MAIN WRAPPER ============ */

.contact-wrapper {
    background: #ffffff;
}


/* ===== THANK YOU STRIP ===== */

.thank-strip {
    padding: 40px 6vw 26px;
    background: linear-gradient(120deg, #2f6adf, #476be8, #4f82ff);
    color: #ffffff;
    text-align: center;
}

.thank-strip h2 {
    font-size: 28px;
    font-weight: 700;
}


/* ===== FOR QUERIES SECTION ===== */

.queries-section {
    padding: 30px 6vw 40px;
    text-align: center;
}

.queries-heading {
    font-size: 18px;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin-bottom: 20px;
}

.queries-heading span {
    color: #ff7a18;
}


/* cards row */

.queries-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.q-card {
    background: #f7f8fb;
    border-radius: 16px;
    padding: 22px 18px 20px;
    position: relative;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.q-icon {
    position: absolute;
    left: 50%;
    top: -22px;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    border-radius: 18px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
}

.q-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.q-card h4 {
    margin-top: 18px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.q-card p {
    font-size: 14px;
    color: #555;
}


/* timeline line + dots */

.queries-timeline {
    position: relative;
    max-width: 1100px;
    margin: 26px auto 12px;
    height: 24px;
}

.queries-timeline .line {
    position: absolute;
    left: 6%;
    right: 6%;
    top: 50%;
    height: 3px;
    border-radius: 999px;
    background: #c4d6ff;
    transform: translateY(-50%);
}

.dot {
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #4b82ff;
    transform: translate(-50%, -50%);
}

.dot-1 {
    left: 13%;
}

.dot-2 {
    left: 37%;
}

.dot-3 {
    left: 63%;
}

.dot-4 {
    left: 87%;
}

.know-more {
    font-size: 18px;
    color: #ff8a20;
    font-weight: 500;
    margin-bottom: 18px;
}


/* social icons row */

.social-row {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-row a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
}

.social-row a:nth-child(1) {
    background: #3b5998;
}

.social-row a:nth-child(2) {
    background: #00acee;
}

.social-row a:nth-child(3) {
    background: #0a66c2;
}

.social-row a:nth-child(4) {
    background: #ff0000;
}

.social-row a:nth-child(5) {
    background: linear-gradient(135deg, #feda75, #d62976, #4f5bd5);
}


/* ===== bottom cards: office + contact ===== */

.bottom-contact-grid {
    max-width: 900px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    padding: 0 6vw 40px;
}

.bc-card {
    background: #f7f8fb;
    border-radius: 16px;
    padding: 26px 22px 24px;
    position: relative;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.06);
}

.bc-icon {
    position: absolute;
    left: 50%;
    top: -28px;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    border-radius: 20px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.bc-icon img {
    width: 28px;
    height: 28px;
}

.bc-card h4 {
    margin-top: 22px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.bc-card p {
    font-size: 14px;
    color: #555;
}


/* ===== blue locate strip ===== */

.locate-strip {
    background: #3d7fe8;
    padding: 18px 6vw 20px;
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
}

.loc-icon {
    margin-left: 8px;
    font-size: 18px;
}


/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
    .queries-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 30px;
    }
    .dot-1 {
        left: 20%;
    }
    .dot-2 {
        left: 50%;
    }
    .dot-3 {
        left: 80%;
    }
    .dot-4 {
        display: none;
    }
}

@media (max-width: 800px) {
    .chb-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .chb-right img {
        margin: 0 auto;
        max-width: 260px;
    }
    .bottom-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .queries-cards {
        grid-template-columns: 1fr;
    }
    .queries-timeline .line,
    .dot {
        display: none;
    }
    .thank-strip h2 {
        font-size: 22px;
    }
    .chb-left h1 {
        font-size: 30px;
    }
}

#map-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: all 0.5s ease;
    border-radius: 12px;
}


/* When map appears */

#map-section.open {
    padding: 20px 0;
    height: 400px;
    opacity: 1;
}


/* =============== ENQUIRY FORM CARD =============== */

.enquiry-section {
    padding: 40px 6vw 60px;
    background: #f5f7fb;
}

.enquiry-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 26px;
    border: 1px solid #dadada;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    padding: 26px 26px 30px;
}

.enquiry-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.enquiry-card h2 span {
    color: #3ca335;
}

.enquiry-text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 22px;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.en-row {
    display: flex;
    gap: 16px;
}

.en-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.en-field label {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.en-field input,
.en-field select,
.en-field textarea {
    border-radius: 8px;
    border: 1px solid #f2b7b7;
    /* हल्का red जैसा screenshot */
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
}

.en-field textarea {
    resize: vertical;
}

.en-field input:focus,
.en-field select:focus,
.en-field textarea:focus {
    border-color: #3ca335;
    box-shadow: 0 0 0 2px rgba(60, 163, 53, 0.18);
}


/* submit button */

.en-submit {
    margin-top: 6px;
    padding: 10px 40px;
    border-radius: 999px;
    border: none;
    background: #56a43a;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    align-self: flex-start;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.en-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}


/* responsive */

@media (max-width: 768px) {
    .en-row {
        flex-direction: column;
    }
}

:root {
    --royal: #001F7D;
    --sky: #00BFFF;
    --white: #ffffff;
    --font: "Poppins", sans-serif;
}


/* Footer: same as index (home) — uses new.css .imp-footer styles */

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --white: #ffffff;
    --text: #f5f5f5;
    --font: 'Poppins', sans-serif;
}


/* RESET */

*/
/* {margin:0;padding:0;box-sizing:border-box;}
body{
  font-family:var(--font);
  
  color:#fff;
} */


/* ================= TOP INFO BAR ================= */

.top-info-bar {
    background: #fff;
    color: rgb(63, 6, 251)2f6;
    position: relative;
    z-index: 1000;
}

.top-info-inner {
    max-width: 1400px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-logo img {
    height: 100px;
}

.top-info-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.info-item {
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    color: rgb(41, 4, 252)4fa;
    font-size: 14px;
}

.info-item img {
    width: 28px;
}

@media(max-width:768px) {
    .top-info-inner {
        flex-direction: column;
        text-align: center;
    }
    .top-info-right {
        flex-direction: column;
        gap: 12px;
    }
}


/* ================= FLOATING BUTTONS ================= */

.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.fab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 10px 30px rgba(42, 42, 255, .45);
}

.fab-whatsapp {
    background: linear-gradient(135deg, var(--purple), var(--violet));
}

.fab .label {
    display: none;
}

@media(max-width:992px) {
    .fab .label {
        display: inline;
    }
}


/* ================= NAVBAR ================= */

.premium-navbar {
    position: sticky;
    top: 0;
    z-index: 900;
    background: linear-gradient( 90deg, var(--blue), var(--purple), var(--violet));
}

.nav-container {
    max-width: 1400px;
    margin: auto;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* HAMBURGER */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 32px;
    height: 3px;
    background: #fff;
    transition: .3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


/* MENU */

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: .3s;
}

.nav-link:hover::after {
    width: 100%;
}


/* DROPDOWN */

.dropdown {
    position: relative;
}

.caret {
    margin-left: 6px;
    font-weight: 700;
}

.dropdown-content {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 260px;
    background: linear-gradient( 135deg, #6A1B9A 0%, #8A2BE2 45%, #D4AF37 100%);
    border-radius: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .35s;
    overflow: hidden;
}

.dropdown-content a {
    display: block;
    padding: 14px 18px;
    color: #fff;
    text-decoration: none;
}

.dropdown-content a:hover {
    background: #f800e7;
}

@media(min-width:901px) {
    .dropdown:hover .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}


/* SOCIAL ICONS */

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons img {
    width: 20px;
    filter: invert(1);
}


/* ================= MOBILE ================= */

@media (max-width: 900px) {
    html.nav-open, body.nav-open {
        overflow: hidden !important;
        height: 100%;
        position: fixed;
        left: 0;
        right: 0;
    }
    body.nav-open .header-sticky-wrapper,
    body.nav-open .premium-navbar,
    body.nav-open .nav-container { overflow: visible !important; }
    .premium-navbar { overflow: visible; }
    .nav-container { overflow: visible; }
    .hamburger {
        display: flex;
        position: relative;
        z-index: 100002;
    }
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: 100%;
        height: 100vh !important;
        height: 100dvh !important;
        min-height: 100vh;
        min-height: 100dvh;
        margin: 0 !important;
        padding: clamp(80px, 18vw, 100px) clamp(20px, 5vw, 24px) 40px;
        background: linear-gradient(180deg, var(--blue), var(--purple), var(--violet));
        transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100001;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .nav-menu::-webkit-scrollbar {
        display: none;
    }
    .nav-menu.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
    }
    .nav-list > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .nav-link {
        display: block;
        padding: 16px 0;
        font-size: clamp(16px, 4vw, 17px);
    }
    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .dropdown.active .dropdown-toggle .caret {
        transform: rotate(180deg);
    }
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: linear-gradient(180deg, #6A1B9A 0%, #8A2BE2 45%, #D4AF37 100%);
        border-radius: 14px;
        margin: 8px 0 12px 16px;
        padding: 8px 0;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .dropdown.active .dropdown-content {
        display: block;
    }
    .dropdown-content a {
        color: #fff;
        padding: 12px 20px;
        font-weight: 600;
        font-size: clamp(14px, 3.5vw, 15px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .dropdown-content a:last-child {
        border-bottom: none;
    }
    .dropdown-content a:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
        padding-left: 24px;
    }
    .social-icons {
        display: none;
    }
}


/* ===================== BRAND TOKENS ===================== */

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #ffffff;
    --black: #0b111b;
    --font-main: 'Poppins', sans-serif;
    --font-alt: 'Open Sans', sans-serif;
}


/* ===================== HERO SECTION ===================== */

.hero-banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: radial-gradient( 1200px 600px at 60% 75%, rgba(42, 42, 255, 0.22), transparent 60%), url("images/contactsupport.jpg") center / cover no-repeat;
    /* 🔥 IMAGE BRIGHT & 4K */
    filter: brightness(1.18) contrast(1.12) saturate(1.25);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


/* ===================== SOFT OVERLAY (NO DULL) ===================== */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(11, 17, 27, 0.15), rgba(11, 17, 27, 0.45));
    z-index: 1;
}


/* ===================== HERO CONTENT ===================== */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    padding: clamp(24px, 5vw, 80px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
    animation: heroFadeUp 1.4s cubic-bezier(.25, .8, .25, 1) forwards;
}


/* ===================== HERO TITLE (PURE WHITE) ===================== */

.hero-title {
    font-family: var(--font-main);
    font-weight: 900;
    letter-spacing: 0.02em;
    font-size: clamp(2.4rem, 5vw, 5rem);
    color: var(--white);
    /* 🔥 3D WHITE GLOW */
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.65), 0 0 80px rgba(255, 255, 255, 0.35);
    animation: titleFloat 6s ease-in-out infinite;
}


/* ===================== GLASS BOX ===================== */

.glass-box {
    width: 100%;
    max-width: 720px;
    padding: clamp(22px, 4vw, 42px);
    border-radius: 28px;
    background: linear-gradient( 135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45), 0 0 90px rgba(42, 42, 255, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    text-align: center;
}


/* ===================== GLASS TEXT – ALL WHITE ===================== */

.glass-box h2 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 14px;
    color: var(--white);
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
}

.glass-box p {
    font-family: var(--font-alt);
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    line-height: 1.75;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.95);
}


/* ===================== CTA BUTTON ===================== */

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 44px;
    border-radius: 999px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient( 135deg, var(--blue), var(--violet));
    box-shadow: 0 18px 50px rgba(42, 42, 255, 0.55);
    transition: all 0.4s cubic-bezier(.25, .8, .25, 1);
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 32px 80px rgba(42, 42, 255, 0.75);
}


/* ===================== ANIMATIONS ===================== */

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


/* ===================== RESPONSIVE ===================== */

@media (max-width: 992px) {
    .glass-box {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-content {
        gap: 24px;
    }
    .cta-btn {
        width: 100%;
    }
}

:root {
    --blue: #2A2AFF;
    --purple: #8B00FF;
    --violet: #B300FF;
    --white: #ffffff;
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --dark: #1A1A1A;
    --radius-xl: 38px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --glass: rgba(255, 255, 255, 0.10);
    --glass-2: rgba(255, 255, 255, 0.14);
    --stroke: rgba(255, 255, 255, 0.22);
    --shadow-1: 0 18px 55px rgba(0, 0, 0, 0.22);
    --shadow-2: 0 32px 90px rgba(0, 0, 0, 0.30);
    --shadow-in: inset 0 1px 0 rgba(255, 255, 255, 0.25);
    --font-h: "Poppins", sans-serif;
    --font-b: "Open Sans", sans-serif;
    --font-ui: "Outfit", sans-serif;
}


/* Footer (AURA block removed): same as index — uses new.css */