* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

.navbar {
    width: 100%;
    display: grid;
    grid-template-columns: 170px 1fr 420px;
    align-items: center;
    padding: 20px 50px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 145px;
    height: auto;
}

.site-title {
    text-align: center;
}

.site-title h2 {
    font-size: 18px;
    font-weight: 700;
    color: #1c315e;
    line-height: 1.4;
    margin: 0;
}

.site-title p {
    margin-top: 6px;
    color: #ff0000;
    font-size: 15px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #111;
    font-size: 18px;
    font-weight: 500;
}

.nav-links a:hover {
    color: #0057b8;
}

.menu-toggle {
    display: none;
}

/* ==================== HERO ==================== */
.hero {
    width: 100%;
    margin-top: -20px;
    padding: 0;
    overflow: hidden;
}

.hero-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

/* ================= ABOUT ================= */

.about {
    padding: 80px 8%;
    background: #fff;
}

.about h2 {
    text-align: center;
    font-size: 48px;
    color: #e60000;
    margin-bottom: 50px;
}

.about-wrapper {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    line-height: 1.9;
    color: #333;
    text-align: justify;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

/* ================= OBJECTIVES ================= */

.objectives {
    padding: 80px 8%;
    background: #fff;
    text-align: center;
}

.objectives h2 {
    font-size: 48px;
    color: #e60000;
    margin-bottom: 70px;
    font-weight: 700;
}

.objectives-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.objective-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon {
    width: 56px;
    height: 56px;
    background: #ff2020;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.icon i {
    color: #fff;
    font-size: 26px;
}

.objective-box p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

/* ==================== GALLERY SECTION ==================== */

.gallery-section {
    padding: 80px 5%;
    background: #fff;
}

.gallery-section h2 {
    text-align: center;
    color: #e60000;
    font-size: 60px;
    margin-bottom: 50px;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* ================= ASSOCIATION ================= */

.association {
    background: #ef1c23;
    padding: 80px 0;
}

.association h2 {
    text-align: center;
    color: #fff;
    font-size: 56px;
    margin-bottom: 45px;
}

.associationSwiper {
    width: 85%;
    margin: auto;
    background: #fff;
    padding: 20px 15px 45px;
    /* pehle 40px 30px 60px */
    border-radius: 12px;
}

.associationSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
    /* pehle 220px */
    padding: 0;
}

.associationSwiper .swiper-slide img {
    max-width: 180px;
    max-height: 110px;
    width: 100%;
    object-fit: contain;
}

.associationSwiper .swiper-pagination {
    bottom: 10px !important;
}

.associationSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #555;
    opacity: .5;
}

.associationSwiper .swiper-pagination-bullet-active {
    background: #000;
    opacity: 1;
}

/* ================= footer ================= */
.footer-bottom {
    width: 100%;
    background: #ef1d25;
    padding: 22px 20px;
    text-align: center;
    position: relative;
}

.footer-bottom .copyright {
    margin: 0;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

footer p {
    margin: 0;
    text-align: center;
}

.saral-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.saral-link:hover {
    text-decoration: underline;
    color: #fff;
}

/* Back to Top Button */
.back-to-top {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: #0d6efd;
    color: #fff;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: .3s;
}

.back-to-top:hover {
    background: #0b5ed7;
}

/* ===========================
   STICKY WHATSAPP BUTTON
=========================== */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    z-index: 9999;
    transition: all .3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20ba5a;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .6);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile */
@media (max-width:768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 30px;
        left: 15px;
        /* Right side chahiye to right:15px */
        bottom: 15px;
    }
}

/* ==================== STATS ==================== */

.stats {
    padding: 90px 8%;
    background: white;
}

.stats h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #0f172a;
}

.stats-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-box {
    background: #f8fafc;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.stat-box h3 {
    color: #e00000;
    font-size: 42px;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 16px;
    color: #1e293b;
}

.contact {
    padding: 80px 8%;
    background: #fff;
}

.contact h2 {
    text-align: center;
    color: red;
    font-size: 48px;
    margin-bottom: 50px;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: auto;
}

.item p,
.item a {
    word-break: break-word;
    overflow-wrap: anywhere;
}

.item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.item i {
    width: 44px;
    height: 44px;
    background: #ff2020;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    flex-shrink: 0;
}

.item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #3f474c;
}

.item p {
    color: #777;
    line-height: 1.8;
    font-size: 18px;
}

.social {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.social a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
}

.fb {
    background: #3b5998;
}

.insta {
    background: #e1306c;
}

.tw {
    background: #1da1f2;
}

.yt {
    background: #ff0000;
}

.wa {
    background: #25D366;
}

/* ==========================================
        TABLET (992px)
========================================== */

@media (max-width:992px) {

    /* ================= NAVBAR ================= */

    .navbar {
        grid-template-columns: 120px 1fr;
        gap: 20px;
        padding: 20px;
    }

    .logo img {
        width: 100px;
    }

    .site-title h2 {
        font-size: 16px;
        line-height: 1.4;
    }

    .site-title p {
        font-size: 13px;
    }

    .nav-links {
        grid-column: 1 / 3;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 15px;
    }

    .nav-links a {
        font-size: 16px;
    }

    /* ================= HERO ================= */

    .hero-img {
        width: 92%;
    }

    .wave-top svg {
        height: 80px;
    }

    /* ================= COMMON ================= */

    .about,
    .objectives,
    .association,
    .stats,
    .contact,
    .gallery-section {
        padding: 70px 5%;
    }

    .about h2,
    .objectives h2,
    .association h2,
    .gallery-section h2,
    .stats h2,
    .contact h2 {
        font-size: 38px;
    }

    /* ================= ABOUT ================= */

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text p {
        font-size: 17px;
    }

    /* ================= OBJECTIVES ================= */

    .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* ================= ASSOCIATION ================= */

    .associationSwiper {
        width: 92%;
    }

    .associationSwiper .swiper-slide {
        height: 170px;
    }

    .associationSwiper .swiper-slide img {
        max-width: 150px;
    }

    /* ================= GALLERY ================= */

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* ================= STATS ================= */

    .stats-list {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ================= CONTACT ================= */

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .item h3 {
        font-size: 22px;
    }

    .item p {
        font-size: 16px;
    }

    .social {
        justify-content: center;
    }

    /* ================= FOOTER ================= */

    .footer,
    .footer-bottom {
        padding: 20px;
    }

    .copyright {
        font-size: 15px;
    }
}

@media (max-width:768px) {

    /* ================= NAVBAR ================= */

    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 12px 15px;
        position: relative;
    }

    .logo img {
        width: 60px;
    }

    .site-title {
        flex: 1;
        text-align: center;
        padding: 0 10px;
    }

    .site-title h2 {
        font-size: 12px;
        line-height: 1.4;
    }

    .site-title p {
        font-size: 11px;
        margin-top: 4px;
    }

    .menu-toggle {
        display: block;
        font-size: 28px;
        color: #ef1c23;
        cursor: pointer;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 8px 15px rgba(0, 0, 0, .1);
        z-index: 999;
        padding: 15px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 8px 0;
    }

    .nav-links li a {
        display: block;
        font-size: 16px;
        padding: 10px;
    }

    /* ================= HERO ================= */

    .wave-top {
        margin-bottom: -15px;
    }

    .wave-top svg {
        height: 55px;
    }

    .hero {
        margin-top: 0;
    }

    .hero-img {
        width: 100%;
    }

    /* ================= COMMON ================= */

    .about,
    .objectives,
    .association,
    .stats,
    .contact,
    .gallery-section {
        padding: 55px 20px;
    }

    .about h2,
    .objectives h2,
    .association h2,
    .gallery-section h2,
    .stats h2,
    .contact h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    /* ================= ABOUT ================= */

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text p {
        font-size: 15px;
        line-height: 1.8;
    }

    .about-image img {
        width: 100%;
    }

    /* ================= OBJECTIVES ================= */

    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .objective-box p {
        font-size: 16px;
    }

    /* ================= ASSOCIATION ================= */

    .associationSwiper {
        width: 95%;
        padding: 25px 15px 50px;
    }

    .associationSwiper .swiper-slide {
        height: 140px;
    }

    .associationSwiper .swiper-slide img {
        max-width: 120px;
        max-height: 80px;
    }

    /* ================= GALLERY ================= */

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* ================= STATS ================= */

    .stats-list {
        grid-template-columns: 1fr;
    }

    .stat-box {
        padding: 25px;
    }

    .stat-box h3 {
        font-size: 34px;
    }

    /* ================= CONTACT ================= */

    .contact-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .item {
        gap: 15px;
    }

    .item h3 {
        font-size: 20px;
    }

    .item p {
        font-size: 15px;
    }

    .social {
        justify-content: center;
        flex-wrap: wrap;
    }

    .social a {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    /* ================= FOOTER ================= */

    .footer,
    .footer-bottom {
        padding: 18px 15px;
    }

    .copyright {
        font-size: 14px;
        line-height: 1.6;
        padding-right: 45px;
    }

    .back-to-top {
        width: 38px;
        height: 38px;
        right: 12px;
    }
}

/* ==========================================
        MOBILE (480px)
========================================== */

@media (max-width:480px) {

    /* ================= NAVBAR ================= */

    .navbar {
        padding: 10px 12px;
    }

    .logo img {
        width: 50px;
        height: auto;
    }

    .site-title {
        padding: 0 8px;
    }

    .site-title h2 {
        font-size: 10px;
        line-height: 1.4;
    }

    .site-title p {
        font-size: 9px;
    }

    .menu-toggle {
        font-size: 24px;
    }

    /* ================= HERO ================= */

    .wave-top svg {
        height: 40px;
    }

    .hero-img {
        width: 100%;
    }

    /* ================= COMMON ================= */

    .about,
    .objectives,
    .association,
    .gallery-section,
    .stats,
    .contact {
        padding: 45px 15px;
    }

    .about h2,
    .objectives h2,
    .association h2,
    .gallery-section h2,
    .stats h2,
    .contact h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }

    /* ================= ABOUT ================= */

    .about-text p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* ================= OBJECTIVES ================= */

    .objectives-grid {
        gap: 25px;
    }

    .icon {
        width: 50px;
        height: 50px;
    }

    .icon i {
        font-size: 20px;
    }

    .objective-box p {
        font-size: 15px;
    }

    /* ================= ASSOCIATION ================= */

    .associationSwiper {
        width: 100%;
        padding: 20px 10px 45px;
    }

    .associationSwiper .swiper-slide {
        height: 120px;
    }

    .associationSwiper .swiper-slide img {
        max-width: 100px;
        max-height: 70px;
    }

    /* ================= GALLERY ================= */

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* ================= STATS ================= */

    .stat-box {
        padding: 20px;
    }

    .stat-box h3 {
        font-size: 28px;
    }

    .stat-box p {
        font-size: 14px;
    }

    /* ================= CONTACT ================= */

    .item {
        gap: 12px;
    }

    .item i {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .item h3 {
        font-size: 18px;
    }

    .item p {
        font-size: 14px;
    }

    .social a {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    /* ================= FOOTER ================= */

    .footer,
    .footer-bottom {
        padding: 15px 10px;
    }

    .copyright {
        font-size: 13px;
        line-height: 1.7;
        padding-right: 40px;
    }

    .back-to-top {
        width: 34px;
        height: 34px;
        right: 10px;
    }
}