/* =====================================================
   🔒 BRAND DESIGN SYSTEM (SAFE & LOCKED)
===================================================== */

:root {
    --bg-white: #ffffff;
    --electric-blue: #0052FF;
    --purple: #7c3aed;
    --violet: #5b21b6;
    --gold: #facc15;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --fontH: 'Poppins', sans-serif;
    --fontB: 'Open Sans', sans-serif;
}


/* =====================================================
   🌍 GLOBAL RESET (SAFE VERSION)
===================================================== */

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: clip;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* ❌ removed max-width:100% from * */


/* =====================================================
   BODY BASE
===================================================== */

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.75;
}


/* =====================================================
   🔠 TYPOGRAPHY SYSTEM (BRAND SAFE)
===================================================== */


/* HERO TITLES */

.hero-font,
.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient( 90deg, var(--electric-blue), var(--purple), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


/* SECTION HEADINGS */

.heading-font,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}


/* SUB HEADINGS */

h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}


/* BODY TEXT */

p,
li {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
}


/* UI TEXT */

.small-text,
label,
.badge {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}


/* =====================================================
   🎥 MEDIA SAFETY (NO CONFLICT)
===================================================== */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

video {
    max-width: 100%;
    height: auto;
}


/* =====================================================
   🔘 BUTTON SYSTEM
===================================================== */

.btn-primary {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 999px;
    border: none;
    color: #fff;
    background: linear-gradient( 135deg, var(--electric-blue), var(--purple));
    transition: all 0.35s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient( 135deg, var(--purple), var(--violet));
    box-shadow: 0 18px 40px rgba(0, 82, 255, 0.35);
}


/* =====================================================
   🧱 CONTAINER SAFETY (SCOPED)
===================================================== */

.container,
.wrapper,
.section {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}


/* ❌ removed navbar / footer hijacking */


/* =====================================================
   📱 MOBILE SAFETY (NON-DESTRUCTIVE)
===================================================== */

@media (max-width: 768px) {
    .container,
    .wrapper,
    .section {
        padding-left: 16px;
        padding-right: 16px;
    }
    .logo,
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}


/* =====================================================
   🚫 HORIZONTAL SCROLL HARD STOP (SAFE)
===================================================== */

@media (max-width: 1200px) {
    html,
    body {
        overflow-x: clip;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Open+Sans:wght@400;500&display=swap');

/* ================= HARD BRAND NANO SECTION ================= */

.nano-hard-section {
    padding: clamp(64px, 8vw, 100px) clamp(20px, 4vw, 40px);
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.nano-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: center;
}


/* ================= TEXT AREA ================= */


/* 🔒 RULE 1: Heading = Blue → Purple → Violet */

.nano-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 4.8vw, 54px);
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nano-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #6A1B9A;
    margin-bottom: 28px;
}

.nano-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 16.5px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 18px;
}


/* ================= FEATURE BOX ================= */


/* 🔒 RULE 2 + 3 */

.nano-feature-box {
    margin-top: 40px;
    padding: 42px 38px;
    border-radius: 26px;
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    color: #ffffff;
    box-shadow: 0 35px 90px rgba(42, 42, 255, 0.45);
    position: relative;
}

.nano-feature-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #ffffff;
}

.nano-feature-box p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15.5px;
    line-height: 1.65;
    margin-bottom: 20px;
    color: #ffffff;
}

.nano-feature-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nano-feature-box ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #ffffff;
}

.nano-feature-box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: 700;
}


/* ================= IMAGE (NO BLUR – PURE GLASS) ================= */


/* 🔒 RULE 4: Image sharp, glass only on frame */

.nano-image-box {
    position: relative;
    padding: 18px;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow: 0 40px 110px rgba(42, 42, 255, 0.4);
}


/* HARD BRAND FRAME */

.nano-image-box::before {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 34px;
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    z-index: -1;
}


/* SOFT GLASS GLOW (IMAGE SAFE) */

.nano-image-box::after {
    content: "";
    position: absolute;
    inset: 60% 10% 10% 10%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}


/* IMAGE — 100% SHARP */

.nano-image-box img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    border-radius: 22px;
    object-fit: cover;
    filter: none;
    backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(20px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .nano-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}


/* ================= IMAGE SERVICES SECTION ================= */

.nano-image-services-section {
    padding: clamp(64px, 8vw, 100px) clamp(20px, 4vw, 40px);
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.nano-image-services-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
}


/* 🔒 RULE 1: Heading gradient */

.nano-services-heading {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(34px, 4.8vw, 54px);
    font-weight: 700;
    margin-bottom: 70px;
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ================= GRID ================= */

.nano-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
}


/* ================= CARD ================= */


/* 🔒 RULE 2 + 3 */

.nano-service-card {
    padding: 22px;
    border-radius: 26px;
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    color: #ffffff;
    box-shadow: 0 35px 90px rgba(42, 42, 255, 0.45);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.nano-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 55px 140px rgba(42, 42, 255, 0.6);
}


/* ================= IMAGE GLASS ================= */


/* 🔒 RULE 4 */

.nano-card-image {
    position: relative;
    padding: 10px;
    border-radius: 20px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.nano-card-image::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 24px;
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    z-index: -1;
}

.nano-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    transform: translateZ(18px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}


/* ================= TEXT ================= */

.nano-service-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    margin: 0;
    color: #ffffff;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .nano-card-image img {
        height: 180px;
    }
}


/* ================= UPHOLSTERY TYPES SECTION ================= */

.upholstery-types-section {
    padding: clamp(64px, 8vw, 100px) clamp(20px, 4vw, 40px);
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.upholstery-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    padding: 0;
}


/* 🔒 RULE 1: Heading gradient */

.upholstery-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(34px, 4.8vw, 54px);
    font-weight: 700;
    margin-bottom: 14px;
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.upholstery-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #444;
    margin-bottom: 70px;
}


/* ================= GRID ================= */

.upholstery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 36px;
}


/* ================= CARD ================= */


/* 🔒 RULE 2 + 3 */

.upholstery-card {
    padding: 22px;
    border-radius: 28px;
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    color: #ffffff;
    box-shadow: 0 35px 100px rgba(42, 42, 255, 0.45);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.upholstery-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 55px 150px rgba(42, 42, 255, 0.6);
}


/* ================= IMAGE (GLASS + 4K) ================= */


/* 🔒 RULE 4 */

.upholstery-img {
    position: relative;
    padding: 12px;
    border-radius: 22px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.upholstery-img::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 26px;
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    z-index: -1;
}

.upholstery-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    transform: translateZ(18px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}


/* ================= TEXT ================= */

.upholstery-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    color: #ffffff;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .upholstery-img img {
        height: 180px;
    }
}


/* ================= BENEFITS SECTION ================= */

.nano-benefits-section {
    padding: clamp(64px, 8vw, 100px) clamp(20px, 4vw, 40px);
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}


/* 🔒 RULE 1: Heading gradient */

.nano-benefits-heading {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(34px, 4.8vw, 54px);
    font-weight: 700;
    margin-bottom: 80px;
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ================= LIST ================= */

.nano-benefits-list {
    list-style: none;
    max-width: 1300px;
    margin: auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}


/* ================= ITEM ================= */


/* 🔒 RULE 2 + 3 */

.nano-benefit-item {
    border-radius: 30px;
    padding: 26px;
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    color: #ffffff;
    box-shadow: 0 40px 120px rgba(42, 42, 255, 0.5);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.nano-benefit-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 60px 160px rgba(42, 42, 255, 0.65);
}


/* ================= IMAGE (GLASS + 4K) ================= */


/* 🔒 RULE 4 */

.nano-benefit-image {
    position: relative;
    padding: 12px;
    border-radius: 24px;
    margin-bottom: 22px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.nano-benefit-image::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 28px;
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    z-index: -1;
}

.nano-benefit-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    transform: translateZ(18px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}


/* ================= CONTENT ================= */

.nano-benefit-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.nano-benefit-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15.5px;
    line-height: 1.6;
    margin: 0;
    color: #ffffff;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .nano-benefit-image img {
        height: 180px;
    }
}


/* ================= NANO PROCESS SECTION ================= */

.nano-process-section {
    padding: 130px 20px;
    background: #ffffff;
    text-align: center;
}


/* 🔒 RULE 1: Heading gradient */

.nano-process-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(34px, 4.8vw, 54px);
    font-weight: 700;
    margin-bottom: 14px;
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nano-process-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #444;
    margin-bottom: 80px;
}


/* ================= FLOW ================= */


/* ================= PROCESS FLOW (ONE ROW FIXED) ================= */

.nano-process-flow {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 🔒 ONE ROW – 5 ITEMS */
    gap: 24px;
}


/* ================= STEP CARD (SMALLER SIZE) ================= */

.nano-process-step {
    padding: 28px 20px;
    /* 🔻 size reduced */
    border-radius: 22px;
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    color: #ffffff;
    box-shadow: 0 28px 80px rgba(42, 42, 255, 0.45);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.nano-process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 120px rgba(42, 42, 255, 0.6);
}


/* ================= ICON SMALL ================= */

.process-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    font-size: 24px;
}


/* ================= TITLE & TEXT SMALL ================= */

.nano-process-step h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 15.5px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.nano-process-step p {
    font-family: 'Open Sans', sans-serif;
    font-size: 13.8px;
    line-height: 1.5;
    color: #ffffff;
}


/* ================= RESPONSIVE ================= */


/* Tablet: 3 per row */

@media (max-width: 1200px) {
    .nano-process-flow {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Mobile: 1 per row */

@media (max-width: 768px) {
    .nano-process-flow {
        grid-template-columns: 1fr;
    }
}


/* ================= IDEAL FOR SECTION ================= */

.ideal-for-section {
    padding: 120px 20px;
    background: #ffffff;
}

.ideal-for-container {
    max-width: 1300px;
    margin: auto;
    text-align: center;
}


/* 🔒 RULE 1: Heading gradient */

.ideal-for-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(34px, 4.8vw, 54px);
    font-weight: 700;
    margin-bottom: 14px;
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ideal-for-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #444;
    margin-bottom: 70px;
}


/* ================= GRID ================= */

.ideal-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 36px;
}


/* ================= CARD ================= */


/* 🔒 RULE 2 + 3 */

.ideal-for-card {
    padding: 22px;
    border-radius: 28px;
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    color: #ffffff;
    box-shadow: 0 35px 100px rgba(42, 42, 255, 0.45);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.ideal-for-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 55px 150px rgba(42, 42, 255, 0.6);
}


/* ================= IMAGE (GLASS + 4K SHARP) ================= */


/* 🔒 RULE 4 */

.ideal-for-image {
    position: relative;
    padding: 12px;
    border-radius: 22px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    overflow: hidden;
}

.ideal-for-image::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 26px;
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    z-index: -1;
}

.ideal-for-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    transform: translateZ(18px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}


/* ================= TEXT ================= */

.ideal-for-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #ffffff;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .ideal-for-image img {
        height: 180px;
    }
}


/* ================= SAFETY & NOTES SECTION ================= */

.nano-safety-section {
    padding: 130px 20px;
    background: #ffffff;
    max-width: 1300px;
    margin: auto;
}


/* 🔒 RULE 1: Heading gradient */

.nano-safety-header h2 {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(34px, 4.8vw, 54px);
    font-weight: 700;
    margin-bottom: 14px;
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nano-safety-header p {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #444;
    margin-bottom: 70px;
}


/* ================= SAFETY PANEL ================= */


/* 🔒 RULE 2 + 3 */

.nano-safety-panel {
    padding: 42px 38px;
    border-radius: 30px;
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    box-shadow: 0 40px 120px rgba(42, 42, 255, 0.5);
    margin-bottom: 50px;
}

.nano-safety-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nano-safety-list li {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}


/* ================= NOTES PANEL ================= */


/* 🔒 RULE 2 + 3 */

.nano-notes-panel {
    padding: 38px 34px;
    border-radius: 26px;
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    box-shadow: 0 35px 100px rgba(42, 42, 255, 0.45);
}

.nano-notes-panel h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #ffffff;
}

.nano-notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nano-notes-list li {
    font-family: 'Open Sans', sans-serif;
    font-size: 15.5px;
    line-height: 1.6;
    color: #ffffff;
    padding: 10px 0;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .nano-safety-header p {
        font-size: 16px;
    }
    .nano-safety-panel,
    .nano-notes-panel {
        padding: 32px 26px;
    }
}


/* ================= TICKET LIST – ONE ROW FIX ================= */

.why-choose-tickets {
    list-style: none;
    max-width: 1400px;
    margin: auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 🔒 5 tickets one row */
    gap: 22px;
}


/* ================= TICKET CARD – COMPACT ================= */

.why-ticket {
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    border-radius: 20px;
    padding: 22px 18px;
    /* thoda compact */
    color: #ffffff;
    box-shadow: 0 28px 80px rgba(42, 42, 255, 0.45);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-ticket:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 120px rgba(42, 42, 255, 0.6);
}


/* Ticket notch same rahega */

.why-ticket::before,
.why-ticket::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    transform: translateY(-50%);
}

.why-ticket::before {
    left: -8px;
}

.why-ticket::after {
    right: -8px;
}


/* ================= CONTENT COMPACT ================= */

.why-ticket article {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticket-icon {
    font-size: 18px;
}

.why-ticket p {
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    margin: 0;
    color: #ffffff;
}


/* ================= RESPONSIVE ================= */


/* Tablet → 3 per row */

@media (max-width: 1200px) {
    .why-choose-tickets {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Mobile → 1 per row */

@media (max-width: 768px) {
    .why-choose-tickets {
        grid-template-columns: 1fr;
    }
}


/* ================= NANO CTA SECTION ================= */

.nano-cta-section {
    padding: 140px 20px;
    background: #ffffff;
    display: flex;
    justify-content: center;
}


/* 🔒 CTA PANEL */

.nano-cta-box {
    max-width: 1100px;
    width: 100%;
    padding: 80px 60px;
    border-radius: 40px;
    text-align: center;
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    box-shadow: 0 50px 160px rgba(42, 42, 255, 0.6);
}


/* 🔒 RULE 1: Heading gradient */

.nano-cta-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 4.8vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient( 90deg, #ffffff, #f5f5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* CTA TEXT */

.nano-cta-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 18.5px;
    line-height: 1.7;
    color: #ffffff;
    max-width: 760px;
    margin: 0 auto 40px;
}


/* ================= CTA BUTTON ================= */

.nano-cta-button {
    display: inline-block;
    padding: 18px 42px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 16.5px;
    font-weight: 600;
    color: #2A2AFF;
    text-decoration: none;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.nano-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .nano-cta-box {
        padding: 60px 30px;
        border-radius: 28px;
    }
    .nano-cta-text {
        font-size: 16.5px;
    }
}


/* ================= FAQ SECTION ================= */

.nano-faq-section {
    padding: 130px 20px;
    background: #ffffff;
}


/* 🔒 RULE 1: Heading gradient */

.nano-faq-heading {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(34px, 4.8vw, 54px);
    font-weight: 700;
    margin-bottom: 80px;
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ================= FAQ WRAPPER ================= */

.nano-faq-wrapper {
    max-width: 1100px;
    margin: auto;
    display: grid;
    gap: 26px;
}


/* ================= FAQ ITEM ================= */


/* 🔒 RULE 2 + 3 */

.nano-faq-item {
    border-radius: 24px;
    padding: 26px 30px;
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    color: #ffffff;
    box-shadow: 0 30px 90px rgba(42, 42, 255, 0.45);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.nano-faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 45px 120px rgba(42, 42, 255, 0.6);
}


/* SUMMARY (QUESTION) */

.nano-faq-item summary {
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    list-style: none;
    color: #ffffff;
    position: relative;
    padding-right: 30px;
}

.nano-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 22px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.nano-faq-item[open] summary::after {
    content: "−";
}


/* ANSWER */

.nano-faq-item p {
    margin-top: 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15.5px;
    line-height: 1.6;
    color: #ffffff;
}


/* Remove default marker */

.nano-faq-item summary::-webkit-details-marker {
    display: none;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .nano-faq-item {
        padding: 22px 24px;
    }
    .nano-faq-item summary {
        font-size: 16px;
    }
}


/* ============================================
   ULTRA BRIGHT FOOTER (NEON GLASSMORPHIC)
============================================ */

: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: same as index (home) — uses new.css .imp-footer styles */

/* ---------------------------------
   ⭐ STATS SECTION (BRAND LEVEL)
----------------------------------*/

/* ================= STATS — 2026 upgraded ================= */

.stats-simple-section {
    padding: clamp(48px, 6vw, 64px) clamp(20px, 4vw, 40px);
    background: #f8f9fc;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.stats-simple-box {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2A2AFF 0%, #6A1B9A 50%, #8A2BE2 100%);
    border-radius: 24px;
    padding: clamp(36px, 4vw, 48px) clamp(28px, 3vw, 40px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: clamp(20px, 2.5vw, 32px);
    flex-wrap: wrap;
    box-shadow: 0 24px 56px rgba(42, 42, 255, 0.22), 0 0 0 1px rgba(255,255,255,0.08) inset;
}

.stat-simple-item {
    text-align: center;
    flex: 1 1 140px;
    min-width: 0;
}

.stat-simple-item h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #fff;
}

.stat-simple-item p {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(13px, 1.2vw, 15px);
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
}

@media (max-width: 992px) {
    .stats-simple-box { gap: 28px; padding: 40px 28px; }
    .stat-simple-item { flex: 1 1 45%; }
}

@media (max-width: 480px) {
    .stats-simple-box { padding: 32px 24px; border-radius: 20px; gap: 24px; }
    .stat-simple-item { flex: 1 1 100%; }
    .stat-simple-item h2 { font-size: clamp(26px, 8vw, 34px); }
}


/* ================= TESTIMONIAL MASTER ================= */

.testimonial-master {
    padding: clamp(64px, 8vw, 100px) clamp(20px, 4vw, 40px);
    background: radial-gradient(circle at top, rgba(42, 42, 255, 0.1), #ffffff 55%);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}


/* Soft brand glow */

.testimonial-master::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient( circle, rgba(42, 42, 255, 0.18), transparent 65%);
    filter: blur(120px);
    z-index: 0;
}


/* ================= TOP TITLE ================= */

.testi-main-title {
    position: relative;
    z-index: 2;
    font-family: "Poppins", sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    margin-bottom: 70px;
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ================= VIDEOS ================= */

.testi-videos {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.testi-video-box {
    position: relative;
    width: 100%;
    max-width: 360px;
    border-radius: 20px;
    padding: 12px;
    background: linear-gradient(135deg, #2A2AFF, #8A2BE2);
    box-shadow: 0 20px 50px rgba(42, 42, 255, 0.25);
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.testi-video-box video {
    position: absolute;
    inset: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    object-fit: cover;
    display: block;
    border-radius: 14px;
    background: #000;
}


/* ================= HEADING BLOCK ================= */

.testi-heading-wrap {
    max-width: 820px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 2;
}

.testi-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    border-radius: 50px;
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    box-shadow: 0 10px 25px rgba(42, 42, 255, 0.4);
}

.testi-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

.testi-title .highlight {
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testi-subtitle {
    font-family: "Open Sans", sans-serif;
    font-size: 16.5px;
    line-height: 1.7;
    color: #555;
}


/* ================= SLIDER ================= */

.testimonial-slider {
    position: relative;
    max-width: 820px;
    margin: auto;
    min-height: 220px;
    z-index: 2;
}


/* SLIDE CARD */

.testi-slide {
    position: absolute;
    inset: 0;
    padding: 46px 44px;
    border-radius: 30px;
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    color: #ffffff;
    box-shadow: 0 40px 90px rgba(42, 42, 255, 0.45);
    opacity: 0;
    transform: translateY(30px);
}


/* TEXT */

.testi-text {
    font-family: "Open Sans", sans-serif;
    font-size: 16.5px;
    line-height: 1.75;
    margin-bottom: 26px;
    color: #ffffff;
}


/* NAME */

.testi-name {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .testi-videos {
        gap: 28px;
    }
    .testi-video-box {
        width: 100%;
    }
    .testimonial-slider {
        min-height: 260px;
    }
    .testi-slide {
        padding: 36px 28px;
    }
}

@media (max-width: 480px) {
    .testi-main-title {
        margin-bottom: 50px;
    }
    .testi-slide {
        padding: 30px 22px;
    }
    .testi-text {
        font-size: 15px;
    }
}

:root {
    --blue: #2A2AFF;
    /* Electric Blue */
    --purple: #6A1B9A;
    /* Purple */
    --violet: #8A2BE2;
    /* Violet */
    --white: #ffffff;
    --dark: #111;
}


/* =====================
   CONTAINER
===================== */

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}


/* =====================
   HERO SECTION
===================== */

.hero-impeccable {
    position: relative;
    height: 520px;
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* BRAND GRADIENT */
    background: linear-gradient( 135deg, var(--violet) 0%, var(--violet) 30%, var(--blue) 30%, var(--blue) 60%, var(--purple) 60%, var(--purple) 100%);
    background-size: 200% 200%;
    animation: heroGradient 10s ease-in-out infinite;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    /* 🔥 ALL TEXT WHITE */
}


/* Animated gradient */

@keyframes heroGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* PARTICLES */

.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}


/* CONTENT WRAPPER */

.hero-inner {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    gap: 30px;
}


/* =====================
   LEFT CONTENT
===================== */

.hero-content {
    flex: 1;
    max-width: 540px;
    opacity: 0;
    transform: translateY(15px);
    transition: 0.7s ease;
}

.hero-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Eyebrow */

.hero-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    margin-bottom: 14px;
    color: #ffffff;
}


/* Heading */

.hero-content h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}


/* Paragraph */

.hero-content p {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.7;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.95);
}


/* ===============================
   HERO STATS – PREMIUM DARK GLASS
================================ */

.hero-stats-wrapper {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}


/* STAT BOX */

.hero-stats-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 34px;
    border-radius: 4px;
    /* DARK GLASS OVER IMAGE */
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.58));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 14px 40px rgba(0, 0, 0, 0.45);
    transition: all 0.35s ease;
}


/* HOVER – VERY SUBTLE (LIKE IMAGE) */

.hero-stats-box:hover {
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.68));
    transform: translateY(-3px);
}


/* ICON */

.hero-stats-box i {
    font-size: 42px;
    color: #ffffff;
    opacity: 0.95;
}


/* TEXT WRAPPER */

.hero-stats-text {
    display: flex;
    flex-direction: column;
}


/* TITLE */

.hero-stats-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}


/* SUB TEXT */

.hero-stats-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 6px;
    opacity: 0.96;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .hero-stats-wrapper {
        gap: 22px;
    }
}

@media (max-width: 768px) {
    .hero-stats-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-stats-box {
        padding: 24px 26px;
    }
    .hero-stats-text h3 {
        font-size: 23px;
    }
    .hero-stats-text p {
        font-size: 20px;
    }
}


/* ===============================
   HERO SECTION – HEIGHT FIX
================================ */

.hero-impeccable {
    position: relative;
    /* ❌ fixed height hatao */
    height: auto;
    /* ✅ full screen cover + flexible */
    min-height: 100vh;
    /* ✅ niche content ke liye space */
    padding-bottom: 100px;
    /* ✅ cut problem fix */
    overflow: visible;
}


/* ===============================
   HERO INNER SPACING
================================ */

.hero-inner {
    align-items: flex-start;
    padding-top: 80px;
}


/* ===============================
   HERO STATS – PREMIUM DARK GLASS
================================ */

.hero-stats-wrapper {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.hero-stats-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 34px;
    border-radius: 4px;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.58));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 14px 40px rgba(0, 0, 0, 0.45);
    transition: all 0.35s ease;
}

.hero-stats-box:hover {
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.68));
    transform: translateY(-3px);
}

.hero-stats-box i {
    font-size: 42px;
    color: #ffffff;
}

.hero-stats-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.hero-stats-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 6px;
}


/* ===============================
   RESPONSIVE FIX
================================ */

@media (max-width: 992px) {
    .hero-inner {
        padding-top: 60px;
    }
}

@media (max-width: 768px) {
    .hero-impeccable {
        padding-bottom: 130px;
    }
    .hero-stats-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-stats-box {
        padding: 24px 26px;
    }
    .hero-stats-text h3 {
        font-size: 23px;
    }
    .hero-stats-text p {
        font-size: 20px;
    }
}


/* =====================
   RIGHT FORM CARD
===================== */

.hero-card {
    flex: 1;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(16px);
    padding: 22px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(15px);
    transition: 0.7s ease 0.2s;
    color: #ffffff;
}

.hero-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-card h3 {
    font-size: clamp(18px, 3vw, 20px);
    font-weight: 700;
    color: #ffffff;
}

.hero-card-sub {
    font-size: clamp(12px, 2vw, 14px);
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}


/* FORM */

.form-group {
    margin-bottom: 14px;
}

.hero-booking-form label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 3px;
    display: block;
    color: #ffffff;
}

.hero-booking-form select,
.hero-booking-form input[type="text"],
.hero-booking-form input[type="tel"] {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--fontB);
    border: 1px solid rgba(255,255,255,0.35);
    color: #111;
    background: rgba(255,255,255,0.95);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-booking-form input[type="text"]:focus,
.hero-booking-form input[type="tel"]:focus,
.hero-booking-form select:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 2px rgba(106, 27, 154, 0.2);
}


/* BUTTON */

.hero-submit {
    width: 100%;
    padding: 11px;
    border-radius: 999px;
    background: var(--white);
    color: var(--purple);
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: 0.25s;
}

.hero-submit:hover {
    background: var(--violet);
    color: var(--white);
}

.hero-small-note {
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.9);
}


/* =====================
   RESPONSIVE
===================== */


/* TABLET */

@media (max-width: 992px) {
    .hero-impeccable {
        height: auto;
        padding: 40px 0;
    }
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
    .hero-card {
        max-width: 420px;
        width: 100%;
    }
}


/* MOBILE */

@media (max-width: 576px) {
    .hero-impeccable {
        padding: 60px 0;
    }
    .hero-content h1 {
        font-size: 30px;
    }
    .hero-card {
        padding: 18px 18px;
    }
}

: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: #1a1a2e;
    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: #1a1a2e;
    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;
    }
}


/* ================= VIDEO ROW ================= */

.nano-video-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 3vw, 24px);
    width: 100%;
    max-width: 1200px;
    margin: clamp(40px, 6vw, 64px) auto 0;
    padding: 0 clamp(16px, 3vw, 24px);
}

.nano-video-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: clamp(16px, 2.5vw, 22px);
    overflow: hidden;
    background: #0a0a12;
    box-shadow: 0 20px 50px rgba(42, 42, 255, 0.18), 0 0 0 1px rgba(255,255,255,0.06) inset;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.nano-video-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nano-video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 64px rgba(42, 42, 255, 0.22);
}

@media (max-width: 992px) {
    .nano-video-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .nano-video-row { grid-template-columns: 1fr; }
    .nano-video-card { min-height: 200px; }
}


/* Large Screens / 4K */

@media (min-width: 1600px) {
    .nano-video-row {
        max-width: 1400px;
    }
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #ffffff;
}


/* ================= FOOTER BASE ================= */

.imp-footer {
    margin-top: 120px;
    padding: 80px 24px 40px;
    position: relative;
    background: radial-gradient(900px 420px at 20% 10%, rgba(255, 255, 255, 0.18), transparent 60%), linear-gradient(135deg, var(--blue), var(--purple), var(--violet));
    border-radius: 48px 48px 0 0;
    /* 🔥 CRITICAL FIX */
    overflow: visible;
}


/* AURA */

.imp-footer::before {
    content: "";
    position: absolute;
    inset: -120px;
    background: conic-gradient( from 180deg, rgba(42, 42, 255, 0.45), rgba(106, 27, 154, 0.45), rgba(138, 43, 226, 0.45), rgba(42, 42, 255, 0.45));
    filter: blur(80px);
    opacity: .7;
    animation: auraSpin 12s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes auraSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* ================= LOGO ================= */

.footer-logo-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 60px;
}

.footer-logo-bg {
    width: 220px;
    height: 220px;
    margin: auto;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), inset 0 0 0 8px rgba(255, 255, 255, 0.15);
    position: relative;
}

.footer-logo {
    width: 130px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    /* 🔥 IMAGE VISIBILITY GUARANTEE */
    opacity: 1;
    visibility: visible;
    z-index: 12;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .3)) drop-shadow(0 0 25px rgba(42, 42, 255, .5));
    animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}


/* ================= GRID ================= */

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 5;
}

.footer-col {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    border-radius: 28px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
}


/* ================= TEXT ================= */

.footer-heading {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.footer-col p,
.footer-col li {
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
    line-height: 1.7;
}

.footer-col ul {
    padding-left: 18px;
}


/* ================= SOCIAL ================= */

.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}

.social-icons a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.social-icons a:hover {
    transform: translateY(-6px) scale(1.1);
    background: linear-gradient(135deg, var(--blue), var(--violet));
}


/* ================= BOTTOM ================= */

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .25);
    text-align: center;
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    position: relative;
    z-index: 5;
}


/* ================= RESPONSIVE ================= */

@media(max-width:992px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col ul {
        list-style: none;
        padding: 0;
    }
    .social-icons {
        justify-content: center;
    }
}

@media(max-width:520px) {
    .footer-logo-bg {
        width: 180px;
        height: 180px;
    }
    .footer-logo {
        width: 110px;
    }
}


/* ==============================
   🔒 BRAND VARIABLES (LOCKED)
============================== */

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.14);
    --glass-soft: rgba(255, 255, 255, 0.08);
    --stroke: rgba(255, 255, 255, 0.25);
    --shadow-1: 0 20px 60px rgba(0, 0, 0, .28);
    --shadow-2: 0 40px 120px rgba(0, 0, 0, .35);
}


/* ==============================
   🌌 FOOTER BASE
============================== */

.imp-footer {
    position: relative;
    padding: 120px 24px 40px;
    background: radial-gradient(900px 420px at 15% 10%, rgba(255, 255, 255, 0.25), transparent 60%), radial-gradient(700px 360px at 85% 15%, rgba(212, 175, 55, 0.18), transparent 60%), linear-gradient(135deg, var(--blue), var(--purple), var(--violet));
    border-radius: 48px 48px 0 0;
    overflow: hidden;
    box-shadow: 0 -30px 120px rgba(0, 0, 0, .45);
}


/* subtle animated aura */

.imp-footer::before {
    content: "";
    position: absolute;
    inset: -120px;
    background: conic-gradient( from 180deg at 50% 50%, rgba(42, 42, 255, .35), rgba(106, 27, 154, .35), rgba(138, 43, 226, .35), rgba(42, 42, 255, .35));
    filter: blur(90px);
    animation: footerAura 18s linear infinite;
    opacity: .85;
}

@keyframes footerAura {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}


/* ==============================
   🟣 LOGO AREA
============================== */

.footer-logo-wrapper {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.footer-logo-bg {
    width: 240px;
    height: 240px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .7));
    border: 1px solid rgba(255, 255, 255, .55);
    box-shadow: 0 25px 80px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .35);
    position: relative;
}

.footer-logo {
    width: 140px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .25)) drop-shadow(0 0 22px rgba(42, 42, 255, .6)) drop-shadow(0 0 30px rgba(138, 43, 226, .5));
    animation: logoFloat 4.5s ease-in-out infinite;
}

@keyframes logoFloat {
    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0)
    }
    50% {
        transform: translate(-50%, -50%) translateY(-12px)
    }
}


/* ==============================
   📐 FOOTER GRID
============================== */

.footer-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
    z-index: 2;
}


/* ==============================
   🧊 GLASS COLUMNS
============================== */

.footer-col {
    background: linear-gradient(180deg, var(--glass), var(--glass-soft));
    border: 1px solid var(--stroke);
    border-radius: 32px;
    padding: 34px 32px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-1);
    transition: .4s ease;
}

.footer-col:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2);
}


/* ==============================
   🔠 HEADINGS
============================== */

.footer-heading,
.about-panel h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 18px;
    background: linear-gradient(90deg, var(--white), var(--gold));
    -webkit-background-clip: text;
    color: transparent;
}


/* ==============================
   📋 TEXT & LISTS
============================== */

.footer-col p,
.footer-col li,
.services-list li,
.about-panel p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .92);
}

.footer-col ul {
    padding-left: 18px;
    margin: 0;
}

.footer-col li {
    margin-bottom: 10px
}


/* ==============================
   🔗 LINKS
============================== */

.footer-col a {
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: .3s;
}

.footer-col a:hover {
    color: #fff;
    text-shadow: 0 0 16px rgba(138, 43, 226, .6);
}

.footer-col a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--gold), var(--violet));
    opacity: 0;
    transform: translateY(6px);
    transition: .3s;
}

.footer-col a:hover::after {
    opacity: 1;
    transform: translateY(0);
}


/* ==============================
   📦 SERVICES + ABOUT PANEL
============================== */

.impeccable-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    padding-left: 30px;
    position: relative;
}

.services-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}


/* ==============================
   🌐 SOCIAL ICONS
============================== */

.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, .25), rgba(255, 255, 255, .1));
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .3);
    transition: .35s;
}

.social-icons a:hover {
    transform: translateY(-8px) scale(1.1);
    background: linear-gradient(135deg, var(--blue), var(--violet));
}


/* ==============================
   🧾 BOTTOM BAR
============================== */

.footer-bottom {
    margin-top: 60px;
    padding-top: 18px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, .9);
    border-top: 1px solid rgba(255, 255, 255, .3);
}


/* ==============================
   📱 RESPONSIVE
============================== */

@media(max-width:992px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .impeccable-wrapper {
        grid-template-columns: 1fr;
    }
    .footer-col {
        text-align: center;
    }
    .footer-col ul {
        padding-left: 0;
        list-style: none;
    }
    .social-icons {
        justify-content: center;
    }
}