/* 
 * Wellbeing & Sustainability Summit 
 * Custom CSS using logo colors
 */

:root {
    --primary-blue: #0a4a5f;
    --primary-teal: #30b6c4;
    --primary-green: #3d9e47;
    --light-green: #8cc63f;
    --accent-yellow: #f7b239;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --gray: #6c757d;
    --dark: #212529;

    /* ... existing variables ... */
    --ticket-vip-bg: #0a4a5f; /* Deep Blue, will be overridden for VIP specific */
    --ticket-standard-bg: #30b6c4; /* Primary Teal */
    --ticket-group-bg: #3d9e47; /* Primary Green */

    --ticket-shadow-intensity: 0.15; /* For ticket headers and overall grid */
    
}

/* Enhanced Registration Section */
.registration {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    color: var(--white);
    position: relative;
    padding: 80px 0; /* Ensure consistent section padding */
}

.early-bird-text {
    color: var(--white);
    font-size: 1.25rem;
}

.early-bird-text .highlight {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.registration .section-title {
    color: var(--white);
}

.registration .section-title:after {
    background: var(--accent-yellow);
}

/* Ticket Comparison Grid Styles */
.ticket-comparison-grid {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,var(--ticket-shadow-intensity));
    overflow: hidden; /* Ensures rounded corners */
    border: 1px solid var(--light-gray); /* Subtle border for the whole container */
}

.ticket-header-row {
    border-bottom: 2px solid var(--primary-teal);
    background-color: var(--primary-blue); /* Overall header background */
    color: var(--white);
}

.feature-header {
    background-color: var(--primary-blue); /* Consistent with other headers */
    padding: 25px 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.1rem;
    border-right: 1px solid rgba(255,255,255,0.1); /* Separator */
    display: flex;
    align-items: center;
}

.ticket-header-card {
    padding: 25px 20px;
    text-align: center;
    position: relative;
    border-right: 1px solid rgba(255,255,255,0.1); /* Separator */
    height: 100%; /* Ensure equal height */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes button to bottom */
}

.ticket-header-card:last-child {
    border-right: none;
}

/* Specific background colors for ticket headers */
.vip-bg { 
    background-color: var(--accent-yellow); /* Gold color for VIP */
    border-color: darken(var(--accent-yellow), 10%); /* Slightly darker border for depth */
}
.standard-bg { background-color: var(--ticket-standard-bg); }
.group-bg { background-color: var(--ticket-group-bg); }


.ticket-header-card .ticket-name {
    font-size: 1.6rem;
    color: var(--white); /* Default for all header names */
    margin-bottom: 10px;
}

.ticket-header-card .ticket-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white); /* Default for all header prices */
    line-height: 1;
    margin-bottom: 5px;
}

.ticket-header-card .original-price {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7); /* Default for all original prices */
    margin-top: 5px;
}

/* CHANGE: Specific text colors for VIP Ticket to ensure readability on gold background */
.vip-bg .ticket-name,
.vip-bg .ticket-price,
.vip-bg .original-price {
    color: var(--primary-blue); /* Dark blue text on gold for strong contrast */
}

.vip-bg .btn-outline-light {
    border-color: var(--primary-blue); /* Dark blue border for VIP button */
    color: var(--primary-blue);        /* Dark blue text for VIP button */
}

.vip-bg .btn-outline-light:hover {
    background-color: var(--primary-blue); /* Dark blue background on hover */
    color: var(--white);                   /* White text on hover */
}

.popular-ticket {
    box-shadow: 0 5px 20px rgba(0,0,0,0.3); /* Stronger shadow for popular */
    transform: translateY(-5px); /* Slightly lift popular card */
    position: relative;
    z-index: 10; /* Ensure it's on top */
    border-color: var(--accent-yellow); /* Highlight border */
}

.popular-ticket .popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 0 0 0 12px;
    transform: translateY(-1px); /* slight adjustment */
}

/* Feature Rows */
.feature-row {
    border-bottom: 1px solid var(--light-gray);
}

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

.feature-name-col {
    background-color: var(--light-gray);
    padding: 15px 20px;
    font-weight: 600;
    color: var(--primary-blue);
    border-right: 1px solid var(--gray);
    height: 100%; /* Ensures background covers entire height */
    display: flex;
    align-items: center; /* Vertically align text */
}

.feature-cell {
    padding: 15px 20px;
    text-align: center;
    background-color: var(--white);
    border-right: 1px solid var(--light-gray);
    height: 100%; /* Ensures background covers entire height */
    display: flex;
    align-items: center; /* Vertically align content */
    justify-content: center; /* Center horizontally */
    color: var(--dark);
}

.feature-cell:last-child {
    border-right: none;
}

.check-icon, .cross-icon {
    font-size: 1.3rem;
    vertical-align: middle;
}

.cross-icon {
    color: var(--gray); /* Softer color for 'not included' */
    opacity: 0.7;
}

/* New style for the corporate branding note */
.corporate-branding-note {
    background-color: var(--light-green); /* Use a conference color, e.g., light green */
    color: var(--primary-blue); /* Text color matching theme */
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 30px; /* Space from the table */
}

.corporate-branding-note strong {
    color: var(--primary-blue); /* Ensure strong text is also in primary blue */
}


/* Registration Form (keep existing styles) */
.registration-form {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Add a subtle shadow */
}

.registration-form h3 {
    color: var(--primary-blue); /* Ensure form title matches theme */
}

.form-group label {
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 8px;
    display: block;
}

.form-control {
    border-radius: 8px;
    border-color: var(--primary-teal);
    padding: 12px 15px;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(48, 182, 196, 0.25);
}

.btn-register {
    background: var(--accent-yellow);
    color: var(--dark);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.form-check-label a {
    color: var(--primary-teal);
    font-weight: 500;
}

.form-check-label a:hover {
    color: var(--primary-blue);
}

/* Group size field (if you want to dynamically show/hide it) */
.group-size-field {
    /* controlled by JS */
}

/* Mobile-specific labels for feature cells when stacked */
.ticket-label {
    font-weight: 700;
    color: var(--primary-blue);
    margin-right: 10px;
}
.vip-label { color: var(--ticket-vip-bg); }
.standard-label { color: var(--ticket-standard-bg); }
.group-label { color: var(--ticket-group-bg); }


/* Responsive Adjustments */
@media (max-width: 991px) { /* Medium devices (tablets) */
    .feature-header {
        font-size: 1rem;
        padding: 15px;
    }
    .ticket-header-card {
        padding: 15px;
    }
    .ticket-header-card .ticket-name {
        font-size: 1.4rem;
    }
    .ticket-header-card .ticket-price {
        font-size: 1.8rem;
    }
    .ticket-header-card .original-price {
        font-size: 0.8rem;
    }
    .ticket-header-card .btn-outline-light {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    .popular-ticket .popular-tag {
        font-size: 0.7rem;
        padding: 3px 10px;
    }

    .feature-name-col, .feature-cell {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .check-icon, .cross-icon {
        font-size: 1.2rem;
    }

    .vip-bg .ticket-name,
    .vip-bg .ticket-price,
    .vip-bg .original-price {
        color: var(--primary-blue); /* Keep dark blue text on mobile */
    }
}

/* Contact Modal Specific Styles */
.modal-content {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: none;
}

.modal-header {
    background: linear-gradient(to right, var(--primary-blue), var(--primary-teal));
    color: var(--white);
    border-bottom: none;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 20px;
}

.modal-title {
    color: var(--white);
    font-weight: 700;
}

.modal-header .btn-close {
    filter: invert(1); /* Makes the close button white */
    opacity: 0.8;
}

.modal-body {
    padding: 30px;
}

.modal-body .form-label {
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 8px;
    display: block;
}

.modal-body .form-control {
    border-radius: 8px;
    border-color: var(--primary-teal);
    padding: 10px 15px;
}

.modal-body .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(48, 182, 196, 0.25);
}

.modal-body .btn-primary {
    background-color: var(--primary-teal);
    color: var(--white);
    border-radius: 30px;
    padding: 10px 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.modal-body .btn-primary:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 767px) { /* Small devices (phones) */
    .ticket-comparison-grid {
        border-radius: 0;
        box-shadow: none;
        border: none;
    }
    .ticket-header-row {
        flex-wrap: wrap;
        border-bottom: none; /* Removed for stacked cards */
        background-color: transparent; /* Transparent for individual card background */
    }
    .feature-header {
        display: none !important; /* Hide on small screens */
    }

    .ticket-header-card {
        border-right: none;
        border-bottom: 2px solid var(--primary-teal);
        border-radius: 8px; /* Rounded corners for individual header cards */
        margin-bottom: 15px; /* Spacing between stacked header cards */
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .popular-ticket {
        transform: translateY(0); /* Remove lift on small screens */
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    .ticket-header-card:last-child {
        margin-bottom: 0;
    }
    /* Order for mobile layout */
    .ticket-header-row .col-12:nth-child(2) { /* VIP */
        order: 3;
    }
    .ticket-header-row .col-12:nth-child(3) { /* Standard */
        order: 2;
    }
    .ticket-header-row .col-12:nth-child(4) { /* Group */
        order: 4;
    }

    /* Feature Rows Stacked Display */
    .feature-row {
        display: flex;
        flex-direction: column; /* Stack columns vertically */
        border-bottom: 1px dashed var(--gray); /* Lighter separator between features */
        margin-bottom: 15px; /* Space between feature groups */
        padding-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05); /* Subtle shadow for each feature row */
        background-color: var(--white);
    }
    .feature-row:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .feature-name-col {
        border-right: none;
        border-bottom: 1px solid var(--light-gray); /* Separator below feature name */
        margin-bottom: 10px;
        text-align: left;
        display: block; /* Revert to block display */
    }
    .feature-cell {
        border-right: none;
        text-align: left; /* Align content to left on mobile */
        justify-content: flex-start; /* Align content to left */
        padding: 8px 15px; /* Reduce padding */
        font-size: 0.9rem;
    }
    .feature-cell:not(:last-child) { /* Add bottom border for separation between ticket types in stacked mode */
        border-bottom: 1px dotted var(--light-gray);
    }

    /* Ensure mobile stacked cards also reflect the VIP text color change */
    .vip-bg .ticket-header-card {
        background-color: var(--accent-yellow); /* Gold background for VIP card */
    }
    .vip-bg .ticket-name,
    .vip-bg .ticket-price,
    .vip-bg .original-price {
        color: var(--primary-blue); /* Keep dark blue text on mobile stacked cards */
    }
    .vip-bg .btn-outline-light {
        border-color: var(--primary-blue);
        color: var(--primary-blue);
    }
    .vip-bg .btn-outline-light:hover {
        background-color: var(--primary-blue);
        color: var(--white);
    }
}

/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
}

a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-blue);
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-yellow);
    margin: 20px auto 0;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-nav .nav-link {
    color: var(--primary-blue);
    font-weight: 500;
    padding: 10px 15px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-teal);
}

.register-btn {
    background-color: var(--primary-teal);
    color: white !important;
    border-radius: 30px;
    padding: 10px 20px !important;
    margin-left: 15px;
}

.register-btn:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Hero Section */
#hero {
    /* background: linear-gradient(135deg, rgba(10,74,95,0.9) 0%, rgba(48,182,196,0.8) 100%); */
    color: var(--white);
    padding: 150px 0 100px;
    position: relative;
}

#hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/Cover.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

#hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

#hero .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Countdown */
.countdown-section {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 30px 0;
}

.countdown-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.countdown-item {
    padding: 0 15px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.countdown-label {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* About Section */
.about {
    background-color: var(--white);
}

.stat-item {
    text-align: center;
    padding: 30px 15px;
    border-radius: 8px;
    background: var(--light-gray);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-teal);
    display: block;
    margin-bottom: 10px;
}

.stat-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* Speakers Section */
.speakers {
    background-color: var(--light-gray);
}

.speaker-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.speaker-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.speaker-info {
    padding: 20px;
}

.speaker-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.speaker-role {
    color: var(--primary-teal);
    font-size: 1rem;
    margin-bottom: 15px;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    color: var(--gray);
    margin-right: 15px;
    font-size: 1.2rem;
}

.social-links a:hover {
    color: var(--primary-teal);
}

/* Agenda Section */
.agenda {
    background-color: var(--white);
}

.agenda-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.agenda-tab {
    padding: 10px 20px;
    margin: 0 5px;
    background: var(--light-gray);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.agenda-tab.active {
    background: var(--primary-teal);
    color: var(--white);
}

.agenda-item {
    display: flex;
    margin-bottom: 30px;
    background: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
}

.agenda-time {
    background: var(--primary-blue);
    color: var(--white);
    padding: 25px 15px;
    text-align: center;
    min-width: 150px;
}

.agenda-time .time {
    font-size: 1.3rem;
    font-weight: 700;
}

.agenda-content {
    padding: 20px;
    flex: 1;
}

.agenda-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.agenda-speaker {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.agenda-speaker img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

/* Venue Section */
.venue {
    background-color: var(--light-gray);
}

.venue-details {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.venue-map {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

/* Registration Section */
.registration {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    color: var(--white);
}

.registration .section-title {
    color: var(--white);
}

.registration .section-title:after {
    background: var(--accent-yellow);
}

.ticket-card {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.ticket-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.ticket-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 10px;
}

.ticket-name {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.registration-form {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    margin-top: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.btn-register {
    background: var(--accent-yellow);
    color: var(--dark);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Sponsors & Partners Section */
.sponsors, .partners {
    text-align: center;
}

.sponsor-logo, .partner-logo {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 15px;
    /* filter: grayscale(100%);
    opacity: 0.7; */
    transition: all 0.3s ease;
}

.sponsor-logo:hover, .partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.sponsor-logo img, .partner-logo img {
    max-height: 80px;
    max-width: 100%;
}

/* Subscribe Section */
.subscribe {
    background-color: var(--light-gray);
    padding: 60px 0;
}

.subscribe-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-input {
    flex: 1;
    border: 2px solid var(--primary-blue);
    border-right: none;
    padding: 15px;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
}

.subscribe-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0 25px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background: var(--primary-teal);
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 70px 0 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
}

.footer-about {
    margin-bottom: 30px;
}

.footer-title {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-title:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-yellow);
    margin-top: 10px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-yellow);
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    opacity: 1;
    color: var(--accent-yellow);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 50px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-blue);
    transform: translateY(-5px);
}

/* Theme Cards */
.theme-card {
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: white;
}

.theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.theme-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0;
    color: white;
    padding: 15px 25px;
    border-radius: 12px 12px 0 0;
}

.theme-content {
    padding: 20px 25px;
}

.theme-card ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.theme-card ul li {
    margin-bottom: 8px;
    font-size: 1.05rem;
    color: var(--dark);
}

.theme-card ul li:last-child {
    margin-bottom: 0;
}

.theme-green {
    background-color: #088d08;
}

.theme-blue {
    background-color: #136497;
}

.theme-orange {
    background-color: #ff730d;
}

/* Objectives/Themes Tabs */
.objectives-tabs .nav-pills .nav-link {
    background-color: var(--white);
    color: var(--primary-blue);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 15px 20px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.objectives-tabs .nav-pills .nav-link.active {
    background: linear-gradient(to right, var(--primary-blue), var(--primary-teal));
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.tab-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.nav-pills .nav-link.active .tab-icon {
    background: rgba(255, 255, 255, 0.2) !important;
}

.tab-icon i {
    font-size: 18px;
}

.tab-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.objective-panel {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.objective-panel h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.theme-list {
    padding-left: 20px;
    margin-bottom: 25px;
}

.theme-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.theme-list li:last-child {
    margin-bottom: 0;
}

.theme-list li strong {
    color: var(--primary-blue);
}

.sdg-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.sdg-icons img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sdg-icons img:hover {
    transform: scale(1.2);
}

/* SDG Color Accents */
.sdg-panel-1 {
    border-top: 5px solid #088d08; /* Green */
}

.sdg-panel-2 {
    border-top: 5px solid #136497; /* Blue */
}

.sdg-panel-3 {
    border-top: 5px solid #ff730d; /* Orange */
}

/* Objective Blocks */
.objective-block {
    display: flex;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.objective-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.objective-number {
    width: 90px;
    min-width: 90px;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Impact Section Styling */
.impact-section {
    background-color: var(--light-gray);
    position: relative;
}

.impact-container {
    position: relative;
}

.impact-block {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.impact-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.impact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.impact-icon i {
    font-size: 24px;
    color: var(--white);
}

.impact-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--primary-blue);
}

/* Outcomes Grid */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.outcome-item {
    position: relative;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.outcome-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.outcome-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 50px;
    height: 50px;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
}

.outcome-content h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.outcome-content p {
    margin-bottom: 0;
    color: var(--gray);
}

/* Exhibition Block */
.exhibition-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.exhibition-stats {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.platform-benefits h4 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-blue);
    font-size: 1.4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-teal);
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-card p {
    margin-bottom: 0;
    color: var(--dark);
    line-height: 1.6;
}

/* Outcome Cards - Option 1 */
.outcomes-section {
    background-color: var(--white);
    position: relative;
}

.section-heading {
    margin-bottom: 30px;
    position: relative;
}

.section-heading h3 {
    font-size: 2rem;
    font-weight: 700;
    display: inline-block;
}

.section-heading .highlight {
    position: relative;
    z-index: 1;
}

.section-heading .highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 10px;
    background-color: rgba(48, 182, 196, 0.2);
    z-index: -1;
}

.outcome-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.outcome-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.outcome-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-teal));
}

.outcome-icon {
    margin: 0 auto 20px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outcome-card h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.outcome-card p {
    color: var(--gray);
    line-height: 1.6;
}

.exhibition-section {
    position: relative;
}

.exhibition-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--light-gray), transparent);
}

.exhibition-content {
    padding: 20px 0;
}

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

.exhibition-benefits li {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.benefit-icon {
    background: var(--primary-teal);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.exhibition-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10,74,95,0.9), transparent);
    padding: 30px;
    color: var(--white);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.exhibition-image:hover .image-overlay {
    transform: translateY(0);
    opacity: 1;
}

.overlay-content h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.overlay-content p {
    margin-bottom: 0;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .outcome-item {
        margin-bottom: 30px;
    }
    
    .exhibition-stats {
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .impact-block {
        padding: 30px 20px;
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-header {
        flex-direction: column;
        text-align: center;
    }
    
    .impact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Attendees Section */
.attendees-section {
    background-color: var(--white);
    padding: 80px 0;
}

.attendee-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.attendee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.attendee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.attendee-icon i {
    font-size: 32px;
    color: var(--white);
}

.attendee-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.attendee-info p {
    color: var(--gray);
    margin-bottom: 0;
}

/* Attendees Section */
.attendees-section {
    background-color: var(--white);
    padding: 80px 0;
}

/* Create a 5-column layout */
.col-lg-15th {
    width: 20%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

@media (max-width: 1199px) {
    .col-lg-15th {
        width: 33.333333%;
    }
}

@media (max-width: 767px) {
    .col-lg-15th {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .col-lg-15th {
        width: 100%;
    }
}

.attendee-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.attendee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.attendee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.attendee-icon i {
    font-size: 32px;
    color: var(--white);
}

.attendee-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.attendee-info p {
    color: var(--gray);
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .objectives-tabs .nav-pills {
        display: flex;
        flex-direction: row !important;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    
    .objectives-tabs .nav-pills .nav-link {
        margin-right: 10px;
    }
}

@media (max-width: 767px) {
    .objectives-tabs .nav-pills .nav-link {
        width: 100%;
    }
    
    .objective-panel {
        min-height: auto;
    }
}

/* Responsive styles */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--white);
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-top: 10px;
    }
    
    .register-btn {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
    }
    
    #hero h1 {
        font-size: 2.8rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }
    
    #hero {
        padding: 100px 0 70px;
    }
    
    #hero h1 {
        font-size: 2.2rem;
    }
    
    .agenda-item {
        flex-direction: column;
    }
    
    .agenda-time {
        width: 100%;
        min-width: 100%;
        padding: 15px;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-input {
        border-radius: 30px;
        border-right: 2px solid var(--primary-blue);
        margin-bottom: 10px;
    }
    
    .subscribe-btn {
        border-radius: 30px;
        padding: 15px;
    }
}

@media (max-width: 575px) {
    .countdown-section {
        padding: 20px 0;
    }
    
    .countdown-container {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        width: 50%;
        margin-bottom: 20px;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
}

/* School of Well-being and Sustainability Section */
.school-section {
    background-color: var(--white);
    padding: 80px 0;
}

.school-hero-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.school-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-block {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.content-title {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* Goals and Objectives Cards */
.goals-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.goals-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.goals-card .card-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: var(--white);
    padding: 20px;
    border: none;
}

.goals-card .objectives-header {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
}

.goals-card .card-header h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.goals-card .card-header i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.goals-card .card-body {
    padding: 30px;
    background-color: var(--white);
}

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

.goals-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.goals-list li:last-child {
    margin-bottom: 0;
}

.goals-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.goals-list li:after {
    content: '✓';
    position: absolute;
    left: 5px;
    top: 5px;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 14px;
}

.goals-list li strong {
    color: var(--primary-blue);
    display: block;
    margin-bottom: 5px;
}

/* CTA Block */
.cta-block {
    background: linear-gradient(135deg, rgba(10,74,95,0.05) 0%, rgba(48,182,196,0.05) 100%);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--primary-teal);
}

.cta-block h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.cta-block p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .goals-card {
        margin-bottom: 30px;
    }
    
    .content-block {
        padding: 30px;
    }
    
    .goals-list li {
        padding-left: 30px;
    }
}

@media (max-width: 767px) {
    .school-section {
        padding: 60px 0;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .content-title {
        font-size: 1.5rem;
    }
    
    .goals-card .card-header {
        padding: 15px;
    }
    
    .goals-card .card-header h3 {
        font-size: 1.3rem;
    }
    
    .goals-card .card-body {
        padding: 20px;
    }
    
    .goals-list li {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .cta-block {
        padding: 30px 20px;
    }
    
    .cta-block .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .cta-block .btn:last-child {
        margin-bottom: 0;
    }
}