* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI',sans-serif;
}

body {
    background: #020617;
    color: #e5e7eb;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* Hero Sections*/
.hero {
    min-height: 90vh;
    padding: 20px;
    display: flex;
    align-items: center;
    background: url("../images/events/home-banner.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #0E86DD;
    color: #fff;
}

    .btn-primary:hover {
        background: #0369a1;
    }

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

    .btn-outline:hover {
        background-color: #FFF;
        color: #020617;
    }

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    margin: 20px 0;
    font-size: 20px;
}

.hero-info {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    opacity: .9;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 28px;
        font-weight: 700;
        line-height: 1.2;
    }

    .hero-content p {
        margin: 20px 0;
        font-size: 16px;
    }

    .hero {
        min-height: 70vh;
    }
}
/*END - Hero Sections*/

/*Innovation Sections*/
.innovation-section {
    padding: 60px 20px;
    text-align: center;
    background: #ffffff;
}

    .innovation-section h2 {
        color: #005897;
        font-size: 40px;
        margin-bottom: 15px;
        font-weight: 600;
    }

.subtitle {
    color: #434343;
    font-size: 16px;
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto 50px auto;
}

.features {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-box {
    flex: 1;
    min-width: 260px;
    padding: 20px;
}

.icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    padding-bottom: 20px;
}


.feature-box h3 {
    color: #005897;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-box p {
    color: #434343;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    .innovation-section h2 {
        font-size: 28px;
        margin-bottom: 15px;
        line-height: 34px;
    }
}
/*End - Innovation Sections*/

/* Stats Sections*/
.stats-section {
    background: #f3f4f6;
    padding: 40px 20px 80px 20px;
    text-align: center;
}

    .stats-section h2 {
        color: #005897;
        margin-bottom: 40px;
        font-size: 40px;
        font-weight: 600;
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-box {
    background: #ffffff;
    padding: 25px 15px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .stat-box:hover {
        transform: translateY(-4px);
    }

    .stat-box h3 {
        color: #005897;
        font-size: 26px;
        margin-bottom: 8px;
        font-size: 30px;
    }

    .stat-box p {
        font-size: 18px;
        color: #434343;
        font-weight: 600;
    }

/* Responsive */
@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-section h2 {
        font-size: 28px;
        font-weight: 600;
        line-height: 34px;
    }
}

@media (max-width: 500px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
/*End - Stats Sections*/

/*Meeting Sections*/

.highlights-section {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

    .highlights-section h2 {
        color: #005897;
        margin-bottom: 40px;
        font-size: 40px;
        font-weight: 600;
    }

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background: #fff;
    border-radius: 10px;
    padding: 20px 20px 30px 20px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid #c2c2c2;
}

    .card:hover {
        transform: translateY(-5px);
    }

    .card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 12px 12px 0px 0px;
    }

    .card h4 {
        margin: 12px 0 8px;
        color: #005897;
        font-size: 20px;
        font-weight: 600;
    }

    .card p {
        font-size: 16px;
        color: #434343;
        line-height: 1.5;
    }

.card-bluetext {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px !important;
    color: #005897 !important;
    text-decoration: none;
    font-weight: 600;
}

.btn-wrap {
    margin-top: 40px;
}

.view-btn {
    background: #005897;
    color: #fff;
    padding: 12px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
    .card-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .highlights-section h2 {
        font-size: 28px;
        line-height: 34px;
    }
}

@media (max-width: 600px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}
/*End - Meeting Sections*/

/*Business-leaders*/

.business-leaders {
    background: #f3f4f6;
    padding: 40px 20px 80px 20px;
}

    .business-leaders h2 {
        color: #005897;
        margin-bottom: 40px;
        font-size: 40px;
        font-weight: 600;
        text-align: center;
    }

.business-leaders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.business-leaders-box {
    background: #ffffff;
    padding: 25px 25px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .business-leaders-box:hover {
        transform: translateY(-4px);
    }

    .business-leaders-box h3 {
        color: #005897;
        font-size: 22px !important;
        margin-bottom: 8px;
        font-size: 30px;
        font-weight: 600;
    }

    .business-leaders-box p {
        font-size: 18px !important;
        color: #434343 !important;
        padding-top: 5px;
        padding-bottom: 10px;
    }

/* Responsive */
@media (max-width: 900px) {
    .business-leaders-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .business-leaders h2 {
        font-size: 28px;
    }
}

@media (max-width: 500px) {
    .business-leaders-grid {
        grid-template-columns: 1fr;
    }
}
/*End - Business-leaders*/

/*CTA Sections*/
.summit-section {
    background: url("../images/events/cta.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.summit-content {
    max-width: 900px;
    margin: 0 auto;
}

    .summit-content h1 {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .summit-content p {
        font-size: 20px;
        margin-bottom: 35px;
        opacity: 0.9;
    }

.summit-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    border: none;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary {
    background: #005897;
    color: white;
}

    .btn-primary:hover {
        background: #0f78d1;
    }

.btn-outline {
    border: 2px solid #fff;
    color: white;
    background: transparent;
    6px;
}

    .btn-outline:hover {
        background: #fff;
        color: #000;
    }

/* Overlay */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Overlay */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup Box */
.popup-box {
    width: 95%;
    max-width: 600px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: popupFade 0.25s ease;
}

@keyframes popupFade {
    from {
        transform: translateY(10px) scale(0.98);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Header */
.popup-header {
    background: #005aa7;
    color: white;
    padding: 14px 20px;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Close */
.close-btn {
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
}

/* Body */
.popup-body {
    padding: 25px 30px 30px;
}

    .popup-body p {
        font-size: 18px;
        margin-bottom: 20px;
        color: #222;
    }

/* Inputs */
.popup-box input,
.popup-box textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    font-size: 15px;
    outline: none;
    transition: 0.2s;
}

    .popup-box input:focus,
    .popup-box textarea:focus {
        border-color: #005aa7;
        box-shadow: 0 0 0 3px rgba(0, 90, 167, 0.12);
    }

/* Footer */
.popup-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

/* Submit Button */
.submit-btn {
    background: #005aa7;
    color: white;
    border: none;
    padding: 10px 26px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

    .submit-btn:hover {
        background: #004080;
    }

    .submit-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

.field-error {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: -6px;
    margin-bottom: 8px;
    min-height: 16px;
}

.popup-box input.input-error {
    border-color: #ff6b6b;
}

.form-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid #10b981;
    color: #10b981;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 10px;
}

.form-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .summit-content h1 {
        font-size: 36px;
        margin-bottom: 10px;
        line-height: 40px;
    }
}

/*End - CTA Sections*/
