﻿body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #eef1f5;
}

/* Navbar */
.navbar {
    background: #0a3d62;
    color: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
}

.menu a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0a3d62, #3c6382);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

/* Buttons */
.btn {
    background: #ff7a00;
    color: white;
    padding: 12px 26px;
    margin: 8px;
    display: inline-block;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
}

.btn-outline {
    background: transparent;
    border: 2px solid #ff7a00;
}

/* Info Strip */
.info-strip {
    background: #f1f1f1;
    padding: 10px;
    text-align: center;
}

/* Sections */
.section {
    padding: 50px 40px;
    text-align: center;
    background: #f4f6f9;
}

    .section.alt {
        background: white;
    }

    .section h2 {
        font-size: 28px;
        margin-bottom: 10px;
        position: relative;
    }

        .section h2:after {
            content: "";
            width: 60px;
            height: 3px;
            background: #ff7a00;
            display: block;
            margin: 10px auto;
        }

/* Grid Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Stats */
.stats-section {
    background: #0a3d62;
    color: white;
    padding: 60px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-box h2 {
    font-size: 36px;
    color: #ff7a00;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #ff7a00, #ff5500);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

/* Form */
.input {
    width: 300px;
    padding: 10px;
    margin: 10px;
}

/* Footer */
.footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
}

/* Lists */
.list {
    list-style: none;
    padding: 0;
}

    .list li {
        padding: 8px;
    }

/* Stats Section */
.stats-section {
    background: #0a3d62;
    padding: 70px 20px;
    text-align: center;
    color: white;
}

.stats-title {
    font-size: 28px;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: auto;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
}

    .stat-card:hover {
        background: rgba(255,255,255,0.2);
        transform: translateY(-5px);
    }

.stat-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #ff7a00;
}

.stat-text {
    font-size: 16px;
    opacity: 0.9;
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.partner-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .partner-card:hover {
        transform: translateY(-6px);
    }

    .partner-card img {
        width: 120px;
        height: 120px;
        object-fit: contain;
        margin-bottom: 10px;
    }

    .partner-card.we img {
        width: 220px;
    }
        /* Top section layout */
        .about-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

/* Poster */
.poster-box img {
    width: 100%;
    max-height: 400px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Text */
.about-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Vision Mission */
/* Vision Mission Section */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.vm-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: 0.3s;
}

    .vm-card:hover {
        transform: translateY(-8px);
    }

    .vm-card h3 {
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .vm-card ul {
        padding-left: 18px;
        line-height: 1.8;
    }

/* Icons */
.vm-icon {
    font-size: 32px;
}

/* Top Borders */
.vm-card.vision {
    border-top: 5px solid #ff7a00;
}

.vm-card.mission {
    border-top: 5px solid #0a3d62;
}

/* About grid */
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-img {
    width: 100%;
    border-radius: 12px;
}
.container {
    max-width: 100%;
    margin: auto;
}
/* SMKV Section */
.smkv-section {
    background: #f4f6f9;
}

.smkv-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.smkv-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Highlight boxes */
.smkv-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.highlight-box {
    background: white;
    padding: 12px;
    border-left: 4px solid #ff7a00;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    border-radius: 6px;
    font-size: 14px;
}
.countdown-section {
    background: #f4f6f9;
    padding: 60px 0;
    text-align: center;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.time-box {
    background: #0a3d62;
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 100px;
}

    .time-box span {
        font-size: 28px;
        font-weight: bold;
    }

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.speaker-card {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

    .speaker-card img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

    .gallery-grid img {
        width: 100%;
        border-radius: 8px;
    }

/* Horizontal Scroll Gallery */
.gallery-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px;
}

    .gallery-scroll img {
        width:24%;
height: 320px;
        border-radius: 8px;
        cursor: pointer;
    }

        .gallery-scroll img:hover {
            transform: scale(1.05);
        }

/* Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.modal-content {
    max-width: 70%;
}

.close {
    position: absolute;
    top: 0;
    right: 20px;
    color: white;
    font-size: 35px;
    cursor: pointer;
}

.gallery-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

/* Controls */
.gallery-controls {
    margin-top: 15px;
}

    .gallery-controls button {
        padding: 10px 15px;
        margin: 10px;
        border: none;
        background: #ff7a00;
        color: white;
        cursor: pointer;
    }

/* Grid View */
.gallery-grid-view {
    display: none;
    margin-top: 20px;
}

    .gallery-grid-view img {
        width: 120px;
        margin: 5px;
        cursor: pointer;
    }

.gallery-inner {
    position: relative;
    margin: auto;
    top: 50px;
    width: 80%;
    text-align: center;
    z-index: 2;
}
/* Event Days */
.event-days {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.day-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

    .day-card h3 {
        margin-bottom: 15px;
        border-left: 4px solid #ff7a00;
        padding-left: 10px;
    }

/* Event Items */
.event-item {
    background: #f4f6f9;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 6px;
}

/* Workshops */
.workshop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.workshop-card {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Prize */
.prize-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.prize-card {
    background: linear-gradient(135deg, #0a3d62, #3c6382);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

/* Timeline */
.timeline {
    position: relative;
    margin-top: 40px;
    padding: 0 50px;
}

    .timeline:before {
        content: '';
        position: absolute;
        left: 20px;
        top: 0;
        width: 3px;
        height: 100%;
        background: #0a3d62;
    }

.timeline-day {
    font-size: 22px;
    font-weight: bold;
    margin: 30px 0 10px 0;
    color: #0a3d62;
}

.timeline-item {
    display: flex;
    margin-bottom: 25px;
    position: relative;
}

    .timeline-item:before {
        content: '';
        position: absolute;
        left: -35px;
        top: 5px;
        width: 14px;
        height: 14px;
        background: #ff7a00;
        border-radius: 50%;
    }

.timeline-time {
    width: 120px;
    font-weight: bold;
    color: #ff7a00;
}

.timeline-content {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    width: 85%;
}

    .timeline-content h4 {
        margin: 0;
    }

.page-banner {
    background: linear-gradient(135deg, #0a3d62, #3c6382);
    color: white;
    padding: 60px 0;
    text-align: center;
}
/*Register*/
/* Register Page */
.register-page {
    max-width: 1456px;
    margin: auto;
    text-align: center;
}

.register-info-text {
    text-align: left;
    margin-top: 20px;
    line-height: 1.8;
    font-size: 16px;
    background: #f4f6f9;
    padding: 25px;
    border-radius: 10px;
}

/* Buttons */
.register-buttons {
    margin-top: 30px;
}

.register-btn {
    display: block;
    background: #ff7a00;
    color: white;
    padding: 15px;
    margin: 15px auto;
    width: 70%;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

    .register-btn:hover {
        background: #ff5500;
        transform: translateY(-2px);
    }

.alt-btn {
    background: #0a3d62;
}

    .alt-btn:hover {
        background: #082c46;
    }


/* Hashtags */
.hashtags {
    margin-top: 25px;
    color: #666;
    font-size: 14px;
}

@media only screen and (min-width: 1560px) {
    .navbar { padding: 25px 60px; font-size: 22px;}
    .hero { padding: 70px 20px; }
    h1{ font-size: 55px; margin-block-end: 5px;}
    h2{ font-size: 35px;}
    h3{ font-size: 26px;}
h4{ font-size: 20px;}

    p { font-size: 20px;}
    .btn{font-size: 20px;}
    .info-strip{padding:20px; font-size:22px;}
    .section h2{ font-size:34px;}
    .card{font-size:22px;}
    .stats-title {font-size: 35px;}
    .stat-text { font-size: 22px; padding-top: 5px;}
    .partner-card.we img{width:220px; height:120px;}
    .footer { font-size: 20px; }
    .about-text { font-size: 20px; }
    .vm-card ul { font-size: 20px; }
    .highlight-box { font-size: 18px;}
.register-btn { font-size: 20px;}
.workshop-card { font-size: 20px;}
}