/*
 * HakimTech Official Stylesheet
 * Theme: Premium 3D Digital Hub — Dark-Light Hybrid
 * Version: 6.0 — Full Redesign
 */

/* ════════════════════════════════════════════════════════════
   1. CSS VARIABLES & THEME
════════════════════════════════════════════════════════════ */
:root {
    --blue:       #1E56F1;
    --blue-dark:  #1240C0;
    --blue-light: #4A7BF7;
    --cyan:       #00D4FF;
    --dark:       #080D1A;
    --dark-2:     #0F1729;
    --dark-3:     #1A2540;
    --soft:       #F0F4FF;
    --soft-2:     #E8EEFF;
    --white:      #FFFFFF;
    --slate:      #64748B;
    --slate-lt:   #94A3B8;
    --accent:     #FF3366;
    --purple:     #7C3AED;
    --purple-lt:  #A855F7;
    --cyan-glow:  rgba(0, 212, 255, 0.35);
    --blue-glow:  rgba(30, 86, 241, 0.25);

    --radius-sm:  12px;
    --radius-md:  20px;
    --radius-lg:  32px;
    --radius-xl:  48px;

    --shadow-sm:  0 4px 16px rgba(30, 86, 241, 0.08);
    --shadow-md:  0 12px 40px rgba(30, 86, 241, 0.14);
    --shadow-lg:  0 30px 80px rgba(30, 86, 241, 0.18);
    --shadow-dark: 0 30px 80px rgba(0, 0, 0, 0.5);

    --ease:       cubic-bezier(0.4, 0, 0.2, 1);
    --spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration:   0.4s;
}

/* ════════════════════════════════════════════════════════════
   2. RESET & BASE
════════════════════════════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: 'DM Sans', 'Hind Siliguri', sans-serif;
    background: var(--soft);
    color: var(--dark);
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', 'DM Sans', sans-serif;
    line-height: 1.15;
    word-wrap: break-word;
}

p, span, li, a, button {
    font-family: 'DM Sans', 'Hind Siliguri', sans-serif;
    line-height: 1.65;
    word-wrap: break-word;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

[x-cloak] { display: none !important; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--soft); }
::-webkit-scrollbar-thumb { background: var(--blue-light); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ════════════════════════════════════════════════════════════
   3. ANNOUNCEMENT BAR
════════════════════════════════════════════════════════════ */
.announcement-bar {
    background: linear-gradient(90deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    padding: 9px 0;
    position: fixed; /* Changed from sticky to relative */
    z-index: 5001;
	top: 0;
    left: 0;
    width: 100%;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 50s linear infinite;
}

.marquee-set {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-right: 4rem;
    color: rgba(255,255,255,0.8);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
    gap: 0;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════
   4. NAVIGATION
════════════════════════════════════════════════════════════ */
.ht-nav {
    position: fixed !important;    /* Changed from sticky to fixed */
    top: 35px !important;             /* Ensures it stays at the very top */
    left: 0;
    width: 100%;
    z-index: 5000 !important;      /* Keeps it above all other content */
    background-color: #ffffff !important;
    border-bottom: 1px solid rgba(30, 86, 241, 0.08);
    transition: all 0.3s ease;
}

.ht-nav.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 70px; /* Standard height */
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: height 0.3s ease;
}

.ht-nav.scrolled .nav-inner {
    height: 60px; /* Gets smaller when you scroll */
}


/* Brand */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex-shrink: 0;
}

.brand-logo-wrap {
    position: relative;
    width: 44px;
    height: 44px;
}

.brand-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 2px solid rgba(30, 86, 241, 0.15);
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.brand-logo-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 16px;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.4s;
    z-index: 0;
}

.nav-brand:hover .brand-logo-glow { opacity: 0.6; }

.brand-name {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.03em;
    line-height: 1;
}

.brand-name span { color: var(--blue); }

.brand-tagline {
    font-size: 9.5px;
    font-weight: 700;
    color: var(--slate-lt);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-top: 3px;
}

/* Desktop Menu */
.nav-menu {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .nav-menu { display: flex; }
}

.nav-lnk {
    font-size: 14px;
    font-weight: 700;
    color: var(--slate);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
    letter-spacing: 0.01em;
}

.nav-lnk::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    border-radius: 2px;
    transition: width 0.35s var(--ease);
}

.nav-lnk:hover { color: var(--blue); }
.nav-lnk:hover::after { width: 100%; }

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta {
    display: none;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--dark), var(--dark-3));
    color: var(--white);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.35s var(--ease);
    border: 1px solid rgba(255,255,255,0.08);
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (min-width: 640px) { .nav-cta { display: flex; } }

/* Hamburger Toggle */
.nav-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: var(--soft-2);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 2001; /* Above the nav background */
}

.nav-toggle:hover { background: var(--soft); }

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 3px;
    transition: transform 0.35s var(--ease), opacity 0.3s;
    transform-origin: center;
}

@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Mobile Drawer */
.mobile-drawer {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 280px !important;
    height: 100vh !important;
    height: 100dvh !important;
    background-color: #ffffff !important; /* Force solid white */
    z-index: 100000 !important; /* Top layer */
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: -10px 0 50px rgba(0,0,0,0.5) !important;
    overflow-y: auto !important;
    display: flex !important;
    flex-direction: column !important;
}

.drawer-open {
    transform: translateX(0) !important;
}

.drawer-inner {
    padding: 24px !important;
    background-color: #ffffff !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.drawer-nav a {
    color: #080D1A !important; /* Dark text for visibility */
    background: #f1f5ff !important; /* Light background for links */
    padding: 15px !important;
    margin-bottom: 8px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
}

.drawer-overlay {
    position: fixed !important;
    inset: 0 !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    z-index: 99999 !important;
    backdrop-filter: blur(4px) !important;
}


/* ════════════════════════════════════════════════════════════
   5. HERO SECTION
════════════════════════════════════════════════════════════ */
.hero-section {
    position: relative;
	padding-top: 120px !important;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 1.5rem 80px;
}

/* 3D Grid Background */
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(30, 86, 241, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 86, 241, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
}

/* Glowing Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(30, 86, 241, 0.18) 0%, transparent 70%);
    top: -100px; left: -100px;
    animation: orbFloat 10s ease-in-out infinite;
}

.orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.14) 0%, transparent 70%);
    bottom: -80px; right: -80px;
    animation: orbFloat 13s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    top: 40%; left: 40%;
    animation: orbFloat 9s ease-in-out infinite 2s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(30px, -40px) scale(1.08); }
    66%       { transform: translate(-20px, 20px) scale(0.94); }
}

/* Floating Stat Badges */
.stat-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(30, 86, 241, 0.12);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-md);
    animation: badgeFloat 5s ease-in-out infinite;
    z-index: 10;
}

.stat-b1 { top: 22%; left: 3%; animation-delay: 0s; }
.stat-b2 { top: 22%; right: 3%; animation-delay: 1.5s; }

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

.stat-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--slate);
    margin-top: 2px;
}

/* Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    z-index: 5;
}

.hero-slide {
    width: 100%;
}

.slide-active {
    display: block;
    animation: slideIn 0.7s var(--ease) forwards;
}

.slide-hidden { display: none; }

@keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        min-height: 520px;
    }
}

/* Slide Text */
.slide-text {
    order: 2;
    text-align: center;
}

@media (min-width: 1024px) {
    .slide-text { order: 1; text-align: left; }
}

.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 86, 241, 0.08);
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(30, 86, 241, 0.15);
    margin-bottom: 1.5rem;
}

.slide-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.slide-title .text-brandBlue  { color: var(--blue); }
.slide-title .text-purpleMS   { color: var(--purple); }
.slide-title .text-brandCyan  { color: #0099CC; }

.slide-desc {
    font-size: 16px;
    color: var(--slate);
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

@media (min-width: 1024px) { .slide-desc { margin: 0 0 2rem; } }

.slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

@media (min-width: 1024px) { .slide-actions { justify-content: flex-start; } }

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 8px 30px rgba(30, 86, 241, 0.35);
    transition: all 0.35s var(--spring);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s;
}

.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(30,86,241,0.4); }
.btn-hero-primary:hover::before { left: 100%; }

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    background: white;
    color: var(--dark);
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    border: 1.5px solid rgba(30, 86, 241, 0.15);
    transition: all 0.35s var(--ease);
}

.btn-hero-secondary:hover {
    background: var(--soft);
    border-color: var(--blue);
    transform: translateY(-2px);
}

/* Slide Visual */
.slide-visual {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 1024px) { .slide-visual { order: 2; } }

.slide-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.slide-img {
    width: 100%;
    max-width: 420px;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 30px 60px rgba(30,86,241,0.2));
    animation: heroImgFloat 6s ease-in-out infinite;
    object-fit: contain;
}

.slide-img-glow {
    position: absolute;
    inset: 10%;
    background: radial-gradient(circle, var(--blue-glow), transparent 70%);
    filter: blur(40px);
    z-index: -1;
    border-radius: 50%;
}

@keyframes heroImgFloat {
    0%, 100% { transform: translateY(0) rotate3d(1, 0, 0, 0deg); }
    50%       { transform: translateY(-18px) rotate3d(1, 0, 0, 2deg); }
}

/* Slide Dots */
.slide-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2.5rem;
}

.slide-dot {
    width: 10px;
    height: 10px;
    background: rgba(30, 86, 241, 0.2);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s var(--ease);
}

.dot-active {
    width: 36px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    border-radius: 50px;
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--slate-lt);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
    z-index: 5;
}

.scroll-wheel {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(30, 86, 241, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--blue);
    border-radius: 3px;
    animation: scrollWheelAnim 1.8s ease-in-out infinite;
}

@keyframes scrollWheelAnim {
    0%   { top: 5px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

/* ════════════════════════════════════════════════════════════
   6. TRUST SIGNALS BAR
════════════════════════════════════════════════════════════ */
.trust-section {
    background: white;
    border-top: 1px solid rgba(30, 86, 241, 0.07);
    border-bottom: 1px solid rgba(30, 86, 241, 0.07);
    padding: 28px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    background: var(--soft);
    transition: all 0.35s var(--ease);
    border: 1px solid transparent;
}

.trust-item:hover {
    border-color: rgba(30, 86, 241, 0.15);
    background: white;
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.trust-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.trust-text strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.trust-text span {
    font-size: 12px;
    color: var(--slate);
    font-weight: 500;
}

/* ════════════════════════════════════════════════════════════
   7. SECTION HELPERS
════════════════════════════════════════════════════════════ */
.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(30, 86, 241, 0.08);
    border: 1px solid rgba(30, 86, 241, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.section-eyebrow.cyan   { color: var(--cyan); background: rgba(0,212,255,0.08); border-color: rgba(0,212,255,0.2); }
.section-eyebrow.purple { color: var(--purple); background: rgba(124,58,237,0.08); border-color: rgba(124,58,237,0.2); }

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 1rem;
}

.section-title span          { color: var(--blue); }
.section-title .cyan-text    { color: var(--cyan); }
.section-title .purple-text  { color: var(--purple); }

.section-title.white         { color: white; }
.section-title.white span    { color: var(--cyan); }

.section-sub {
    font-size: 16px;
    color: var(--slate);
    line-height: 1.75;
}

.section-sub.light { color: rgba(255,255,255,0.6); }

/* ════════════════════════════════════════════════════════════
   8. SERVICES SECTION
════════════════════════════════════════════════════════════ */
.services-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(30,86,241,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* Service Card — 3D hover effect */
.service-card {
    position: relative;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    background: var(--soft);
    border: 1.5px solid rgba(30, 86, 241, 0.07);
    cursor: pointer;
    transition: all 0.45s var(--ease);
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,86,241,0.03), rgba(0,212,255,0.03));
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: var(--radius-lg);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    transition: width 0.5s var(--ease);
    border-radius: 0 0 0 var(--radius-lg);
}

.service-card:hover {
    border-color: rgba(30, 86, 241, 0.2);
    background: white;
    box-shadow: 0 20px 60px rgba(30, 86, 241, 0.12), 0 0 0 1px rgba(30,86,241,0.08);
    transform: translateY(-8px) rotateX(2deg);
}

.service-card:hover::before { opacity: 1; }
.service-card:hover::after  { width: 100%; }

.sc-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.sc-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, rgba(30,86,241,0.1), rgba(0,212,255,0.1));
    border: 1.5px solid rgba(30, 86, 241, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--blue);
    transition: all 0.45s var(--spring);
}

.service-card:hover .sc-icon {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: white;
    transform: rotate(12deg) scale(1.08);
    box-shadow: 0 8px 20px rgba(30,86,241,0.3);
    border-color: transparent;
}

.sc-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: rgba(30, 86, 241, 0.06);
    line-height: 1;
    transition: color 0.4s;
    user-select: none;
}

.service-card:hover .sc-num { color: rgba(30, 86, 241, 0.1); }

.sc-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.sc-desc {
    font-size: 14px;
    color: var(--slate);
    margin-bottom: 1.25rem;
    line-height: 1.65;
}

.sc-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(30,86,241,0.06);
}

.sc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate);
}

.sc-features li i {
    width: 18px;
    height: 18px;
    background: rgba(16,185,129,0.1);
    color: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.sc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sc-price {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--blue);
}

.sc-cta {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.35s var(--ease);
}

.service-card:hover .sc-cta {
    color: var(--blue);
    gap: 10px;
}

/* ════════════════════════════════════════════════════════════
   9. DIGITAL STORE
════════════════════════════════════════════════════════════ */
.store-section {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
    border-radius: var(--radius-xl);
}

@media (max-width: 640px) {
    .store-section { border-radius: var(--radius-lg); margin: 1rem 0; }
}

.store-bg-shape {
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 65%);
    pointer-events: none;
}

.store-section .section-head { margin-bottom: 3.5rem; }

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

/* Product Card */
.product-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.45s var(--ease);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    border-color: rgba(0,212,255,0.25);
    background: rgba(255,255,255,0.07);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,212,255,0.15);
}

.pc-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.pc-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 8px;
    z-index: 3;
    letter-spacing: 0.05em;
}

.pc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.product-card:hover .pc-img { transform: scale(1.08); }

.pc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 13, 26, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 2;
}

.product-card:hover .pc-overlay { opacity: 1; }

.pc-quick-view {
    display: flex;
    align-items: center;
    background: white;
    color: var(--dark);
    border: none;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transform: translateY(10px);
    transition: transform 0.35s var(--spring);
}

.product-card:hover .pc-quick-view { transform: translateY(0); }
.pc-quick-view:hover { background: var(--cyan); }

.pc-body { padding: 1.5rem; }

.pc-name {
    font-size: 14.5px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
    line-height: 1.45;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pc-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 1.25rem;
}

.pc-price {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--cyan);
}

.pc-old {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
    text-decoration: line-through;
}

.pc-buy {
    width: 100%;
    padding: 13px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--spring);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pc-buy:hover {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(30,86,241,0.4);
    color: white;
}

/* ════════════════════════════════════════════════════════════
   10. ACADEMY SECTION
════════════════════════════════════════════════════════════ */
.academy-section {
    padding: 100px 0;
    background: var(--soft);
    position: relative;
    overflow: hidden;
}

.academy-section::before {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.academy-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 6px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    width: fit-content;
    margin: 0 auto 3rem;
    border: 1px solid rgba(30,86,241,0.08);
}

.academy-tab {
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 800;
    color: var(--slate);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    display: flex;
    align-items: center;
}

.academy-tab:hover { color: var(--purple); }

.tab-active {
    background: linear-gradient(135deg, var(--purple), var(--purple-lt)) !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(124,58,237,0.3);
}

.courses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px)  { .courses-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .courses-grid { grid-template-columns: repeat(4, 1fr); } }

/* Course Card */
.course-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid rgba(124,58,237,0.08);
    cursor: pointer;
    transition: all 0.45s var(--ease);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(124,58,237,0.15);
    border-color: rgba(124,58,237,0.2);
}

.cc-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.cc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.course-card:hover .cc-img { transform: scale(1.08); }

.cc-level {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(8,13,26,0.7);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 8px;
}

.cc-type-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: linear-gradient(135deg, var(--purple), var(--purple-lt));
    color: white;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 8px;
}

.cc-body { padding: 1.5rem; }

.cc-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.6rem;
    line-height: 1.4;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cc-desc {
    font-size: 12.5px;
    color: var(--slate);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(124,58,237,0.08);
    padding-top: 1rem;
}

.cc-price {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--purple);
}

.cc-enroll {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--purple);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.course-card:hover .cc-enroll { gap: 10px; }

/* ════════════════════════════════════════════════════════════
   11. DREAM'S COMPUTER HUB
════════════════════════════════════════════════════════════ */
.hub-section {
    padding: 80px 0;
}

.hub-card {
    position: relative;
    background: var(--dark);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 640px) { .hub-card { border-radius: var(--radius-lg); } }

.hub-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hub-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hub-glow-1 {
    width: 500px; height: 500px;
    background: rgba(30, 86, 241, 0.12);
    top: -150px; left: -100px;
}

.hub-glow-2 {
    width: 400px; height: 400px;
    background: rgba(0, 212, 255, 0.08);
    bottom: -100px; right: -80px;
}

.hub-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hub-inner {
        grid-template-columns: 1fr 1fr;
        padding: 5rem 4rem;
        gap: 5rem;
    }
}

/* Hub Text */
.hub-text {}

.hub-eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.2);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hub-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: white;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.hub-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hub-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 2.5rem;
}

.hub-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.hub-features li i {
    color: var(--cyan);
    font-size: 14px;
    flex-shrink: 0;
}

.hub-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-hub-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cyan), #0099CC);
    color: var(--dark);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.35s var(--spring);
    box-shadow: 0 8px 30px rgba(0,212,255,0.35);
}

.btn-hub-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,212,255,0.5);
}

.btn-hub-secondary {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.35s var(--ease);
}

.btn-hub-secondary:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* Hub Visual */
.hub-visual {
    position: relative;
}

.hub-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.06);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    position: relative;
    z-index: 1;
}

.hub-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) { .hub-img { height: 280px; } }

.hub-info-badge {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 16px 22px;
    border-radius: var(--radius-md);
    text-align: center;
    z-index: 2;
}

.hub-badge-1 {
    bottom: -20px;
    left: -20px;
}

.hub-badge-2 {
    top: 20px;
    right: -20px;
}

@media (max-width: 640px) {
    .hub-badge-1 { bottom: 10px; left: 10px; }
    .hub-badge-2 { top: 10px; right: 10px; }
}

.hub-info-badge strong {
    color: white;
    font-size: 15px;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    line-height: 1.2;
}

.hub-info-badge span {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    font-weight: 600;
}

.animate-float {
    animation: badgeFloat 5s ease-in-out infinite;
}

/* ════════════════════════════════════════════════════════════
   12. FOOTER
════════════════════════════════════════════════════════════ */
.ht-footer {
    background: var(--dark-2);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.footer-logo img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 2px solid rgba(30,86,241,0.2);
}

.footer-logo span {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    letter-spacing: -0.03em;
}

.footer-logo span b { color: var(--blue-light); font-weight: 800; }

.footer-about {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    transition: all 0.35s var(--ease);
}

.footer-social a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a::before {
    content: '→';
    font-size: 12px;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s;
}

.footer-links li a:hover {
    color: var(--blue-light);
    padding-left: 4px;
}

.footer-links li a:hover::before { opacity: 1; transform: translateX(0); }

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.footer-contact li i {
    width: 20px;
    color: var(--cyan);
    font-size: 14px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom p {
    font-size: 12.5px;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
}

.footer-bottom strong { color: rgba(255,255,255,0.5); }

/* ════════════════════════════════════════════════════════════
   13. MODAL
════════════════════════════════════════════════════════════ */
.ht-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 6000 !important;
    background: rgba(8, 13, 26, 0.85); /*  */
    backdrop-filter: blur(16px); /*  */
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 1rem 1rem;
}

.ht-modal {
    position: relative;
    width: 100%;
    max-width: 760px;
    max-height: 82dvh;
    border-radius: var(--radius-lg);
    overflow-y: auto; /* hidden থেকে পরিবর্তন করে auto করুন */
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-dark);
    border: 1px solid rgba(255,255,255,0.08);
}

@media (min-width: 768px) {
    .ht-modal { flex-direction: row; }
}

.modal-close {
    position: sticky;
    top: 10px; right: 10px;
	margin-left: auto;
    width: 32px; height: 40px;
    background: #ffffff !important;
    border: 2px solid #FF3366 !important;
    border-radius: 50%;
    color: #FF3366 !important;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close:hover {
    background: #FF3366 !important; /* ব্যাকগ্রাউন্ড লাল হবে [cite: 177] */
    color: #ffffff !important; /* আইকন সাদা হবে [cite: 176] */
    transform: rotate(90deg) scale(1.1); /* বাটনটি ঘুরবে এবং বড় হবে  */
}

/* Modal Left */
.modal-left {
    background: linear-gradient(160deg, var(--purple) 0%, #4C1D95 100%);
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.modal-left::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 240px; height: 240px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.modal-left::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

@media (min-width: 768px) {
    .modal-left { width: 42%; padding: 2.5rem 2rem; flex-shrink: 0; }
}

.modal-icon {
    width: 58px; height: 58px;
    background: rgba(255,255,255,0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.modal-type {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.modal-item-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.modal-price-box {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    width: 100%;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.modal-price-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.modal-price-value {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.modal-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.35s var(--ease);
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.modal-order-btn:hover {
    background: #25D366;
    border-color: #25D366;
    transform: translateY(-2px);
}

/* Modal Right */
.modal-right {
    background: white;
    padding: 2rem 1.75rem;
    /* overflow-y: auto;*/
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: var(--purple) transparent;
}

@media (min-width: 768px) { .modal-right { padding: 2.5rem 2rem; } }

.modal-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.modal-section-title span {
    display: block;
    width: 4px;
    height: 22px;
    background: linear-gradient(180deg, var(--purple), var(--purple-lt));
    border-radius: 3px;
    flex-shrink: 0;
}

.modal-outline {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1.75rem;
}

.modal-outline-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--soft);
    border: 1px solid rgba(124,58,237,0.08);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    transition: all 0.3s;
}

.modal-outline-item:hover {
    background: rgba(124,58,237,0.04);
    border-color: rgba(124,58,237,0.15);
}

.outline-num {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--purple), var(--purple-lt));
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.modal-outline-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.5;
}

.modal-desc-text {
    background: var(--soft);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(30,86,241,0.06);
}

.modal-desc-text p {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.8;
}

.modal-feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.modal-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate);
}

.modal-feature-item i { color: #10B981; }

.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
}

.modal-btn-primary {
    flex: 1;
    background: linear-gradient(135deg, var(--purple), var(--purple-lt));
    color: white;
    padding: 15px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    transition: all 0.35s var(--spring);
    box-shadow: 0 8px 20px rgba(124,58,237,0.3);
}

.modal-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(124,58,237,0.4);
    color: white;
}

.modal-btn-secondary {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--soft);
    border-radius: var(--radius-sm);
    color: var(--slate);
    font-size: 18px;
    transition: all 0.35s;
    flex-shrink: 0;
}

.modal-btn-secondary:hover {
    background: var(--soft-2);
    color: var(--blue);
}

/* ════════════════════════════════════════════════════════════
   14. FLOATING WHATSAPP
════════════════════════════════════════════════════════════ */
.fab-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1500;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 30px rgba(37,211,102,0.45);
    transition: all 0.35s var(--spring);
}

.fab-whatsapp:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 16px 40px rgba(37,211,102,0.55);
}

.fab-whatsapp::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: inherit;
    animation: fabPulse 2.5s ease-out infinite;
}

@keyframes fabPulse {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.8); opacity: 0; }
}

.fab-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;
    transition: all 0.3s;
}

.fab-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--dark);
}

.fab-whatsapp:hover .fab-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ════════════════════════════════════════════════════════════
   15. RESPONSIVE MOBILE FIXES
════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
    .hero-section { padding: 40px 1rem 60px; min-height: auto; }

    .stat-badge { display: none; }

    .slide-title { font-size: 2rem; }

    .section-title { font-size: 1.9rem; }

    .service-card { padding: 1.75rem; }

    .hub-inner { padding: 2rem 1.5rem; gap: 2rem; }

    .hub-title { font-size: 2.4rem; }

    .hub-badge-1, .hub-badge-2 { display: none; }

    .ht-footer { padding: 60px 0 30px; }

    .modal-left { width: 100%; }

    .fab-whatsapp { bottom: 20px; right: 20px; width: 54px; height: 54px; font-size: 22px; }

    .fab-tooltip { display: none; }

    .store-section { margin: 1rem 0; border-radius: var(--radius-lg); }

    .scroll-hint { display: none; }
}

@media (min-width: 1024px) {
    .nav-inner { padding: 0 3rem; }
}

@media (min-width: 1280px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ════════════════════════════════════════════════════════════
   16. UTILITY & MISC
════════════════════════════════════════════════════════════ */
body.modal-open { overflow: hidden; }

.text-gradient {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section spacing helper */
.services-section,
.academy-section { padding: 100px 0; }

@media (max-width: 768px) {
    .services-section,
    .academy-section { padding: 60px 0; }
}