:root {
    --primary-blue: #0066cc;
    --primary-green: #00a86b;
    --primary-red: #dc143c;
    --dark-bg: #0a0a0a;
    --light-text: #ffffff;
}

body {
    font-family: 'Exo', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--light-text);
    overflow-x: hidden;
}

/* Navigation */
nav.navbar {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    padding: 0;
    transition: all 0.3s ease;
}
a.navbar-brand.d-flex.align-items-center {
    padding: 4px 0;
    margin: 0;
}

nav.navbar.navbar-expand-lg.fixed-top.scrolled:before {
    content: '';
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 0;
    width: 100% ;
    position: absolute;
    height: 100%;
    z-index: -1;
    transform: translateX(-100%);
    animation: slideInFromLeft 0.4s ease forwards;
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        width: 0;
    }
    to {
        transform: translateX(0);
        width: 100%;
    }
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--light-text) !important;
    display: flex;
    align-items: center;
}

.navbar-logo {
    width: auto;
    max-width: 140px;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-logo {
    height: 50px;
    max-width: 150px;
}

.navbar-nav .nav-link {
    color: var(--light-text) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s;
    position: relative;
}

.navbar-nav .nav-link:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green) !important;
}

a.register-btn {
    background: var(--cyan) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    padding: 12px 28px !important;
    border-radius: 25px !important;
    font-size: 18px !important;
    letter-spacing: .5px;
    transition: background .2s, transform .2s !important;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.register-btn:hover {
    background: var(--cyan2) !important;
    transform: scale(1.04) !important;
    border-radius: 25px !important;
}

.header-lines {
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: -1;
}
.scrolled .header-lines {
    bottom: -7px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('../images/53R1LQ.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    justify-content: center;
    overflow: hidden;
    padding-top: 70px;
}


/* Virus Particles */
.virus-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ff5555, #d42030 50%, #a01020 100%);
    opacity: 0;
    animation: virusFloat 30s infinite ease-in-out;
    transition: opacity 2s ease-out, transform 2s ease-out;
    box-shadow: inset -2px -2px 6px rgba(0, 0, 0, 0.3),
                inset 2px 2px 5px rgba(255, 130, 130, 0.5),
                0 0 20px rgba(220, 30, 50, 0.5),
                0 0 40px rgba(200, 20, 40, 0.2);
}

.virus-particle::before {
    content: '';
    position: absolute;
    width: 35%;
    height: 35%;
    top: 15%;
    left: 18%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 180, 180, 0.7), transparent);
}

.spike {
    position: absolute;
    width: 1.5px;
    background: linear-gradient(to top, #c93040, #ff5555);
    border-radius: 1px;
    transform-origin: bottom center;
}

.spike::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: radial-gradient(circle, #ff6666, #d42030);
    box-shadow: 0 0 5px rgba(255, 60, 70, 0.7);
}

@keyframes virusFloat {
    0% { transform: translate(0, 0); }
    20% { transform: translate(10px, -15px); }
    40% { transform: translate(-8px, 10px); }
    60% { transform: translate(12px, 5px); }
    80% { transform: translate(-5px, -10px); }
    100% { transform: translate(0, 0); }
}

.virus-particle.visible {
    opacity: 0.9;
}

/* Hero Content */
.hero-content {
    z-index: 10;
    text-align: center;
    padding: 0;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin:0 auto;
}

.hero-logo {
    max-width: 550px;
    animation: fadeInDown 1s ease-out;
}

.hero-venue {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--light-text);
    animation: fadeInUp 1s ease-out 0.6s both;
    letter-spacing: 1px;
    margin-left: 300px;
    border-bottom: 1px solid #ccc;

}

.hero-venue i {
    color: var(--primary-red);
    font-size: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title .respiratory {
    background: linear-gradient(45deg, var(--primary-green), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .conference {
    background: linear-gradient(45deg, var(--primary-red), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-date {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.6s both;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-date .day {
    color: var(--primary-red);
    font-size: 3rem;
    position: relative;
}

.hero-date .day::after {
    content: '\2713';
    position: absolute;
    top: -10px;
    right: -20px;
    color: var(--primary-green);
    font-size: 1rem;
}

.hero-date .month-year {
    color: var(--primary-green);
}


/* Countdown Timer */
.countdown-container {
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 1.2s both;
    position: absolute;
    bottom: 26px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.countdown-item {
    position: relative;
    text-align: center;
    min-width: 120px;
}

.countdown-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
    margin: 0 auto 1rem;
    background: rgba(0, 168, 107, 0.05);
    border: 2px solid rgba(0, 168, 107, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        var(--primary-green) 0deg,
        var(--primary-green) var(--progress, 0deg),
        rgba(255, 255, 255, 0.1) var(--progress, 0deg)
    );
    z-index: -1;
}

.countdown-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.9);
    z-index: -1;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-text);
    z-index: 1;
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ================= Modern Venue Page Design ================= */
.venue-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.venue-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="venue-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,168,107,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(0,168,107,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(0,102,204,0.02)"/><circle cx="10" cy="50" r="0.5" fill="rgba(0,102,204,0.02)"/><circle cx="90" cy="30" r="0.5" fill="rgba(0,102,204,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23venue-pattern)"/></svg>');
    pointer-events: none;
}

.venue-section .container {
    position: relative;
    z-index: 2;
}

/* Venue Cards */
.venue-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid rgba(0, 168, 107, 0.1);
    position: relative;
}

.venue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background:#0066cc;
    background-size: 300% 100%;
    animation: gradientShift 8s ease infinite;
    z-index: 2;
}

.venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

/* Reverse Layout for Alternating Cards */
.venue-card--reverse {
    flex-direction: column;
}

.venue-card--reverse .venue-card__content,
.venue-card--reverse .venue-card__map {
    direction: ltr;
}

/* Venue Card Image and Content Row */
.venue-card__top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

/* Always keep image on left, content on right */
.venue-card--reverse .venue-card__top-row {
    direction: ltr;
}

.venue-card--reverse .venue-card__top-row .venue-card__content,
.venue-card--reverse .venue-card__top-row .venue-card__image {
    direction: ltr;
}

.venue-card--reverse .venue-card__top-row .venue-card__image {
    order: 1;
}

.venue-card--reverse .venue-card__top-row .venue-card__content {
    order: 2;
}

/* Venue Card Image */
.venue-card__image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    border-radius: 25px 0 0 25px;
}

.venue-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
    filter: brightness(1.05) contrast(1.05);
}

.venue-card:hover .venue-card__image img {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.1);
}

.venue-card__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.1), rgba(0, 102, 204, 0.1));
    opacity: 0;
    transition: opacity 0.6s ease;
}

.venue-card:hover .venue-card__image-overlay {
    opacity: 1;
}

/* Venue Card Content */
.venue-card__content {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 0 25px 25px 0;
}

.venue-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d4d4, var(--primary-blue));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 12px 25px rgba(0, 168, 107, 0.25);
    transition: all 0.4s ease;
}

.venue-card__icon svg {
    color: white;
    width: 35px;
    height: 35px;
}

.venue-card:hover .venue-card__icon {
    transform: translateY(-3px) rotate(3deg);
    box-shadow: 0 15px 35px rgba(0, 168, 107, 0.35);
}

.venue-card__title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #00d4d4, var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.venue-card:hover .venue-card__title {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary-blue), #061a2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.venue-card__desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 25px;
    opacity: 0.9;
}

.venue-card__address {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 500;
    padding: 18px;
    background: rgba(0, 168, 107, 0.08);
    border-radius: 12px;
    border-left: 4px solid #0066cc;
    transition: all 0.4s ease;
    margin-top: auto;
}

.venue-card__address svg {
    color: #0066cc;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.venue-card:hover .venue-card__address {
    background: rgba(0, 168, 107, 0.12);
    transform: translateX(3px);
}

/* Venue Card Map - Full Width */
.venue-card__map {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: #f8f9fa;
    border-radius: 0 25px 25px 0;
}

.venue-card__map iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: all 0.6s ease;
}

.venue-card:hover .venue-card__map iframe {
    transform: scale(1.01);
}

/* Cards without map - full width layout */
.venue-card:not(:has(.venue-card__map)) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.venue-card:not(:has(.venue-card__map)) .venue-card__image {
    border-radius: 25px 0 0 25px;
}

.venue-card:not(:has(.venue-card__map)) .venue-card__content {
    border-radius: 0 25px 25px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.venue-card--reverse:not(:has(.venue-card__map)) .venue-card__image {
    border-radius: 25px 0 0 25px;
}

.venue-card--reverse:not(:has(.venue-card__map)) .venue-card__content {
    border-radius: 0 25px 25px 0;
}

.venue-card--reverse .venue-card__map {
    border-radius: 25px 0 0 25px;
}

/* Coming Soon Section */
.coming-soon-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 15px 35px rgba(0, 168, 107, 0.25);
    animation: floatAnimation 6s ease-in-out infinite;
}

.coming-soon-icon i {
    color: white;
    font-size: 2.5rem;
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.coming-soon-text {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .venue-card {
        margin-bottom: 50px;
        min-height: auto;
    }
    
    .venue-card__top-row {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .venue-card--reverse .venue-card__top-row {
        direction: ltr;
    }
    
    .venue-card--reverse .venue-card__top-row .venue-card__image {
        order: 1;
    }
    
    .venue-card--reverse .venue-card__top-row .venue-card__content {
        order: 2;
    }
    
    .venue-card__image {
        min-height: 300px;
        border-radius: 25px 25px 0 0;
    }
    
    .venue-card__content {
        padding: 40px 30px;
        border-radius: 0 0 25px 25px;
    }
    
    .venue-card__map {
        height: 400px;
        border-radius: 0 0 25px 25px;
    }
    
    .venue-card__title {
        font-size: 1.8rem;
    }
    
    .venue-card:not(:has(.venue-card__map)) {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .venue-card:not(:has(.venue-card__map)) .venue-card__image {
        border-radius: 25px 25px 0 0;
    }
    
    .venue-card:not(:has(.venue-card__map)) .venue-card__content {
        border-radius: 0 0 25px 25px;
    }
    
    .venue-card--reverse:not(:has(.venue-card__map)) .venue-card__image {
        border-radius: 25px 25px 0 0;
    }
    
    .venue-card--reverse:not(:has(.venue-card__map)) .venue-card__content {
        border-radius: 0 0 25px 25px;
    }
}

@media (max-width: 768px) {
    .venue-section {
        padding: 60px 0;
    }
    
    .venue-card {
        margin-bottom: 40px;
    }
    
    .venue-card__image {
        min-height: 250px;
    }
    
    .venue-card__content {
        padding: 30px 25px;
    }
    
    .venue-card__map {
        height: 280px;
    }
    
    .venue-card__title {
        font-size: 1.6rem;
    }
    
    .venue-card__desc {
        font-size: 0.95rem;
    }
    
    .coming-soon-title {
        font-size: 2.2rem;
    }
    
    .coming-soon-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .venue-section {
        padding: 40px 0;
    }
    
    .venue-card__content {
        padding: 25px 20px;
    }
    
    .venue-card__title {
        font-size: 1.4rem;
    }
    
    .venue-card__icon {
        width: 60px;
        height: 60px;
    }
    
    .venue-card__icon svg {
        width: 30px;
        height: 30px;
    }
    
    .coming-soon-icon {
        width: 80px;
        height: 80px;
    }
    
    .coming-soon-icon i {
        font-size: 2rem;
    }
    
    .coming-soon-title {
        font-size: 1.8rem;
    }
    
    .coming-soon-text {
        font-size: 1rem;
    }
}

/* ================= Innovative Member Cards Design ================= */
.MemberData {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.MemberData::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,168,107,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(0,168,107,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(0,102,204,0.02)"/><circle cx="10" cy="50" r="0.5" fill="rgba(0,102,204,0.02)"/><circle cx="90" cy="30" r="0.5" fill="rgba(0,102,204,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.member-card {
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 30px;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.member-header {
    background: linear-gradient(135deg, #2c5f7c 0%, #6a4c93 100%);
    height: 120px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.member-profile-wrapper {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid #0066cc;
    background: #fff;
    padding: 3px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.member-content {
    padding: 80px 20px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    background: #f8f9fa;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5f7c;
    margin-bottom: 8px;
    line-height: 1.2;
}

.member-position {
    font-size: 0.95rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 4px;
    line-height: 1.3;
}

.member-title {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.4;
    flex: 1;
}

.member-bio-btn {
    background: linear-gradient(135deg, #2c5f7c 0%, #6a4c93 100%);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.member-bio-btn:hover {
    background: linear-gradient(135deg, #234d63 0%, #5a3f7a 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 95, 124, 0.3);
}

/* Sponsor Cards Styling */
.sponsor-card {
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 30px;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.sponsor-header {
    background: linear-gradient(135deg, #2c5f7c 0%, #6a4c93 100%);
    height: 160px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sponsor-logo-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sponsor-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.sponsor-card:hover .sponsor-logo {
    transform: scale(1.05);
}

.sponsor-content {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    background: #f8f9fa;
}

.sponsor-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5f7c;
    margin-bottom: 12px;
    line-height: 1.2;
}

.sponsor-description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
}

.sponsor-website-btn {
    background: linear-gradient(135deg, #2c5f7c 0%, #6a4c93 100%);
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.sponsor-website-btn:hover {
    background: linear-gradient(135deg, #234d63 0%, #5a3f7a 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 95, 124, 0.3);
}

/* Contact Info Card */
.contact-info-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    max-width: 600px;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f7c;
    margin-bottom: 15px;
    text-align: center;
}

.contact-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #234d63 0%, #5a3f7a 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 95, 124, 0.3);
}

.email-btn:hover {
    box-shadow: 0 5px 15px rgba(0, 168, 107, 0.3);
}

.phone-btn:hover {
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* Media Partners Horizontal Logo Layout */
.media-partners-logos-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 0 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-color: rgba(0,212,212,.3) transparent;
}

.media-partners-logos-horizontal::-webkit-scrollbar {
    height: 6px;
}

.media-partners-logos-horizontal::-webkit-scrollbar-track {
    background: rgba(0,212,212,.1);
    border-radius: 3px;
}

.media-partners-logos-horizontal::-webkit-scrollbar-thumb {
    background: rgba(0,212,212,.3);
    border-radius: 3px;
}

.media-partners-logos-horizontal::-webkit-scrollbar-thumb:hover {
    background: rgba(0,212,212,.5);
}

.media-partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    min-width: 130px;
    height: 65px;
    background: #ffffff;
    border: 1px solid rgba(0,212,212,.2);
    border-radius: 12px;
    transition: transform .3s ease, box-shadow .3s ease;
    flex-shrink: 0;
}

.media-partner-logo-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,.25), 0 8px 20px rgba(0,212,212,.6);
    border-color: rgba(0,212,212,.8);
    background: linear-gradient(135deg, #ffffff 0%, #e8f4fd 100%);
}

.media-partner-logo-item img {
    max-height: 60px;
    max-width: 140px;
    object-fit: contain;
    transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter .4s ease;
}

.media-partner-logo-item:hover img {
    transform: scale(1.12) rotate(2deg);
    filter: brightness(1.15) contrast(1.1) saturate(1.2);
}

/* Responsive Design for Media Partners */
@media (max-width: 768px) {
    .media-partners-logos-horizontal {
        gap: 18px;
        padding: 0 12px;
    }
    .media-partner-logo-item {
        padding: 14px 18px;
        min-width: 130px;
        height: 65px;
    }
    .media-partner-logo-item img {
        max-height: 48px;
        max-width: 115px;
    }
}

@media (max-width: 480px) {
    .media-partners-logos-horizontal {
        gap: 12px;
        padding: 0 8px;
    }
    .media-partner-logo-item {
        padding: 10px 12px;
        min-width: 110px;
        height: 55px;
    }
    .media-partner-logo-item img {
        max-height: 40px;
        max-width: 90px;
    }
}



/* Bio Modal Redesign */
.bio-modal .modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.bio-modal .modal-header {
    background: linear-gradient(135deg, #2c5f7c 0%, #6a4c93 100%);
    color: #fff;
    border: none;
    padding: 30px 35px;
    position: relative;
}

.bio-modal .modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue), #00a86b, #0066cc, var(--primary-green));
    background-size: 300% 100%;
    animation: gradientShift 8s ease infinite;
}

.bio-modal .modal-title {
    font-weight: 800;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bio-modal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.bio-modal .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.bio-modal .modal-body {
    padding: 20px 35px 45px;
    background: #f8f9fa;
}

.bio-photo-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid #0066cc;
    background: #fff;
    padding: 3px;
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.bio-photo-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.bio-photo-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.bio-photo-wrapper:hover img {
    transform: scale(1.05);
}

.bio-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: justify;
}

.bio-content h3 {
    color: #2c5f7c;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.bio-content h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Grid Layout Fixes */
.MemberData .row {
    margin: 0 -20px;
}

.MemberData .row > [class*="col-"] {
    padding: 0 20px;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .member-card {
        margin-bottom: 30px;
    }
    
    .member-image-wrapper {
        height: 220px;
    }
    
    .member-content {
        padding: 30px 25px;
    }
    
    .member-name {
        font-size: 1.4rem;
    }
    
    .member-position {
        font-size: 1.1rem;
    }
    
    .bio-modal .modal-body {
        padding: 35px 25px;
    }
    
    .MemberData .row {
        margin: 0 -15px;
    }
    
    .MemberData .row > [class*="col-"] {
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    .MemberData {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .MemberData {
        padding: 40px 0;
    }
    
    .member-image-wrapper {
        height: 180px;
    }
    
    .member-content {
        padding: 25px 20px;
    }
    
    .member-card {
        margin-bottom: 25px;
    }
    
    .MemberData .row > [class*="col-"] {
        margin-bottom: 25px;
    }
    
    .member-name {
        font-size: 1.3rem;
    }
    
    .member-bio-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
.countdown-circle .dot {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    top: 50%;
    left: 50%;
    transform-origin: center;
}

.countdown-circle .dot.active {
    background: var(--primary-green);
    box-shadow: 0 0 8px var(--primary-green);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-section {
    padding: 40px 0;
    color: #333;
}

.about-content {
    padding-right: 3rem;
}

.about-subtitle {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0;
    line-height: 1.2;
}

.about-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.about-text {
    font-family: 'Exo', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.about-text strong {
    color: #333;
}

.about-collage {
    display: flex;
    justify-content: center;
    align-items: center;
}

.collage-circle {
    position: relative;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.collage-quadrant {
    position: absolute;
    width: calc(50% - 5px);
    height: calc(50% - 5px);
    overflow: hidden;
    cursor: pointer;
}

.collage-quadrant::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.5), rgba(0, 102, 204, 0.5));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.collage-quadrant:hover::after {
    opacity: 1;
}

.collage-quadrant img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.collage-quadrant:hover img {
    transform: scale(1.08);
}

.q-top-left {
    top: 0;
    left: 0;
    border-radius: 310px 0 0 0;
}

.q-top-right {
    top: 0;
    right: 3px;
    border-radius: 0 310px 0 0;
}

.q-bottom-left {
    bottom: 3px;
    left: 0;
    border-radius: 0 0 0 310px;
}

.q-bottom-right {
    bottom: 3px;
    right: 3px;
    border-radius: 0 0 310px 0;
}

.collage-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 0 5px #fff;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.collage-center:hover {
    background: #f3f3f3;
    box-shadow: 0 0 0 5px var(--primary-green);
}

.collage-center img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* Chairman Section */
.chairman-section {
    position: relative;
    padding: 30px 0 80px;
    background: #ffffff;
}

.chairman-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.chairman-bg-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chairman-section .container {
    position: relative;
    z-index: 1;
}

.chairman-content {
    padding-right: 3rem;
}

.chairman-subtitle {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0;
    line-height: 1.2;
}

.chairman-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.chairman-text {
    font-family: 'Exo', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.chairman-text strong {
    color: #333;
}

.chairman-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chairman-image-circle {
    width: 280px;
    height: 280px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 0;
}

.chairman-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.chairman-section::before {
    content: '';
    position: absolute;
    top: -400px;
    left: 0;
    right: 0;
    background: url(../images/service-bg-shape.svg) no-repeat;
    background-position: top center;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.chairman-info {
    background: #0C7F44;
    color: #fff;
    text-align: center;
    padding: 15px 30px;
    border-radius: 0 0 20px 20px;
    width: 280px;
    margin-top: -30px;
    position: relative;
    z-index: 1;
}

.chairman-role {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.chairman-designation {
    font-family: 'Exo', sans-serif;
    font-size: 0.8rem;
    margin-bottom: 2px;
    opacity: 0.9;
}

/* Conference Highlights Section */
.highlights-section {
    padding: 0 0 80px;
       background: #e5eaec;
}

.highlights-header {
    text-align: center;
    margin-bottom: 50px;
}

.highlights-subtitle {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.highlights-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #222;
}

.highlight-card {
    background: #fff;
    background-image: url(../images/feature-bg-shape.png);
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background 0.4s ease, transform 0.4s ease;
}

.highlight-card:hover .highlight-icon {
    background: var(--primary-red);
    transform: scale(1.1);
}

.highlight-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.highlight-card-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 12px;
}

.highlight-card-text {
    font-family: 'Exo', sans-serif;
    font-size: 0.85rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.highlight-link {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: #222;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.highlight-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-link {
    color: var(--primary-green);
}

.highlight-card:hover .highlight-link i {
    transform: translateX(5px);
}

/* Why Attend Section */
.why-attend-section {
    padding: 80px 0;
    background: #ffffff;
}

.why-attend-images {
    padding-right: 2rem;
}

.why-img-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-template-rows: 2fr 3fr;
    gap: 10px;
    border-radius: 20px;
    overflow: hidden;
    height: 550px;
}

.why-img-item {
    overflow: hidden;
    position: relative;
}

.why-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-img-item:hover img {
    transform: scale(1.08);
}

.why-img-1 {
    border-radius: 20px 0 0 0;
}

.why-img-2 {
    border-radius: 0 20px 0 0;
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}

.why-img-3 {
    border-radius: 0 0 0 20px;
    grid-row: 2 / 3;
    grid-column: 1 / 2;
}

.why-img-4 {
    border-radius: 0 0 20px 0;
    grid-row: 2 / 3;
    grid-column: 2 / 3;
}

.why-attend-content {
    padding-left: 1rem;
}

.why-attend-subtitle {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.why-attend-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.why-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #e8e8e8;
    background: transparent;
    margin-bottom: 5px;
}

.why-accordion .accordion-item:last-child {
    border-bottom: none;
}

.why-accordion .accordion-button {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #333;
    background: #f0f4f5;
    border-radius: 8px !important;
    padding: 14px 20px;
    box-shadow: none;
    gap: 12px;
    transition: background 0.3s ease, color 0.3s ease;
}

.why-accordion .accordion-button:not(.collapsed) {
    background: #0C7F44;
    color: #fff;
    box-shadow: none;
    border-radius: 8px 8px 0 0 !important;
}

.why-accordion .accordion-button:focus {
    box-shadow: none;
}

.why-accordion .accordion-button i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.why-accordion .accordion-button:not(.collapsed) i {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.why-accordion .accordion-button.collapsed i {
    background: var(--primary-green);
    color: #fff;
}

.why-accordion .accordion-button::after {
    filter: none;
    transition: transform 0.3s ease;
}

.why-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.why-accordion .accordion-body {
    font-family: 'Exo', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #fff;
    background: #0C7F44;
    padding: 0 20px 16px;
    border-radius: 0 0 8px 8px;
}

/* Who Should Attend Section */
.who-attend-section {
    background: #0C7F44;
    overflow: hidden;
}

.who-attend-image {
    height: 100%;
    min-height: 450px;
}

.who-attend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-attend-content {
    padding: 60px 50px;
    color: #fff;
}

.who-attend-subtitle {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #E52324;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.who-attend-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.who-attend-text {
    font-family: 'Exo', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.who-attend-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.who-attend-list ul li {
    font-family: 'Exo', sans-serif;
    font-size: 0.9rem;
    color: #fff;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.who-attend-list ul li i {
    color: #E52324;
    font-size: 0.85rem;
}

/* Sponsors Section */
.sponsors-section {
    padding: 80px 0;
    background: #ffffff;
}

.sponsors-header {
    text-align: center;
}

.sponsors-subtitle {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.sponsors-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #222;
}

.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.sponsor-item {
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.sponsor-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(0);
    opacity: 1;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.sponsor-item:hover img {
    filter: grayscale(100%);
    opacity: 1;
}

/* Footer */
.site-footer {
    background: #811314;
    padding: 16px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-text {
    font-family: 'Exo', sans-serif;
    font-size: 0.9rem;
    color: #fff;
    margin: 0;
}

.footer-text a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: #fff;
}

/* Inner Pages */
.inner-navbar {
    background: #0a1628 !important;
    backdrop-filter: none;
    border-bottom: none;
    padding: 6px 0 30px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.page-banner {
    background: url('../images/53R1LQ.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 50px;
    text-align: center;
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.85);
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.page-banner .breadcrumb {
    justify-content: center;
    margin: 0;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
    font-family: 'Exo', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.page-banner .breadcrumb-item.active {
    color: var(--primary-green);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive Design for Page Banner */
@media (max-width: 1200px) {
    .page-banner {
        padding: 100px 0 40px;
    }
    
    .page-banner h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 1024px) {
    .page-banner {
        padding: 80px 0 35px;
    }
    
    .page-banner h1 {
        font-size: 2.2rem;
    }
    
    .page-banner .breadcrumb {
        margin-top: 5px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 60px 0 30px;
    }
    
    .page-banner h1 {
        font-size: 1.8rem;
    }
    
    .page-banner .breadcrumb {
        margin-top: 10px;
    }
    
    .page-banner .breadcrumb-item,
    .page-banner .breadcrumb-item a {
        font-size: 0.85rem;
    }
}

.coming-soon-section {
    padding: 100px 0;
    background: #fff;
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.coming-soon-icon {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.coming-soon-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 15px;
}

.coming-soon-text {
    font-family: 'Exo', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-info {
    padding: 20px 0;
}

.contact-logo {
    margin-bottom: 25px;
}

.contact-logo img {
    max-width: 180px;
}

.contact-coordinator-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 15px;
}

.contact-details p {
    font-family: 'Exo', sans-serif;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details p i {
    color: #555;
    font-size: 0.85rem;
    width: 16px;
}

.contact-details p a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details p a:hover {
    color: var(--primary-green);
}

.contact-form-wrapper {
    padding: 0 0 0 20px;
}

.contact-form-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #222;
    margin-bottom: 5px;
}

.contact-form-subtitle {
    font-family: 'Exo', sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 5px;
}

.contact-form-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #dc143c, #e74c3c);
    margin-bottom: 30px;
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.contact-form .form-control {
    font-family: 'Exo', sans-serif;
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 12px 40px 12px 15px;
    font-size: 0.95rem;
    color: #333;
    background: transparent;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-bottom-color: var(--primary-green);
}

.contact-form .form-control::placeholder {
    color: #aaa;
}

.contact-form .form-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    font-size: 0.9rem;
}

.contact-form .form-group:last-of-type i {
    top: 30px;
}

.contact-form textarea.form-control {
    resize: none;
}

.contact-submit-btn {
    background: linear-gradient(45deg, #0A5D3F, var(--primary-green));
    color: #fff;
    border: none;
    padding: 12px 35px;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 107, 0.3);
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 300px;
    }
    
    .countdown {
        gap: 2rem;
    }
    
    .countdown-item {
        min-width: 100px;
    }
    
    .countdown-circle {
        width: 80px;
        height: 80px;
    }
    
    .countdown-circle::after {
        width: 60px;
        height: 60px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .navbar-nav .nav-link:not(:last-child)::after {
        display: none;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }

    .collage-circle {
        width: 300px;
        height: 300px;
    }

    .q-top-left { border-radius: 150px 0 0 0; }
    .q-top-right { border-radius: 0 150px 0 0; }
    .q-bottom-left { border-radius: 0 0 0 150px; }
    .q-bottom-right { border-radius: 0 0 150px 0; }

    .collage-center {
        width: 75px;
        height: 75px;
    }

    .collage-center img {
        width: 50px;
        height: 50px;
    }

    .chairman-content {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }

    .chairman-image-circle {
        width: 220px;
        height: 220px;
    }

    .chairman-info {
        width: 200px;
    }

    .why-attend-images {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .why-img-grid {
        height: 350px;
    }

    .why-attend-content {
        padding-left: 0;
    }

    .who-attend-image {
        min-height: 300px;
    }

    .who-attend-content {
        padding: 40px 20px;
    }

    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-wrapper {
        padding: 30px 0 0;
    }

    .contact-info {
        text-align: center;
    }

    .contact-details p {
        justify-content: center;
    }
}
