: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: linear-gradient(45deg, #0A5D3F, var(--primary-green));
    border: none;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: 25px;
    transition: transform 0.3s;
    color: #fff;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 107, 0.3);
}

.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: linear-gradient(90deg, var(--primary-green), var(--primary-blue), #00a86b, #0066cc, var(--primary-green));
    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, var(--primary-green), 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, var(--primary-green), 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), var(--primary-green));
    -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 var(--primary-green);
    transition: all 0.4s ease;
    margin-top: auto;
}

.venue-card__address svg {
    color: var(--primary-green);
    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: 400px;
    width: 100%;
    overflow: hidden;
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 168, 107, 0.1);
}

.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;
}

/* 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: 350px;
        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;
}


/* Bio Modal Redesign */
.bio-modal .modal-content {
    border-radius: 25px;
    border: none;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.bio-modal .modal-header {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    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: 45px 35px;
    background: rgba(255, 255, 255, 0.98);
}

.bio-photo-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    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: auto;
    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: var(--primary-green);
    font-weight: 800;
    margin-bottom: 20px;
    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;
}

/* ================= Innovative Member Card Design - Screenshot Style ================= */
.member-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 80%;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 60px;
    margin-top: 60px;
    border: none;
    transform: translateY(-10px);
}

/* Static L-Shaped Corner Borders - Visible by default */
.member-card::before {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 60px;
    height: 60px;
    border-top: 4px solid #0d8546;
    border-right: 4px solid #0d8546;
    border-radius: 0 12px 0 0;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.member-card::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: -4px;
    width: 60px;
    height: 60px;
    border-bottom: 4px solid #c71e20;
    border-left: 4px solid #c71e20;
    border-radius: 0 0 0 12px;
    z-index: 2;
    transition: opacity 0.3s ease;
}

/* Traveling border wrapper */
.member-card .traveling-border {
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    overflow: hidden;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Large rotating square with a narrow green-red line */
.member-card .traveling-border::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%) rotate(0deg);
    background: conic-gradient(
        #0d8546 0deg,
        #c71e20 30deg,
        transparent 60deg,
        transparent 360deg
    );
}

/* Inner white mask - leaves only the border line visible */
.member-card .traveling-border::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: #ffffff;
    border-radius: 12px;
    z-index: 1;
}

/* Rotation keyframes */
@keyframes travelLine {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* On hover: show traveling border, hide static corners */
.member-card:hover .traveling-border {
    opacity: 1;
}

.member-card:hover .traveling-border::before {
    animation: travelLine 2s linear infinite;
}

.member-card:hover::before,
.member-card:hover::after {
    opacity: 0;
}

.member-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Image Container - holds both circular image and flag */
.member-image-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: -60px auto 0;
    z-index: 10;
}

/* Circular Image - Overlapping Top */
.member-image-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.member-card:hover .member-image {
    transform: scale(1.1);
}

/* Flag positioned outside image wrapper, at bottom-right of container */
.member-flag {
    position: absolute;
    bottom: 10px;
    right: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    z-index: 12;
    transition: all 0.3s ease;
}

.member-card:hover .member-flag {
    transform: scale(1.1);
}

/* Content Area */
.member-content {
    padding: 20px 25px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    background: #ffffff;
    border-radius: 12px;
    position: relative;
    z-index: 3;
}

/* Name Styling - Bold and Centered */
.member-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 0;
    line-height: 1.3;
    text-align: center;
}

.member-card:hover .member-name {
    color: #0d8546;
}

/* Position Text */
.member-position {
    font-size: 1rem;
    font-weight: 600;
    color: #0d8546;
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Title/Description */
.member-title {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    text-align: center;
}

/* View Bio Button - Green #0d8546 */
.member-bio-btn {
    background: transparent;
    color: #0d8546;
    border: 2px solid #0d8546;
    padding: 10px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto;
    display: inline-block;
}

.member-bio-btn:hover {
    background: #0d8546;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 133, 70, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .member-name {
        font-size: 1.35rem;
    }
    
    .member-position {
        font-size: 1.05rem;
    }
    
    .member-bio-btn {
        padding: 12px 28px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .member-card {
        margin-bottom: 25px;
        border-radius: 20px;
    }
    
    .member-image-wrapper {
        height: 200px;
    }
    
    .member-content {
        padding: 24px 20px 20px;
    }
    
    .member-name {
        font-size: 1.25rem;
    }
    
    .member-position {
        font-size: 1rem;
    }
    
    .member-title {
        font-size: 0.9rem;
    }
    
    .member-bio-btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }
    
    .member-flag {
        width: 40px;
        height: 40px;
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 576px) {
    .member-card {
        margin-bottom: 20px;
    }
    
    .member-image-wrapper {
        height: 180px;
    }
    
    .member-content {
        padding: 20px 16px 16px;
    }
    
    .member-name {
        font-size: 1.15rem;
    }
    
    .member-position {
        font-size: 0.95rem;
    }
    
    .member-bio-btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
}

@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);
}

.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;
    }
}
