@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;
    }
}









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 {
    color: #0073e6;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.img-div{
    height: 70vh;
    width: 100%;
    margin-top: 1vw;
    margin-bottom: 2vw;
    overflow: hidden;
}
img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}



@media (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }

    main {
        width: 95%;
        padding: 4vw;
    }

    section h2 {
        font-size: 1.2em;
        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;
    }
}