@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: #e44545;
    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;
    }
}
















.main {
    padding: 2vw 5vw;
    margin-bottom: 2vw;
}

.main h1{
    margin-bottom: 4vw;
}

p {
    text-align: justify;
    width: 100%;
    line-height: normal;
}

.subheading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 3vw 0;
}

.btn {
    border-radius: 15px;
    padding: 1vw;
    font-size: 1vw;
    background-color: blueviolet;
    color: white;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.btn:hover {

    background-color: #434190;
    box-shadow: 0 3px 7px rgba(67, 65, 144, 0.5);
    transform: scale(1.05)
}

.image-container {
    height: 90vh;
    width: 100%;
    object-fit: cover;
}

.image-container img {
    height: 100%;
    width: 100%;

}

section {
    padding: 1vw;
}

ul {
    padding: 1vw
}

h2 {
    color: rgb(39, 29, 170);

}

a {
    color: black;
    text-decoration: none;
}







@media screen and (max-width :480px) {
    .subheading {
        display: flex;
        flex-direction: column;

    }
    h1{
        font-size: 6vw;
    }

    .btn {
        height: 6vh;
        width: 100%;
        font-size: 3vw;
        padding: 3vw 3vw;
        text-align: center;
        margin-top: 2vw;
        margin-bottom: 2vw;
        border-radius: 8px;

    }

    .image-container{
        height: 50vh;
        width: 100%;

    }

    p {
        font-size: 15px;
        line-height: 1.4;
        padding: 0 5px;
    }

    .price {
        margin: 2vw;
        font-size: 5vw;
    }

    ul {
        padding: 4vw;
    }

    h3 {
        padding: 0 2vw;
    }


}