/* =========================================================
ROOT VARIABLES
========================================================= */

:root {
    --primary: #0b5d3b;
    --secondary: #f4b400;
    --dark: #1d1d1d;
    --light: #ffffff;
    --gray: #f5f5f5;
    --text: #444444;
    --transition: all 0.4s ease;
}

/* =========================================================
GLOBAL RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

section {
    padding: 110px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-header p {
    max-width: 700px;
    margin: auto;
    color: #666;
}

/* =========================================================
HEADER
========================================================= */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-area img {
    width: 65px;
}

.logo-area h2 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.logo-area span {
    font-size: 0.85rem;
    color: #666;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav ul li a {
    color: var(--dark);
    font-weight: 600;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: 0.4s;
}

nav ul li a:hover::after {
    width: 100%;
}

.nav-btn {
    background: var(--primary);
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    box-shadow: 0 8px 20px rgba(11, 93, 59, 0.25);
    transition: all 0.4s ease;
}

.nav-btn:hover {
    background: #08412a;
    color: #ffffff !important;
    transform: translateY(-3px);
}

/* =========================================================
MOBILE MENU
========================================================= */

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 9999;
    padding: 40px 30px;
    transition: 0.4s;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    margin-top: 50px;
}

.mobile-menu ul li {
    margin-bottom: 25px;
}

.mobile-menu ul li a {
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 600;
}

/* =========================================================
HERO SECTION
========================================================= */

.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.75),
            rgba(11, 93, 59, 0.75)),
        url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    color: #ffffff !important;
}

.hero-content * {
    color: #ffffff;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: #000000 !important;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 800;
    max-width: 950px;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff !important;
}

.hero-content p {
    max-width: 700px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.92) !important;
    margin-bottom: 40px;
}

.event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.event-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 18px 24px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 220px;
}

.event-card i {
    color: var(--secondary) !important;
    font-size: 1.4rem;
}

.event-card span {
    color: #ffffff !important;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    padding: 15px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.primary-btn {
    background: var(--secondary);
    color: #000000 !important;
}

.primary-btn:hover {
    background: #d99e00;
    transform: translateY(-4px);
}

.secondary-btn {
    border: 2px solid #ffffff;
    color: #ffffff !important;
}

.secondary-btn:hover {
    background: #ffffff;
    color: var(--primary) !important;
}

/* =========================================================
RESPONSIVE HERO
========================================================= */

@media(max-width: 992px) {

    .hero-content h1 {
        font-size: 3rem;
    }

}

@media(max-width: 768px) {

    .hero-section {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .event-details {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

}

@media(max-width: 576px) {

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .event-card {
        width: 100%;
        justify-content: center;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

}

/* =========================================================
ABOUT SECTION
========================================================= */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.about-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 30px;
    height: 350px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border-radius: 30px;
}


.about-image::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--secondary);
    top: -20px;
    left: -20px;
    z-index: 1;
    border-radius: 25px;
}

.about-text h2 {
    font-size: 2.8rem;
    margin: 20px 0;
}

.about-text p {
    color: #666;
}

/* ========================================================= STATISTICS GRID ========================================================= */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-box {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
}

.stat-box h3 {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat-box span {
    color: #555;
    font-weight: 600;
}

/* =========================================================
FOCUS SECTION
========================================================= */

.focus-section {
    background: #f9fafb;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.focus-card {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.focus-card:hover {
    transform: translateY(-10px);
}

.focus-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.focus-card h3 {
    margin-bottom: 15px;
}

.focus-card p {
    color: #666;
}

/* =========================================================
AGENDA SECTION
========================================================= */

.timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: translateX(-50%);
}

.timeline-item {
    width: 50%;
    position: relative;
    padding: 20px 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.timeline-content span {
    color: var(--secondary);
    font-weight: bold;
    display: inline-block;
    margin-bottom: 12px;
}

.timeline-content h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* =========================================================
SPEAKERS SECTION
========================================================= */

.speakers-section {
    background: #f9fafb;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.speaker-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.speaker-card:hover {
    transform: translateY(-10px);
}

.speaker-image {
    height: 320px;
    overflow: hidden;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.speaker-card:hover img {
    transform: scale(1.08);
}

.speaker-content {
    padding: 25px;
}

.speaker-content h3 {
    margin-bottom: 8px;
}

.speaker-content p {
    color: #666;
}

/* =========================================================
REGISTRATION SECTION
========================================================= */

.registration-section {
    background: linear-gradient(135deg,
            var(--primary),
            #062d1d);
    color: white;
}

.registration-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.registration-form {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    outline: none;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: var(--secondary);
    color: black;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: #d99e00;
}

/* =========================================================
CONTACT SECTION
========================================================= */

.contact-section {
    background: #f9fafb;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* =========================================================
FOOTER
========================================================= */

.main-footer {
    background: #111;
    color: white;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 60px;
}

.main-footer h3,
.main-footer h4 {
    margin-bottom: 20px;
}

.main-footer p {
    color: #ccc;
}

.main-footer ul li {
    margin-bottom: 12px;
}

.main-footer ul li a {
    color: #ccc;
}

.main-footer ul li a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #999;
}

/* =========================================================
ANIMATIONS
========================================================= */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.fade-up {
    animation: fadeUp 1s ease forwards;
}

@keyframes spin {

    100% {
        transform: rotate(360deg);
    }

}

/* =========================================================
SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #eee;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
}

/* =========================================================
RESPONSIVE DESIGN
========================================================= */

@media(max-width:1200px) {

    .focus-grid,
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:992px) {

    nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .about-grid,
    .registration-wrapper,
    .footer-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 60px;
    }

}

@media(max-width:768px) {

    section {
        padding: 80px 0;
    }

    .hero-section {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .event-details {
        justify-content: center;
    }

    .focus-grid,
    .speakers-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .about-text h2,
    .section-header h2 {
        font-size: 2rem;
    }

}

@media(max-width:576px) {

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .event-card {
        width: 100%;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }

    .registration-form {
        padding: 25px;
    }

}

/* ========================================================= RESPONSIVE ========================================================= */
@media(max-width:1200px) {
    .about-text h2 {
        font-size: 3rem;
    }
}

@media(max-width:992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-text {
        text-align: center;
    }
}

@media(max-width:768px) {
    .about-image {
        height: 300px;
    }

    .about-text h2 {
        font-size: 2.3rem;
    }
}

@media(max-width:576px) {
    .about-image {
        height: 250px;
    }

    .minister-info h3 {
        font-size: 1.4rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 2rem;
    }
}

.about-image-wrapper {
    position: relative;
}

.minister-info {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.minister-info h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.minister-info p {
    color: #555;
    line-height: 1.9;
    font-size: 1rem;
}

/* ========================================================= RIGHT SIDE CONTENT ========================================================= */
.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-text h2 {
    font-size: 4rem;
    line-height: 1.3;
    margin: 20px 0;
    color: var(--primary);
    font-weight: 800;
}

.about-text p {
    color: #555;
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 40px;
}

/* =========================================================
COUNTDOWN SECTION
========================================================= */

.countdown-wrapper {
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: left;
    flex-wrap: wrap;
    gap: 25px;
    margin: 50px 0;
}

/* =========================================================
COUNTDOWN CARD
========================================================= */

.countdown-box {
    width: 170px;
    height: 170px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.18),
            rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Glow Effect */

.countdown-box::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(244, 180, 0, 0.08);
    border-radius: 50%;
    top: -80px;
    right: -80px;
}

/* Hover Animation */

.countdown-box:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

/* Numbers */

.countdown-box h2 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Labels */

.countdown-box span {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* =========================================================
EVENT STARTED
========================================================= */

.event-started {
    background: var(--secondary);
    color: #000;
    padding: 25px 45px;
    border-radius: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:768px) {

    .countdown-wrapper {
        gap: 18px;
    }

    .countdown-box {
        width: 130px;
        height: 130px;
    }

    .countdown-box h2 {
        font-size: 3rem;
    }

    .countdown-box span {
        font-size: 0.8rem;
    }

}

@media(max-width:576px) {

    .countdown-box {
        width: 100px;
        height: 100px;
        border-radius: 20px;
    }

    .countdown-box h2 {
        font-size: 2rem;
    }

    .countdown-box span {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

}

/* =========================================================
FOOTER COPYRIGHT
========================================================= */

.footer-bottom {
    text-align: center;
    padding: 25px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #0b0b0b;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    line-height: 1.8;
}

/* =========================================================
FOOTER LINK
========================================================= */

.footer-bottom p a {
    color: var(--secondary);
    font-weight: 600;
    position: relative;
    transition: all 0.4s ease;
    padding-bottom: 3px;
}

/* Animated underline */

.footer-bottom p a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--secondary);
    transition: all 0.4s ease;
}

/* Hover Effect */

.footer-bottom p a:hover {
    color: #ffffff;
}

.footer-bottom p a:hover::after {
    width: 100%;
}

/* =========================================================
DEVELOPER POPUP
========================================================= */

.developer-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
}

/* Active Popup */

.developer-popup.active {
    display: flex;
}

/* Popup Content */

.developer-popup-content {
    width: 100%;
    max-width: 450px;
    background: #ffffff;
    border-radius: 25px;
    padding: 40px 35px;
    position: relative;
    text-align: center;
    animation: popupFade 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Heading */

.developer-popup-content h2 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 2rem;
}

/* Details */

.developer-details p {
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: #444;
    line-height: 1.8;
}

.developer-details strong {
    color: var(--primary);
}

/* Close Button */

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #888;
    transition: 0.3s;
}

.close-popup:hover {
    color: red;
}

/* Popup Animation */

@keyframes popupFade {

    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}



/* =========================================================
PAGE BANNER
========================================================= */

.page-banner {
    padding: 180px 0 100px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.75),
            rgba(11, 93, 59, 0.75)),
        url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #ffffff;
}

.page-banner h1 {
    font-size: 4rem;
    margin: 20px 0;
    font-weight: 800;
}

.page-banner p {
    max-width: 800px;
    margin: auto;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* =========================================================
PAGE BANNER
========================================================= */

.page-banner {
    padding: 180px 0 100px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.75),
            rgba(11, 93, 59, 0.75)),
        url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #ffffff;
}

.page-banner h1 {
    font-size: 4rem;
    margin: 20px 0;
    font-weight: 800;
}

.page-banner p {
    max-width: 800px;
    margin: auto;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* =========================================================
AGENDA NAVIGATION BUTTONS
========================================================= */

.agenda-navigation-section {
    padding: 60px 0 20px;
    background: #ffffff;
}

.agenda-days-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.agenda-day-btn {
    padding: 16px 35px;
    border: none;
    border-radius: 50px;
    background: #f2f2f2;
    color: #333;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.agenda-day-btn:hover {
    transform: translateY(-4px);
}

.agenda-day-btn.active {
    background: var(--primary);
    color: #ffffff;
}

/* =========================================================
AGENDA DAY CONTENT
========================================================= */

.agenda-day-content {
    display: none;
}

.agenda-day-content.active {
    display: block;
}

/* =========================================================
AGENDA SECTION
========================================================= */

.agenda-section {
    padding: 100px 0;
    background: #f8f9fb;
}

.agenda-day-header {
    text-align: center;
    margin-bottom: 70px;
}

.agenda-day-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.agenda-day-header span {
    color: #777;
    font-size: 1rem;
}

/* =========================================================
AGENDA TIMELINE
========================================================= */

.agenda-wrapper {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.agenda-wrapper::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary);
}

.agenda-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.agenda-time {
    min-width: 120px;
    background: var(--primary);
    color: #ffffff;
    padding: 18px 12px;
    border-radius: 16px;
    text-align: center;
    font-weight: 700;
    height: fit-content;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.agenda-content {
    flex: 1;
    background: #ffffff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.agenda-content:hover {
    transform: translateY(-5px);
}

.agenda-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.agenda-content p {
    color: #555;
    line-height: 1.8;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:768px) {

    .page-banner h1 {
        font-size: 2.5rem;
    }

    .agenda-wrapper::before {
        display: none;
    }

    .agenda-item {
        flex-direction: column;
        gap: 20px;
    }

    .agenda-time {
        width: fit-content;
    }

}

/* =========================================================
WHY ATTEND SECTION
========================================================= */

.why-attend-section {
    padding: 100px 0;
    background: #f8f9fb;
}

.why-attend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* =========================================================
WHY CARD
========================================================= */

.why-card {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 28px;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(244, 180, 0, 0.08);
    border-radius: 50%;
    top: -40px;
    right: -40px;
}

.why-card:hover {
    transform: translateY(-10px);
}

.why-icon {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.why-card h3 {
    color: var(--primary);
    margin-bottom: 18px;
    font-size: 1.4rem;
}

.why-card p {
    color: #666;
    line-height: 1.9;
}

/* =========================================================
BENEFITS SECTION
========================================================= */

.conference-benefits {
    padding: 100px 0;
    background: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    align-items: center;
}

.benefits-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.benefits-content h2 {
    font-size: 3rem;
    color: var(--primary);
    margin: 20px 0;
    line-height: 1.3;
}

.benefits-content p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 25px;
}

.benefits-content ul {
    list-style: none;
    margin-bottom: 35px;
}

.benefits-content ul li {
    padding-left: 35px;
    margin-bottom: 18px;
    position: relative;
    color: #444;
}

.benefits-content ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:768px) {

    .benefits-content h2 {
        font-size: 2.2rem;
    }

}

@media(max-width:576px) {

    .benefits-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
SPEAKERS SECTION
========================================================= */

.speakers-section{
    padding: 100px 0;
    background: #f8f9fb;
}

/* =========================================================
SPEAKERS GRID
========================================================= */

.speakers-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
    gap: 35px;
    margin-top: 70px;
}

/* =========================================================
SPEAKER CARD
========================================================= */

.speaker-card{
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    position: relative;
}

.speaker-card:hover{
    transform: translateY(-12px);
}

/* Decorative Shape */

.speaker-card::before{
    content:'';
    position:absolute;
    width:140px;
    height:140px;
    background: rgba(244,180,0,0.08);
    border-radius:50%;
    top:-50px;
    right:-50px;
    z-index:1;
}

/* =========================================================
SPEAKER IMAGE
========================================================= */

.speaker-image{
    height: 350px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.speaker-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.speaker-card:hover .speaker-image img{
    transform: scale(1.05);
}

/* =========================================================
SPEAKER CONTENT
========================================================= */

.speaker-content{
    padding: 35px;
    position: relative;
    z-index: 2;
}

.speaker-content h3{
    color: var(--primary);
    font-size: 1.7rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.speaker-content span{
    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.speaker-content p{
    color: #666;
    line-height: 1.9;
    font-size: 1rem;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:768px){

    .speaker-image{
        height: 300px;
    }

}

@media(max-width:576px){

    .speakers-grid{
        grid-template-columns: 1fr;
    }

    .speaker-image{
        height: 260px;
    }

    .speaker-content h3{
        font-size: 1.4rem;
    }

}
html{
    scroll-behavior: smooth;
}
.footer-contact h4{
    color: var(--secondary);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.footer-contact p{
    color: rgba(255,255,255,0.8);
    line-height: 1.9;
    margin-bottom: 10px;
}

/* =========================================================
REGISTRATION SECTION
========================================================= */

.registration-section{
    padding: 100px 0;
    background: #f8f9fb;
}

.registration-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* =========================================================
LEFT SIDE
========================================================= */

.registration-info h2{
    font-size: 3rem;
    color: var(--primary);
    margin: 20px 0;
    line-height: 1.3;
}

.registration-info p{
    color: #555;
    line-height: 1.9;
    margin-bottom: 35px;
}

.registration-highlights{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-box{
    display: flex;
    align-items: center;
    gap: 18px;
    background: #ffffff;
    padding: 22px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.highlight-box i{
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.highlight-box span{
    font-weight: 700;
    color: #333;
}

/* =========================================================
FORM BOX
========================================================= */

.registration-form-box{
    background: #ffffff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.form-group{
    margin-bottom: 25px;
}

.form-group label{
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--primary);
}

.form-group input{
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #ddd;
    border-radius: 15px;
    outline: none;
    font-size: 1rem;
    transition: 0.3s ease;
}

.form-group input:focus{
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(244,180,0,0.15);
}

.register-btn{
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 18px;
    background: var(--primary);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.4s ease;
}

.register-btn:hover{
    background: var(--secondary);
    color: #000000;
    transform: translateY(-4px);
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:992px){

    .registration-wrapper{
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px){

    .registration-info h2{
        font-size: 2.3rem;
    }

    .registration-form-box{
        padding: 35px;
    }

}

@media(max-width:576px){

    .registration-form-box{
        padding: 25px;
    }

    .registration-info h2{
        font-size: 2rem;
    }

}
.form-group select{
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #ddd;
    border-radius: 15px;
    outline: none;
    font-size: 1rem;
    background: #ffffff;
    transition: 0.3s ease;
    appearance: none;
    cursor: pointer;
}

.form-group select:focus{
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(244,180,0,0.15);
}
/* =========================================================
EMAIL VALIDATION
========================================================= */

.email-hint{
    display:block;
    margin-top:10px;
    color:#777;
    font-size:0.9rem;
    line-height:1.6;
}

.email-error{
    display:block;
    margin-top:10px;
    color:red;
    font-size:0.9rem;
    font-weight:600;
}

/* =========================================================
AJAX RESPONSE MESSAGE
========================================================= */

.response-message{
    margin-bottom:25px;
}

.success-msg{
    background:#d4edda;
    color:#155724;
    padding:18px 20px;
    border-radius:15px;
    font-weight:600;
}

.error-msg{
    background:#f8d7da;
    color:#721c24;
    padding:18px 20px;
    border-radius:15px;
    font-weight:600;
}

/* =========================================================
BUTTON LOADING
========================================================= */

.register-btn:disabled{
    opacity:0.7;
    cursor:not-allowed;
}

/* =========================================================
POPUP OVERLAY
========================================================= */

.popup-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);

    display: none;

    align-items: center;
    justify-content: center;

    z-index: 99999;
}

/* SHOW POPUP */

.popup-overlay.active{
    display: flex;
}

/* =========================================================
POPUP BOX
========================================================= */

.popup-box{
    width: 90%;
    max-width: 450px;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* =========================================================
POPUP ICON
========================================================= */

.popup-icon{
    width: 90px;
    height: 90px;
    margin: auto;
    background: #0b5d3b;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.popup-error{
    background: #dc3545 !important;
}

/* =========================================================
TEXT
========================================================= */

.popup-box h3{
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.popup-box p{
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* =========================================================
BUTTON
========================================================= */

.popup-box button{
    border: none;
    background: var(--primary);
    color: #ffffff;
    padding: 16px 35px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s ease;
}

.popup-box button:hover{
    background: var(--secondary);
    color: #000000;
}
