:root {
    --red: #e10642;
    --red2: #ff3d62;
    --blue: #293277;
    --dark: #080812;
    --dark2: #101225;
    --white: #fff;
    --muted: #c9cce0;
    --border: rgba(255, 255, 255, .15);
    --shadow: 0 30px 80px rgba(0, 0, 0, .35)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--white);
    background: radial-gradient(circle at 10% 10%, rgba(225, 6, 66, .28), transparent 28%), radial-gradient(circle at 90% 20%, rgba(41, 50, 119, .42), transparent 34%), linear-gradient(135deg, #07070f, #101225 48%, #07070f);
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(1320px, 92%);
    margin: auto
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .06;
    z-index: 50;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

.progress-line {
    position: fixed;
    left: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), #ffbd00);
    z-index: 500;
    width: 0
}

.site-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1180px, 92%);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgb(238 238 246 / 64%);
    backdrop-filter: blur(22px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .22)
}

.h-logo {
    /* height: 50px; */
    width: 170px;
    display: block
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px
}

.nav-menu a {
    padding: 12px 15px;
    border-radius: 10px;
    color: #202041;
    font-size: 14px;
    font-weight: 800
}

.nav-menu a:hover,
.nav-cta {
    background: rgba(255, 255, 255, .22);
    border: 1px solid rgba(255, 255, 255, .2)
}

.nav-toggle {
    display: none;
    background: none;
    border: 0
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 150px 0 100px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(99, 0, 30, .72), rgba(9, 13, 35, .72)), url('https://images.unsplash.com/photo-1579154204601-01588f351e67?auto=format&fit=crop&w=1800&q=80') center/cover;
    opacity: .46;
    z-index: 0
}

#cellCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .55;
    z-index: 1
}

.hero:before {
    content: "";
    position: absolute;
    inset: auto -20% -40% -20%;
    height: 520px;
    background: radial-gradient(ellipse at center, rgba(225, 6, 66, .3), transparent 65%);
    z-index: 1
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    animation: spin 28s linear infinite;
    z-index: 1
}

.orbit-one {
    width: 560px;
    height: 560px;
    right: -160px;
    top: 110px
}

.orbit-two {
    width: 360px;
    height: 360px;
    left: -130px;
    bottom: 100px;
    animation-direction: reverse
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .7fr;
    gap: 56px;
    align-items: center
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffbdc9;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 18px;
    font-weight: 900
}

.eyebrow span {
    width: 38px;
    height: 2px;
    background: var(--red)
}

h1,
h2,
h3,
p {
    margin-top: 0
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 7vw, 72px);
    line-height: .88;
    letter-spacing: 1px;
    margin: 18px 0 26px
}

.hero h1 em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .75);
    text-shadow: 0 0 40px rgba(225, 6, 66, .45)
}

.hero-lead {
    max-width: 650px;
    color: #e6e7f4;
    font-size: 19px;
    line-height: 1.75
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 15px 24px;
    font-weight: 900;
    border: 1px solid transparent;
    transition: .25s
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), #ff5c78);
    box-shadow: 0 18px 40px rgba(225, 6, 66, .34);
    color: #f1f2ff;
}

.btn-primary:hover {
    transform: translateY(-3px)
}

.btn-soft {
    background: rgba(255, 255, 255, .08);
    border-color: var(--border);
    backdrop-filter: blur(16px)
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.glass-card {
    border: 1px solid var(--border);
    background: linear-gradient(160deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
    backdrop-filter: blur(24px);
    box-shadow: var(--shadow)
}

.hero-card {
    border-radius: 10px;
    padding: 30px;
    position: relative;
    overflow: hidden
}

.hero-card:before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 10px;
    background: rgba(225, 6, 66, .22);
    right: -80px;
    top: -80px;
    filter: blur(10px)
}

.live-chip {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(225, 6, 66, .3);
    color: #ffd8df;
    font-size: 13px;
    font-weight: 900
}

.hero-card h2 {
    font-size: 44px;
    letter-spacing: 2px;
    margin: 20px 0
}

.date-stack {
    display: grid;
    gap: 14px
}

.date-stack div,
.venue-card,
.benefit-list div {
    padding: 18px;
    border-radius: 10px;
    background: rgba(0, 0, 0, .24);
    border: 1px solid rgba(255, 255, 255, .11)
}

.date-stack strong {
    display: block;
    font-size: 24px
}

.date-stack span,
.venue-card span {
    color: var(--muted)
}

.venue-card {
    margin-top: 14px
}

.venue-card strong {
    display: block;
    margin-top: 4px
}

.hero-marquee {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    gap: 34px;
    padding: 18px 0;
    background: rgba(225, 6, 66, .92);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
    white-space: nowrap;
    overflow: hidden
}

.hero-marquee span {
    animation: marquee 18s linear infinite
}

.section {
    position: relative;
    padding: 30px 0
}

.section h2 {
    font-size: clamp(26px, 4vw, 46px);
    line-height: 1.05;
    letter-spacing: .1px
}

.section-head {
    margin-bottom: 32px
}

.center {
    text-align: center
}

.section-note,
.about-content p,
.cta-card p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7
}

.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 42px;
    align-items: center
}

.image-stack {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    min-height: 420px
}

.image-stack img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block
}

.image-stack:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(8, 8, 18, .5), transparent)
}

.image-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 18px 20px;
    border-radius: 10px;
    background: rgba(8, 8, 18, .72);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border)
}

.image-badge strong {
    display: block;
    font-size: 25px
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 22px
}

.check-grid span {
    padding: 15px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--border);
    color: #e9ebff
}

.zone-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px
}

.zone-card {
    position: relative;
    min-height: 250px;
    padding: 22px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .04));
    border: 1px solid var(--border);
    overflow: hidden;
    transition: .3s
}

.zone-card:before {
    content: "";
    position: absolute;
    inset: auto 20px -80px 20px;
    height: 140px;
    background: radial-gradient(circle, var(--red), transparent 70%);
    opacity: .25;
    filter: blur(20px)
}

.zone-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, .35)
}

.zone-card span {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(225, 6, 66, .18);
    color: #ffc3ce;
    font-weight: 900
}

.zone-card h3 {
    font-size: 22px;
    letter-spacing: .1px;
    margin: 42px 0 12px
}

.zone-card p {
    color: var(--muted);
    line-height: 1.65
}

.leader-row {
    display: grid;
    grid-template-columns: .48fr 1fr;
    gap: 24px
}

.profile-grid {
    display: grid;
    gap: 22px
}

.profile-grid.two {
    grid-template-columns: repeat(2, 1fr)
}

.profile-grid.three {
    grid-template-columns: repeat(3, 1fr)
}

.profile-card,
.message-card,
.agenda-card,
.video-shell,
.map-card {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .07);
    border-radius: 10px;
    box-shadow: var(--shadow)
}

.profile-card {
    padding: 22px;
    overflow: hidden
}

.profile-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    display: block
}

.profile-card span {
    display: block;
    color: #ffbdc9;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    margin-top: 18px
}

.profile-card h3 {
    font-size: 24px;
    letter-spacing: .1px;
    margin: 10px 0
}

.profile-card p,
.message-card p {
    color: var(--muted);
    line-height: 1.65
}

.message-card {
    padding: 32px
}

.message-card h3 {
    font-size: 30px
}

.signature {
    margin-top: 20px;
    color: #fff
}

.group-title {
    font-size: 24px;
    margin: 32px 0 18px
}

.video-shell {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 20px;
    padding: 20px
}

.video-main iframe {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 24px;
    background: #000
}

.video-list {
    display: grid;
    gap: 12px
}

.video-list button {
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, .24);
    color: white;
    border-radius: 10px;
    padding: 16px;
    text-align: left;
    display: flex;
    gap: 14px;
    align-items: center;
    cursor: pointer;
    font: inherit
}

.video-list button.active {
    background: linear-gradient(135deg, rgba(225, 6, 66, .45), rgba(255, 255, 255, .08))
}

.video-list b {
    color: #ff9aac;
    font-size: 23px
}

.social-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
}

.social-row a {
    text-align: center;
    padding: 13px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid var(--border);
    font-weight: 800;
    color: #ffbdc9
}

.agenda-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.agenda-card {
    padding: 28px
}

.agenda-card b {
    font-size: 56px;
    color: #ff9aac
}

.agenda-card h3 {
    font-size: 25px
}

.agenda-card p {
    color: var(--muted)
}

.agenda-card button {
    display: inline-flex;
    margin-top: 14px;
    padding: 13px 18px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--red), #ff5c78);
    font-weight: 900;
    border: 0;
    color: #fff;
    cursor: pointer
}

.agenda-card.active {
    background: linear-gradient(135deg, rgba(225, 6, 66, .25), rgba(255, 255, 255, .08))
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.faculty-card {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .07);
    border-radius: 10px;
    padding: 14px;
    cursor: pointer;
    transition: .25s
}

.faculty-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .1)
}

.faculty-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 14px
}

.faculty-card h3 {
    font-size: 18px;
    letter-spacing: .1px;
    margin-bottom: 5px
}

.faculty-card p {
    color: var(--muted);
    margin: 0
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.gallery-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--border)
}

.gallery-grid img:nth-child(2) {
    height: 300px
}

.sponsor-strip {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px
}

.sponsor-strip span {
    padding: 14px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid var(--border);
    font-weight: 900;
    color: #f1f2ff
}

.venue-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 20px
}

.venue-grid>img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--border)
}

.map-card {
    overflow: hidden
}

.map-card iframe {
    width: 100%;
    height: 390px;
    border: 0;
    display: block
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.contact-grid a {
    padding: 28px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--border)
}

.contact-grid b {
    display: block;
    font-size: 22px
}

.contact-grid span {
    color: var(--muted)
}

.side-popup,
.agenda-drawer {
    position: fixed;
    right: -480px;
    top: 0;
    width: min(460px, 92vw);
    height: 100vh;
    background: #101225;
    border-left: 1px solid var(--border);
    z-index: 300;
    transition: .35s;
    box-shadow: -30px 0 70px rgba(0, 0, 0, .45);
    padding: 26px
}

.side-popup.open,
.agenda-drawer.open {
    right: 0
}

.popup-close {
    position: absolute;
    right: 18px;
    top: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    font-size: 28px;
    cursor: pointer
}

.popup-body {
    padding-top: 54px
}

.popup-body img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 18px
}

.popup-body span {
    color: #ffbdc9;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em
}

.popup-body h3 {
    font-size: 31px;
    letter-spacing: .1px;
    margin: 10px 0
}

.popup-body p {
    color: var(--muted);
    line-height: 1.7
}

.popup-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 250;
    opacity: 0;
    pointer-events: none;
    transition: .3s
}

.popup-backdrop.open {
    opacity: 1;
    pointer-events: auto
}

.agenda-drawer {
    width: min(720px, 94vw)
}

.agenda-drawer h3 {
    margin-top: 54px;
    font-size: 30px
}

.agenda-drawer iframe {
    width: 100%;
    height: calc(100vh - 130px);
    border: 0;
    border-radius: 10px;
    background: white
}

.cta-card {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    padding: 38px;
    border-radius: 10px;
    background: radial-gradient(circle at top right, rgba(225, 6, 66, .32), transparent 38%), rgba(255, 255, 255, .08);
    border: 1px solid var(--border)
}

.sticky-register {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 120;
    padding: 14px 22px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--red), #ff5c78);
    font-weight: 900;
    box-shadow: 0 15px 35px rgba(225, 6, 66, .35)
}

.footer {
    padding: 28px 0;
    border-top: 1px solid var(--border);
    color: var(--muted)
}

.footer-inner {
    display: flex;
    justify-content: space-between
}

.register-main {
    min-height: 100vh;
    padding: 130px 0 70px
}

.register-shell {
    display: grid;
    grid-template-columns: .75fr 1fr;
    gap: 34px;
    align-items: center
}

.register-info h1,
.thankyou-card h1 {
    font-size: clamp(24px, 5vw, 48px);
    line-height: .98;
    letter-spacing: .2px
}

.register-info p,
.thankyou-card p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7
}

.benefit-list {
    display: grid;
    gap: 12px;
    margin-top: 30px
}

.benefit-list div {
    display: flex;
    gap: 16px
}

.benefit-list b {
    color: #ff8ba0
}

.register-form {
    border-radius: 10px;
    padding: 30px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .08);
    box-shadow: var(--shadow)
}

.form-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 24px
}

.form-top h2 {
    font-size: 30px;
    margin: 0
}

.form-top span {
    color: #ffbdc9;
    font-size: 13px;
    font-weight: 900
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

label {
    display: grid;
    gap: 8px;
    color: #e7e9ff;
    font-size: 13px;
    font-weight: 800
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .25);
    color: #fff;
    border-radius: 10px;
    padding: 15px 16px;
    outline: none;
    font: inherit
}

input:focus,
select:focus,
textarea:focus {
    border-color: #ff8ba0;
    box-shadow: 0 0 0 4px rgba(225, 6, 66, .16)
}

select option {
    color: #111
}

textarea {
    min-height: 110px;
    resize: vertical
}

.full-label {
    margin-top: 16px
}

.full-btn {
    width: 100%;
    margin-top: 18px;
    border: none;
    cursor: pointer
}

.thankyou-main {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 40px
}

.thankyou-card {
    width: min(760px, 94%);
    padding: 44px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .08);
    box-shadow: var(--shadow)
}

.success-ring {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    margin: 0 auto 24px;
    display: grid;
    place-items: center;
    background: conic-gradient(var(--red), #ffbd00, var(--blue), var(--red));
    box-shadow: 0 0 55px rgba(225, 6, 66, .45)
}

.success-ring span {
    width: 92px;
    height: 92px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #101225;
    font-size: 45px
}

.event-reminder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 28px 0
}

.event-reminder div {
    padding: 18px;
    border-radius: 10px;
    background: rgba(0, 0, 0, .24);
    border: 1px solid rgba(255, 255, 255, .11)
}

.thank-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: .7s
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes marquee {
    to {
        transform: translateX(-260px)
    }
}

@media(max-width:1040px) {
    .nav-toggle {
        display: grid;
        gap: 5px
    }

    .nav-toggle span {
        width: 24px;
        height: 2px;
        background: #202041
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        padding: 16px;
        border-radius: 10px;
        background: rgba(238, 238, 246, .98);
        border: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch
    }

    .nav-menu.active {
        display: flex
    }

    .hero-grid,
    .about-grid,
    .leader-row,
    .video-shell,
    .venue-grid,
    .register-shell {
        grid-template-columns: 1fr
    }

    .zone-grid,
    .faculty-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .agenda-grid,
    .profile-grid.three,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .hero {
        padding-top: 130px
    }

    .cta-card {
        display: block
    }

    .cta-card .btn {
        margin-top: 20px
    }
}

@media(max-width:640px) {
    .site-header {
        top: 12px
    }

    .zone-grid,
    .form-grid,
    .event-reminder,
    .check-grid,
    .profile-grid.two,
    .faculty-grid,
    .gallery-grid {
        grid-template-columns: 1fr
    }

    .hero-card {
        padding: 22px
    }

    .section {
        padding: 58px 0
    }

    .register-form {
        padding: 22px
    }

    .footer-inner {
        display: grid;
        gap: 10px
    }

    .video-main iframe {
        height: 260px
    }

    .hero h1 {
        font-size: 42px
    }

    .hero-marquee {
        padding: 14px 0
    }

    .agenda-card b {
        font-size: 44px
    }
}

/* Agenda drawer stability patch */
body.drawer-open {
    overflow: hidden
}

.agenda-drawer {
    right: -760px;
    width: min(760px, 94vw);
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
    background: linear-gradient(180deg, #12152b, #090b17);
    z-index: 360
}

.agenda-drawer.open {
    right: 0
}

.agenda-drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 26px 26px 0
}

.agenda-drawer-head span {
    display: block;
    color: #ffbdc9;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    margin-bottom: 6px
}

.agenda-drawer-head h3 {
    margin: 0 !important;
    font-size: 28px !important;
    line-height: 1.1;
    padding-right: 42px
}

.agenda-drawer .popup-close {
    position: static;
    flex: 0 0 42px;
    background: #fff;
    color: #101225;
    line-height: 1
}

.agenda-drawer iframe {
    width: calc(100% - 52px) !important;
    height: calc(100vh - 160px) !important;
    margin: 0 26px;
    border: 0;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .32)
}

.agenda-actions {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 0 26px 24px
}

.agenda-actions a,
.agenda-actions button {
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-weight: 900;
    cursor: pointer
}

.agenda-actions a {
    background: linear-gradient(135deg, var(--red), #ff5c78)
}

.popup-backdrop {
    z-index: 340
}

.side-popup {
    z-index: 360
}

@media(max-width:640px) {
    .agenda-drawer {
        width: 100vw;
        right: -105vw
    }

    .agenda-drawer iframe {
        width: calc(100% - 28px) !important;
        margin: 0 14px;
        height: calc(100vh - 178px) !important
    }

    .agenda-drawer-head {
        padding: 20px 14px 0
    }

    .agenda-actions {
        padding: 0 14px 18px;
        display: grid
    }

    .agenda-actions a,
    .agenda-actions button {
        text-align: center
    }
}


.director-message-box {
    /* background: #eef4ff;ṣ */
    padding: 18px;
    border-radius: 12px;
    overflow: hidden;
    color: #eef4ff;
}

.director-message-box h2 {
    margin: 0 0 16px;
    font-size: 26px;
    color: #fff;
    font-weight: 800;
}

.profile-card-float {
    float: left;
    width: 200px;
    /* background: #ffffff; */
    /* border: 1px solid #d7deea; */
    border-radius: 18px;
    padding: 15px;
    margin: 0 20px 10px 0;
    text-align: start;

}

.profile-card-float img {
    width: 100px;
    border-radius: 14px;
    margin-bottom: 12px;
    text-align: start;

}

.profile-card-float span {
    display: inline-block;
    color: #d90416;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 6px;
}

.profile-card-float h3 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #ffd8df;
}



.message-title {
    margin: 0 0 10px;
    font-size: 22px;
    color: #fff;

}

.director-message-box p {
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 1.45;
    text-align: start;
    /* text-align: justify; */
}

.director-message-box ul {
    /* margin: 0 0 16px 265px; */
    padding-left: 20px;
}

.director-message-box li {
    font-size: 17px;
    line-height: 1.45;
    margin-bottom: 6px;
}

.signature {
    clear: both;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #ccd6e6;
    font-size: 18px;
    color: #111827;
}

.profile-card-float p {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    /* text-align: center; */
}

@media (max-width: 767px) {
    .profile-card-float {
        float: none;
        width: 100%;
        max-width: 280px;
        margin: 0 0 18px;
    }

    .director-message-box p {
        font-size: 16px;
        text-align: left;
    }

    .director-message-box ul {
        margin-left: 0;
    }

    .director-message-box h2 {
        font-size: 22px;
    }

    .thankyou-card {
        width: 100%;
        padding: 15px;


    }

    .profile-card-float span {
        display: none;
    }
}

.video-main {
    width: 100%;
    height: 520px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.video-thumb {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.video-thumb:hover img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .35);
}

.play-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #ff0033;
    color: #fff;
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: .3s;
}

.video-thumb:hover .play-circle {
    transform: scale(1.12);
}

.play-overlay h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.faculty-role {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 12px;
    border-radius: 30px;
    background: rgba(180, 20, 45, 0.1);
    color: #b4142d;
    font-size: 13px;
    font-weight: 700;
}

.faculty-popup-details {
    margin-top: 18px;
}

.faculty-popup-details p {
    margin-bottom: 10px;
    line-height: 1.55;
}

.faculty-popup-details hr {
    margin: 18px 0;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .12);
}


.agenda-btn {
    display: inline-flex;
    margin-top: 14px;
    padding: 13px 18px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--red), #ff5c78);
    font-weight: 900;
    border: 0;
    color: #fff;
    cursor: pointer;
}

/* =====================================
   EVENT GALLERY SLIDER
===================================== */

.gallery-slider {
    position: relative;
    width: 100%;
}

.gallery-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.gallery-track {
    display: flex;
    transition: transform .55s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.gallery-slide {
    flex: 0 0 25%;
    padding: 0 8px;
}

.gallery-slide img {
    width: 100%;
    height: 260px;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: transform .4s ease, filter .4s ease;
}

.gallery-slide:hover img {
    transform: scale(1.025);
    filter: brightness(1.08);
}


/* arrows */

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;

    background: rgba(8,8,18,.82);
    backdrop-filter: blur(12px);

    color: #fff;
    font-size: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: .3s ease;
}

.gallery-arrow:hover {
    background: var(--red);
    transform: translateY(-50%) scale(1.08);
}

.gallery-prev {
    left: -24px;
}

.gallery-next {
    right: -24px;
}


/* dots */

.gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}

.gallery-dot {
    width: 8px;
    height: 8px;

    padding: 0;
    border: 0;
    border-radius: 50%;

    background: rgba(255,255,255,.28);
    cursor: pointer;

    transition: .3s ease;
}

.gallery-dot.active {
    width: 28px;
    border-radius: 20px;
    background: var(--red);
}


/* tablet */

@media (max-width: 1040px) {

    .gallery-slide {
        flex: 0 0 50%;
    }

    .gallery-prev {
        left: 8px;
    }

    .gallery-next {
        right: 8px;
    }
}


/* mobile */

@media (max-width: 640px) {

    .gallery-slide {
        flex: 0 0 100%;
        padding: 0 5px;
    }

    .gallery-slide img {
        height: 270px;
    }

    .gallery-arrow {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .gallery-prev {
        left: 12px;
    }

    .gallery-next {
        right: 12px;
    }
}