.blog-content {
    max-width: 1500px;
    margin: 40px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.blog-content h1 {
    font-size: 32px;
    margin-bottom: 15px;
    margin-top: 20px;
}

.blog-content h2 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 16px;
    margin-bottom: 15px;
}

.blog-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.blog-content ul li {
    margin-bottom: 8px;
}

.blog-content a {
    text-decoration: none;
    font-weight: 500;
}

.blog-content a:hover {
    text-decoration: underline;
}

.blog-content section {
    padding: 15px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 600px) {
    .blog-content {
        padding: 15px;
    }

    .blog-content h1 {
        font-size: 24px;
    }

    .blog-content h2 {
        font-size: 18px;
    }
}

/* ------------------------- */


.footer {
    margin-left: 0 !important;
    border-top: 1px dotted;
}








/* =================================================== */


#hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.hero {
    max-width: 900px;
    text-align: center;
    color: #fff;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.hero-info span {
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    background: #1d4ed8;
}

@media (max-width: 768px) {
    /* #hero {
                    min-height: 70vh;
                    padding: 60px 15px;
                } */

    .hero p {
        font-size: 1rem;
    }

    .hero-info {
        flex-direction: column;
    }

    .hero-info span {
        width: 100%;
    }
}



/* =================================================== */



.secton {
    max-width: 1500px;
    margin: auto;
}


.section-tag {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.about h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.about p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Gallery */
.about-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 30px 0;
}

.about-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.3s;
    cursor: pointer;
}

.about-gallery img:hover {
    transform: scale(1.03);
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 25px;
    border-radius: 15px;
    background: var(--back);
    border: 1px solid var(--rgba);
}

.stat h3 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.stat p {
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .about-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-gallery img {
        height: 150px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}



/* =================================================== */


.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.highlight-card {
    padding: 25px;
    border-radius: 15px;
    /* background: yellow; */
    transition: .3s;
    border: 1px solid var(--rgba);

}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card span {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.highlight-card h3 {
    margin-bottom: 10px;
}

.highlight-card p {
    opacity: .9;
    line-height: 1.6;
}



/* =================================================== */



.gallery-desc {
    margin: 10px 0 30px;
    opacity: .8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform .3s ease;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* =================================================== */


.certificate-desc {
    margin: 10px 0 30px;
    opacity: .8;
}

.certificate-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--rgba);

}

.certificate-info h3 {
    margin-bottom: 10px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 10px;
    text-decoration: none;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
    transition: .3s;
}

.download-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .certificate-box {
        flex-direction: column;
        text-align: center;
    }
}



/* =================================================== */
.organizer-desc {
    margin: 15px auto 35px;
    opacity: .85;
    line-height: 1.8;
}

.organizer-box {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--rgba);
}

.organizer-logo {
    width: 90px;
    height: 90px;
    min-width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border-radius: 20px;
    background: rgba(37, 99, 235, .15);
}

.organizer-info h3 {
    margin-bottom: 10px;
}

.organizer-info p {
    line-height: 1.8;
}

.organizer-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.organizer-stats span {
    padding: 8px 14px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .05);
    font-size: .9rem;
}

.organizer-cta {
    margin-top: 35px;
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, .15), rgba(37, 99, 235, .05));
}

.organizer-cta h3 {
    margin-bottom: 10px;
}

.organizer-cta p {
    margin-bottom: 20px;
    opacity: .85;
}

.visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
}

@media (max-width:768px) {
    .organizer-box {
        flex-direction: column;
        text-align: center;
    }
}


/* =================================================== */


/* =================================================== */