@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&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;
    }
}










.blog-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2vw;
}

/* Blog Section */
#blog {
    width: 80%;
    ;
    margin: 0 auto;
    padding: 40px 20px;
}

#blog article {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Main Title */
#blog h1 {
    font-size: 3vw;
    color: #2c3e50;
    margin-bottom: 2.5vw;
    text-align: center;
}

/* Subtitles */
#blog article h2 {
    font-size: 1.7vw;
    color: #34495e;
    margin-top: 20px;
    margin-bottom: 15px;
}

/* Paragraphs and Text */
#blog article p {
    font-size: 1.2vw;
    line-height: 1.8;
    margin-bottom: 20px;
}

#blog article p strong {
    font-weight: bold;
    color: #e74c3c;
}

/* Unordered Lists */
#blog article ul {
    margin-left: 2vw;
    margin-bottom: 2vw;
}

#blog article ul li {
    margin-bottom: 1vw;
    font-size: 1.2vw;
}

.section-title {
    font-weight: bold;
    font-size: 1.3vw;
    margin-top: 2vw;
}

b {
    color: #e74c3c;
}

.faq-item {
    margin-bottom: 2vw;
}

.faq-question {
    font-size: 1.3vw;
    font-weight: bold;
    color: #000000;
}

.faq-answer {
    font-size: 1.2vw;
    color: #444;
    margin-left: 2vw;
}

.blog-images {
    height: 70vh;
    width: 100%;
    overflow: hidden;
}

.blog-images img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Footer Styles */
.page10 {
    height: 43vh;
    width: 100%;
}

.footer {
    background-color: #333;
    color: #ccc;
    padding: 1vw 2vw;
    display: flex;
    justify-content: space-between;
}

.footer div {
    width: 25%;
    margin: 1vw;
}

.footer img {
    width: 15vw;
    margin-bottom: 1vw;
}

.second-div {
    padding-left: 6vw;
}

.second-div h3 {
    margin-bottom: 1.3vw;
}

.third-div {
    padding-left: 5vw;
}

.third-div h3 {
    margin-bottom: 1.3vw;
}

.fourth-div {
    padding-left: 5vw;
}

.fourth-div h3 {
    margin-bottom: 1.3vw;
}

.footer p,
.footer ul {
    font-size: 14px;
    line-height: 1.8;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li a {
    text-decoration: none;
    color: #ccc;
}

.footer ul li a:hover {
    color: #fff;
}

.footer-logo {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}



/* responsive design  */
@media (max-width: 480px) {
    .blog-image {
        width: 100%;
        height: 20vh;
        border-radius: 6px;
        margin-bottom: 5%;
    }

    /* Blog Section */
    #blog {
        width: 95%;
        margin: 0 auto;
        padding: 20px 10px;
    }

    #blog article {
        padding: 15px;
        border-radius: 6px;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    }

    /* Main Title */
    #blog h1 {
        font-size: 4.5vw;
        margin-bottom: 5%;
    }

    /* Subtitles */
    #blog article h2 {
        font-size: 4.5vw;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    /* Paragraphs and Text */
    #blog article p {
        font-size: 3.8vw;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    #blog article ul {
        margin-left: 5%;
        margin-bottom: 5%;
    }

    #blog article ul li {
        margin-bottom: 3%;
        font-size: 3.8vw;
    }

    .section-title {
        font-size: 4vw;
        margin-top: 5%;
    }

    .faq-item {
        margin-bottom: 5%;
    }

    .faq-question {
        font-size: 4vw;
    }

    .faq-answer {
        font-size: 3vw;
        margin-left: 5%;
    }

    .blog-images {
        height: 40vh;
        overflow: hidden;
    }

    .blog-images img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    /* Footer Styles */
    .page10 {
        height: auto;
    }

    .footer {
        flex-direction: column;
        padding: 5%;
        text-align: center;
    }

    .footer div {
        width: 100%;
        margin-bottom: 5%;
    }

    .footer img {
        width: 50%;
        margin: 0 auto;
    }

    .footer h3 {
        margin-bottom: 3%;
        font-size: 4vw;
    }

    .footer p,
    .footer ul {
        font-size: 3.5vw;
        line-height: 1.6;
    }

    .footer ul li {
        margin-bottom: 3%;
    }

    .footer ul li a {
        font-size: 3.5vw;
    }

    .footer-logo {
        font-size: 5vw;
        margin-bottom: 3%;
    }
}