*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#f8f8f8;
    color:#333;
}

/* HERO */
.hero{
    height:80vh;
    background:linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('images/about-bg.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}

.hero-content h1{
    font-size:50px;
    letter-spacing:2px;
}

.hero-content p{
    margin-top:15px;
    font-size:18px;
}

/* ABOUT SECTION */
.about-section{
    padding:80px 10%;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-text h2{
    font-size:32px;
    margin-bottom:20px;
    position:relative;
}

.about-text h2::after{
    content:"";
    width:60px;
    height:3px;
    background:#c19a6b;
    position:absolute;
    left:0;
    bottom:-10px;
}

.about-text p{
    line-height:1.8;
    margin-bottom:15px;
    color:#555;
}

.about-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* MISSION & VISION */
.mission-vision{
    background:#111;
    color:white;
    padding:70px 10%;
}

.mv-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.card{
    background:#1a1a1a;
    padding:40px;
    border-radius:12px;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-10px);
    background:#c19a6b;
}

/* WHY US */
.why-us{
    padding:80px 10%;
    text-align:center;
}

.why-us h2{
    margin-bottom:40px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    font-weight:500;
}

/* CTA */
.cta{
    background:#c19a6b;
    text-align:center;
    padding:60px 20px;
    color:white;
}

.cta a{
    display:inline-block;
    margin-top:20px;
    padding:12px 30px;
    background:#111;
    color:white;
    text-decoration:none;
    border-radius:30px;
    transition:0.3s;
}

.cta a:hover{
    background:white;
    color:#111;
}

footer{
    text-align:center;
    padding:20px;
    background:#000;
    color:#aaa;
}

/* RESPONSIVE */
@media(max-width:768px){
    .about-container,
    .mv-container{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:32px;
    }
}