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

body{
    font-family:'Poppins',sans-serif;
    background:#f5f5f5;
    color:#222;
    line-height:1.6;
}

header{
    background:#7b0f12;
    color:white;
    padding:15px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-area img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
}

.address-area{
    display:flex;
    gap:40px;
    text-align:right;
}

nav{
    background:#111;
    padding:15px;
    text-align:center;
    position:sticky;
    top:0;
}

nav a{
    color:white;
    text-decoration:none;
    margin:0 15px;
    font-weight:600;
}

.hero{
    height:85vh;
    background:linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url('head.png');
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:20px;
}

.hero h2{
    font-size:3rem;
}

.hero p{
    margin:20px 0;
}

.btn{
    background:#7b0f12;
    color:white;
    padding:12px 30px;
    text-decoration:none;
    border-radius:30px;
}

.section{
    padding:70px 8%;
}

.section h2{
    text-align:center;
    margin-bottom:40px;
    font-size:2.2rem;
    color:#7b0f12;
}

.dark{
    background:#1b1b1b;
    color:white;
}

.dark h2{
    color:white;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.about-grid img{
    width:100%;
    border-radius:15px;
}

.vision-box{
    margin-top:20px;
    background:#7b0f12;
    color:white;
    padding:20px;
    border-radius:10px;
}

.hq-box{
    margin-top:20px;
    background:#333;
    color:white;
    padding:20px;
    border-radius:10px;
}

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

.gallery-grid img{
    width:100%;
    border-radius:10px;
    height:250px;
    object-fit:cover;
}

.instructors-container{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap;   /* Keeps both cards in one row */
}

.instructor-card{
    display: flex;
    align-items: center;
    gap: 20px;
    background: #111;
    padding: 20px;
    border-radius: 15px;
    width: 48%;
}

.instructor-card img{
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.instructor-card h3{
    color: #f5b041;
    margin-bottom: 10px;
}

.instructor-card p{
    color: #ddd;
    line-height: 1.6;
}
.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
    gap:20px;
    margin-bottom:30px;
}

.contact-card{
    background:#222;
    color:white;
    padding:20px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.contact-card h3{
    margin-bottom:12px;
    color:#f5b041;
}

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

.gallery-grid img{
    width:100%;
    border-radius:10px;
    height:250px;
    object-fit:cover;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form textarea{
    padding:15px;
    border:none;
    border-radius:8px;
}

.contact-form button{
    padding:15px;
    background:#7b0f12;
    color:white;
    border:none;
    border-radius:8px;
    cursor:pointer;
}

footer{
    background:#000;
    color:white;
    text-align:center;
    padding:20px;
}

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-btn {
    background: none;
    color: white;
    padding: 15px;
    text-decoration: none;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: background 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn {
    background: #7b0f12;
}

.floating-btn:hover {
    opacity: 0.8;
}

@media(max-width:768px){

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

    .instructors-container{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }

    .instructor-card{
        width:100%;
        max-width:100%;
    }

    header{
        display:flex;
        flex-direction:column;
        text-align:center;
        align-items:center;
        justify-content:center;
        gap:20px;
        padding:15px 4%;
    }

    .logo-area{
        flex-direction:column;
        text-align:center;
    }

    .address-area{
        text-align:center;
        flex-direction:column;
        gap:10px;
        width:100%;
    }

    .hero h2{
        font-size:2rem;
    }

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

    .btn{
        padding:12px 24px;
    }

    nav a{
        display:inline-block;
        margin:8px;
    }

    .section{
        padding:50px 5%;
    }

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

    .gallery-grid img{
        height:200px;
    }
}

@media(max-width:480px){
    header{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        text-align:center;
        padding:15px 4%;
        gap:15px;
    }

    .logo-area{
        flex-direction:column;
        text-align:center;
        gap:10px;
    }

    .address-area{
        width:100%;
        gap:10px;
        flex-direction:column;
        text-align:center;
    }

    .hero h2{
        font-size:1.6rem;
    }

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

    nav{
        padding:12px;
    }

    nav a{
        margin:6px 8px;
        font-size:0.95rem;
    }

    .section{
        padding:40px 4%;
    }

    .gallery-grid{
        gap:15px;
    }

    .gallery-grid img{
        height:180px;
    }

    .contact-card{
        padding:16px;
    }

    .contact-form input,
    .contact-form textarea{
        padding:12px;
    }

    .contact-form button{
        padding:14px;
    }

    .instructor-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .instructor-card img{
        width:100%;
        height:auto;
    }

    .floating-buttons{
        bottom:15px;
        right:15px;
    }
}
