/* ================= ROOT VARIABLES ================= */
:root {
    --clr-primary: #6a0bfd;
    --clr-secondary: #E91E63;
    --clr-dark: #140a28;
    --clr-light: #ffffff;

    --clr-text-dark: #220028;
    --clr-text-light: #ffffff;

    /* Glass */
    --glass-bg-dark: linear-gradient(135deg,
        rgba(20, 10, 40, 0.7),
        rgba(50, 20, 80, 0.6));

    --glass-bg-light: linear-gradient(135deg,
        rgba(255, 255, 255, 0.45),
        rgba(255, 255, 255, 0.25));

    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-blur: 14px;

    /* Radius */
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;

    /* Shadow */
    --shadow-glow: 0 20px 40px rgba(106, 17, 203, 0.35);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.15);

    /* Transition */
    --transition-base: 0.4s ease;
}

/* ================= 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;
}

/* ================= 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;
    max-height: 480px;
}

.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;
    }
}
    /* =========================
   HERO BASE
========================= */
    /* .hero-section {
        position: relative;
        min-height: 100vh;
        padding: 150px 0 60px;
        background: #150046;
        color: #fff;
        display: flex;
        align-items: center;
        overflow: hidden;
        perspective: 1200px;
    } */

        .hero-section {
        position: relative;
        min-height: 100vh;
        padding: 150px 0 60px;
        color: #fff;
        display: flex;
        align-items: center;
        overflow: hidden;
        perspective: 1200px;
        background: linear-gradient(to bottom, rgb(21 0 70 / 70%) 0%, rgb(21 0 70 / 90%) 40%, rgb(21 0 70) 70%, rgb(21 0 70) 100%), url(../img/hero/banner.webp);
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
    }

/* =========================
   GRID BACKGROUND
========================= */
    .grid-bg {
        position: absolute;
        inset: 0;
        background:
            linear-gradient(rgba(106, 17, 203, 0.12) 1px, transparent 1px),
            linear-gradient(90deg, rgba(106, 17, 203, 0.12) 1px, transparent 1px);
        background-size: 50px 50px;
        opacity: 0;
    }

    /* =========================
   SPOTLIGHTS
========================= */
    .spotlight {
        position: absolute;
        width: 550px;
        height: 550px;
        border-radius: 50%;
        filter: blur(90px);
        opacity: 0;
        pointer-events: none;
    }

    .spotlight-1 {
        top: -25%;
        right: 15%;
        background: radial-gradient(circle, rgba(106, 17, 203, .35), transparent 70%);
    }

.spotlight-2 {
    bottom: -30%;
    left: 10%;
    background: radial-gradient(circle, rgb(244 0 158 / 25%), transparent 70%);
}

    /* =========================
   FLOATING GLASS CARDS
========================= */
.float-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(244, 163, 0, .12));
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    opacity: 0.1;
}

    .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%;
    }

    /* =========================
   CONTENT
========================= */
    .hero-content {
        position: relative;
        z-index: 10;
    }

    .hero-title {
        font-size: clamp(2.2rem, 4.5vw, 2.8rem);
        font-weight: 900;
        color: #fff;
   line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 10px;
        opacity: 0;
    }

    .title-line {
        display: block;
        overflow: hidden;
    }

    .title-word {
        display: inline-block;
        transform: translateY(110%);
    }

    .hero-acronym {
        display: inline-block;
        margin-top: 12px;
        font-size: clamp(1.8rem, 4vw, 3rem);
        font-weight: 900;
    background: linear-gradient(135deg, #6a0bfd, #E91E63);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* =========================
   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: E91E63;
    }


    /* =========================
   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, #6a11cb, #E91E63);
        padding: 2px 6px;
        border-radius: 10px;
        display: inline-block;
    }



    .btn-primary-cta {
        background: linear-gradient(135deg, #6a11cb, #E91E63);
        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(229 213 245) 0%, rgb(226 215 249) 30%, rgba(10, 14, 39, 0) 100%);
    }

    /* Right fade */
    .brand-gradient::after {
        right: 0;
     background: linear-gradient(to left, rgb(246 234 230) 0%, rgb(247 235 231) 30%, rgba(10, 14, 39, 0) 100%);

    }

    .gall-1 img {
        margin: 0 10px;
        height: 70px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.8;
        transition: 0.3s ease;
    }

    .gall-1 img:hover {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.05);
    }





    /* ===== ICON ===== */
    .deadline-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 18px;
        border-radius: 16px;
        background: linear-gradient(135deg, #6a11cb, #E91E63);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        box-shadow: 0 10px 30px rgba(106, 17, 203, 0.45);
    }



    /* ===== GLASS BASE ===== */
    .deadline-glass-wrap {
        border-radius: 24px;
        padding: 40px 30px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(14px);
    }

    /* DARK GLASS */
    /* .glass-dark {
        background: linear-gradient(135deg,
                rgba(20, 10, 40, 0.7),
                rgba(50, 20, 80, 0.6));
    } */

    .glass-dark {
    background: linear-gradient(135deg, rgb(190 126 249 / 70%), rgb(80 55 20 / 60%));
}

/* .glass-dark-image {
    background:
        linear-gradient(
            135deg,
            rgba(190, 126, 249, 0.7),
            rgba(80, 55, 20, 0.6)
        ),
        url("../img/bg-date.jpg");

    background-size: cover;
    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);
} */
.glass-dark-image {
    background: linear-gradient(96deg, rgb(105 0 203 / 59%), rgb(80 0 26 / 81%)), url(../img/bg-date-1.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(10px);
    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;
    }

    /* ===== CARD ===== */
.deadline-card {
    height: 100%;
    background: rgb(245 234 234 / 35%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 28px 20px;
    color: #fff;
    transition: 0.45s ease;
}

    .glass-light .deadline-card {
        background: rgba(255, 255, 255, 0.65);
        color: #222;
    }

    /* Hover */
    .deadline-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(106, 17, 203, 0.35);
    }

    /* Highlight */
    .deadline-card.highlight {
        background: linear-gradient(135deg, #6a11cb, #E91E63);
    }

    /* ===== ICON ===== */
    .deadline-icon {
        width: 64px;
        height: 64px;
        margin: 0 auto 18px;
        border-radius: 18px;
        background: linear-gradient(135deg, #6a11cb, #E91E63);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 12px 30px rgba(106, 17, 203, 0.45);
    }

    .deadline-icon svg {
        width: 28px;
        height: 28px;
        fill: none;
        stroke: #fff;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    /* ===== TEXT ===== */
    .deadline-card h6 {
        font-weight: 700;
        margin-bottom: 6px;
    }

    .deadline-card p {
        margin: 0;
        font-size: 0.95rem;
        opacity: 0.9;
    }

    /* 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, rgba(106, 17, 203, .18), rgba(244, 163, 0, .12));
        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, #6a11cb, #E91E63);
        color: #fff;
    }

    /* ================= TAB PANELS ================= */
    .custom-tabs-content {
        position: relative;
        min-height: 620px;
    }

    .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: 480px;
    }

    /* Desktop grid */
    .grid-style-1 {
        grid-template-columns: 1fr;
        grid-template-rows: 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-position: top;
        object-fit: cover;
        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(1deg, rgb(106 17 203 / 98%), rgb(247 226 183 / 0%));
    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: E91E63;
        font-size: 14px;
        top: 4px;
    }

       .timeline-list {
                            display: grid;
                            grid-template-columns: 1fr 1fr;
                            grid-auto-rows: auto;

                        }

 @media (max-width: 768px) {
    .timeline-list {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
}



/* -------------------------------------------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(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;

    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: 680px;
    }

/* 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: 680px;
    }

    @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-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);
    }
  

