 

/* 1) About Us (Light) */
.aboutus-section {
    background: var(--light-bg);
    color: var(--dark-text);
}

/* 2) Key Themes (Dark) */
.keytheme-section {
    background: var(--dark-bg);
    color: var(--light-text);
}

/* 3) Why Attend (Light) */
.whyattend-section {
    background: var(--light-bg);
    color: var(--dark-text);
}

/* ===========================
   FEATURED SPEAKERS (FIXED)
=========================== */

/* ===========================
   FEATURED SPEAKERS (SMALL BOX)
=========================== */

.speakers.keytheme-section .speaker-item {
    background: rgba(0, 0, 0, 0.55) !important;
    padding: 15px !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
    height: 100% !important;
    text-align: center !important;
    max-width: 250px;       /* small card width */
    margin: auto;
}

.speakers.keytheme-section .speaker-item:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35) !important;
}

.speakers.keytheme-section .speaker-img {
    width: 90px !important;
    height: 90px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    border: 3px solid rgba(255, 255, 255, 0.35) !important;
    margin: 0 auto !important;
}

.speakers.keytheme-section .speaker-name {
    font-weight: 700 !important;
    color: #fff !important;
    font-size: 15px !important;
    margin-top: 10px !important;
}

.speakers.keytheme-section .speaker-role {
    display: block !important;
    font-size: 13px !important;
    color: #dcdcdc !important;
    margin-bottom: 4px !important;
}

.speakers.keytheme-section .speaker-org {
    font-size: 12px !important;
    color: #cfe6ff !important;
}



/* 5) Call to Action Subscribe (Light) */
.cta-subscribe {
    background: var(--light-bg);
    color: var(--dark-text);
}

/* 6) Call to Action Ticket (Dark) */
.cta-ticket {
    background: var(--dark-bg);
    color: var(--light-text);
}

/* 7) Venue Section (Light) */
.venue-section {
    background: var(--light-bg);
    color: var(--dark-text);
}

/* 8) Sponsors Section (Dark) */
.sponsors.section {
    background: var(--dark-bg);
    color: var(--light-text);
}

/* 9) Agenda Section (Light) */
.agenda-section {
    background: var(--light-bg);
    color: var(--dark-text);
}

/* 10) Pricing Section (Dark) */
.section.pricing {
    background: var(--dark-bg);
    color: var(--light-text);
}

/* 11) Schedule Section (Light) */
.section.schedule {
    background: var(--light-bg);
    color: var(--dark-text);
}

/* ==========================
   TEXT COLORS (FOR VISIBILITY)
========================== */

/* Section Titles */
.section-title h3,
.section-title h2,
.section-title h4,
h2, h3, h4, h5, h6 {
    color: inherit;
}

/* Paragraphs */
p, .text-muted, .speaker-name, .venue-location {
    color: inherit;
}

/* Links */
a {
    color: inherit;
}

a:hover {
    color: var(--accent);
}

/* Alternate color for highlighted text */
.alternate {
    color: var(--accent);
}

/* ==========================
   CARDS & BOXES
========================== */

/* Cards */
.card {
    background: rgba(255,255,255,0.9);
    border-radius: 15px;
    color: var(--dark-text);
}

.card-body {
    padding: 25px;
}

/* Theme Boxes */
.theme-box {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 25px;
    border-radius: 12px;
    color: inherit;
}

/* Speaker Items */
.speaker-item {
    background: rgba(255,255,255,0.12);
    padding: 25px;
    border-radius: 12px;
    color: inherit;
}

/* CTA Button */
.btn-main-md {
    background: #fff;
    color: var(--dark-bg);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-main-md:hover {
    background: #f0f0f0;
}

/* Agenda Item */
.agenda-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.agenda-date {
    color: var(--dark-bg);
    font-weight: 700;
}

/* Schedule Styles */
.schedule-tab .nav-pills .nav-link {
    background: #fff;
    color: var(--dark-bg);
    border-radius: 50px;
    padding: 10px 20px;
    margin: 5px;
}

.schedule-contents {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
}

.schedule-item ul {
    list-style: none;
    padding: 0;
}

.schedule-item .headings {
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

/* Subfooter */
.subfooter {
    background: #0f172a;
    padding: 20px 0;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .aboutus-section .row,
    .venue-section .row {
        flex-direction: column;
    }
}



/* ===== Shared Background for Multiple Sections ===== */
.bg-common {
    background: rgba(53, 127, 238, 0.829);
}

 
.venue-section {
    padding-top: 50px;   /* increase top gap */
    padding-bottom: 50px; /* increase bottom gap */
}
@media (max-width: 768px) {
    .venue-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* -----------------------------
   Sponsor Card Size Fix (Small)
------------------------------ */

/* Sponsor Card Fix - no overlay + compact height */
.sponsors .card {
    max-width: 220px !important;
    height: auto !important;           /* allow height to auto adjust */
    margin: 0 auto !important;
    padding: 10px !important;
}

.sponsors .card .p-3 {
    padding: 8px !important;
}

.sponsors .card img {
    max-height: 90px !important;
    width: 100% !important;
    object-fit: contain !important;
}

.sponsors .card-body {
    padding: 10px 8px 8px !important;
}

/* make button fit inside card */
.sponsors .card-body .btn {
    font-size: 12px !important;
    padding: 6px 10px !important;
    width: 100% !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Reduce spacing between sponsor cards */
.sponsors .row.g-4 {
    gap: 12px !important;
}


/* ------------------------------
   Agenda Section Styling
------------------------------- */
.agenda-section.bg-common {
    padding-top: 70px;
    padding-bottom: 70px;
}

/* Tabs */
.agenda-section .nav-tabs .nav-link {
    border: 1px solid #ddd;
    color: #333;
    background: #fff;
    margin-right: 10px;
    padding: 10px 18px;
    border-radius: 8px;
    border-bottom: none !important;
}

.agenda-section .nav-tabs .nav-link.active {
    background: rgba(236, 137, 24, 0.952);  /* Active tab color */
    color: #fff;
    border-color: rgba(53, 127, 238, 0.829);
}

/* Agenda Item */
.agenda-item {
    gap: 20px !important;                 /* more gap between columns */
    background: #fff;
    border: 1px solid #e2e2e2;
}

/* Time Column */
.agenda-time {
    width: 130px;
    padding-right: 10px;
    border-right: 1px solid #ddd;
}

/* Time and Date */
.agenda-time .agenda-date {
    font-size: 16px;
    color: #2b2b2b;
}

.agenda-time small {
    color: #777;
}

/* Speaker Image */
.agenda-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

/* Content Column */
.agenda-content h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #222;
}

.agenda-content p {
    color: #555;
}

/* Make sure everything is spaced nicely */
.agenda-item {
    padding: 18px;
    border-radius: 12px;
}


.agenda-section .nav-tabs {
    border-bottom: none !important;
}

.agenda-section .nav-tabs .nav-link {
    border: none !important;
}

.agenda-section .nav-tabs .nav-link.active {
    border: none !important;
    border-bottom: 3px solid #ff7a00 !important; /* Optional: keeps a clean underline */
}


/* Venue Highlights */
.venue-highlights {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0,0,0,0.08);
}

.venue-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 12px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.venue-highlights .highlight-item:last-child {
    border-bottom: none;
}

.venue-highlights .highlight-item i {
    font-size: 24px;
    color: #1b1b1b;
    width: 40px;
    text-align: center;
}

.venue-highlights .highlight-text h5 {
    font-size: 22px;
    margin: 0;
    font-weight: 700;
    color: #111;
}

.venue-highlights .highlight-text p {
    margin: 0;
    font-size: 14px;
    color: #444;
}

/* Image Box */
.venue-image-wrap {
    background: rgba(255,255,255,0.85);
    padding: 10px;
    border: 1px solid rgba(0,0,0,0.1);
}

/* Venue Card */
.venue-card {
    background: rgba(255,255,255,0.92);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.08);
}

.venue-card .venue-name {
    font-size: 28px;
    font-weight: 700;
}

.venue-card .venue-location {
    margin-top: 10px;
    font-size: 15px;
    color: #333;
}


.agenda-section h4 {
    color: #fff !important;
}


/* Speaker Name + Details Visibility Fix */
.agenda-title-card {
    color: #fff;               /* Bright white */
    font-weight: 700;
    font-size: 18px;
}

.speaker-name {
    color: rgba(255, 255, 255, 0.9); /* Brighter than before */
    font-size: 13px;
    margin-bottom: 6px;
}

.agenda-desc {
    color: rgba(255, 255, 255, 0.85); /* Clearer visibility */
    font-size: 14px;
    line-height: 1.6;
}

/* Tab text (optional improvement) */
.agenda-tabs .nav-link {
    color: rgba(255, 255, 255, 0.85);
}
/* Speaker Name + Details Visibility Fix */
.agenda-title-card {
    color: #fff;               /* Bright white */
    font-weight: 700;
    font-size: 18px;
}

.speaker-name {
    color: rgba(255, 255, 255, 0.9); /* Brighter than before */
    font-size: 13px;
    margin-bottom: 6px;
}

.agenda-desc {
    color: rgba(255, 255, 255, 0.85); /* Clearer visibility */
    font-size: 14px;
    line-height: 1.6;
}

/* Tab text (optional improvement) */
.agenda-tabs .nav-link {
    color: rgba(255, 255, 255, 0.85);
}


.whyattend-section {
    color: #fff !important;
}

.whyattend-section .theme-box h4,
.whyattend-section .theme-box p {
    color: #fff !important;
}


/* ==========================
   Speakers Section
========================== */
.speakers-section {
    background: rgba(53, 127, 238, 0.829);
    padding: 80px 0;
    color: #fff;
}

/* Title */
.speakers-section .section-title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

/* Card */
.speaker-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    padding: 25px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(6px);
}

.speaker-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Image */
.speaker-img img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.35);
}

/* Text */
.speaker-name {
    margin-top: 12px;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.speaker-designation {
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.speaker-org {
    color: rgba(255, 255, 255, 0.75);
}

/* Button */
.speakers-section .btn-primary {
    background: #ff8a00;
    border: none;
}

.speakers-section .btn-primary:hover {
    background: #ffb74d;
}


/* Prevent height jump when switching tabs */
.tab {
    display: none;
    min-height: 520px; /* FIXED HEIGHT – adjust once, done forever */
}

.tab.active-tab {
    display: block;
}





/* ===============================
   GLOBAL VENUE SECTION BACKGROUND
   =============================== */
 

/* ===============================
   VENUE CARD STYLING
   =============================== */

.card {
    border-radius: 14px;
    background-color: transparent;
}

/* Card wrapper */
.card.shadow-sm {
    background-color: #ffffff;
    border-radius: 14px;
    transition: all 0.3s ease;
}

/* Subtle hover lift (classy, not childish) */
.card.shadow-sm:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* ===============================
   IMAGE SIDE
   =============================== */

.card img {
    border-radius: 14px 0 0 14px;
}

/* ===============================
   CARD BODY – SLIGHTLY LIGHTER
   =============================== */

.card-body {
    background-color: #fafbfe; /* slightly lighter than section bg */
    height: 100%;
}

/* ===============================
   TEXT STYLING
   =============================== */

.card-body h4 {
    color: #1f2937; /* deep charcoal */
    font-weight: 600;
}

.card-body p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-body .text-muted {
    color: #6b7280 !important;
}

.card-body .text-secondary {
    color: #374151 !important;
}

/* ===============================
   MOBILE FIXES
   =============================== */

@media (max-width: 768px) {
    .card img {
        border-radius: 14px 14px 0 0;
    }

    .card-body {
        border-radius: 0 0 14px 14px;
    }
}


.sponsor-title {
    color: #ffffff;
}

.sponsor-header h2 {
    color: #ffffff;
}

.sponsor-header p {
    color: rgba(255, 255, 255, 0.8);
}

.about-title {
    color: #ffffff; /* White */
}

.about-text {
    color: rgba(255,255,255,0.85); /* Soft white */
}



/* contact page styling */
.contact-page {
    background: linear-gradient(135deg, #0b1b3b 0%, #13294f 100%);
    padding: 60px 0;
}

.contact-title {
    color: #fff;
    font-size: 2.2rem;
}

.contact-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
}

.contact-card {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
}

.contact-card-title {
    color: #fff;
    font-weight: 700;
}

.contact-photo {
    max-width: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
}

.contact-person h5 {
    font-weight: 600;
    color: #fff;
}

.contact-person a {
    color: #ffc107;
}

/* FORM STYLING */
.contact-card form {
    background: rgba(255,255,255,0.10);
    padding: 20px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.15);
}

.form-control, .form-select {
    background: rgba(255,255,255,0.95);
    color: #111;
    border: 1px solid rgba(0,0,0,0.12);
    box-shadow: none;
}

.form-control::placeholder {
    color: rgba(0,0,0,0.5);
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(255,193,7,0.35);
    border-color: #ffc107;
}

.btn-primary {
    background: #ffc107;
    border: none;
    color: #000;
    font-weight: 700;
}

.btn-primary:hover {
    background: #ffb300;
}

/* mobile spacing */
@media (max-width: 768px) {
    .contact-page {
        padding: 40px 0;
    }
}


.contact-card-title {
    color: #2047b4 !important;           /* make the text visible */
    font-weight: 700;
    background: rgba(196, 188, 188, 0.35);     /* dark background behind title */
    padding: 12px 16px;
    border-radius: 10px;
    display: inline-block;
}



.navbar-custom {
  background: linear-gradient(90deg, #4380dda4, #060525);
}




/* Make only main menu links white */
.navbar-custom .navbar-nav .nav-link {
  color: #fff !important;
}

/* Keep dropdown text unchanged */
.navbar-custom .dropdown-menu .dropdown-item {
  color: #000 !important;
}



.navbar-custom .navbar-nav .nav-link:hover {
  color: #fff !important;
}



/* push logo away from left edge */
.logo-padding {
  padding-left: 180px;
}

/* make menu centered */
.nav-wrapper {
  justify-content: space-between;
}

/* keep button at the extreme right */
.register-btn {
  margin-left: auto;
}

.banner {
    width: 100%;
    height: 320px;              /* adjust height as you want */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;        /* shows full image */
}


@media (max-width: 768px) {
    .banner {
        height: 260px;
    }
}



 

.button-row a.btn-custom {
    display: inline-block;
    margin: 0 15px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #054d05, #1aa74a);
    color: #fff;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.button-row a.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.20);
    background: linear-gradient(135deg, #1aa74a, #054d05);
}
.banner {
    height: 60vh;
}

/* 1. Reset the Body - Remove the light blue leak */
body {
    background: #0b1f3a !important; /* Set body to the DARKEST color of your theme */
    font-family: "Segoe UI", sans-serif;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* 2. Fix the Main area */
main {
    flex: 1 0 auto; /* This forces it to stretch to the footer */
    background: radial-gradient(circle at top, #a5d8ff 0%, #2b6cb0 45%, #0b1f3a 100%) !important;
    width: 100%;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* 3. Fix the Subfooter - Match it to the bottom of Main */
.subfooter {
    background: #0b1f3a !important; /* Match the 100% stop of the gradient above */
    padding: 30px 0;
    color: #fff;
    margin-top: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Optional subtle line */
}
main {
    flex: 1 0 auto; /* ADD THIS LINE */
    background: radial-gradient(circle at top, #a5d8ff 0%, #2b6cb0 45%, #0b1f3a 100%);
    width: 100%;
}

.page-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
}

.login-container {
    width: 100%;
    max-width: 560px;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    animation: fadeUp 0.6s ease;
}

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

.top-banner {
    background: linear-gradient(135deg, #1d4ed8, #06b6d4);
    padding: 28px 24px;
    text-align: center;
    color: #fff;
}

.top-banner h5 {
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.5px;
    font-size: 1.2rem;
}

.top-banner p {
    margin: 8px 0 0;
    font-weight: 500;
    opacity: 0.9;
}

.btn-box {
    display: flex;
    gap: 12px;
    margin: 24px 24px 18px;
}

.btn-box button {
    flex: 1;
    padding: 12px 0;
    font-weight: 700;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.55);
    color: #1f4fd8;
    transition: all 0.25s ease;
}

.btn-box button.active {
    background: linear-gradient(135deg, #1d4ed8, #06b6d4);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 12px 25px rgba(29, 78, 216, 0.35);
    transform: translateY(-1px);
}

.form-card {
    padding: 0 24px 10px;
}

.tab {
    display: none;
}

.tab.active-tab {
    display: block;
}



/* This forces the content and footer to touch with zero gap */
main + section, 
main + div,
.subfooter {
    margin-top: 0 !important;
    padding-top: 20px !important;
}

/* If there is a "bg-common" section appearing where it shouldn't: */
.bg-common:empty {
    display: none !important;
}

/* This targets the mystery blue bar directly */
section:not([class]), .section-padding {
    display: none;
}

