@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 {
    height: 12vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    box-shadow: 0 4px 20px rgba(144, 238, 144, 0.3);
    padding: 0 2vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.navbar-left {
    height: auto;
    width: 22%;
    overflow: hidden;
}

.navbar-left img {
    height: 100%;
    width: 8vw;
    object-fit: cover;
    margin-top: 1vw;
}

.navbar-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    margin-right: 2vw;
}

.navbar-right a {
    position: relative;
    text-decoration: none;
    color: black;
    font-size: 1.3vw;
    padding: .4vw;
    transition: color 0.3s ease;
}

.navbar-right a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #ff7043;
    transition: width 0.4s ease;
}

.navbar-right a:hover::after {
    width: 100%;
}




.container {
    max-width: 950px;
    margin: 8vw auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    color: #2c7a7b;
    font-size: 2.2vw;
    margin-bottom: 20px;
}

h2 {
    color: #444;
    margin-top: 30px;
}

p {
    margin: 15px 0;
}

.highlight {
    background: #e6fffa;
    padding: 10px;
    border-left: 4px solid #2c7a7b;
    margin: 20px 0;
}

ul {
    padding-left: 20px;
}

.blog-image {
    height: 70vh;
    width: 100%;
    overflow: hidden;
    border-radius: .7vw;
}

.blog-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.faq-section {
    margin-top: 40px;
}

.faq-section h2 {
    margin-bottom: 20px;
}

.faq {
    margin-bottom: 10px;
    background: #f1f1f1;
    padding: 15px;
    border-left: 4px solid #2c7a7b;
    border-radius: 5px;
}

.faq strong {
    display: block;
    margin-bottom: 5px;
    color: #2c7a7b;
}

footer {
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    background: #2c7a7b;
    color: white;
    font-size: 0.9rem;
}



@media screen and (max-width: 480px) {

    .navbar {
        width: 100%;
        height: 8vh;
        padding: 1vw 3vw;
        gap: 2vw;
    }

    .navbar-left {
        width: 25vw;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navbar-left img {
        width: 16vw;
        height: auto;
    }

    .navbar-right {
        justify-content: center;
        gap: 3vw;
    }

    .navbar-right a {
        font-size: 3vw;
    }

    .container {
        padding: 1vw 5vw;
        margin-top: 12vh;
    }

    h1 {
        font-size: 5.5vw;
    }

    h2 {
        font-size: 1.2rem;
    }

    .faq,
    p,
    ul,
    .highlight {
        font-size: 0.9rem;
        text-align: justify;
    }

    .blog-image {
        height: 40vh;
        /* reduce height for smaller screens */
        border-radius: 2vw;
        /* slightly more rounding for mobile */
    }

    .blog-image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}