@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;
    bottom: 3vh;
    right: 3vw;
    z-index: 1000;
}

.whatsapp-icon i {
    font-size: 2.8vw;
}

.whatsapp-icon a {
    width: 3.8vw;
    height: 3.8vw;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-in-out;
}

.whatsapp-icon a:hover {
    transform: scale(1.1);
    background-color: #20b958;
}

@media (max-width: 480px) {
    .whatsapp-icon {
        bottom: 2.5vh;
        right: 4vw;
        /* slightly more spacing from edge */
    }

    .whatsapp-icon a {
        width: 13vw;
        /* larger touch-friendly button */
        height: 13vw;
        font-size: 5vw;
        box-shadow: 0 0.8vw 1.6vw rgba(0, 0, 0, 0.3);
    }

    .whatsapp-icon i {
        font-size: 7vw;
        /* bigger icon inside */
    }
}

.navbar-page {
    padding: 1vw;
}

.navbar {
    height: 12vh;
    width: 100%;
    background: linear-gradient(45deg, #1e90ff, #094480);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2vw;
    border-radius: 15px;

}

.nav-image {
    width: 12vw;
    height: 6vh;
}

.navlinks {
    display: flex;
    align-items: center;
    gap: 4vw;
}

.navlinks a {
    text-decoration: none;
    font-size: 1.4vw;
    color: white;
    transition: 0.3s;
}

.navlinks a:hover {
    color: yellow;
}

.nav-number a {
    color: white;
    text-decoration: none;
    font-size: 1.4vw;
    transition: 0.3s;
}

/* .nav-number a:hover {
    color: yellow;
  } */
.nav-number a:hover {
    color: yellow;
}




header {
    /* background-color: #0073e6; */
    color: #000000;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.2em;
}

main {
    width: 83%;
    padding: 2vw;
    margin: 2vw auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

section h2 {
    color: #005bb5;
    border-bottom: 2px solid #f4f4f4;
    padding-bottom: 5px;
    margin-top: 3vw;
}

section p {
    text-align: justify;
    margin-top: 1vw;
}

ul {
    list-style-type: square;
    margin-left: 3vw;
    margin-top: 1vw;
}

footer {
    text-align: center;
    background-color: #005bb5;
    color: #fff;
    padding: 10px 0;
    margin-top: 20px;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

a {
    text-decoration: none;
}

.img-div {
    height: 82vh;
    width: 100%;
    margin-top: 1vw;
    margin-bottom: 2vw;
    overflow: hidden;
}

img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.last-img {
    height: 90vh;
    width: 100%;
    overflow: hidden;
}

.last-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}



@media (max-width: 480px) {
    .navbar {
        height: 10vh;
        width: 100%;
    }

    .navbar img {
        width: 23vw;
        height: 3vh;
    }

    .navlinks a {
        text-decoration: none;
        font-size: 3.7vw;
        color: white;
    }

    .nav-number a {
        display: none;
    }

    header h1 {
        font-size: 1.5em;
    }

    main {
        width: 95%;
        padding: 4vw;
    }

    section h2 {
        font-size: 1.2em;
        margin-top: 4vw;
    }

    section h3 {
        font-size: 3.7vw;
        margin-top: 4vw;
    }

    section p {
        font-size: 0.9em;
        margin-top: 2vw;
    }

    ul {
        margin-left: 5vw;
        font-size: 0.9em;
    }

    footer {
        padding: 15px 0;
    }

    footer p {
        font-size: 0.8em;
    }

    .img-div {
        height: 30vh;
    }

    .img-div1 {
        height: 80vh;
    }
}