@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
}

html,
body {
    height: 100%;
    width: 100%;
}

/* NAVBAR */
.navbar {
    height: 12vh;
    background: #fff;
    padding: 1vw 3vw;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 7.1vw;
    overflow: hidden;
}

.logo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links a:hover {
    color: #007bff;
}

.whatsapp {
    text-decoration: none;
    color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5vw;
    font-family: "poppins";
    font-weight: 600;
}

.whatsapp i {
    font-size: 2vw;
}



.about-hero {
    background: url('aboutus.PNG') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    -webkit-text-stroke: 1px black;
}

.about-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #ff6f61;
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e05d50;
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.about-text {
    width: 90%;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}

.about-image img {
    width: 40%;
    border-radius: 10px;
}

.values-section {
    padding: 4rem 2rem;
    text-align: center;
}

.value-cards {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

.card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 30%;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card i {
    font-size: 2rem;
    color: #ff6f61;
    margin-bottom: 1rem;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}






/* responsive design  */

/* ================= MOBILE 480px ================= */
@media (max-width: 480px) {

    .navbar {
        height: auto;
        padding: 10px 15px;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo {
        width: 8.5vw;
        /* fixed size better for mobile */
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    /* Hide Home & About on Mobile */
    .hide-mobile {
        display: none;
    }

    .whatsapp {
        font-size: 13px;
        gap: 5px;
    }

    .whatsapp i {
        font-size: 18px;
    }
}



@media (max-width: 480px) {

    .about-hero {
        height: 80vh;
        padding: 0 15px;
    }

    .about-hero h1 {
        font-size: 1.8rem;
        -webkit-text-stroke: 0.5px black;
    }

    .about-hero p {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .about-section {
        padding: 2.5rem 1rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 0.9rem;
        text-align: left;
    }

    .about-image img {
        width: 100%;
    }

    .values-section {
        padding: 2.5rem 1rem;
    }

    .card {
        width: 100%;
        padding: 1.5rem;
    }

    .card i {
        font-size: 1.5rem;
    }
}