@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: 'poppins';
}

html,
body {
    height: 100%;
    width: 100%;
}


.whatsapp-icon {
    position: fixed;
    height: 5vw;
    width: 5vw;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatapp-iconn {
    font-size: 2.7vw;
}

.whatsapp-icon {
    bottom: 20px;
    right: 20px;
}

@media (max-width: 480px) {
    .whatsapp-icon {
        width: 20vw;
        height: 20vw;
        font-size: 2vw;
        bottom: 2%;
        right: 2%;
        z-index: 2000;
    }

    .whatapp-iconn {
        font-size: 10vw;
    }
}













/* Navbar */
.navbar {
    height: 12vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    color: #fff;
    padding: 2vw 4vw;
}

.logo {
    height: auto;
    width: 7vw;
}

.logo img {
    width: 100%;
    object-fit: cover;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar .nav-links a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 16px;
}

.navbar .nav-links a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    background-image: url('images/tempo.jpeg');
    /* replace with your image path */
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 3.5vw;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/tempo.jpeg');
    /* Replace with your image path */
    background-size: cover;
    background-position: center;
    filter: brightness(70%);
    /* Adjust brightness here */
    z-index: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
}

/* Form Container */
.form-container {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px;
    position: absolute;
    z-index: 9;
}

.form-container h3 {
    margin-bottom: 15px;
    color: #004466;
}

.form-container form input,
.form-container form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-container form button {
    width: 100%;
    padding: 10px;
    background: #004466;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.form-container form button:hover {
    background: #006080;
}


.section-title {
    display: flex;
    justify-content: center;
    margin: 2vw 0;
}

.section-title h2 {
    font-size: 2.2vw;
    border-bottom: 3px solid blue;
}

.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.2vw;
    padding: 2vw;
}

.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 27%;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.card img {
    width: 100%;
    height: 33vh;
    object-fit: cover;
}

.card-body {
    padding: 15px;
}

.card-body h3 {
    margin-top: 0;
    font-size: 18px;
}

.card-body ul {
    padding-left: 20px;
    margin: 10px 0;
}

.card-body button {
    background: #007BFF;
    color: white;
    padding: 10px;
    border: none;
    width: 100%;
    cursor: pointer;
    font-size: 1.2vw;
}

.card-body button:hover {
    background: #0056b3;
}




/* responsive design  */

@media (max-width: 480px) {

    /* Navbar */
    .navbar {
        height: 12vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 3vw;
        gap: 15vw;
    }

    .logo {
        height: auto;
        width: 30vw;
    }

    .navbar .nav-links {
        gap: 3vw;
        width: 100%;
    }

    .navbar .nav-links a {
        font-size: 3.5vw;
    }

    /* Hero Section */
    .hero-section {
        height: 90vh;
        padding: 5vw;
        justify-content: center;
        text-align: center;
    }

    .hero-image img {
        width: 100%;
        height: auto;
    }

    /* Form Container */
    .form-container {
        position: relative;
        max-width: 90%;
        padding: 3vw;
        margin: 3vw auto;
        box-shadow: none;
    }

    .form-container form button {
        font-size: 14px;
    }

    /* Section Title */
    .section-title h2 {
        font-size: 6vw;
        text-align: center;
        margin: 3vw 0;
    }

    /* Cards */
    .cards {
        flex-direction: column;
        padding: 5vw;
        gap: 8vw;
    }

    .card {
        width: 100%;
    }

    .card-body button {
        font-size: 4vw;
    }
}