/* ─── Banner ─────────────────────────────────────────────────── */
.banner-wrap {
    position: relative;
    overflow: hidden;
}

.banner-wrap .owl-carousel .owl-item {
    position: relative;
    overflow: hidden;
}

.__banner {
    position: relative;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.__banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 6s ease;
}
@media (max-width: 1530px) {
   .__banner {
     height: 50vh;
     min-height:400px;
    }
}
@media (max-width: 1240px) {
   .__banner {
     min-height:300px;
     height: 40vh;
    }
}
@media (max-width: 990px) {
   .__banner {
     height: 35vh;
     min-height:0px;
    }
}
@media (max-width: 870px) {
   .__banner {
     height: 27vh;
     min-height:0px;
    }
}
@media (max-width: 720px) {
   .__banner {
     height: 26vh;
     min-height:0px;
    }
}




.owl-item.active .__banner img {
    /* transform: scale(1.04); */
}

.__banner::after {
    content: '';
    position: absolute;
    inset: 0;

    z-index: 1;
}

.slide-caption {
    position: relative;
    z-index: 2;
    padding: 3rem 4rem 4rem;
    max-width: 700px;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
    border-left: 2px solid var(--gold);
    padding-left: 0.75rem;
}

.slide-caption h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -0.01em;
}

.slide-caption h2 em {
    font-style: italic;
    color: var(--gold-light);
}

/* Banner rule */
.banner-rule {
    /* height: 4px; */
    /* background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, transparent 100%); */
}

/* Owl nav */
.owl-theme .owl-dots .owl-dot span {
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    width: 24px;
    height: 3px;
    margin: 0 3px;
    transition: all 0.3s;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: var(--gold);
    width: 40px;
}

.owl-theme .owl-dots {
    position: absolute;
    bottom: 2rem;
    right: 4rem;
    z-index: 10;
}

/* ─── Announcement Bar ───────────────────────────────────────── */
.announcement-bar {
    background: #1c4283;
    color: var(--navy);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.6rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.announcement-bar .ticker-inner {
    display: inline-flex;
    animation: ticker 20s linear infinite;
}

.announcement-bar .ticker-item {
    padding: 0 3rem;
    color:var(--gold);
    font-weight:600;
}
@media (max-width: 576px) {
   .announcement-bar {
    font-size: 0.6rem;
    letter-spacing: 0.10em;

    }
}


.announcement-bar .ticker-sep {
    color: rgba(13,27,46,0.4);
}

@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ─── About Section ──────────────────────────────────────────── */
.about-section {
   /* background: linear-gradient(135deg, #ffffff, #f4f8ff); */
    background: white;
    padding: 0;
}

.about-section .section-inner {
    padding: 0rem 1rem;
}

.about-section2 {
    position: relative;
    background-size: 100%;
    background-position:-14rem 16.5rem;
    background-repeat: no-repeat;
}

@media (max-width: 1850px) {
    .about-section2 {
        background-image: none !important;
    }
}

.about-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.about-heading em {
    font-style: italic;
    color: var(--gold);
}

.about-text {
    font-size: 18px;
    line-height: 1.50;
    color: black;
    max-width: 100%;
    text-align:justify;
}

.about-grid {
    display: grid;
    /* grid-template-columns: 1.2fr 0.8fr; */
    gap: 4rem;
    align-items: start;
}

@media (max-width: 800px) {
    .about-text {
    font-size: 15px;
    }
    /* .about-grid { grid-template-columns: 1fr; gap: 2.5rem; } */
}

/* Edition badges */
.editions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}

.edition-badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border: 1px solid var(--border);
    color: var(--slate);
    background: transparent;
    transition: all 0.2s;
}

.edition-badge.active {
    background: var(--navy);
    color: var(--gold-light);
    border-color: var(--navy);
}

/* Stat Cards */
.stat-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    position: sticky;
    top: 100px;
}

.stat-card {
    background: var(--white);
    padding: 1.75rem 1.5rem;
    transition: background 0.25s;
}

.stat-card:hover {
    background: var(--gold-pale);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.stat-desc {
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--slate);
    margin: 0;
}

.advertisement-section {
    padding: 6rem 2rem;

    /* background: linear-gradient(135deg, #f8fbff, #eef3ff);; */
    color: #1a1a1a;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.3rem;
    font-weight: 600;
}

/* Table Wrapper */
.ad-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

/* Table */
.ad-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Header Row */
.ad-table thead {
    background: #dc4725;
    color: #fff;
}

.ad-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 500;
}

/* Body */
.ad-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Hover effect */
.ad-table tbody tr:hover {
    background: rgba(0, 86, 255, 0.05);
}

/* Note */
.ad-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #555;
}

/* Responsive */
@media (max-width: 600px) {
    .ad-table th,
    .ad-table td {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
}


/* ─── Conference Topics ──────────────────────────────────────── */


.topics-section::before {
    content: 'TOPICS';
    position: absolute;
    top: -0.5rem;
    right: -1rem;
    font-family: var(--font-display);
    font-size: 12rem;
    font-weight: 700;
    color: rgba(255,255,255,0.03);
    pointer-events: none;
    white-space: nowrap;
}

.topics-section .section-inner {
    padding: 0 2rem;
    max-width: 1500px;
    margin: 0 auto;
}

.topics-section .section-label {
    color: var(--gold-light);
}

.topics-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
    text-align:center;
    text-transform: uppercase;
}
@media (max-width: 600px) {
        .topics-section h2 {
                font-size: 1.7rem;
        }
}
.topics-grid {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(184,149,42,0.15);
    border: 1px solid rgba(184,149,42,0.15); */
    margin-bottom: 2rem;
}

@media (max-width: 768px) { .topics-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .topics-grid { grid-template-columns: 1fr; } }




.topic-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 0.45rem;
}

.topic-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: rgba(7, 7, 7, 0.75);
    line-height: 1.5;
}
/* ───────── TOPICS SECTION ───────── */
.topics-section {

    position: relative;
    overflow: hidden;
}

/* GRID */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* TOPIC CARD */




/* LEFT GLOW BAR */
.topic-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(#dc4725, transparent);
    border-radius: 4px;
    opacity: 0;
    transition: 0.3s;
}



/* DOT → PULSE EFFECT */
.topic-dot {
    width: 10px;
    height: 10px;
    background: #dc4725;
    border-radius: 50%;
    position: relative;
}

/* Pulse animation */
.topic-dot::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: rgba(220,71,37,0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.6); opacity: 0.6; }
    70% { transform: scale(1.6); opacity: 0; }
    100% { opacity: 0; }
}

/* TEXT */
.topic-text {
    font-size: 15px;
    font-weight: 500;
    color: #222;
}
/* ───────── MOLECULE SECTION ───────── */
.topics-section {
    position: relative;
    /* background:linear-gradient(135deg, #fcfdff, #f5f8ff); */
    /* background:linear-gradient(135deg, #f0f4ff 0%, #e8eef8 40%, #dce8f5 100%); */
    /* background:white!important; */

    overflow: hidden;
}

/* SVG network lines */
.network-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* NODE GRID (free-flow layout feel) */
.topics-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 20px;
    z-index: 2;
}


/* NODE (ATOM STYLE) */
.topic-item {
    position: relative;
    padding: 8px 20px;
    border-radius: 10px;
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    border-color: #dc4725;
}

/* Floating motion */
.topic-item {
    animation: floatNode 6s ease-in-out infinite;
}

.session-card {
    animation: floatNode 6s ease-in-out infinite;
}

.topic-item:nth-child(even) {
    animation-delay: 2s;
}

@keyframes floatNode {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Hover glow */
.topic-item:hover {

    box-shadow: 0 5px 30px #dc4725;
    border-color: #dc4725;
}

/* NODE CORE DOT */
.topic-dot {
    width: 10px;
    height: 10px;
    background: #dc4725;
    border-radius: 50%;
    margin: 0 auto 8px;
    position: relative;
}

/* Orbit ring */
.topic-dot::after {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(220,71,37,0.3);
    border-radius: 50%;
    animation: rotateOrbit 6s linear infinite;
}

@keyframes rotateOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* TEXT */
.topic-text {
    font-size: 14px;
    font-weight: 500;
    color: #222;
}

/* ───────── SESSION CARDS (MATCH STYLE) ───────── */
.sessions-title {
    margin-top: 80px;
    font-size: 2.6rem;
    text-align: center;
    color: #dc4725;
}

.sessions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.session-card {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
    border-color: #dc4725;
}
.text-red {
    color: #dc4725;
}
.session-card:hover {
    transform: translateY(-6px);
     background: rgba(255,255,255,0.8);
    box-shadow: 0 12px 30px rgba(220,71,37,0.2);
}

.session-label {
    font-size: 14px;
    font-weight: 500;
}
/* ───────── SESSIONS ───────── */
.sessions-title {
    margin-top: 70px;
    font-size: 1.6rem;
    font-weight: 600;
    color: #dc4725;
}

/* SESSION GRID */
.sessions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* SESSION CARD */
.session-card {
    padding: 20px;
    border-radius: 16px;
    /* background: linear-gradient(135deg, #ffffff, #f5f8ff); */
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
      border-color: #dc4725;
}

/* Hover glow */
.session-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(220,71,37,0.15);
     background: rgba(255,255,255,0.8);
}

/* LABEL */
.session-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}
.topics-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.venue-section{
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.section-inner {
    position: relative;
    z-index: 1; /* keeps text above overlay */
}
/* OPTIONAL: subtle background particles */
.topics-section::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: radial-gradient(circle at 20% 30%, rgba(220,71,37,0.05), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(0,102,255,0.05), transparent 40%); */
    z-index: 0;
}

.section-inner {
    position: relative;
    z-index: 2;
}
/* Special Sessions */
.sessions-title {
    font-family: var(--font-mono);
    font-size: 2.0rem;
    font-weight:600;
    letter-spacing: 0em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}
@media (max-width: 600px) {
    .sessions-title {
         font-size: 1.0rem;
          font-weight:600;
    }
}

.sessions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 600px) { .sessions-grid { grid-template-columns: 1fr; } }

.session-card {
    background:white;
    border: 1px solid rgba(184,149,42,0.2);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: border-color 0.2s, background 0.2s;
      border-color: #dc4725;
}

.session-card:hover {
    border-color: var(--gold);
box-shadow: 0 5px 30px #dc4725;
     background: rgba(255,255,255,0.8);
}

.session-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
    flex-shrink: 0;
}

.session-label {
    font-size: 18px;
    color: black;
    line-height: 1.5;
        display: block;
    text-align: center;
    width: 100%;
}

/* ─── Theme Section ──────────────────────────────────────────── */
.theme-section {
    background: var(--white);
    padding: 5rem 0;
}

.theme-section .section-inner {
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.theme-grid {
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

@media (max-width: 768px) { .theme-grid { grid-template-columns: 1fr; gap: 2rem; } }

.theme-img-wrap {
    position: relative;
}

.theme-img-wrap img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

.theme-img-wrap::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    inset: 12px -12px -12px 12px;
    border: 1px solid var(--gold);
    z-index: -1;
    pointer-events: none;
}

.theme-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.theme-content .body-text {
    font-size: 0.92rem;
    line-height: 1.85;
    color: var(--slate);
    overflow: hidden;
    max-height: 220px;
    transition: max-height 0.6s ease;
}

.theme-content .body-text.readmore {
    max-height: 2000px;
}

.read-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    transition: color 0.2s;
}

.read-toggle:hover { color: var(--navy); }

.read-toggle i { font-size: 0.6rem; }
.registration-section {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
    background: white;
    color: #1a1a1a;
    overflow: visible;
}

/* Subtle grid pattern (scientific feel) */
.registration-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    /* background: radial-gradient(circle, rgba(0,102,255,0.12), transparent 70%); */
    top: -100px;
    left: -100px;
    z-index: 0;
}

.registration-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    /* background: radial-gradient(circle, rgba(220,71,37,0.12), transparent 70%); */
    bottom: -100px;
    right: -100px;
    z-index: 0;
}

.registration-section .container {
    position: relative;
    z-index: 2;
}

/* PARTICLES */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.particles span {
    position: absolute;
    display: block;
    width: 6px;
    height: 6px;
    background: rgba(0, 102, 255, 0.2);
    border-radius: 50%;
    animation: floatParticle 12s linear infinite;
}

/* Random positions */
.particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.particles span:nth-child(2) { left: 25%; animation-delay: 2s; }
.particles span:nth-child(3) { left: 40%; animation-delay: 4s; }
.particles span:nth-child(4) { left: 60%; animation-delay: 1s; }
.particles span:nth-child(5) { left: 75%; animation-delay: 3s; }
.particles span:nth-child(6) { left: 90%; animation-delay: 5s; }

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) scale(1.3);
        opacity: 0;
    }
}

/* Content above particles */
.container {
    position: relative;
    z-index: 2;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color:#dc4725;
    font-family: var(--font-display);
}

.reg-link {
    color: #0056ff;
    font-weight: 500;
    text-decoration: none;
}

/* Grid */
.registration-grid {
    display: grid;

    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Glass Cards */
.reg-card {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.reg-card:hover {
    transform: translateY(-5px);
}

.reg-card h3 {
    margin-bottom: 1rem;
    color: #fc560a;
}

/* Lists */
.reg-card ul {
    list-style: none;
    padding: 0;
}

.reg-card ul li {
    margin-bottom: 0.6rem;
}

/* Fees */
.fee-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 0.5rem 0;
}

/* Notes */
.note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Deadline */
.deadline-box {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    font-size:16px;
}

.warning {
    color: #d9534f;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .registration-grid {
        grid-template-columns: 1fr;
    }

}
/* GRID */
.venue-grid.modern-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* IMAGE CARD */
.venue-image-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.venue-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.venue-image-card:hover img {
    transform: scale(1.08);
}

/* IMAGE OVERLAY */
.venue-image-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    color: #fff;

    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.venue-image-overlay h4 {
    margin: 0;
    font-size: 1.4rem;
}

.venue-image-overlay span {
    font-size: 0.9rem;
    opacity: 0.9;
}


.venue-info-card:hover {
    transform: translateY(-5px);
}

/* TEXT */
.venue-info-card p {
    line-height: 1.7;
    color: #444;
}

/* TAGS */
.venue-tags {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.venue-tags span {
    background: #f1f5ff;
    color: #2a4cff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* MAP CARD */
.venue-map-card {
    margin-top: 30px;
    border-radius: 18px;
    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.venue-map-card iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .venue-grid.modern-cards {
        grid-template-columns: 1fr;
    }
}

   .sponsorship-section {
    padding: 6rem 2rem;
    /* background: linear-gradient(135deg, #f8fbff, #eef3ff); */
}

/* Wrapper */
.sponsor-table-wrapper {
    box-shadow:0 10px 30px rgb(0 0 0 / 33%);
    max-width: 1100px;
    margin: 2rem auto 0;
    overflow-x: auto;
}

/* Table */
.sponsor-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    color:black;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Header */
.sponsor-table thead {
    background: #042747;
    color: #000000;
}
.sponsor-table tbody {
    background: white;
    color: #000000;
}
.sponsor-table tr {
    padding: 1rem;
    text-align: center;
}

.sponsor-table th {
    padding: 1rem;
    text-align: center;
    font-weight: 500;
}

/* Body */
.sponsor-table td {
    padding: 1rem;
    text-align:center;
    vertical-align: top;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Row Hover */
.sponsor-table tbody tr:hover {
    background: rgba(0, 51, 170, 0.05);
}

/* Tier Highlight */


.important-section {
    padding: 6rem 2rem;
    /* background: linear-gradient(135deg, #ffffff, #f4f8ff); */
    color: #1a1a1a;
}

/* Grid Layout */
.important-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 2rem auto 0;
}

/* Blocks */
.info-block {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
    padding: 1.8rem;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

/* Titles */
.info-block h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: #dc4725;
}

/* Lists */
.info-block ul {
    list-style: none;
    padding: 0;
}

.info-block ul li {
    margin-bottom: 0.6rem;
    display: flex;
    justify-content: space-between;
}

/* Bank details */
.bank-details li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 0.4rem 0;
}

/* Highlight text */
.highlight {
    font-weight: 600;
    color: #0056ff;
}

/* Responsive */
@media (max-width: 768px) {
    .important-grid {
        grid-template-columns: 1fr;
    }

    .info-block ul li {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .sponsor-table th,
    .sponsor-table td {
        font-size: 0.9rem;
        padding: 0.7rem;
    }
}
    /* ── CONTENT GRID ── */
    .venue-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      align-items: start;
    }

    /* ── LEFT: decorative heading column ── */
    .venue-left {
      animation: fadeUp .7s .1s ease both;
    }

    .venue-eyebrow {
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.75rem;
    }

    .venue-heading {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 4vw, 3.4rem);
      font-weight: 300;
      line-height: 1.1;
      color: #dc4725;
      margin-bottom: 0.2rem;
    }

    .venue-heading em {
      font-style: italic;
      color: var(--gold);
    }

    .venue-subheading {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 300;
      font-style: italic;
      color: var(--text-muted);
      letter-spacing: 0.04em;
      margin-bottom: 2rem;
    }

    /* decorative divider */
    .venue-divider {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 2rem;
    }
    .venue-divider::before,
    .venue-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--gold-pale);
    }
    .venue-divider span {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold);
      display: block;
    }

    /* highlight facts row */
    .venue-facts {
      display: flex;
      gap: 1.5rem;
    }
    .venue-fact {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }
    .venue-fact-value {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--teal-dark);
      line-height: 1;
    }
    .venue-fact-label {
      font-size: 0.68rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .venue-fact-sep {
      width: 1px;
      background: var(--gold-pale);
      align-self: stretch;
    }

    /* ── RIGHT: description card ── */
    .venue-right {
      animation: fadeUp .7s .2s ease both;
    }

    .venue-card {
      background: var(--white);
      border: 1px solid rgba(184,145,58,.18);
      border-radius: 4px;
      padding: 2.2rem 2rem;
      position: relative;
      box-shadow: 0 2px 24px rgba(27,58,58,.06);
    }

    /* gold corner accent */
    .venue-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 48px; height: 48px;
      border-top: 2px solid var(--gold);
      border-left: 2px solid var(--gold);
      border-radius: 4px 0 0 0;
    }
    .venue-card::after {
      content: '';
      position: absolute;
      bottom: 0; right: 0;
      width: 48px; height: 48px;
      border-bottom: 2px solid var(--gold);
      border-right: 2px solid var(--gold);
      border-radius: 0 0 4px 0;
    }

    .venue-card-title {
      font-family: var(--font-display);
      font-size: 0.78rem;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .venue-card-body {
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 300;
      color: var(--text-body);
      line-height: 1.85;
    }

    /* ── TAG PILLS at bottom of card ── */
    .venue-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1.5rem;
      padding-top: 1.25rem;
      border-top: 1px solid var(--gold-pale);
    }

    .venue-tag {
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--teal);
      background: rgba(42,82,82,.07);
      border: 1px solid rgba(42,82,82,.15);
      border-radius: 2px;
      padding: 4px 10px;
    }

    /* ── KEYFRAMES ── */
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-12px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .venue-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      .venue-section {
        padding: 3.5rem 0 3rem;

        }
    }

    .venue-section
    {
          /* background: linear-gradient(135deg, #f8fbff, #eef3ff); */
    }
.venue-img-wrap:hover img { transform: scale(1.03); }

.venue-copy {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(184,149,42,0.15);
    border-left: none;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.venue-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.venue-copy p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
}

.venue-copy .read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: black;
    margin-top: 0.75rem;
    transition: gap 0.2s;
}

.venue-copy .read-more-link:hover { gap: 0.85rem; }

/* About IIM strip */
.iim-strip {
    background: var(--white);
    border-top: 3px solid var(--gold);
    padding: 3.5rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.iim-strip .section-label { justify-content: center; display: flex; }

.iim-strip p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.9rem;
    line-height: 1.85;
    color: var(--slate);
}

/* ─── Sponsors ───────────────────────────────────────────────── */
.sponsors-section {
    background: var(--cream);
    padding: 5rem 0;
}

.sponsors-section .section-inner {
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sponsors-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 2.5rem;
}

.sponsors-section iframe {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--white);
}

/* ─── Hotels & Flights ───────────────────────────────────────── */
.logistics-section {
    background: var(--white);
    padding: 5rem 0;
}

.logistics-section .section-inner {
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logistics-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 2.5rem;
    text-align: center;
}

/* Pill tabs */
.__pills_hotel {
    gap: 0.5rem;
    margin-bottom: 0;
}

.__pills_hotel .nav-item .nav-link {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--slate);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 0.65rem 1.75rem;
    background: transparent;
    transition: all 0.2s;
}

.__pills_hotel .nav-item .nav-link.active {
    background: var(--navy);
    color: var(--gold-light);
    border-color: var(--navy);
}

.__pills_hotel .nav-item .nav-link:hover:not(.active) {
    background: var(--gold-pale);
    color: var(--navy);
    border-color: var(--gold);
}

/* Hotel cards */
.__hotel .card {
    border: 1px solid var(--border);
    border-radius: 0;
    transition: box-shadow 0.25s, transform 0.25s;
    overflow: hidden;
}

.__hotel .card:hover {
    box-shadow: 0 8px 32px rgba(13,27,46,0.1);
    transform: translateY(-3px);
}

.__hotel .card-header {
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.88rem;
    border-radius: 0 !important;
    padding: 0.85rem 1.25rem;
    border-bottom: none;
}

.__hotel .card-header .text-warning { color: var(--gold-light) !important; }

.__hotel .card-body {
    font-size: 0.85rem;
    color: var(--slate);
    line-height: 1.7;
}

.__hotel .view_more {
    display: inline-block;
    background: var(--navy);
    color: var(--gold-light);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    position: absolute;
    bottom: 0; left: 0; right: 0;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
}

.__hotel .view_more:hover { background: var(--gold); color: var(--navy); }

.hotel-note {
    font-size: 0.82rem;
    color: var(--slate);
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-left: 3px solid var(--gold);
    background: var(--gold-pale);
}

/* ─── History Gallery ────────────────────────────────────────── */
.history-section {
    background: var(--navy);
    padding: 5rem 0 3rem;
    overflow: hidden;
}

.history-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.history-section .card {
    border: none;
    border-radius: 0;
    overflow: hidden;
}

.history-section .card img {
    transition: transform 0.5s ease;
}

.history-section .card:hover img { transform: scale(1.05); }

/* ─── Tariff / Registration ──────────────────────────────────── */
.__tariff {
    background: var(--cream);
    padding: 5rem 0;
}

.__tariff h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--navy);
    text-align: center;
    margin-bottom: 2.5rem;
}

.__tariff .card {
    border: 1px solid var(--border);
    border-radius: 0;
    overflow: hidden;
}

.__tariff .table {
    font-size: 0.85rem;
    color: var(--navy);
    margin: 0;
}

.__tariff .table thead th {
    background: var(--navy);
    color: var(--gold-light);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    padding: 0.85rem 1.25rem;
}

.__tariff .table tbody tr:hover { background: var(--gold-pale); }

/* ─── Field Trip / Misc Sections ─────────────────────────────── */
.field_trip {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--slate);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 576px) {
    .slide-caption { padding: 2rem 1.5rem 3rem; }
    .__banner {
        height: 22vh;
        min-height:0px;
     }

    .stat-cards { grid-template-columns: 1fr; }
}
@media (max-width: 470px) {
    .__banner {
        height: 17vh;
        min-height:0px;
     }
}
@media (max-width: 430px) {
    .__banner {
        height: 14vh;
        min-height:0px;
     }
}
@media (max-width: 390px) {
    .__banner {
        height: 15vh;
        min-height:0px;
     }
}
@media (max-width: 360px) {
    .__banner {
        height: 13vh;
        min-height:0px;
     }
}
/* GRID */
/* WRAPPER */
.sponsor-table-wrapper {
    overflow-x: auto;
    margin-top: 20px;
    border-radius: 16px;
}

/* TABLE */
.sponsor-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    overflow: hidden;
}

/* HEADER */
.sponsor-table thead {
    background: #042747;
    color: #fff;
}

.sponsor-table th {
    padding: 16px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* BODY */
.sponsor-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    vertical-align: top;
}

/* ROW HOVER */
.sponsor-table tbody tr {
    transition: 0.3s;
}

.sponsor-table tbody tr:hover {
    background: rgba(0,0,0,0.03);
    transform: scale(1.01);
}

/* TIER COLORS */




/* AMOUNT COLUMN */
.sponsor-table td:nth-child(2) {

    color: #000;
}

/* BENEFITS TEXT */
.sponsor-table td:nth-child(3) {
    line-height: 1.6;
    color: black;
}

/* MOBILE */
@media (max-width: 768px) {
    .sponsor-table th,
    .sponsor-table td {
        padding: 10px;
        font-size: 14px;
    }
}
.registration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

/* CARD */
.reg-card {
    background: white;
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.reg-card:hover {
    transform: translateY(-5px);
}

/* TITLE */
.reg-card h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--gold-light);
}

/* LIST */
.fee-list {
    list-style: none;
    padding: 0;
}

.fee-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.fee-list li strong {
    color: #000;
}

/* NOTE */
.note {
    margin-top: 15px;
    font-size: 13px;
    text-align: center;
    opacity: 0.7;
}

/* SPONSOR GRID */
.sponsor-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* SPONSOR CARD */
.s-card {
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    color: #fff;
    transition: 0.3s;
}

.s-card:hover {
    transform: scale(1.05);
}



/* PRICE */
.price {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}



.exh-img-wrap {
    position: absolute;
    left: -20%;       /* adjust as needed */
    top: 10%;      /* adjust vertical position */
    width: 130px;
}

.exh-deco-img {
    min-width: 250px;
    object-fit: contain;
}

@media (max-width: 1500px) {
    .exh-img-wrap {
              display: none;
        }

}

@media (max-width: 850px) {
    .exh-img-wrap {
        display: none;
    }
}



.del-deco-wrap {
    position: absolute;
    right: -10%;       /* adjust as needed */
    top: 45%;      /* adjust vertical position */
    width: 130px;
}

.del-deco-img {
    min-width: 200px;
    object-fit: contain;
}

@media (max-width: 1500px) {
    .del-deco-wrap {
               display: none;    /* adjust vertical position */

        }

        .del-deco-img {
    width: 150px !important;
        min-width: unset !important;
    }

}

@media (max-width: 850px) {
    .del-deco-wrap {
        display: none;
    }
}



.adv-deco-wrap {
    position: absolute;
    left: -10%;       /* adjust as needed */
    bottom: 5%;      /* adjust vertical position */

}

.adv-deco-img {
    min-width: 200px;
    object-fit: contain;
}

@media (max-width: 1500px) {
    .adv-deco-wrap {
        display: none;
    }

    .adv-deco-wrap .adv-deco-img {
        width: 130px !important;
        min-width: unset !important;  /* override the min-width blocking resize */
    }

}

@media (max-width: 850px) {
    .adv-deco-wrap {
        display: none;
    }
}
.poster-card {
    background: white;
    padding: 25px 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.poster-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.poster-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 18px;
}

@media (max-width: 850px) {
    .poster-list li {

    font-size: 15px;
    }
}

/* custom dot */
.poster-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: #3b82f6; /* blue dot */
    border-radius: 50%;
}


.dates-wrapper {
    display: flex;
    justify-content: center;
}

.dates-card {
    display: inline-flex;
    flex-direction: column;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e8edf3;
}

.date-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    background: #fff;
    border-bottom: 1px solid #f0f4f8;
    transition: background 0.2s;
}

.date-item:last-child {
    border-bottom: none;
}

.date-item:hover {
    background: #f7f9fc;
}

.date-icon {
    font-size: 1.3rem;
    width: 36px;
    height: 36px;
    background: #fff5f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.date-info {
    display: flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
}

.date-label {
    color: #555;
    font-size: 18px;
    min-width: 160px;
}

.date-value {
    color: #e8500a;
    font-size: 18px;
}

@media (max-width: 768px) {
    .dates-card {
        width: 100%;
    }

    .date-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        white-space: normal;
    }

    .date-label {
        min-width: unset;
    }
}

.venue-grid.modern-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch; /* key: makes both columns equal height */
}

.venue-left,
.venue-right {
    display: flex;
    flex-direction: column;
}

.venue-image-card {
    position: relative;
    height: 100%;        /* fills the full left column height */
    border-radius: 16px;
    overflow: hidden;
}

.venue-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* crops image to fill without distorting */
    display: block;
}




/* Mobile */
@media (max-width: 768px) {
    .venue-grid.modern-cards {
        grid-template-columns: 1fr;
    }

    .venue-image-card {
        height: 280px;
    }


}

.venue-info-card {
    height: 100%;
    border-radius: 16px;
    background: #fff;
    padding: 36px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.venue-info-badge {
    display: inline-block;
    background: #fff5f0;
    color: #e8500a;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.venue-city-name {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.venue-state-name {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
    margin-bottom:10px;
}

.venue-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.venue-divider::before,
.venue-divider::after {
    content: '';
    height: 1px;
    background: #e8500a;
    opacity: 0.3;
}

.venue-divider::before {
    width: 20px;
}

.venue-divider::after {
    flex: 1;
}

.venue-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}


.info-cards-section {

    padding: 2rem 1.5rem;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.info-card.dates-card {
    background: rgb(6 40 75);
}

.info-card.announce-card {
    background: rgb(6 40 75);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.info-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.dates-card .info-card-icon {
    background: rgba(252, 86, 10, 0.25);
    color: #fc7a3a;
}

.announce-card .info-card-icon {
    background: rgba(55, 138, 221, 0.25);
    color: #6ab4f5;
}

.info-card-title {
    font-family:"Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fc560a;
    margin: 0;
}

.date-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.date-row:last-child { border-bottom: none; }

.date-label {
    font-size: 16px;
    color: white;
    line-height: 1.4;
    flex: 1;
}

.date-val {
    font-size: 16px;
    font-weight: 500;
    color: #ff8418;
    white-space: nowrap;
    flex-shrink: 0;
}

.announce-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.announce-item:last-child { border-bottom: none; }

.announce-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6ab4f5;
    margin-top: 7px;
    flex-shrink: 0;
}

.announce-text {
    font-size: 16px;
    color: white;
    line-height: 1.5;
}
/* ── About + Dates two-column layout ── */
.about-dates-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 900px) {
    .about-dates-grid {
        grid-template-columns: 1fr;
    }
}

/* Sticky card so it stays visible as text scrolls */
.about-dates-card-wrap {
    position: sticky;
    top: 90px;
}

.about-dates-card {
    background: #0a1f44;
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.about-dates-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.about-dates-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(252, 86, 10, 0.25);
    color: #fc7a3a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.about-dates-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.about-date-row {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-date-row:last-child {
    border-bottom: none;
}

.about-date-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
}

.about-date-val {
    font-size: 14px;
    font-weight: 600;
    color: #fc7a3a;
}

/* ══ Call For Papers Section ══════════════════════════════ */

.cfp-box {
    background: #ffffff;
    border-radius: 18px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 2.5rem;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.cfp-box-accent {
    height: 5px;
    background: #fc560a;
    width: 100%;
}

.cfp-box-icon-row {
    display: flex;
    justify-content: center;
    margin: 2rem 0 1.2rem;
}

.cfp-box-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(252, 86, 10, 0.1);
    border: 2px solid rgba(252, 86, 10, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fc560a;
}

.cfp-body-text {
    font-size: 20px;
    line-height: 1.85;
    color: black;
    text-align: justify;
    padding: 0 2.5rem;
    margin: 0 0 1.5rem;

}

@media (max-width: 600px) {
    .cfp-body-text {
        padding: 0 1.25rem;
        font-size: 14.5px;
    }
}

.cfp-divider {
    height: 1px;
    background: #eee;
    margin: 0 2rem 1.75rem;
}

/* Key date pills */
.cfp-dates-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    padding: 0 1.5rem 1.75rem;
}

.cfp-date-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f4f4f4;
    border: 1px solid rgba(252, 86, 10, 0.2);
    border-radius: 10px;
    padding: 0.7rem 1.25rem;
    min-width: 140px;
}

.cfp-pill-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0px;
    color: black;
    font-weight: 600;
    margin-bottom: 4px;
}

.cfp-pill-val {
    font-size: 14px;
    font-weight: 700;
    color: #fc560a;
}

/* Contact block */
.cfp-contact-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0 2.5rem;
}

@media (max-width: 600px) {
    .cfp-contact-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 1.25rem;
    }
}

.cfp-contact-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #0a1f44;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.cfp-contact-name {
    font-size: 16px;
    font-weight: 700;
    color: black;
    margin: 0 0 3px;
}

.cfp-contact-role {
    font-size: 15px;
    color: black;
    margin: 0 0 2px;
    line-height: 1.5;
}

.cfp-contact-email {
    display: inline-block;
    margin-top: 8px;
    font-size: 15px;
    color: #fc560a;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.cfp-contact-email:hover {
    color: #c94000;
    text-decoration: underline;
}
/* Abstract Submission Button */
.cfp-submit-btn {
    display: inline-flex;
    align-items: center;
    background: #fc560a;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.75rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 6px 20px rgba(252, 86, 10, 0.35);
}

.cfp-submit-btn:hover {
    background: #d94500;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(252, 86, 10, 0.45);
}

.cfp-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(252, 86, 10, 0.3);
}
.cfp-submit-btn:hover svg {
    transform: translateX(4px);
}
/* ══ Registration Main Section ═════════════════════════════════ */
.reg-main-section {
    background: #f7f8fa;
    padding: 60px 0;
}

.rms-block {
    max-width: 1100px;
    margin: 0 auto 2.5rem;
    padding: 0 1rem;
}

.rms-seg-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fc560a;
    margin-bottom: 0.4rem;
}

.rms-seg-title {
    font-size: 2rem;
    font-weight: 700;
    color: black;
    margin-bottom: 0.4rem;
}

.rms-rule {
    width: 48px;
    height: 3px;
    background: #fc560a;
    border-radius: 2px;
    margin-bottom: 2rem;
}

.rms-gst-note {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    text-align: center;
    font-size: 16px;
      color: black;
    border-radius: 8px;
    margin: 0 auto 1.75rem;
    max-width: 700px;
}

.rms-gst-note i {
    color: black;
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Exhibition banner */
.exh-banner {
    background: #0a1f44;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.exh-tag {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 4px;
}

.exh-price {
    font-size: 2rem;
    font-weight: 800;
    color: #fc560a;
    line-height: 1;
}

.exh-size {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
}

.exh-note {
    font-size: 16px;
    color: rgba(255,255,255,0.4);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    width: 100%;
}

/* Delegate cards */
.delegate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
}

.del-card {
    background: #fff;
    border-radius: 12px;
    padding: 0.2rem 0.2rem;
    border: 1px solid #eee;
    text-align: center;
    transition: border 0.2s, transform 0.2s;
}

.del-card:hover {
    border-color: #fc560a;
    transform: translateY(-3px);
}

.del-card.highlight {
    border: 2px solid #fc560a;
}

.del-type {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: black;
}

.del-fee {
    font-size: 1.3rem;
    font-weight: 800;
    color: black;
}

.del-card.highlight .del-fee {
    color: #fc560a;
}

/* Sponsorship cards */
.sp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 16px;
}

.sp-card {
    background: #05274a;
    border-radius: 14px;
    padding: 1.5rem;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
}

.sp-card:hover {
    transform: translateY(-4px);
}

.sp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
}

.sp-card.platinum::before { background: #c9973e; }
.sp-card.diamond::before  { background: #5b9bd5; }
.sp-card.gold::before     { background: #fc560a; }
.sp-card.silver::before   { background: #aaa; }
.sp-card.meal::before     { background: #4caf7d; }

.sp-tier-badge {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.sp-card.platinum .sp-tier-badge { background: #fef5e4; color: #9a6b1a; }
.sp-card.diamond  .sp-tier-badge { background: #e8f2fc; color: #1a5fa0; }
.sp-card.gold     .sp-tier-badge { background: #fff0eb; color: #b03a00; }
.sp-card.silver   .sp-tier-badge { background: #f2f2f2; color: #555; }
.sp-card.meal     .sp-tier-badge { background: #edf7f1; color: #2d7a4f; }

.sp-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
}

.sp-benefits {
    list-style: none;
    padding: 0;
}

.sp-benefits li {
    font-size: 17px;
    color: white;
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-bottom: 1px solid #f5f5f5;
}

.sp-benefits li:last-child { border-bottom: none; }

.sp-benefits li::before {
    content: '✓';
    color: #fc560a;
    font-weight: 700;
    flex-shrink: 0;
}

/* Advertisement rows */
.adv-list {
    display: grid;
    gap: 10px;
}

.adv-row {
    background: #fff;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    transition: border 0.2s;
}

.adv-row:hover {
    border-color: #fc560a;
}

.adv-pos {
    font-size: 18px;
    font-weight: 600;
    color: black;
}

.adv-prices {
    display: flex;
    gap: 2rem;
}

.adv-price-item { text-align: right; }

.adv-price-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: black;
    font-weight: 700;
}

.adv-price-val {
    font-size: 16px;
    font-weight: 800;
    color: #fc560a;
}
.download_card{
top:85%!important;
padding:0.2rem 0.5rem!important;
color:#fc560a!important;
text-align:center!important;
}

@media (max-width: 600px) {
    .exh-banner { flex-direction: column; align-items: flex-start; }
    .adv-row { flex-direction: column; align-items: flex-start; }
    .adv-prices { gap: 1rem; }
    .adv-price-item { text-align: left; }
    .rms-seg-title { font-size: 1.5rem; }
}
/* ── Section base & alternating backgrounds ── */
.rms-section {
    padding: 30px 0;
    background: white;
}

.rms-section--alt {
    background: #ffffff;
}
/* ── Banner wrapper must be relative ── */
.banner-wrap {
    position: relative;
}

/* ── Dates overlay card ── */
.banner-dates-card {
    position: absolute;
    top: 50%;
    right: 8.5rem;
    transform: translateY(-50%);
    z-index: 10;
    background: #cdd8ef;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 0.9rem 0.6rem;
    min-width: 300px;
    max-width: 400px;
}
.banner-brochure-btn {
    position: absolute;
    right: 1.5rem;
    top: calc(var(--dates-card-bottom, 320px));   /* tweak this offset to match card bottom */
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: #fc560a;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-radius: 0 0 8px 8px;        /* tabs down from the card bottom */
    border-top: 2px solid rgba(255,255,255,0.25);
}
.banner-brochure-btn:hover { background: #e04a06; color:#fff; }
.banner-brochure-btn svg  { flex-shrink:0; }

/* Header row */
.banner-dates-header {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fa5b19;
    margin-bottom: 0.2rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgb(72 69 69 / 75%);
}
.banner-dates-header svg {
    margin-top: 6px;
}
/* Each date row */
.banner-date-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.banner-date-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.banner-date-label {
    font-size: 1rem;
    color: black;
    line-height: 1.3;
}

.banner-date-val {
    font-size: 14px;
    font-weight: 700;
    color: #fc560a;
    letter-spacing: 0.3px;
}


/* ── Mobile: move card below banner ── */
@media (max-width: 1600px) {

    .download_card
    {
        top:92%!important;
        padding:0.1rem 0.1rem!important;
        color:#fc560a!important;
        text-align:center!important;
    }

}


@media (max-width: 1250px) {


    .banner-dates-card {
        position: static;
        transform: none;
        top: auto;
        right: auto;
        min-width: unset;
        max-width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        background: rgba(10, 31, 68, 0.92);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 1rem 1.25rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .banner-dates-header {
        grid-column: 1 / -1;
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .banner-date-row {
        padding: 0.4rem 0.5rem;
        border-bottom: 1px solid rgb(0 0 0 / 39%);
    }

    .banner-date-label {
        font-size: 11px;
        color:white;

    }

    .banner-date-val {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .banner-dates-card {
        grid-template-columns: 1fr;
    }

    .banner-dates-header {
        grid-column: 1;
    }
}
/* ── Banner CTA buttons ── */
.banner-cta-wrap {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.banner-btn svg {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.banner-btn:hover svg {
    transform: translateX(4px);
}

/* Primary — solid orange */
.banner-btn--primary {
    background: #fc560a;
    color: #ffffff;
    border: 2px solid #fc560a;
    box-shadow: 0 6px 20px rgba(252, 86, 10, 0.45);
}

.banner-btn--primary:hover {
    background: #d94500;
    border-color: #d94500;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(252, 86, 10, 0.55);
}

.banner-btn--primary:active {
    transform: translateY(0);
}

/* Outline — frosted glass */
.banner-btn--outline {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.banner-btn--outline:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.banner-btn--outline:active {
    transform: translateY(0);
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .banner-cta-wrap {
        bottom: 1.25rem;
        gap: 0.6rem;
    }

    .banner-btn {
        padding: 0.55rem 1.2rem;
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .banner-cta-wrap {
        flex-direction: column;
        gap: 0.5rem;
        bottom: 1rem;
        width: 80%;
        display:none;
    }

    .banner-btn {
        width: 100%;
        justify-content: center;
    }
}
/* ── Font Size Widget ── */
.font-size-widget {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(10, 31, 68, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 8px 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.fsw-btn {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.fsw-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transform: scale(1.08);
}

.fsw-btn:active {
    transform: scale(0.95);
}

/* Size variation for the three buttons */
#fswDecrease { font-size: 12px; }
#fswReset    { font-size: 15px; color: rgba(255,255,255,0.5); }
#fswIncrease { font-size: 18px; color: #fc560a; }

.fsw-btn.fsw-increase:hover { color: #ff7a45; }

/* Divider between reset and others */
.fsw-reset {
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    margin: 2px 0;
    padding: 4px 0;
    height: 34px;
}

/* Mobile: move to bottom-left so it doesn't clash with other UI */
@media (max-width: 768px) {
    .font-size-widget {
        bottom: 1.25rem;
        right: 1rem;
        padding: 6px 4px;
    }

    .fsw-btn {
        width: 34px;
        height: 34px;
    }
}
/* ══ Venue Section ══════════════════════════════════════════ */
.venue-section {
    padding: 40px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.venue-section .bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 18, 45, 0.78);
    z-index: 0;
}

/* ── Intro card ── */
.venue-intro-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.venue-intro-text { flex: 1; min-width: 240px; }

.venue-city-name {
    font-size: 1.9rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.venue-state-name {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.venue-dot {
    display: inline-block;
    width: 32px;
    height: 3px;
    background: #fc560a;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.venue-intro-text p {
    font-size: 14.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-align:justify;
}

/* Stats strip */
.venue-intro-stats {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 130px;
    align-items: center;
}

.venue-stat {
    text-align: center;
    padding: 0.75rem 1.25rem;
    background: rgba(252, 86, 10, 0.12);
    border: 1px solid rgba(252, 86, 10, 0.25);
    border-radius: 10px;
    width: 100%;
}

.venue-stat-val {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fc560a;
    line-height: 1.2;
}

.venue-stat-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 3px;
    font-weight: 600;
}

/* ── Gallery ── */
.venue-gallery {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 14px;
    margin-bottom: 2rem;
}

.venue-gallery-featured {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 420px;
}

.venue-gallery-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.venue-gallery-featured:hover img {
    transform: scale(1.04);
}

.venue-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.venue-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 196px;
}

.venue-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.venue-gallery-item:hover img {
    transform: scale(1.06);
}

/* Caption overlay */
.venue-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.8rem 0.9rem 0.6rem;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.3px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.venue-gallery-featured .venue-gallery-caption {
    font-size: 14px;
    padding: 3rem 1.25rem 1rem;
    opacity: 1;
}

.venue-gallery-item:hover .venue-gallery-caption {
    opacity: 1;
}

/* ── Map ── */
.venue-map-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.venue-map-label {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    padding: 0.75rem 1.25rem;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.3px;
}

.venue-map-card iframe {
    display: block;
    width: 100%;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .venue-gallery {
        grid-template-columns: 1fr;
    }

    .venue-gallery-featured {
        height: 280px;
    }

    .venue-gallery-item {
        height: 160px;
    }
}

@media (max-width: 600px) {
    .venue-intro-card {
        flex-direction: column;
        padding: 1.5rem;
    }

    .venue-intro-stats {
        flex-direction: row;
        width: 100%;
    }

    .venue-stat {
        flex: 1;
    }

    .venue-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .venue-gallery-item {
        height: 130px;
    }

    .venue-city-name {
        font-size: 1.5rem;
    }
}

/* ── Slider wrapper ── */
.bdc-slider {
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.bdc-slide {
    display: none;
    animation: bdcFadeIn 0.5s ease;
}

.bdc-slide.active {
    display: block;
}

@keyframes bdcFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Tag badge ── */
.bdc-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fc560a;
    background: rgba(252, 86, 10, 0.08);
    border: 1px solid rgba(252, 86, 10, 0.2);
    border-radius: 20px;
    padding: 2px 10px;
    display: inline-block;
    margin-bottom: 8px;
}

/* ── Dot indicators ── */
.bdc-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
    padding-bottom: 4px;
}

.bdc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.bdc-dot.active {
    background: #fc560a;
    transform: scale(1.3);
}

/* ── Split Grid ── */
.about-split-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 991px) {
    .about-split-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Read More ── */
.about-text-more {
    display: none;
    overflow: hidden;
    transition: all 0.4s ease;
}

.about-text-more.open {
    display: block;
    animation: fadeSlideIn 0.4s ease;
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.about-readmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 0rem;
    margin-bottom: 10px;
    background: none;
    border: 1.5px solid #fc560a;
    color: #fc560a;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.about-readmore-btn:hover {
    background: #fc560a;
    color: #fff;
}

.about-readmore-btn svg {
    transition: transform 0.3s ease;
}

.about-readmore-btn.open svg {
    transform: rotate(180deg);
}

/* ── Announcement Card ── */
.announce-card {
    border: 1px solid rgba(252, 86, 10, 0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    background: #fff;
    position: sticky;
    top: 90px;
}

.announce-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fc560a;
    color: #fff;
    padding: 14px 18px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.announce-list {
    max-height: 320px;
    overflow-y: auto;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: #fc560a #f5f5f5;
}

.announce-list::-webkit-scrollbar       { width: 4px; }
.announce-list::-webkit-scrollbar-track { background: #f5f5f5; }
.announce-list::-webkit-scrollbar-thumb { background: #fc560a; border-radius: 4px; }

.announce-item {
    padding: 18px 14px 18px 0px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.announce-item:last-child { border-bottom: none; }
.announce-item:hover      { background: #fff8f5; }

.announce-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.announce-item .announce-text{
    position: relative;
    flex: 1;
}
.announce-item.new .announce-text:after{
    content:'NEW';
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    background-color: #fc560a;
    color: #fff;
    letter-spacing: 0.3px;
    margin-right: 5px;
    padding-left: 4px;
    padding-right: 4px;
    position: absolute;
    right: -10px;
    top: -5px;
}

/* Tag colors */
.announce-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 2px 10px;
    border-radius: 20px;
}

.announce-tag--new      { background: #e8f5e9; color: #2e7d32; }
.announce-tag--update   { background: #e3f2fd; color: #1565c0; }
.announce-tag--reminder { background: #fff3e0; color: #e65100; }
.announce-tag--info     { background: #f3e5f5; color: #6a1b9a; }

.announce-tag.fa{
    font-size: .85em;
    background: none;
    color: #e65100;
}
.announce-date {
    font-size: 0.72rem;
    color: #b5b4b4;
}

.announce-text {
    font-size: 0.82rem;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

.floating-brochure {
    position: fixed;
    bottom: 200px;
    right: 20px;
    z-index: 9999;
}

@media (max-width: 991px) {
    .floating-brochure {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}
}


.floating-brochure a {
    display: inline-block;
    background: #0c3555;
    color: #fff;
    padding: 10px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.floating-brochure a:hover {
    background: #fc560a;
}

:root {
  --angle: 45deg;
  --opacity: 0.5;
  --border-size: 3px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.rainbow-border {
  border: var(--border-size) solid transparent;

  /* Paint an image in the border */
  border-image: conic-gradient(
      from var(--angle),
      #d2372c 0deg 90deg,
      #e0a615 90deg 180deg,
      #2058bf 180deg 270deg,
      #119a36 270deg 360deg
    )
    1 stretch;
  background: rgb(255 255 255 / var(--opacity));
}

@property --opacity {
  syntax: "<number>";
  initial-value: 0.5;
  inherits: false;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes opacityChange {
  to {
    --opacity: 1;
  }
}

@keyframes rotate {
  to {
    --angle: 360deg;
  }
}

.rainbow-border {
  animation: rotate 4s linear infinite, opacityChange 3s infinite alternate;
}

#alertMessage .modal-header{
    background-color: #d94500;
}
#btn-alertMessage-dont-show-again{
    border: 1px solid #fff;
    padding: 2px;
    border-radius: 5px;
    font-size: .8em;
}
#btn-alertMessage-dont-show-again:hover{
    transition: all .2s;
    cursor: pointer;
    color:  #d94500 !important;
}

#alertMessage .modal-footer{
    justify-content: flex-start;
}

#alertMessage .close{
    display: block;
    font-size: 1.6em;
    line-height: 1em;
}
