 /* ======================
   GLOBAL SETTINGS
====================== */
:root {
    --primary-dark: #1a1a1a;
    --accent-green: #003628;
    --text-muted: #bdc3c7;
}

body { 
    font-family: 'Montserrat', sans-serif; 
    color: #333; 
}


/* --- UNIVERSAL HERO DESIGN --- */
.common-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Background logic */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* Standard scroll, no parallax */
}


.common-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(4, 9, 30, 0.9) 0%, rgba(4, 9, 30, 0.3) 100%);
    z-index: 1;
}

.hero-content-box h1{
    font-size: 48px !important;
}

.common-hero .container {
    position: relative;
    z-index: 5;
}

/* Typography & Visual Accents */
.text-gold { 
    color: #ffc107 !important; 
}

.common-hero .breadcrumb-item, 
.common-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1.2px;
    font-weight: 600;
}

.common-hero .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #ffc107;
    padding: 0 10px;
}

.hero-accent-line {
    width: 75px;
    height: 4px;
    background: #ffc107;
    border-radius: 2px;
}

/* Entrance Animation */
@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(25px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.reveal-fade {
    animation: fadeInUp 0.85s ease-out forwards;
}

/* Circular Back Button Design */
.btn-back-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #ffc107; /* Your gold color */
    color: #04091e !important; /* Dark Navy for contrast */
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    border: 2px solid transparent;
}

.btn-back-circle:hover {
    background-color: #04091e;
    color: #ffc107 !important;
    border-color: #ffc107;
    transform: scale(1.1) rotate(-15deg); /* Slight tilt on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-back-circle i {
    line-height: 0; /* Ensures the arrow is perfectly centered */
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .btn-back-circle {
        margin: 0 auto 20px auto; /* Centering for mobile */
    }
}


@media (max-width: 768px) {
    .common-hero {
        height: 50vh;
        text-align: center;
    }
    .common-hero-overlay {
        
        background: rgba(4, 9, 30, 0.85);
    }
    .hero-accent-line {
        margin: 0 auto;
    }
}


/* ===============================
   NAVIGATION – BASE
================================ */
.bg-dark-custom { 
    background-color: var(--primary-dark); 
}

.text-accent { 
    color: #fbbf07; 
}

#main-conference-nav .nav-item {
    font-size: 13px;
    padding: 0 5px;
}

#utility-nav .nav-link {
    color: var(--text-muted);
    transition: color 0.2s;
    font-size: 10px;
}

#utility-nav .nav-link:hover { 
    color: #fff; 
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 12px;
}

.nav-link:hover {
    color: #fbbf07 !important;
}

.nav-link.active {
    color: #fbbf07 !important;
    font-weight: 600;
}

.resgister-btn {
    font-size: 12px;
    background-color: #fbbf07 !important;
    color: black !important;
    font-weight: bold !important;
}

/* ===============================
   LOGO SIZE CONTROL (DEFAULT)
================================ */
#main-conference-nav .h-logo img {
    height: 50px;
    width: auto;
}

#main-conference-nav .i-logo img {
    height: 34px;
    width: auto;
}

/* Prevent overflow */
#main-conference-nav img {
    max-width: 100%;
    height: auto;
}

/* ===============================
   RESPONSIVE BREAKPOINTS
================================ */

/* Small devices (≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    #main-conference-nav .h-logo img {
        height: 38px;
    }

    #main-conference-nav .i-logo img {
        height: 22px;
    }
}

/* Medium devices (≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {

    #main-conference-nav .h-logo img {
        height: 50px;   /* IMT Hyderabad – bigger */
        width: auto;
    }

    #main-conference-nav .i-logo img {
        height: 30px;   /* ISDSI – bigger & proportional */
        width: auto;
    }
}


/* Large devices (≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {

    /* BIGGER LOGOS */
    #main-conference-nav .h-logo img {
        height: 60px;   /* IMT Hyderabad */
        width: auto;
    }

    #main-conference-nav .i-logo img {
        height: 40px;   /* ISDSI */
        width: auto;
    }

    /* SLIGHTLY SMALLER NAV ITEMS */
    #main-conference-nav .nav-link {
        font-size: 12px;
        padding: 4px 6px;
    }

    /* SLIGHTLY SMALLER REGISTER BUTTON */
    #main-conference-nav .resgister-btn {
        font-size: 11.5px;
        padding: 5px 18px;
    }

    /* TIGHTER BRAND AREA SPACING */
    #main-conference-nav .navbar-brand {
        gap: 12px;
    }

    #main-conference-nav .nav-link {
    font-size: 10px;
    }
}


/* Extra large devices (≥1200px and <1400px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    #main-conference-nav .h-logo img {
        height: 80px;
    }

    #main-conference-nav .i-logo img {
        height: 45px;
    }
}

/* Extra extra large devices (≥1400px) */
@media (min-width: 1400px) {
    #main-conference-nav .h-logo img {
        height: 100px;
    }

    #main-conference-nav .i-logo img {
        height: 40px;
    }
}

/* ===============================
   DROPDOWN STYLING
================================ */
#main-conference-nav .dropdown-menu {
    min-width: 420px;
    padding: 12px 0;
    border-radius: 14px;
    border: none;
    background-color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

#main-conference-nav .dropdown-item {
    font-size: 13px;
    line-height: 1.4;
    padding: 10px 18px;
    color: #0f172a;
    white-space: normal;
    transition: all 0.25s ease;
    font-weight: 600;
    border-bottom: 1px solid gray;
}

#main-conference-nav .dropdown-item:hover,
#main-conference-nav .dropdown-item:focus {
    background-color: rgba(251, 191, 7, 0.12);
    color: #00261b;
    padding-left: 24px;
}

#main-conference-nav .dropdown-item.active {
    background-color: #00261b;
    color: #ffffff;
    font-weight: 600;
}

#main-conference-nav .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 991.98px) {

    #main-conference-nav .dropdown-menu {
        min-width: 100%;
        box-shadow: none;
        border-radius: 8px;
        margin-top: 6px;
    }

    #main-conference-nav .dropdown-item {
        font-size: 14px;
        padding: 12px 16px;
    }
}






/* THEME BANNER */

.theme-banner {
    background: linear-gradient(135deg, #00261b, #014d3a);
    color: #ffffff;
    padding: 90px 0 70px;
    text-align: center;
}

.theme-banner h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.theme-banner p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    opacity: 0.9;
    max-width: 750px;
    margin: 0 auto;
}

/* CONTENT SECTION */
.theme-content {
    background: #f8f9fa;
}

/* Description */
.theme-description p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    max-width: 900px;
}

/* TOPICS HEADER */
.theme-topics h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #00261b;
    border-left: 4px solid #00261b;
    padding-left: 12px;
}

/* TOPIC LINKS LIST*/
.theme-topic-links {
    list-style: none;
    padding-left: 0;
    max-width: 900px;
}

.theme-topic-links li {
    margin-bottom: 14px;
}

/* Card-style links */
.theme-topic-links a {
    display: block;
    background: #ffffff;
    padding: 16px 18px 16px 46px;
    border-radius: 12px;
    text-decoration: none;
    color: #00261b;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.3s ease;
}

/* Arrow icon */
.theme-topic-links a::before {
    content: "➜";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #014d3a;
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* Hover */
.theme-topic-links a:hover {
    background: #014d3a;
    color: #ffffff;
    transform: translateX(6px);
}

.theme-topic-links a:hover::before {
    color: #ffffff;
    transform: translate(4px, -50%);
}

/* RESPONSIVE TWEAKS */

/* Tablets */
@media (max-width: 991px) {
    .theme-description p {
        font-size: 1rem;
    }

    .theme-topic-links a {
        font-size: 0.95rem;
        padding: 14px 16px 14px 42px;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .theme-banner {
        padding: 60px 15px 50px;
    }

    .theme-description p {
        font-size: 0.95rem;
    }

    .theme-topics h3 {
        font-size: 1.2rem;
    }

    .theme-topic-links a {
        font-size: 0.9rem;
        padding: 14px 14px 14px 38px;
    }
}





/* BLINKING EFFECT */
.blink-text {
    animation: soft-blink 1.5s linear infinite;
}

@keyframes soft-blink {
    0% { opacity: 1; }
    50% { opacity: 0.2; }
    100% { opacity: 1; }
}

/* Optional: Pause the blink when the user hovers over it */
#conference-alerts:hover .blink-text {
    animation-play-state: paused;
    opacity: 1;
}

/* BUTTONS */
.btn-accent { 
    background-color: var(--accent-green); 
    color: white; 
    border: none; 
    font-weight: 600; 
    transition: 0.3s;
}

.btn-accent:hover { 
    background-color: #27ae60; 
    transform: scale(1.05); 
    color: white;
}

@media (max-width: 991.98px) { 

    .btn-accent, .btn-outline-light { 
        font-size: 14px;
}
 }

@media (max-width: 767.98px) { 

    .btn-accent, .btn-outline-light { 
        font-size: 14px;
}
    
 }

/* ======================
   HERO SECTION
====================== */
#hero-branding {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('../images/hero-bg.jpg') no-repeat center center/cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    padding: 3rem 1rem;
}

.hero-title {
    line-height: 1.2;
}

.hero-countdown {
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 10px;
    min-width: 90px;
}

@media (max-width: 991.98px) { 
    .hero-title {
    font-size: 32px;
}
 }

@media (max-width: 767.98px) { 
    .hero-title {
    font-size: 24px;
}

 }

/* ======================
   ANNOUNCEMENT TICKER SECTION
====================== */

#announcement-ticker {
    overflow: hidden;
    white-space: nowrap;
}

.bg-accent {
    background-color: var(--accent-green);
}

.ticker-label {
    z-index: 2;
    position: relative;
    box-shadow: 5px 0 15px rgba(0,0,0,0.3);
    font-size: 14px;
}

.ticker-container {
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ticker-wrapper {
    display: inline-block;
    padding-left: 100%; /* Initial offset */
    animation: ticker-scroll 25s linear infinite;
}

.ticker-wrapper:hover {
    animation-play-state: paused; /* Stops on hover for readability */
}

.ticker-content {
    display: flex;
    gap: 40px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.ticker-item {
    display: inline-block;
}

/* Scroll Animation */
@keyframes ticker-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Responsive Ticker */
@media (max-width: 768px) {
    .ticker-label {
        font-size: 12px;
        padding: 5px 10px;
    }
    .ticker-content {
        font-size: 13px;
        gap: 20px;
    }
}

/* ======================
   STATS SECTION
====================== */
.bg-light-gray {
    background-color: #f0f2f5; 
}

.section-heading {
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: #333;
}

.stats-card {
    border: none !important;
    border-radius: 20px !important;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

.stats-card:hover {
    transform: translateY(-8px);
}

.stats-icon {
    font-size: 2rem;
    /* color: #2ecc71; */
    color: 00261b;
}

.stats-value {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.stats-text {
    line-height: 1.4;
    color: #6c757d;
}


/* Mobile Responsive Adjustments */
@media (max-width: 767.98px) {
    #conference-stats {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .section-heading {
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 2rem !important;
    }

    /* Adjusting card height so they aren't unnecessarily tall on mobile */
    .stats-card {
        margin-bottom: 10px;
    }

    .stats-card .card-body {
        padding: 1.5rem !important;
    }

    /* Scaling down icons and text for smaller viewports */
    .stats-icon {
        font-size: 1.75rem;
        margin-bottom: 0.75rem !important;
    }

    .stats-value {
        font-size: 1rem;
    }

    .stats-text {
        font-size: 0.75rem;
        br {
            display: none; /* Removes manual line breaks for better text flow on small screens */
        }
    }
}


/* ======================
   MODERN PARTNER SECTION
====================== */
#partner-story {
    overflow-x: hidden;
}

/* Gradient Text Effect */
.text-success-gradient {
    /* background: linear-gradient(45deg, #1b7363, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: #00261b !important;
}

/* Label Pill Style */
.about-label-pill {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(46, 204, 113, 0.1);
    /* color: #1b7363; */
    color: #00261b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    /* border-left: 3px solid #2ecc71; */
    border-left: 3px solid #00261b;
}

/* Image Frames with Decorative Backdrops */
.about-image-frame {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    height: 400px;
}

.img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-frame:hover .img-main {
    transform: scale(1.05);
}

/* Glassmorphism Overlay */
.glass-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 25px;
    border-radius: 15px;
    color: white;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.glass-overlay.left-side {
    right: auto;
    left: 30px;
}

/* Typography Adjustments */
.lead-text {
    font-weight: 600;
    line-height: 1.5;
    font-size: 1.1rem;
}

.about-text {
    line-height: 1.7;
    color: #6c757d;
}

.about-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive Scaling */
@media (max-width: 991px) {
    .about-image-frame {
        height: 300px;
        margin-bottom: 20px;
    }
    .about-card-content {
        padding: 0 !important;
    }
}


/* ======================
   SPONSOR MARQUEE STYLES
====================== */

.sponsor-marquee {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    /* Soft fade on edges */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.sponsor-track {
    display: flex;
    width: calc(250px * 14); /* Width of logo * number of items (7 * 2) */
    animation: scroll-sponsors 30s linear infinite;
}

.sponsor-item {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.sponsor-item img {
    max-width: 150px;
    height: auto;
}

/* Hover effects */
.sponsor-track:hover {
    animation-play-state: paused;
}

.sponsor-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ANIMATION */
@keyframes scroll-sponsors {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 7)); } /* Half of total items */
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    .sponsor-item {
        width: 180px;
        padding: 0 20px;
    }
    .sponsor-track {
        width: calc(180px * 14);
    }
    @keyframes scroll-sponsors {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-180px * 7)); }
    }
}

/* FOOTER CUSTOM STYLES */
#main-footer {
    background-color: #1a1a1a; /* Deep Navy background */
    color: #ffffff;
    font-size: 14px;
}

.text-gold {
    color: #ffc107; /* Golden accent for branding */
    font-weight: 700;
}

.footer-heading {
    color: #ffc107; /* Gold headings matching the mockup */
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

/* Vertical line decoration seen in mockup */
@media (min-width: 992px) {
    .footer-heading::after {
        content: '';
        position: absolute;
        left: -20px;
        top: 0;
        height: 100%;
        width: 1px;
        background-color: rgba(255, 193, 7, 0.3);
    }
}

.footer-text {
    color: #bdc3c7;
    line-height: 1.8;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: #ffc107;
    opacity: 1;
    padding-left: 5px;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    opacity: 0.7;
    font-size: 12px;
}

/* SOCIAL ICONS STYLING */
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #fff;
    margin-left: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #04091e;
    transform: translateY(-3px);
}




/* ======================
   schedule page
====================== */


/* --- QR PORTAL SECTION STYLES --- */
#landing-qr-portal .qr-category-tag {
    display: inline-block;
    background-color: #1b5e20;
    color: white;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 4px;
}

#landing-qr-portal .qr-portal-card {
    transition: transform 0.3s ease;
}

#landing-qr-portal .qr-portal-card:hover {
    transform: scale(1.05);
}

#landing-qr-portal .qr-img-wrapper {
    background: white;
    padding: 12px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-bottom: 4px solid #ddd; /* Default border */
}

/* Color Coding matching your mockup */
#landing-qr-portal .border-blue { border-color: #0000FF; }
#landing-qr-portal .border-orange { border-color: #FFA500; }
#landing-qr-portal .border-black { border-color: #333333; }

#landing-qr-portal .qr-img-wrapper img {
    max-width: 130px;
    height: auto;
}

#landing-qr-portal .qr-label {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

/* --- QR LINK BUTTON STYLES --- */
#landing-qr-portal .qr-link-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 15px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

#landing-qr-portal .qr-link-btn:hover {
    background-color: #1b5e20; /* Matches your green category tag color */
    color: #ffffff;
}


/* ======================
   theme page
====================== */


/* --- ABOUT THE THEME SECTION STYLES --- */
#theme-description-section {
    background-color: #ffffff;
    overflow: hidden;
}

#theme-description-section .text-accent-green {
    color: #003628;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

#theme-description-section .text-gold {
    color: #ffc107;
}

#theme-description-section .theme-main-heading {
    color: #003628;
    line-height: 1.2;
}

#theme-description-section .title-divider {
    width: 80px;
    height: 5px;
    background-color: #ffc107;
    margin-top: 20px;
    border-radius: 2px;
}

/* Content Card Styling */
#theme-description-section .theme-card-content {
    background: #f8f9fa;
    border-radius: 20px;
    border-left: 10px solid #003628;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    position: relative;
}

#theme-description-section .theme-card-content::after {
    content: "\F479"; /* Bootstrap Icon leaf/globe placeholder */
    font-family: "bootstrap-icons";
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 4rem;
    color: rgba(39, 174, 96, 0.05);
    pointer-events: none;
}

#theme-description-section .theme-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.text-green{
    color: #003628;
}

/* RESPONSIVE FIXES */
@media (max-width: 991px) {
    #theme-description-section .theme-card-content {
        border-left: none;
        border-top: 10px solid #04091e;
    }
}



/* --- THEME DESCRIPTION IMAGE SECTION --- */
#theme-description-image-section {
    position: relative;
    width: 100%;
    height: 500px; /* Adjust height as needed */
    overflow: hidden;
}

#theme-description-image-section .banner-parallax-container {
    width: 100%;
    height: 100%;
    background-image: url('../images/theme-description-bg.jpg'); /* Replace with your image */
    background-attachment: fixed; /* Creates a parallax effect */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

#theme-description-image-section .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 9, 30, 0.6); /* Dark navy tint to make text pop */
}

/* TEXT STYLING */
#theme-description-image-section .banner-main-text {
    color: #ffc107; /* Your brand Gold */
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

#theme-description-image-section .banner-sub-text {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ANIMATION KEYFRAMES */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Applying Animations */
#theme-description-image-section .reveal-up {
    animation: fadeInUp 1s ease-out forwards;
}

#theme-description-image-section .reveal-up-delayed {
    opacity: 0; /* Hidden initially */
    animation: fadeInUp 1s ease-out 0.5s forwards; /* 0.5s delay */
}

/* Responsive Scaling */
@media (max-width: 768px) {
    #theme-description-image-section {
        height: 350px;
    }
    #theme-description-image-section .banner-main-text {
        font-size: 2rem;
    }
    #theme-description-image-section .banner-sub-text {
        font-size: 1rem;
    }
    #theme-description-image-section .banner-parallax-container {
        background-attachment: scroll; /* Fixed background feels clunky on mobile */
    }
}

/* --- conference-theme-details setion --- */
#themeFaqAccordion .accordion-button {
        background-color: #fff;
        color: #001a13;
        box-shadow: none;
        transition: all 0.3s ease;
    }
    #themeFaqAccordion .accordion-button:not(.collapsed) {
        background-color: #001a13;
        color: #fbbf07;
    }
    #themeFaqAccordion .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23001a13'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }
    #themeFaqAccordion .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fbbf07'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }
    .topic-item {
        padding: 12px 15px;
        background: #f8f9fa;
        border-radius: 8px;
        border-left: 3px solid #eee;
        font-size: 0.85rem;
        transition: all 0.2s ease;
    }
    .topic-item:hover {
        border-left-color: #fbbf07;
        background: #fff;
        transform: translateX(5px);
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }



/* --- MODERN SUB-TRACKS STYLES --- */
/* #conference-subtracks-section {
    background: #BAFFB9;
    position: relative;
}

#conference-subtracks-section .section-title {
    font-size: 2.8rem;
    color: #04091e;
    letter-spacing: -1px;
}

#conference-subtracks-section .text-gold { color: #ffc107; }

.title-divider-right {
    height: 4px;
    width: 100px;
    background: #ffc107;
    display: inline-block;
}


.modern-track-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    z-index: 1;
}

.card-index {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03); 
    z-index: -1;
    transition: 0.4s;
}

.track-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: 0.4s;
}

.track-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #04091e;
    line-height: 1.4;
    margin: 0;
}

.card-footer-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #ffc107;
    transition: 0.4s;
}


.modern-track-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #ffc107;
}

.modern-track-card:hover .card-footer-accent {
    width: 100%;
}

.modern-track-card:hover .track-icon-box {
    background: #ffc107;
    color: #fff;
    transform: rotateY(360deg);
}

.modern-track-card:hover .card-index {
    color: rgba(255, 193, 7, 0.1);
    transform: scale(1.1);
} */


/* ======================
   leadership page
====================== */

/* LEADERSHIP BODY */

.leadership-body-section {
    background: #ffffff;
}

.section-title {
    font-weight: 700;
    color: #003628;
}

/* ===============================
   MODERN CARD STYLE
================================ */

.leader-card-modern {
    background: #ffffff;
    border-radius: 22px;
    padding: 35px 20px 25px;
    text-align: center;
    box-shadow: 0 14px 35px rgba(0,0,0,0.1);
    transition: 0.3s ease;

    /* SAME SIZE FOR ALL */
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Hover */
.leader-card-modern:hover {
    transform: translateY(-8px);
}

/* Smaller Rounded Portrait */
.leader-card-modern img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 16px;
    border: 4px solid #F5BE36;
}

/* Text */
.leader-card-modern h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--primary-dark);
}

.leader-card-modern span {
    font-size: 13px;
    color: #555;
}

/* ===============================
   RESPONSIVE BREAKPOINTS
================================ */

/* Extra small (≤575.98px) */
@media (max-width: 575.98px) {

    .leader-card-modern {
        min-height: 280px;
        padding: 30px 18px;
    }

    .leader-card-modern img {
        width: 85px;
        height: 85px;
    }
}

/* Small (576px–767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {

    .leader-card-modern {
        min-height: 300px;
    }

    .leader-card-modern img {
        width: 90px;
        height: 90px;
    }
}

/* Medium (768px–991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {

    .leader-card-modern {
        min-height: 310px;
    }

    .leader-card-modern img {
        width: 95px;
        height: 95px;
    }
}

/* Large (992px–1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {

    .leader-card-modern {
        min-height: 330px;
    }

    .leader-card-modern img {
        width: 100px;
        height: 100px;
    }
}

/* Extra Large (1200px–1399.98px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {

    .leader-card-modern {
        min-height: 340px;
    }

    .leader-card-modern img {
        width: 105px;
        height: 105px;
    }
}

/* Extra Extra Large (≥1400px) */
@media (min-width: 1400px) {

    .leader-card-modern {
        min-height: 360px;
    }

    .leader-card-modern img {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 991.98px) { 
    .leader-card-modern {
        padding: 50px;
        width: 60%;
        margin: 0 auto;
    } 
 }

@media (max-width: 767.98px) {
    .leader-card-modern {
        padding: 32px 18px;
        width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .leader-card-modern {
        padding: 0px;
        width: 70%;
        margin: 0 auto;
    }
} */


/* ======================
   Key Speakers page
====================== */

/* KEY SPEAKERS SECTION */

.key-speakers-section {
    background: #ffffff;
}

.key-speakers-section .section-title {
    font-weight: 700;
    color: #003628;
}

/* Speaker Card */

.speaker-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
}

.speaker-card:hover {
    transform: translateY(-6px);
}

/* Round Image */

.speaker-img {
    width: 130px;
    height: 130px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #F5BE36;
}

.speaker-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text */

.speaker-card h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #003628;
}

.speaker-card p {
    font-size: 13px;
    color: #555;
    margin: 0;
}

/* Responsive */

@media (max-width: 576px) {
    .speaker-img {
        width: 110px;
        height: 110px;
    }
}


/* ======================
   Submit Here page
====================== */
/* --- SUBMISSION BODY STYLES --- */
.submission-body {
    background-color: #f8f9fa; /* Light background to contrast with white cards */
}

.status-card {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border-top: 5px solid #ffc107; /* Gold top border for theme consistency */
}

.status-icon {
    font-size: 3rem;
    color: #ffc107;
}

.status-title {
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.status-line {
    width: 80px;
    height: 3px;
    background: #ffc107;
    border-radius: 2px;
}

.status-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.contact-info-box {
    background-color: #fdfdfd;
    border: 1px dashed #ddd;
    display: inline-block;
}

.email-link {
    font-size: 1.25rem;
    color: #04091e;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #ffc107;
}

/* Re-using your common animation */
.reveal-fade {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .status-card {
        padding: 40px 20px;
    }
    .status-title {
        font-size: 1.5rem;
    }
}

/* ======================
   Conference Panels page
====================== */

.conference-panel-body {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

/* Card */
.day-card-v2 {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 18px;
    position: relative;
    height: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    overflow: hidden;
}

.day-card-v2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #0a4a3c, #ffc107);
}

.day-card-v2:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* Day Badge */
.day-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #0a4a3c;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Header */
.day-header-v2 {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.icon-box-v2 {
    width: 55px;
    height: 55px;
    background: #ffc107;
    color: #04091e;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-right: 18px;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.day-header-v2 h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    color: #04091e;
}

/* Panel Buttons */
.panel-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.panel-btn-v2 {
    background: transparent;
    border: 2px solid #ffc107;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #04091e;
    transition: all 0.35s ease;
    text-align: left;
    position: relative;
}

.panel-btn-v2::after {
    content: "→";
    position: absolute;
    right: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.panel-btn-v2:hover {
    background: #ffc107;
    color: #04091e;
    padding-right: 35px;
}

.panel-btn-v2:hover::after {
    opacity: 1;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-fade {
    opacity: 0;
    animation: fadeInUp 0.9s ease forwards;
}

/* Mobile */
@media (max-width: 991px) {
    .day-card-v2 {
        padding: 30px 25px;
    }
}

/* ======================
   Publications page
====================== */

/* --- PUBLICATIONS BODY STYLES --- */
.publications-body {
    background-color: #fcfcfc;
}

.text-navy { color: #04091e; }
.text-gold { color: #ffc107; }

.journal-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid #0a4a3c; /* Deep Green accent from your reference */
    transition: all 0.3s ease;
}

.journal-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left-color: #ffc107; /* Shifts to Gold on hover */
}

.journal-icon {
    background: rgba(10, 74, 60, 0.1);
    color: #0a4a3c;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.journal-info h5 {
    font-weight: 700;
    font-size: 1.15rem;
    color: #04091e;
    margin-bottom: 5px;
}

.publisher {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
}

/* Badges for Indexing */
.badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.bg-navy { background-color: #04091e; color: #fff; }
.bg-gold { background-color: #ffc107; color: #04091e; }

/* Bottom Message */
.more-journals-box {
    display: inline-block;
    padding: 15px 30px;
    border: 2px dashed #ffc107;
    border-radius: 50px;
    color: #04091e;
    background: #fffdf5;
}

/* Re-use your global reveal animation */
.reveal-fade {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ======================
   fees page
====================== */


/* --- REGISTRATION TABLE MASTER STYLES --- */
.registration-wrapper {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.registration-table {
    background: #0a4a3c; /* Deep Green from your Reference */
    color: #ffffff;
    border: none;
}

/* Header Sections */
.registration-table thead th {
    background: #ffc107; /* Gold Header */
    color: #04091e;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 20px 10px;
    vertical-align: middle;
}

.phase-name {
    display: block;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.phase-date {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 4px;
    color: #d63384; /* Highlighted Dates */
}

/* Currency Row */
.currency-row th {
    background: #083d31 !important;
    color: #ffc107 !important;
    padding: 10px !important;
    font-size: 0.8rem;
}

.curr-box, .price-box {
    display: flex;
    justify-content: space-around;
}

/* Table Body */
.registration-table tbody td {
    padding: 18px 15px;
    border-color: rgba(255, 255, 255, 0.08);
    vertical-align: middle;
}

.cat-label {
    background: rgba(0,0,0,0.15);
    font-weight: 600;
    font-size: 0.95rem;
    width: 25%;
}

/* Status: Closed (Strikethrough) */
.is-closed {
    background: rgba(0,0,0,0.1);
}

.old {
    text-decoration: line-through;
    color: #ff7675; /* Soft Red for closed prices */
    opacity: 0.7;
}

/* Status: Active (Highlighted Gold) */
.is-active {
    background: rgba(255, 193, 7, 0.08);
    box-shadow: inset 0 0 10px rgba(255, 193, 7, 0.1);
}

.is-active strong {
    color: #ffc107;
    font-size: 1.15rem;
    text-shadow: 0 0 5px rgba(255, 193, 7, 0.2);
}

.qr-container a {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.qr-container a:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Responsive Handling */
@media (max-width: 991px) {
    .registration-table { min-width: 1000px; }
}

@media (max-width: 786px){
    .qr-container{
        display: block;
        margin: auto;
        width: 50%;
    }
}



/* --- REFUND POLICY MASTER STYLES --- */
.conference-refund-policy-section {
    background-color: #fdfdfd;
}

.text-navy { color: #04091e; }
.text-gold { color: #ffc107; }

.refund-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #f1f1f1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.refund-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Status Badges */
.refund-badge {
    width: 85px;
    height: 85px;
    line-height: 85px;
    border-radius: 50%;
    margin: 0 auto 25px;
    font-size: 1.6rem;
    font-weight: 800;
}

.bg-success-soft { background: rgba(40, 167, 69, 0.1); }
.bg-warning-soft { background: rgba(255, 193, 7, 0.1); }
.bg-danger-soft { background: rgba(220, 53, 69, 0.1); }

.refund-content h5 {
    font-weight: 700;
    color: #04091e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.refund-period {
    color: #0a4a3c; /* Deep Green from your theme */
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 15px;
}

.refund-divider {
    width: 50px;
    height: 3px;
    background: #ffc107; /* Gold Accent */
    margin: 0 auto 15px;
    border-radius: 2px;
}

.refund-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Animation */
.reveal-fade {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


/* --- REGISTRATION NOTES DESIGN --- */
.fees-note-section {
    background-color: #ffffff;
}

.policy-info-wrapper {
    background: #fffdf5; /* Very soft cream tint */
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #f1e6c3;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.text-navy { color: #04091e; }
.text-gold { color: #ffc107; }

.note-item {
    text-align: center;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.note-item:hover {
    transform: translateY(-5px);
}

.note-icon-box {
    width: 60px;
    height: 60px;
    background-color: #0a4a3c; /* Deep Green from your theme */
    color: #ffc107; /* Gold Icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(10, 74, 60, 0.2);
}

.note-item p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.note-item strong {
    color: #04091e;
    font-weight: 700;
}

/* Entrance Animation */
.reveal-fade {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Handling */
@media (max-width: 768px) {
    .policy-info-wrapper {
        padding: 30px 20px;
    }
    .note-item {
        border-bottom: 1px solid #eee;
    }
    .note-item:last-child {
        border-bottom: none;
    }
}

/* ======================
   Importance Dates Page
====================== */

/* --- DARK PREMIUM TIMELINE --- */
.bg-navy-dark { background-color: #001a13; }
.text-gold { color: #fbbf07; }
.ls-2 { letter-spacing: 2px; }

.timeline-glass-wrapper {
    position: relative;
    padding: 60px 0;
}

.timeline-main-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(251,191,7,0) 0%, rgba(251,191,7,0.3) 20%, rgba(251,191,7,0.3) 80%, rgba(251,191,7,0) 100%);
    transform: translateY(-50%);
}

/* .timeline-scroll-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none; 
}

.timeline-node {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
} */

.timeline-scroll-container {
    display: flex;
    justify-content: flex-start; /* Changed from space-between to allow scrolling */
    align-items: flex-start;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 40px 40px 20px; /* Added significant right padding so the last box isn't cut */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #fbbf07 rgba(255,255,255,0.1);
    -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
}

/* Custom Scrollbar for Chrome/Safari */
.timeline-scroll-container::-webkit-scrollbar {
    height: 6px;
}
.timeline-scroll-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}
.timeline-scroll-container::-webkit-scrollbar-thumb {
    background: #fbbf07;
    border-radius: 10px;
}

.timeline-node {
    /* flex-grow: 0, flex-shrink: 0, flex-basis: 240px */
    flex: 0 0 240px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.timeline-main-line {
    position: absolute;
    top: 83px; /* Align with your dots */
    left: 0;
    width: 1500px; /* Make the line long enough to cover the scrolled area */
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(251,191,7,0.3) 0%, 
        rgba(251,191,7,0.3) 80%, 
        rgba(251,191,7,0) 100%);
    transform: translateY(-50%);
    z-index: 1;
}

/* Date Bubble */
.node-date {
    font-size: 0.75rem;
    font-weight: 800;
    color: #fbbf07;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Marker Dot */
.node-marker {
    width: 14px;
    height: 14px;
    background: #001a13;
    border: 2px solid #fbbf07;
    border-radius: 50%;
    margin-bottom: 30px;
    transition: 0.3s;
}

.node-past .node-marker {
    background: #fbbf07;
    color: #001a13;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
}

/* Content Card */
.node-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    width: 100%;
    text-align: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.node-content h6 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Status Labels */
.status-label {
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
}

.status-expired { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.4); }
.status-live { background: rgba(25, 135, 84, 0.2); color: #198754; border: 1px solid #198754; }

/* Active & Highlight States */
.active-glass {
    border-color: #fbbf07;
    box-shadow: 0 10px 30px rgba(251, 191, 7, 0.15);
    background: rgba(251, 191, 7, 0.05);
    transform: translateY(-10px);
}

.marker-pulse {
    width: 14px;
    height: 14px;
    background: #fbbf07;
    border-radius: 50%;
    animation: timeline-pulse 2s infinite;
}

@keyframes timeline-pulse {
    0% { box-shadow: 0 0 0 0 rgba(251, 191, 7, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(251, 191, 7, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 191, 7, 0); }
}

/* Footer Cards */
.footer-card {
    display: flex;
    gap: 15px;
    background: rgba(255,255,255,0.02);
    padding: 20px;
    border-radius: 12px;
    height: 100%;
}

.footer-card .symbol {
    color: #fbbf07;
    font-weight: 900;
    font-size: 1.2rem;
}

.footer-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .timeline-scroll-container {
        flex-direction: column;
        padding-left: 40px;
    }
    .timeline-main-line {
        left: 20px;
        width: 2px;
        height: 100%;
        top: 0;
        transform: none;
    }
    .timeline-node {
        flex-direction: row;
        width: 100%;
        gap: 30px;
        align-items: flex-start;
        flex: none;
        margin-bottom: 30px;
    }
    .node-date { margin-bottom: 0; width: 100px; text-align: right; margin-top: 15px; }
    .node-marker { margin-bottom: 0; margin-top: 18px; margin-left: -7px; }
    .node-content { text-align: left; }
}

/* ======================
   Workshop Page
====================== */

/* --- Uncommon Workshop CSS --- */
.ls-2 { letter-spacing: 2px; }
.text-gold { color: #fbbf07; }
.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px #fbbf07;
}

.uncommon-timeline {
    position: relative;
    padding-left: 20px;
}

.timeline-block {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

/* The vertical connecting line */
.timeline-block::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 80px;
    bottom: -60px;
    width: 1px;
    background: rgba(251, 191, 7, 0.2);
}

.timeline-block:last-child::before { display: none; }

.day-indicator {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border: 1px solid rgba(251, 191, 7, 0.5);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #001a13;
    z-index: 2;
}

.day-label { font-size: 0.7rem; color: #fbbf07; }
.day-num { font-size: 1.8rem; font-weight: 900; line-height: 1; }

.session-list {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.glass-session {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-session:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: #fbbf07;
}

.session-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cat-pill {
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 50px;
    background: rgba(251, 191, 7, 0.15);
    color: #fbbf07;
    text-transform: uppercase;
    font-weight: 700;
}

.session-id { font-size: 11px; color: rgba(255,255,255,0.4); }

.glass-session h5 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Specific Accents */
.accent-r { border-bottom: 3px solid #3498db; }
.accent-case { border-bottom: 3px solid #e67e22; }
.accent-esg { border-bottom: 3px solid #2ecc71; }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .timeline-block { flex-direction: column; gap: 20px; }
    .timeline-block::before { left: 45px; top: 90px; }
    .day-indicator { width: 70px; height: 70px; }
    .day-num { font-size: 1.4rem; }
    .session-list { grid-template-columns: 1fr; }
}

/* ======================
  Doctoral Colloquium
====================== */

:root {
    --navy-dark: #001a13;
    --gold: #fbbf07;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

.bg-navy-dark { background-color: var(--navy-dark); position: relative; }

/* Glow Background */
.glow-element {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 7, 0.08) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    z-index: 0;
}

/* Header Styling */
.badge-premium {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(251, 191, 7, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

.meta-item i { color: var(--gold); }

/* Glow Button */
.btn-glow-gold {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 800;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(251, 191, 7, 0.3);
}

.btn-glow-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(251, 191, 7, 0.5);
    color: var(--navy-dark);
}

/* The Tiles Grid */
.action-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.action-tile {
    position: relative;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.tile-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    transition: 0.3s;
}

.action-tile h6 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.tile-footer {
    margin-top: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--gold);
    opacity: 0.6;
    transition: 0.3s;
}

/* Hover States */
.action-tile:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--gold);
    transform: scale(1.03);
}

.action-tile:hover .tile-icon {
    transform: scale(1.1) rotate(-10deg);
}

.action-tile:hover .tile-footer {
    opacity: 1;
}

/* Alternating Heights for "Uncommon" look */
@media (min-width: 768px) {
    .tile-2, .tile-3 { margin-top: 30px; }
    .tile-1, .tile-4 { margin-bottom: 30px; }
}

@media (max-width: 767px) {
    .action-grid { grid-template-columns: 1fr; }
    .display-4 { font-size: 2.5rem; }
}

/* Highlights Row Styling */
.ls-2 { letter-spacing: 2px; }

.highlights-container-glass {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    z-index: 1;
}

.scholarly-highlights-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.scholarly-highlights-list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.scholarly-highlights-list li i {
    color: var(--gold);
    font-size: 0.85rem;
    margin-top: 6px;
    transition: transform 0.3s ease;
}

.scholarly-highlights-list li:hover {
    color: #fff;
    transform: translateX(5px);
}

.scholarly-highlights-list li:hover i {
    transform: translateX(3px);
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .highlights-container-glass {
        padding: 25px;
    }
    .scholarly-highlights-list {
        grid-template-columns: 1fr;
    }
}


.text-navy { color: #002118; }
.bg-navy { background-color: #002118; }
.text-gold-dark { color: #d4a017; }
.bg-gold-dark { background-color: #fbbf07; color: #002118 !important; }

#doctoral-colloquium-detailed-schedule .schedule-table-card {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
}

.table thead th {
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table tbody tr td {
    padding: 18px 12px;
    border-color: #f0f0f0;
}

.table-info-light {
    background-color: rgba(0, 33, 24, 0.03);
}

.table-gold-light {
    background-color: rgba(251, 191, 7, 0.05);
}

.ls-2 { letter-spacing: 2px; }

.workshop-title {
    font-weight: 700;
    color: #002118;
    font-size: 1rem;
}

.workshop-row {
    border-left: 4px solid #fbbf07;
}

.badge.bg-navy {
    background-color: #002118;
}

.border-navy {
    border-color: #002118 !important;
}

@media (max-width: 768px) {
    .table-responsive {
        font-size: 0.85rem;
    }
}


/* ======================
   Contact Page
====================== */

/* --- CONTACT & VENUE STYLING --- */
.text-navy { color: #001a13; }
.bg-navy { background-color: #001a13; }
.text-gold { color: #fbbf07; }
.bg-gold { background-color: #fbbf07; }

.venue-image-wrapper {
    position: relative;
    min-height: 450px;
}

.venue-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 26, 19, 0.9));
    color: white;
}

.contact-info-list .info-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.btn-navy-outline {
    border: 2px solid #001a13;
    color: #001a13;
    transition: all 0.3s ease;
}

.btn-navy-outline:hover {
    background-color: #001a13;
    color: #fbbf07;
}

.ls-2 { letter-spacing: 2px; }

@media (max-width: 991px) {
    .contact-body .p-5 {
        padding: 30px !important;
    }
}

/* ======================
   accomodation page
====================== */

/* --- LOGISTICS SUPPORT STYLING --- */
#logistic-accommodation-support-section .support-card {
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05) !important;
}

#logistic-accommodation-support-section .support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 26, 19, 0.1) !important;
    border-color: var(--gold) !important;
}

#logistic-accommodation-support-section .support-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
}

#logistic-accommodation-support-section .contact-links a {
    font-size: 0.95rem;
    transition: color 0.2s;
}

#logistic-accommodation-support-section .contact-links a:hover {
    color: var(--navy-dark) !important;
    font-weight: 600;
}

#logistic-accommodation-support-section .ls-2 { letter-spacing: 2px; }

@media (max-width: 768px) {
    #logistic-accommodation-support-section .support-card { margin-bottom: 10px; }
}


/* --- HOSTEL ACCOMMODATION PREMIUM SECTION --- */
#hostel-accommodation-premium {
    background-color: #003628; /* Deep Emerald */
    position: relative;
    overflow: hidden;
}

#hostel-accommodation-premium .text-gold { color: #fbbf07; }

/* Section Badge */
#hostel-accommodation-premium .hostel-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(251, 191, 7, 0.15);
    color: #fbbf07;
    border: 1px solid #fbbf07;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
}

/* Rate Cards with Glassmorphism */
#hostel-accommodation-premium .hostel-rate-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 16px;
    transition: all 0.4s ease;
}

#hostel-accommodation-premium .hostel-rate-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fbbf07;
    transform: translateX(10px);
}

#hostel-accommodation-premium .rate-icon {
    width: 60px;
    height: 60px;
    background: #fbbf07;
    color: #003628;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

#hostel-accommodation-premium .tax-note {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* Primary Booking Button */
#hostel-accommodation-premium .hostel-booking-btn {
    display: inline-flex;
    align-items: center;
    background: #fbbf07;
    color: #003628;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 800;
    transition: 0.3s;
    border: 2px solid #fbbf07;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

#hostel-accommodation-premium .hostel-booking-btn:hover {
    background: transparent;
    color: #fbbf07;
    box-shadow: none;
}

/* Support Floating Card */
#hostel-accommodation-premium .hostel-support-floating-card {
    background: linear-gradient(135deg, rgba(251, 191, 7, 0.3) 0%, rgba(0,0,0,0) 100%);
    padding: 2px;
    border-radius: 30px;
}

#hostel-accommodation-premium .support-card-inner {
    background: #003628;
    border-radius: 28px;
    overflow: hidden;
}

#hostel-accommodation-premium .support-icon-bg {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fbbf07;
    border: 1px dashed rgba(251, 191, 7, 0.5);
}

#hostel-accommodation-premium .support-email-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#hostel-accommodation-premium .support-email-link:hover {
    background: #fbbf07;
    color: #003628;
}

@media (max-width: 991px) {
    #hostel-accommodation-premium .hostel-text-content { text-align: center; }
    #hostel-accommodation-premium .hostel-booking-btn { margin-top: 20px; }
}


/* --- HOTEL BUDGET & LUXURY SECTION --- */

#hotel-Budget-Luxury .btn-hotel-filter {
    padding: 10px 24px;
    border: 2px solid #001a13;
    background: white;
    color: #001a13;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

#hotel-Budget-Luxury .btn-hotel-filter.active,
#hotel-Budget-Luxury .btn-hotel-filter:hover {
    background: #001a13;
    color: #fbbf07;
}

/* Category Badges */
.badge-luxury { background: #001a13; color: #fbbf07; padding: 4px 10px; border-radius: 4px; font-size: 11px; text-transform: uppercase; }
.badge-mid { background: #fbbf07; color: #001a13; padding: 4px 10px; border-radius: 4px; font-size: 11px; text-transform: uppercase; }
.badge-budget { background: #e9ecef; color: #001a13; padding: 4px 10px; border-radius: 4px; font-size: 11px; text-transform: uppercase; }


/* ================= TABLE BACKGROUND ================= */
#hotel-Budget-Luxury .hotel-custom-table table {
    background-color: #f9fafb; /* light clean background */
}

/* Table header */
#hotel-Budget-Luxury .hotel-custom-table thead th {
    background-color: #001a13;
    color: #ffffff;
    border-bottom: 2px solid #fbbf07;
}

/* Table body rows */
#hotel-Budget-Luxury .hotel-custom-table tbody tr {
    background-color: #ffffff;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

/* ================= ROW HOVER EFFECT ================= */
#hotel-Budget-Luxury .hotel-custom-table tbody tr:hover {
    background-color: #fff6d6; /* soft gold hover */
    box-shadow: inset 0 0 0 1px #fbbf07;
    cursor: pointer;
}

/* ======================
   e-helpdesk Page
====================== */

/* --- E-HELPDESK SECTION --- */
#isdsi-ehelpdesk {
    background-color: #f8fbf9;
    --navy: #001a13;
    --gold: #fbbf07;
}

#isdsi-ehelpdesk .helpdesk-divider {
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin-top: 15px;
}

#isdsi-ehelpdesk .helpdesk-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    position: relative;
    border: 1px solid #eee;
    transition: 0.3s;
}

#isdsi-ehelpdesk .card-tag {
    position: absolute;
    top: 0;
    left: 30px;
    transform: translateY(-50%);
    background: var(--navy);
    color: #fff;
    padding: 4px 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

#isdsi-ehelpdesk .tag-gold { background: var(--gold); color: var(--navy); }

/* Chair Styling */
#isdsi-ehelpdesk .chair-box {
    border-left: 3px solid var(--gold);
    background: #fdfdfd;
}

#isdsi-ehelpdesk .email-link {
    color: var(--navy);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
}

#isdsi-ehelpdesk .email-link:hover { color: var(--gold); }

/* General Support Variant */
#isdsi-ehelpdesk .general-support {
    background: var(--navy);
    color: #fff;
}

#isdsi-ehelpdesk .btn-support-white {
    display: block;
    background: #fff;
    color: var(--navy);
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s;
}

#isdsi-ehelpdesk .btn-support-white:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* ======================
   Common Panel 
====================== */

.light-gray-bg{
    background-color: #E8E8E8;
}

.speakers-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0 40px;
}

.speakers-divider span {
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #001a13;
    font-size: 0.9rem;
    position: relative;
    padding: 0 18px;
}

.speakers-divider span::before,
.speakers-divider span::after {
    content: "";
    height: 1px;
    width: 60px;
    background: #fbbf07;
    position: absolute;
    top: 50%;
}

.speakers-divider span::before {
    left: -70px;
}

.speakers-divider span::after {
    right: -70px;
}


/* Make columns stretch equally */
.common-pannel .row {
    align-items: stretch;
}

/* Force equal height cards */
.common-pannel .leader-card-modern {
    height: 100%;
    min-height: 380px;   /* adjust once and forget */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

/* Keep images consistent */
.common-pannel .leader-card-modern img {
    width: 100%;
    height: 220px;       /* fixed image height */
    object-fit: cover;
}

/* Prevent text from breaking layout */
.common-pannel .leader-card-modern h5 {
    min-height: 48px;    /* name area */
}

.common-pannel .leader-card-modern span {
    min-height: 40px;    /* designation area */
}


/* ===== Base (Mobile First <576px) ===== */
.leader-card-modern {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 16px;
    height: auto;
}

.leader-card-modern img {
    /* width: 100%; */
    width: 180px;
    height: 180px;
    object-fit: cover;
}

.leader-card-modern h5 {
    font-size: 1.1rem;
    margin-top: 12px;
}

.leader-card-modern span {
    font-size: 0.95rem;
}


@media (min-width: 576px) {

    .common-pannel .row {
        align-items: stretch;
    }

    .common-pannel .leader-card-modern {
        height: 100%;
        min-height: 360px;
        padding: 18px;
        justify-content: space-between;
    }

    .common-pannel .leader-card-modern img {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .common-pannel .leader-card-modern h5 {
        min-height: 44px;
    }

    .common-pannel .leader-card-modern span {
        min-height: 38px;
    }
}

@media (min-width: 768px) {

    .common-pannel .leader-card-modern {
        min-height: 380px;
        padding: 20px;
    }

    .common-pannel .leader-card-modern img {
        width: 170px;
        height: 170px;
        margin: 0 auto;
    }
}

@media (min-width: 992px) {

    .common-pannel .leader-card-modern {
        min-height: 300px;
        /* min-width: 250px; */
    }

    .common-pannel .leader-card-modern img {
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }
}


/* ======================
   workshop sub page 
====================== */


.workshop-sub-body {
    display: flex;
    justify-content: center; /* Horizontal centering */
    align-items: center;     /* Vertical centering */
    padding: 60px 0;         /* Optional spacing for top and bottom */
    background-color: #fdfdfd; 
    width: 100%;
}

.workshop-image-container {
    text-align: center;
}

.centered-original-img {
    /* Keeps original size */
    height: 1080px;
    width: auto;
    
    /* Ensures it doesn't overflow on small mobile screens */
    max-width: 100%; 
    
    /* Optional: Soft shadow to make it look professional */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 8px;
}


@media (max-width: 992px) {
    .centered-original-img {
        width: 100%;
        height: auto;        /* Maintain aspect ratio */
        max-height: none;
    }
}

@media (max-width: 576px) {
    .workshop-sub-body {
        padding: 30px 10px;
    }

    .centered-original-img {
        width: 100%;
        height: auto;
        border-radius: 6px;
    }
}


/* ======================
   isdsi-global-investment-summit-2025 page 
====================== */

.information {
    --navy: #001a13;
    --orange: #ff7a00; /* Matching the source image orange */
    background: #f8f9fa;
}

.info-action-card, .info-schedule-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.info-action-card:hover {
    transform: translateY(-5px);
}

.qr-wrapper {
    background: #fff;
    padding: 10px;
    border: 1px solid #eee;
    display: inline-block;
    border-radius: 10px;
}

.text-orange { color: var(--orange); }
.text-navy { color: var(--navy); }

/* Deadline Styling */
.deadline-tag {
    background: var(--orange);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
}

/* Schedule Table Styling */
.summit-table thead {
    background: var(--orange);
    color: #fff;
}

.summit-table th {
    padding: 15px;
    border: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.summit-table td {
    padding: 15px;
    vertical-align: middle;
    color: var(--navy);
}

.highlighted-border {
    border: 2px solid var(--orange);
}

.btn-orange {
    background: var(--orange);
    color: #fff;
    border-radius: 5px;
    font-weight: 700;
}



.about-text-2025{
    font-size: 12px;
    color: black;
}

:root {
    --summit-orange: #ff7a00;
    --summit-gold: #ffc107;
    --summit-navy: #001a13;
    --soft-bg: #f8f9fa;
}

/* Hero Deadline Banner */
.deadline-glass-card {
    background: linear-gradient(135deg, var(--summit-navy) 0%, #003326 100%);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,26,19,0.2);
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--summit-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

/* Event Capsules */
.event-capsule {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #eee;
}

.event-capsule:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.capsule-top {
    padding: 30px 20px;
    background: var(--soft-bg);
    text-align: center;
}

.badge-date {
    background: var(--summit-gold);
    color: var(--summit-navy);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 15px;
}

.capsule-bottom {
    background: var(--summit-navy);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 0.9rem;
}

/* Why Attend Section */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.benefit-icon {
    color: var(--summit-orange);
    margin-right: 15px;
    font-size: 1.2rem;
}

.benefit-item p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Image Composition */
.image-composite {
    position: relative;
    padding: 20px;
}

.main-img {
    width: 100%;
    border-radius: 30px 100px 30px 100px;
}

.floating-badge {
    position: absolute;
    bottom: -10px;
    right: 0;
    background: var(--summit-gold);
    padding: 20px 30px;
    border-radius: 20px;
    text-align: center;
    color: var(--summit-navy);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}




/*Summit Agenda*/

.summit-agenda {
    padding: 70px 0;
    background: #ffffff;
}

.agenda-title {
    text-align: center;
    font-weight: 800;
    margin-bottom: 40px;
    color: #003b2f;
}

/* Grid Structure */
.agenda-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 3fr;
    gap: 20px;
    align-items: center;
}

/* Header */
.agenda-head {
    background: #fbbf07;
    font-weight: 700;
    padding: 15px 20px;
    border-radius: 10px 10px 0 0;
}

/* Rows */
.agenda-row {
    background: #00261b;
    color: #fff;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: transform 0.3s ease, background 0.3s ease;
}

.agenda-row:hover {
    background: #003b2f;
    transform: translateY(-2px);
}

.agenda-event {
    font-weight: 700;
    color: #fbbf07;
}

@media (max-width: 768px) {
    .agenda-head {
        display: none;
    }

    .agenda-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .agenda-row {
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .agenda-row div {
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }

    .agenda-row div::before {
        content: attr(data-label);
        font-weight: 600;
        color: #fbbf07;
    }
}

/* Extra Small Mobile (Under 480px) */
@media (max-width: 576px) {
    .summit-agenda {
        padding: 40px 0;
    }

    .agenda-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .agenda-row {
        padding: 15px;
    }

    /* Stack labels on top of content for very narrow screens */
    .agenda-row div {
        flex-direction: column;
        text-align: left;
        gap: 2px;
        margin-bottom: 10px;
    }

    .agenda-row div:last-child {
        margin-bottom: 0;
    }

    .agenda-row div::before {
        min-width: 100%;
        margin-bottom: 2px;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
}



:root {
    --isdsi-navy: #002e1f;
    --isdsi-gold: #ffc107;
}

.text-navy { color: var(--isdsi-navy); }
.text-gold { color: var(--isdsi-gold); }

.organiser-team .img-container {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    position: relative;
    padding: 8px;
    border: 2px solid var(--isdsi-gold);
    border-radius: 50%; /* Makes the border round */
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; /* Makes the image round */
    background-color: #eee;
}

.team-card:hover .img-container {
    transform: scale(1.05);
    border-color: var(--isdsi-navy);
}

.team-card h6 {
    color: var(--isdsi-navy);
}

/* Adjust size for mobile */
@media (max-width: 576px) {
    .organiser-team .img-container {
        width: 140px;
        height: 140px;
    }
}


.event-contact-name {
    background-color: #f0f7ff; /* Light blue background as per image_25b7f4.png */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.event-contact-name a {
    transition: all 0.3s ease;
}

.event-contact-name a:hover {
    color: #ffc107 !important; /* Gold hover effect */
    text-decoration: underline !important;
}

/* Mobile responsive padding */
@media (max-width: 768px) {
    .event-contact-name h2 {
        font-size: 2rem;
    }
    .event-contact-name p {
        font-size: 1rem;
    }
}





