/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
header {
    background: #0A3D62;
    color: white;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

nav a:hover {
    color: #F4B400;
}

/* ==========================
   HERO SECTION
========================== */

#hero {
    height: 100vh;
    background: url("../images/hero.jpg") center center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(10, 61, 98, 0.55);

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    color: white;
    padding: 20px;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: #F4B400;
    color: #0A3D62;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: white;
}
/* ==========================
   ABOUT SECTION
========================== */

#about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 40px;
    color: #0A3D62;
    margin-bottom: 20px;
}

.about-content h3 {
    font-size: 22px;
    color: #F4B400;
    font-style: italic;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}
/* About - Achievements & Why Choose Us */

.about-extra {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto 0;

    display: flex;
    gap: 40px;
}

.about-box {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.about-box h3 {
    font-size: 26px;
    color: #0A3D62;
    margin-bottom: 20px;
    font-style: normal;
}

.achievement-list,
.choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.achievement-list li,
.choose-list li {
    font-size: 17px;
    color: #555;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    line-height: 1.5;
}

.achievement-list li:last-child,
.choose-list li:last-child {
    border-bottom: none;
}
/* ==========================
   FEATURES SECTION
========================== */

#features {
    padding: 80px 0;
    background: white;
}


.section-title {
    text-align: center;
    margin-bottom: 50px;
}


.section-title h2 {
    font-size: 40px;
    color: #0A3D62;
    margin-bottom: 15px;
}


.section-title p {
    color: #666;
    font-size: 18px;
}


.features-container {

    width: 90%;
    max-width: 1200px;
    margin: auto;

    display: flex;
    justify-content: center;
    gap: 30px;
}


.feature-card {

    flex: 1;
    background: #f8f9fa;

    padding: 40px 25px;
    text-align: center;

    border-radius: 10px;

    transition: 0.3s;
}


.feature-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 10px 25px rgba(0,0,0,0.1);

}


.feature-slider {

    width:100%;
    height:200px;

    object-fit:cover;

    border-radius:10px;

    margin-bottom:20px;

}


.feature-card h3 {

    color: #0A3D62;
    margin-bottom: 15px;

}


.feature-card p {

    color: #666;
    line-height: 1.6;

}
/* ==========================
   GALLERY SECTION
========================== */

#gallery {
    padding: 80px 0;
    background: #f8f9fa;
}


.gallery-container {

    width: 90%;
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}


.gallery-item {

    height: 300px;

    overflow: hidden;

    border-radius: 12px;

}


.gallery-item img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s;

}


.gallery-item:hover img {

    transform: scale(1.1);

}
/* ==========================
   ACTIVITIES SECTION
========================== */

/* #activities {
    padding: 80px 0;
    background: white;
}


.activity-container {

    width: 90%;
    max-width: 1200px;

    margin: auto;

}


.activity-box {

    display: flex;

    align-items: center;

    gap: 50px;

    margin-bottom: 60px;

}


.activity-box.reverse {

    flex-direction: row-reverse;

}


.activity-image {

    flex: 1;

}


.activity-image img {

    width: 100%;

    border-radius: 12px;

}


.activity-text {

    flex: 1;

}


.activity-text h3 {

    font-size: 35px;

    color: #0A3D62;

    margin-bottom: 20px;

}


.activity-text p {

    font-size: 22px;

    color: #666;

    font-style: italic;

    line-height: 1.6;

} */
/* ==========================
   CONTACT SECTION
========================== */

#contact {

    padding: 80px 0;

    background: #f8f9fa;

}



.contact-container {

    width:90%;
    max-width:1200px;

    margin:auto;

    display:flex;

    justify-content:center;

    gap:30px;

}



.contact-card {

    flex:1;

    background:white;

    padding:35px;

    text-align:center;

    border-radius:10px;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);

}



.contact-card h3 {

    color:#0A3D62;

    margin-bottom:15px;

}



.contact-card p {

    color:#666;

    line-height:1.6;

}



.contact-button {

    text-align:center;

    margin-top:40px;

}
/* ==========================
   FOOTER
========================== */


footer {

    background:#0A3D62;

    color:white;

    padding-top:60px;

}



.footer-container {

    width:90%;

    max-width:1200px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    gap:40px;

}



.footer-box {

    flex:1;

}



.footer-box h3 {

    margin-bottom:20px;

    color:#F4B400;

}



.footer-box p {

    line-height:1.7;

    color:#ddd;

}



.footer-box ul {

    list-style:none;

}



.footer-box ul li {

    margin-bottom:10px;

}



.footer-box ul li a {

    color:#ddd;

    text-decoration:none;

}



.footer-box ul li a:hover {

    color:#F4B400;

}



.footer-bottom {

    text-align:center;

    margin-top:40px;

    padding:20px;

    border-top:1px solid rgba(255,255,255,0.2);

}
/* ================================
   INSTAGRAM REELS SECTION
================================ */

.instagram-section {
    padding: 60px 20px;
    background: #f8f9fa;
    text-align: center;
}

.instagram-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #222;
}

.instagram-section p {
    color: #666;
    margin-bottom: 35px;
}

.reels-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;

    align-items: start;
}

.reel {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Instagram embed */

.instagram-media {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto !important;
}

/* ================================
   TABLET
================================ */

@media (max-width: 900px) {

    .reels-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

    .instagram-section {
        padding: 40px 15px;
    }

    .instagram-section h2 {
        font-size: 26px;
    }

    .reels-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}
/* ================================
   TRAINERS SECTION
================================ */

.trainers-section {
    padding: 70px 20px;
    background: #f8f9fa;
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}

.section-heading h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.section-heading p {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
}

.trainers-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.trainer-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.trainer-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.trainer-info {
    padding: 25px;
}

.trainer-info h3 {
    font-size: 25px;
    margin-bottom: 5px;
}

.trainer-info h4 {
    color: #777;
    margin-bottom: 15px;
}

.trainer-info p {
    line-height: 1.6;
    color: #555;
}

.trainer-info h5 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.trainer-info ul {
    padding-left: 20px;
}

.trainer-info li {
    margin-bottom: 8px;
    color: #555;
}


/* ================================
   ONLINE & OFFLINE CLASSES
================================ */

.classes-section {
    padding: 70px 20px;
    background: white;
}

.classes-container {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.class-card {
    padding: 35px;
    border-radius: 12px;
    background: #f8f9fa;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.class-icon {
    font-size: 45px;
    margin-bottom: 15px;
}

.class-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.class-card p {
    line-height: 1.7;
    color: #555;
}

.class-card ul {
    padding-left: 20px;
    margin-top: 20px;
}

.class-card li {
    margin-bottom: 10px;
}

.class-button {
    margin-top: 15px;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    background: #222;
    color: white;
    transition: background 0.3s ease;
}

.class-button:hover {
    background: #444;
}


/* ================================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 768px) {

    .trainers-container,
    .classes-container {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .trainer-card img {
        height: 260px;
    }

    .class-card {
        padding: 25px;
    }
}
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}
@media (max-width: 768px) {
    #hero {
        height: 100svh;
        min-height: 600px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 18px;
    }
}