
/* ============================================
   CSS VARIABLES - SUNSET THEME (SINGLE THEME)
   Applied globally; theme switcher removed
============================================ */
:root {
    --primary: #10b981;
    --secondary: #edd929;
    --accent: #edd929;
    --light-text: #ffffff;
    --muted-text: #94a3b8;
    --card-bg: rgba(255, 255, 255, 0.03);

    --transition: 0.3s ease;
    --radius: 20px;
    --radius-sm: 10px;
    --radius-lg: 30px;
}

/* ============================================
   UTILITIES (Reusable helpers)
   Lightweight, composable helpers for layouts
============================================ */
.u-flex {
    display: flex;
}
.u-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.u-column {
    display: flex;
    flex-direction: column;
}
.u-gap-1 { gap: 0.5rem; }
.u-gap-2 { gap: 1rem; }
.u-gap-3 { gap: 1.5rem; }
.u-hidden { display: none !important; }
.u-inline-block { display: inline-block; }
.u-full-width { width: 100%; }

.text-light { color: var(--light-text) !important; }
.text-dark { color: #111827 !important; }
.text-muted-strong { color: var(--muted-text); opacity: 0.95; }

.btn-block { display: inline-flex; width: 100%; justify-content: center; }

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Theme variants and the theme-switcher have been removed.
   This stylesheet now uses the single Sunset palette defined in :root.
*/

/* ============================================
   HERO SECTION
============================================ */

.hero-animated {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 40px;
    color: var(--light-text);
    overflow: hidden;
    background: linear-gradient(rgb(5 18 15 / 36%), rgb(10 31 26 / 84%)), url(../img/hero/hero-banner.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



/* Ensure hero CTA buttons sit above decorative blobs */
.hero-animated .cta-buttons .btn-custom {
    position: relative;
    z-index: 12;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--primary) 0.5px, transparent 0.5px),
        radial-gradient(circle at 80% 80%, var(--secondary) 0.5px, transparent 0.5px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}

.hero-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary), transparent 70%);
    top: -200px;
    left: -200px;
}

/* .hero-blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary), transparent 70%);
    bottom: -150px;
    right: -150px;
} */

.hero-blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
}

/* ============================================
   TYPOGRAPHY
============================================ */
.hero-title {
    font-size: clamp(3rem, 4vw, 2.1rem);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.hero-title .word {
    display: inline-block;
    margin: 0 0.3rem;
    color:#ffffff;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--muted-text);
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.divider-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;

    animation: section-line 1s ease-out alternate-reverse infinite;
}

@keyframes section-line {
	0% {
		width: 0;
	}
	100% {
		width: 100px;
	}
}

/* ============================================
   CARDS
============================================ */
.card-glass {
    background: rgb(15 67 50 / 42%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    padding: 1rem;
    text-align: center;
    transition: all var(--transition);
    height: 100%;
}

.card-glass:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card-label {
    font-size: 0.75rem;
    line-height: 1;
    /* text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 700;
    margin: 0.2rem 0 0.5rem; */
}

.card-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--light-text);
}

/* Info card: icon left, text right layout when using d-flex on card-glass */
.card-glass.d-flex {
    display: flex !important;
    align-items: center;
    justify-content: flex-start !important; /* override any utility classes */
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    text-align: left;
}

/* Ensure the icon stays fixed to the left (overrides .mx-auto) */
.card-glass.d-flex .icon-box-custom {
    margin: 0 !important;
    flex: 0 0 auto;
}

/* Let the text column take remaining space and align left */
.card-glass.d-flex .d-flex.flex-column {
    align-items: flex-start;
    text-align: left;
    flex: 1 1 auto;
}

.card-glass.d-flex .card-label {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.card-glass.d-flex .card-value {
    color: var(--light-text);
    font-weight: 800;
}

@media (max-width: 768px) {
    .card-glass.d-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
        padding: 0.9rem;
    }

    .card-glass.d-flex .d-flex.flex-column {
        align-items: center;
    }

    .card-glass.d-flex .icon-box-custom {
        margin-bottom: 0.25rem !important;
    }
}

/* ============================================
   ICON BOXES
============================================ */
.icon-box-custom {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.icon-box-custom {
    transition: background var(--transition), box-shadow var(--transition);
}

.icon-box-custom:hover {
    transform: scale(1.05);
}

.icon-box-custom i {
    display: inline-block;
    transform-origin: 50% 50%;
}

.icon-box-sm {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
}

.icon-box-lg {
    width: 90px;
    height: 90px;
    font-size: 2.5rem;
}

.icon-box-circle {
    border-radius: 50%;
}

/* Icon boxes layout */
.icon-boxes-demo {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.icon-boxes-demo .icon-box-custom {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.icon-boxes-demo .icon-box-custom i {
    pointer-events: none;
}

/* ============================================
   BUTTONS
============================================ */
.btn-custom {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-gradient-custom {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% 200%;
    color: white;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-sm-custom {
    padding: 0.6rem 1.5rem;
    font-size: 0.875rem;
}

.btn-lg-custom {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Layout helpers for demo sections */
.buttons-demo {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.buttons-demo .btn-custom {
    min-width: 120px;
    justify-content: center;
    text-align: center;
    padding: 0.9rem 1.6rem;
}

.buttons-demo .btn-custom i {
    margin-right: 0.5rem;
}

/* ============================================
   BADGES
============================================ */
.badge-custom {
    display: inline-block;
    padding: 0.5rem 1.5rem;
       background: rgb(16 38 28 / 46%);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-solid {
    background: var(--primary);
    color: white;
    border: none;
}

.badge-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
}

.badge-outline {
    background: transparent;
    border: 2px solid var(--primary);
}

/* ============================================
   ALERTS
============================================ */
.alert-card {
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.alert-success-custom {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.alert-info-custom {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
    color: #3b82f6;
}

/* ============================================
   FEATURE ITEMS
============================================ */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

/* ============================================
   PRICING CARDS
============================================ */
.pricing-card {
    background: var(--card-bg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--card-bg), rgba(255, 255, 255, 0.08));
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--light-text);
    margin-top: 1rem;
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price-period {
    font-size: 1rem;
    color: var(--muted-text);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--light-text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary);
    margin-right: 0.75rem;
}

/* ============================================
   COMPONENT SHOWCASE
============================================ */
.component-showcase {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Make cards readable on the light component showcase background */
.component-showcase .card-glass {
    background: #ffffff;
    color: #111827;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}

.component-showcase .card-label {
    color: var(--primary);
}

.component-showcase .card-value {
    color: #0f172a;
}

/* Buttons demo on light background */
.component-showcase .buttons-demo .btn-custom {
    box-shadow: 0 8px 24px rgba(15,23,42,0.06);
}

/* Ensure icon boxes on light background look good */
.component-showcase .icon-box-custom {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

/* Force visibility for demo controls in case inline styles were left by animations */
.buttons-demo .btn-custom,
.icon-boxes-demo .icon-box-custom,
.cta-buttons .btn-custom {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Ensure date/value text is visible on hero cards */
.info-cards .card-value {
    color: var(--light-text);
    font-weight: 700;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {
    .hero-animated {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .card-glass {
        padding: 1.5rem;
    }
    
    /* Mobile-friendly blob sizes and layout tweaks */
    .hero-blob-1 {
        width: 300px;
        height: 300px;
        top: -150px;
        left: -150px;
        filter: blur(60px);
        opacity: 0.25;
    }

    .hero-blob-2 {
        width: 250px;
        height: 250px;
        bottom: -100px;
        right: -100px;
        filter: blur(60px);
        opacity: 0.25;
    }

    .hero-blob-3 {
        display: none;
    }

    /* Make cards reliably visible on small screens and disable hover transforms */
    .card-glass {
        min-height: 200px;
        padding: 1rem;
    }

    .card-glass:hover {
        transform: none;
        box-shadow: none;
    }

    .icon-box-custom {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .btn-custom {
        padding: 0.8rem 1.6rem;
    }
}

/* ============================================
   ANIMATIONS (Enhanced by GSAP in JS)
============================================ */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
}





/* ================= GLASS ================= */
.glass {
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--glass-blur));
}

.glass--dark {
    background: var(--glass-bg-dark);
    color: var(--clr-text-light);
}

.glass--light {
    /* background: var(--glass-bg-light); */
    color: var(--clr-text-dark);
}

/* ================= SECTION TITLES ================= */
.section-title {
    font-weight: 800;
    font-size: clamp(22px, 3vw, 45-px);
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: clamp(14px, 1.5vw, 18px);
    opacity: 0.85;
    max-width: 720px;
}

/* .section-title--gradient {
    background: linear-gradient(135deg,
        var(--clr-primary),
        var(--clr-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

.section-title--gradient {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================= TABS ================= */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.tab-btn {
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(255,255,255,.9);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    color: var(--clr-text-dark);
    transition: var(--transition-base);
}

.tab-btn.active {
    background: linear-gradient(135deg,
        var(--clr-primary),
        var(--clr-secondary));
    color: var(--clr-text-light);
}

/* ================= TAB CONTENT ================= */
.tabs-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeUp .45s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= IMAGE GRID ================= */
.image-grid {
    display: grid;
    gap: 16px;
    min-height: 520px;
}

.image-grid--split {
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.grid-large {
    grid-row: span 2;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.grid-item:hover img {
    transform: scale(1.1);
}

.grid-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg,
        rgba(106, 17, 203, .6),
        rgba(244, 163, 0, .55));
    opacity: 0;
    transition: .35s ease;
}

.grid-item:hover .grid-overlay {
    opacity: 1;
}

/* ================= ICON ================= */
.ui-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg,
        var(--clr-primary),
        var(--clr-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.ui-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

/* ================= CARD ================= */
.ui-card {
    height: 100%;
    padding: 28px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.08);
    transition: var(--transition-base);
}

.glass--light .ui-card {
    background: rgba(255, 255, 255, 0.65);
}

.ui-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.ui-card--highlight {
    background: linear-gradient(135deg,
        var(--clr-primary),
        var(--clr-secondary));
    color: var(--clr-text-light);
}

/* ================= LIST ================= */
.ui-list {
    list-style: none;
    padding-left: 0;
}

.ui-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
}

.ui-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--clr-secondary);
}

/* ================= TEXT ================= */
.text-justify {
    text-align: justify;
    line-height: 1.7;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
    .glass {
        padding: 24px 20px;
    }

    .image-grid--split {
        grid-template-columns: 1fr;
    }

    .grid-overlay {
        opacity: 1;
    }
}

    /* =========================
   GRID BACKGROUND
========================= */
    .grid-bg {
        position: absolute;
        inset: 0;
        background:
            linear-gradient(rgba(203, 129, 17, 0.048) 1px, transparent 1px),
            linear-gradient(90deg, rgba(203, 129, 17, 0.048) 1px, transparent 1px);
        background-size: 50px 50px;
        opacity: 0;
    }


    /* =========================
   FLOATING GLASS CARDS
========================= */
    .float-card {
        position: absolute;
        background: linear-gradient(135deg,
                rgba(106, 17, 203, .18),
                rgba(244, 163, 0, .12));
        border: 1px solid rgba(255, 255, 255, .15);
        backdrop-filter: blur(12px);
        border-radius: 20px;
        opacity: 0;
    }

    .card-1 {
        width: 200px;
        height: 140px;
        top: 20%;
        left: 10%;
    }

    .card-2 {
        width: 180px;
        height: 130px;
        top: 60%;
        right: 8%;
    }

    .card-3 {
        width: 160px;
        height: 120px;
        bottom: 18%;
        left: 15%;
    }


    /* =========================
   THEME BOX
========================= */
    .theme-box {
        display: inline-block;
        background: linear-gradient(135deg,
                rgba(106, 17, 203, .35),
                rgba(244, 163, 0, .25));
        padding: 18px 28px;
        border-radius: 15px;
        margin-bottom: 40px;
        opacity: 0;
        transform: translateX(-40px);
    }

    .theme-box strong {
        color: #f4a300;
    }

    /* =========================
   EVENT DETAILS
========================= */
    .event-details {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
        margin-bottom: 50px;
    }

    .detail-item {
        display: flex;
        align-items: center;
        gap: 14px;
        opacity: 0;
        transform: translateY(30px);
    }

    .detail-icon {
        width: 68px;
        height: 68px;
        border-radius: 18px;
         background: linear-gradient(135deg, #cb118163, #f76d28c4);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        box-shadow: 0 12px 30px rgba(106, 17, 203, .45);
        transition: .4s;
    }

    .detail-item:hover .detail-icon {
        transform: translateY(-8px) scale(1.1);
    }

    .detail-label {
        font-size: .8rem;
        color: #9ca3af;
        text-transform: uppercase;
    }

    .detail-value {
        font-size: 1.1rem;
        font-weight: 700;
    }

    /* =========================
   CTA BUTTONS
========================= */
    .cta-section-1 {
        display: flex;
        gap: 24px;
        justify-content: center;
        flex-wrap: wrap;
        opacity: 0;
    }

    .cta-btn {
        padding: 10px 30px;
        font-weight: 700;
        border-radius: 30px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        transition: .4s;
        position: relative;
        overflow: hidden;
    }

    .title-grident {
         background: linear-gradient(135deg, #cb118163, #f76d28c4);
        padding: 2px 6px;
        border-radius: 10px;
        display: inline-block;
    }



    .btn-primary-cta {
         background: linear-gradient(135deg, #cb118163, #f76d28c4);
        color: #fff;
        box-shadow: 0 12px 30px rgba(106, 17, 203, .45);
    }

    .btn-secondary-cta {
        border: 2px solid #6a11cb;
        color: #fff;
    }

    .cta-btn:hover {
        transform: translateY(-5px);
    }

    /* =========================
   MOBILE
========================= */
    @media (max-width:768px) {
        .float-card {
            display: none;
        }

        .cta-section-1 {
            flex-direction: column;
        }

        .cta-btn {
            width: 100%;
            justify-content: center;
        }
    }

    .brand-gradient {
        position: relative;
        overflow: hidden;
    }

    /* Left gradient */
    .brand-gradient::before,
    .brand-gradient::after {
        content: "";
        position: absolute;
        top: 0;
        width: 120px;
        height: 100%;
        z-index: 5;
        pointer-events: none;
    }

    /* Left fade */
.brand-gradient::before {
    left: 0;
background: linear-gradient(to right, rgb(220 241 224) 0%, rgb(219 241 224 / 66%) 30%, rgba(10, 14, 39, 0) 100%);
}

    /* Right fade */
.brand-gradient::after {
    right: 0;
     background: linear-gradient(to left, rgb(220 241 224) 0%, rgb(219 241 224 / 81%) 30%, rgba(10, 14, 39, 0) 100%);
}

    /* ===== ICON ===== */
.deadline-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 3px 30px rgb(71 255 48 / 92%);
}


    /* ===== GLASS BASE ===== */
    .deadline-glass-wrap {
        border-radius: 24px;
        padding: 40px 30px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(14px);
    }

    .glass-dark {
    background: linear-gradient(135deg, rgb(190 126 249 / 70%), rgb(80 55 20 / 60%));
}


.glass-dark-image {
    background: linear-gradient(285deg, rgb(0 131 76 / 49%), rgb(46 86 1 / 65%)), url(../img/bg-date-1.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

    /* LIGHT GLASS */
    .glass-light {
        background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.45),
                rgba(255, 255, 255, 0.25));
        color: #222;
    }

    /* ===== important date card   ===== */


/* ===================== VARIANT 5: Gradient Glass ===================== */
.v5 {
  /* background: linear-gradient(135deg, #1a0533 0%, #0d1b4b 50%, #001a33 100%); */
  background: var(--dark-bg);
  padding: 60px 30px;
}
.v5-heading {
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  font-weight: 800;
  margin-bottom: 6px;
}
.v5-sub {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 44px;
}
/* ✅ Default → Mobile */
.v5-grid {
  display: grid;
  grid-template-columns: 1fr; /* 1 column */
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ✅ Tablet (768px and above) */
@media (min-width: 768px) {
  .v5-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
  }
  
}

/* ✅ Laptop (1024px and above) */
@media (min-width: 1024px) {
  .v5-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
  }
}

/* ✅ Desktop (1200px and above) */
@media (min-width: 1200px) {
  .v5-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
  }
}
/* Card base */
.v5-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* transparent border — actual border drawn via pseudo */
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s, transform 0.3s;
}
.v5-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-6px);
}

/* ── Left border light beam ── */
.v5-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: -100px;          /* start above card */
  width: 2px;
  height: 100px;        /* beam length */
  border-radius: 2px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--beam-color) 50%,
    transparent 100%
  );
  animation: beamDown 2.4s ease-in-out infinite;
}

/* ── Right border light beam ── */
.v5-card::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -100px;       /* start below card */
  width: 2px;
  height: 100px;
  border-radius: 2px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--beam-color) 50%,
    transparent 100%
  );
  animation: beamUp 2.4s ease-in-out infinite;
}

/* left beam travels top → bottom */
@keyframes beamDown {
  0%   { top: -100px; opacity: 0.9; }
  100% { top: 100%;   opacity: 0.9; }
}

/* right beam travels bottom → top */
@keyframes beamUp {
  0%   { bottom: -100px; opacity: 0.9; }
  100% { bottom: 100%;   opacity: 0.9; }
}

/* per-card accent colors */
.v5-card:nth-child(1) { --beam-color: #ff4466; }
.v5-card:nth-child(2) { --beam-color: #fbbf24; }
.v5-card:nth-child(3) { --beam-color: #34d399; }
.v5-card:nth-child(4) { --beam-color: #818cf8; }

/* stagger so beams don't all sync */
.v5-card:nth-child(1)::before { animation-delay: 0s; }
.v5-card:nth-child(1)::after  { animation-delay: 0s; }
.v5-card:nth-child(2)::before { animation-delay: 0.6s; }
.v5-card:nth-child(2)::after  { animation-delay: 0.6s; }
.v5-card:nth-child(3)::before { animation-delay: 1.2s; }
.v5-card:nth-child(3)::after  { animation-delay: 1.2s; }
.v5-card:nth-child(4)::before { animation-delay: 1.8s; }
.v5-card:nth-child(4)::after  { animation-delay: 1.8s; }

/* Radial glow blob */
.v5-card .v5-blob {
  position: absolute;
  top: -40px; right: -40px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--beam-color, rgba(224,16,16,0.3)) 0%, transparent 70%);
  opacity: 0.25;
  pointer-events: none;
}

/* Content */
.v5-icon {
  font-size: 2.2rem;
  color: var(--beam-color);
  margin-bottom: 14px;
  display: block;
  position: relative;
  z-index: 1;
}
.v5-card-title {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.v5-date {
  
  font-size: 2rem;
  color: #fff;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}
.v5-tag {
  display: inline-block;
  margin-top: 12px;
  background: rgba(255,255,255,0.06);
  color: var(--beam-color);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid var(--beam-color);
  position: relative;
  z-index: 1;
}

    /* image grid style  */

        .image-grid-masonry {
                            display: grid;
                            grid-template-columns: 1.2fr 1fr;
                            grid-auto-rows: 180px;
                            gap: 16px;
                        }

                        .masonry-item {
                            position: relative;
                            border-radius: 18px;
                            overflow: hidden;
                        }

                        .masonry-item.tall {
                            grid-row: span 2;
                        }

                        .masonry-item img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }

                        .masonry-item span {
                            position: absolute;
                            inset: 0;
                            padding: 12px;
                            display: flex;
                            align-items: flex-end;
                            font-weight: 600;
                            color: #fff;
                            background: linear-gradient(180deg,
                                    transparent,
                                    rgba(0, 0, 0, .7));
                        }
  


                            /* ================= GLASS CONTAINER ================= */
.glass-tabs-custom {
    background: linear-gradient(135deg, rgb(203 239 223), rgb(234 243 225));
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(14px);
}
    /* ================= TAB NAV ================= */
    .custom-tabs-nav {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 28px;
        list-style: none;
        padding: 0;
    }

    .tab-btn {
        background: rgb(223 223 223 / 68%);
        border: 1px solid rgb(255 255 255);
        color: #220028;
        padding: 10px 22px;
        line-height: 20px;
        border-radius: 30px;
        cursor: pointer;
        transition: .3s ease;
    }

.tab-btn.active {
    background: linear-gradient(135deg, #f86e24, #ee4e86);
    color: #fff;
}
    /* ================= TAB PANELS ================= */
    .custom-tabs-content {
        position: relative;
        min-height: 520px;
    }

    .custom-tab-panel {
        position: absolute;
        inset: 0;
        opacity: 0;
        visibility: hidden;
    }

    .custom-tab-panel.active {
        opacity: 1;
        visibility: visible;
    }

    /* ================= IMAGE GRID ================= */
    .image-grid {
        display: grid;
        gap: 16px;
        height: 100%;
        min-height: 520px;
    }

    /* Desktop grid */
    .grid-style-1 {
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .grid-style-1 .large {
        grid-row: span 2;
    }

    /* Image card */
    .grid-img {
        position: relative;
        overflow: hidden;
        border-radius: 18px;
    }

    .grid-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        transition: transform .6s ease;
    }

    /* Overlay */
.grid-img span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 14px;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
background: linear-gradient(177deg, rgb(206 243 255 / 0%), var(--primary) 80%);
    opacity: 0;
    transition: .35s ease;
}

    .grid-img:hover img {
        transform: scale(1.1);
    }

    .grid-img:hover span {
        opacity: 1;
    }

    /* ================= TEXT ================= */
    .custom-tab-panel h2,
    .custom-tab-panel h4 {
        font-weight: 700;
    }

    .custom-tab-panel p {
        line-height: 1.7;
    }

    /* ================= MOBILE OPTIMIZATION ================= */
    @media (max-width: 991px) {

        /* Disable absolute stacking */
        .custom-tabs-content {
            min-height: auto;
        }

        .custom-tab-panel {
            position: relative;
            opacity: 1;
            visibility: visible;
            display: none;
        }

        .custom-tab-panel.active {
            display: block;
        }

        /* Grid stacks */
        .image-grid {
            min-height: auto;
        }

        .grid-style-1 {
            grid-template-columns: 1fr;
            grid-template-rows: auto;
        }

        .grid-style-1 .large {
            grid-row: auto;
        }

        /* Overlay always visible (no hover on touch) */
        .grid-img span {
            opacity: 1;
            font-size: 14px;
        }

        .grid-img:hover img {
            transform: none;
        }

        /* Reduce glass blur */
        .glass-tabs-custom {
            padding: 22px;
            backdrop-filter: blur(10px);
        }

        .custom-tab-panel h2 {
            font-size: 22px;
        }

        .custom-tab-panel h4 {
            font-size: 20px;
        }
    }

    .conference-objectives {
        padding-left: 1.2rem;
        margin-top: 20px;
    }

    .conference-objectives li {
        margin-bottom: 8px;
        line-height: 1.6;
        font-size: 14px;
        position: relative;
        list-style: none;
        padding-left: 22px;
    }

    .conference-objectives li::before {
        content: "●";
        position: absolute;
        left: 0;
        color: #f4a300;
        font-size: 14px;
        top: 4px;
    }

       .timeline-list {
                            display: grid;
                            grid-template-columns: 1fr 1fr;
                            grid-auto-rows: auto;

                        }

/* ================= CYBER THEME (appended) ================= */
.hero-section.cyber-theme {
    background: #050510;
}
.cyber-theme .spotlight-1 {
    background: radial-gradient(circle, rgba(168, 85, 247, .5), transparent 70%);
}
.cyber-theme .spotlight-2 {
    background: radial-gradient(circle, rgba(34, 211, 238, .4), transparent 70%);
}
.cyber-theme .float-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, .2), rgba(34, 211, 238, .15));
    border: 1px solid rgba(168, 85, 247, .3);
}
.cyber-theme .title-grident,
.cyber-theme .hero-acronym {
    background: linear-gradient(135deg, #a855f7, #edd929);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cyber-theme .theme-box {
    background: linear-gradient(135deg, rgba(168, 85, 247, .4), rgba(34, 211, 238, .3));
}
.cyber-theme .theme-box strong {
    color: #edd929;
}
.cyber-theme .detail-icon {
    background: linear-gradient(135deg, #a855f7, #edd929);
    box-shadow: 0 12px 30px rgba(168, 85, 247, .5);
}
.cyber-theme .btn-primary-cta {
    background: linear-gradient(135deg, #a855f7, #edd929);
    box-shadow: 0 12px 30px rgba(168, 85, 247, .5);
}
.cyber-theme .btn-secondary-cta {
    border: 2px solid #a855f7;
}
.cyber-theme .grid-bg {
    background:
        linear-gradient(rgba(168, 85, 247, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.15) 1px, transparent 1px);
}

/* -------------------------------------------subscriper section------------------------------------- */

    .v1-section {
        background: #fdf0ff;
        padding: 50px 0px;
    }

/* ✅ Mobile (default) */
.v1-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 column */
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ✅ Tablet (768px and above) */
@media (min-width: 768px) {
    .v1-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
    }
}

/* ✅ Laptop (1024px and above) */
@media (min-width: 1024px) {
    .v1-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns */
    }
}

/* ✅ Desktop (1200px and above) */
@media (min-width: 1200px) {
    .v1-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 columns */
    }
}

    .v1-card {
        position: relative;
        border-radius: 14px;
        overflow: hidden;
        height: 400px;
        cursor: pointer;
    }

    .v1-img {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transition: transform 0.6s ease;
    }

    .v1-card:hover .v1-img {
        transform: scale(1.08);
    }

    /* Default state: dark gradient + centered title */
    .v1-default {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: 28px 20px;
        z-index: 1;
        transition: opacity 0.4s ease;
    }

    .v1-card:hover .v1-default {
        opacity: 0;
    }

    .v1-default-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-align: center;
    }

    /* Hover overlay: slides up from bottom */
/* .v1-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(201 0 93 / 88%) 0%, rgb(22 0 88 / 95%) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 24px;
    text-align: center;
    z-index: 2;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    pointer-events: none;   
}

.v1-card:hover .v1-overlay {
    transform: translateY(0);
    pointer-events: auto;   
  
} */

.v1-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 180 122 / 88%) 0%, rgb(0 88 59 / 95%) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 24px;
    text-align: center;
    z-index: 2;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

/* Hover effect */
.v1-card:hover .v1-overlay {
    opacity: 1;
    visibility: visible;
}

/* Optional smooth image zoom */
.v1-img {
    transition: transform 0.4s ease;
}

.v1-card:hover .v1-img {
    transform: scale(1.05);
}

    .v1-overlay-icon {
        font-size: 2.2rem;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 14px;
    }

    .v1-overlay-title {
        font-size: 1.2rem;
        font-weight: 700;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .v1-overlay-text {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        margin-bottom: 22px;
    }

    .v1-btn {
        display: inline-block;
        background: #fff;
        color: var(--primary);
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        padding: 10px 24px;
        border-radius: 6px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
    }

    .v1-btn:hover {
        background: #e0ffef;
    }

    /* Card images */
    .v1-c1 .v1-img {
        background-image: url('../img/about-1.jpg');
    }

    .v1-c2 .v1-img {
        background-image: url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?w=600&q=60');
    }

    .v1-c3 .v1-img {
        background-image: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=600&q=60');
    }

    .v1-c4 .v1-img {
        background-image: url('https://images.unsplash.com/photo-1475721027785-f74eccf877e2?w=600&q=60');
    }

    .v1-c5 .v1-img {
        background-image: url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?w=600&q=60');
    }

    /* venue banner slider */

        /* ══════════════════════════════════════════════
     HERO SLIDER — Magazine Layout (V8)
  ══════════════════════════════════════════════ */
    .hero-slider {
        position: relative;
        background: #111;
        overflow: hidden;
        height: 580px;
    }

/* Common */
.hero-shape {
    position: absolute;
    left: 0;
    width: 100%;
    height: 80px; /* 50px or 100px as you want */
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}

/* Top SVG */
.hero-top {
    top: 0;
    /* background-image: url('../img/line.svg'); */
   
}

.hero-top .elementor-shape-fill {
    fill: #10b981 !important; /* Your color */
}
.hero-top svg path {
    fill: #10b981 !important;
}

/* Bottom SVG */
.hero-bottom {
    bottom: 0;
    /* background-image: url('your-bottom.svg'); */
    transform: rotate(3deg); /* rotate bottom */
}

    @media (max-width: 767px) {
        .hero-slider {
            height: auto;
        }
    }

    /* ── Swiper Core ── */
    .hero-slider__swiper {
        width: 100%;
        height: 580px;
    }

    @media (max-width: 767px) {
        .hero-slider__swiper {
            height: 320px;
        }
    }

    .hero-slider__slide {
        position: relative;
        overflow: hidden;
    }

    .hero-slider__bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transform: scale(1.12);
        transition: transform 9s ease;
        will-change: transform;
    }

    .swiper-slide-active .hero-slider__bg {
        transform: scale(1);
    }

    /* ── Dark Gradient Overlay ── */
    .hero-slider__overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(to right, rgb(0 0 0 / 85%) 0%, rgb(0 0 0 / 63%) 50%, rgba(0, 0, 0, 0.05) 100%);
    }

    /* ── Floating Content Card ── */
    .hero-slider__content {
        position: absolute;
        top: 50%;
        left: 6%;
        transform: translateY(-50%);
        z-index: 10;
        width: 600px;
        max-width: 90vw;
    }

    @media (max-width: 767px) {
        .hero-slider__content {
            position: relative;
            top: auto;
            left: auto;
            transform: none;
            width: 100%;
            padding: 28px 20px 32px;
            background: #fff;
        }
    }



    /* ── Heading ── */
    .hero-slider__title {

        font-size: clamp(1.9rem, 3.5vw, 2.9rem);
        color: #fff;
        line-height: 1.1;
        margin: 0 0 10px;
    }

    @media (max-width: 767px) {
        .hero-slider__title {
            color: #111;
        }
    }

    /* ── Sub-heading ── */
    .hero-slider__subtitle {

        font-size: 0.88rem;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 18px;
        display: block;
    }

    @media (max-width: 767px) {
        .hero-slider__subtitle {
            color: #999;
        }
    }

    /* ── Body Text ── */
    .hero-slider__desc {

        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.8;
        margin-bottom: 26px;
    }

    @media (max-width: 767px) {
        .hero-slider__desc {
            color: #555;
        }
    }


    /* ── Slide Counter ── */
    .hero-slider__counter {
        position: absolute;
        right: 30px;
        bottom: 24px;
        z-index: 10;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.45);
        letter-spacing: 3px;
        pointer-events: none;
    }

    /* ── Pagination ── */
    .hero-slider .swiper-pagination {
        bottom: 22px !important;
        right: 80px !important;
        left: auto !important;
        width: auto !important;
        text-align: right;
    }

    .hero-slider .swiper-pagination-bullet {
        background: rgba(255, 255, 255, 0.35);
        opacity: 1;
        width: 24px;
        height: 3px;
        border-radius: 2px;
        margin: 0 3px !important;
    }

    .hero-slider .swiper-pagination-bullet-active {
        background: #fff;
    }

    /* ── Navigation Arrows ── */
    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        color: #fff !important;
        --swiper-navigation-size: 18px;
        background: rgba(0, 0, 0, 0.4);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        transition: background 0.2s;
    }

    .hero-slider .swiper-button-prev:hover,
    .hero-slider .swiper-button-next:hover {
        background: rgba(0, 0, 0, 0.65);
    }
  
