@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: #0D8D96;
    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%;
    padding: 1vw 5vw;
    background-color: #0D8D96;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.navbar-img img {
    height: 100%;
    width: 13vw;
    object-fit: cover;
}

.navbar-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
}

.navbar-link a {
    text-decoration: none;
    color: white;
    font-size: 1.3vw;
}

.middle-portion {
    height: 70vh;
    width: 100%;
    display: flex;
    background-color: #f9faf8;
}

.middle-portion-left {
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.middle-portion-left h1 {
    font-size: 6vw;
    font-weight: 600;
    color: brown;
}

.middle-portion-left h3 {
    font-size: 1.6vw;
    font-weight: 500;
}

.middle-portion-right {
    height: 100%;
    width: 50%;
    padding: 2vw 3vw;
}

.middle-right-img {
    height: 50vh;
    width: 100%;
    border-radius: 1vw;
    overflow: hidden;
}

.middle-portion-right img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.main-content {
    padding: 2vw 1.8vw;
    background-color: #f9faf8;
}

.main-content-head h1 {
    color: brown;
    font-weight: 500;
    display: inline-block;
    border-bottom: 6px solid #007BFF;
    padding-bottom: 5px;
}

.main-content-all-blogs {
    display: flex;
    gap: 1vw;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 2vw;
}

.blog-card {
    width: 20vw;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card a {
    text-decoration: none;
}

.blog-card img {
    height: 30vh;
    width: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 15px;
}

.blog-title {
    font-size: 1.1vw;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.blog-date {
    font-size: 14px;
    color: #777;
}

footer {
    background-color: #094480;
    text-align: center;
    padding: 1.2vw 0;
    margin-top: 4.2vw;
}

footer p {
    color: white;
}




/* responsive design  */

@media (max-width: 480px) {
    .navbar {
        height: auto;
        align-items: flex-start;
        padding: 3vw;
    }

    .navbar-img img {
        width: 30vw;
        height: auto;
    }

    .navbar-link {
        align-items: center;
        gap: 3vw;
        margin-top: 2vw;
    }

    .navbar-link a {
        font-size: 4vw;
    }

    .middle-portion {
        flex-direction: column;
        height: auto;
    }

    .middle-portion-left,
    .middle-portion-right {
        width: 100%;
        padding: 3vw;
    }

    .middle-portion-left h1 {
        font-size: 8vw;
        text-align: center;
    }

    .middle-portion-left h3 {
        font-size: 4vw;
        text-align: center;
        margin-top: 2vw;
    }

    .middle-right-img {
        height: auto;
        margin-bottom: 7vw;
    }

    .middle-portion-right img {
        height: 26vh;
        width: 100%;
        border-radius: 3vw;
    }

    .main-content-head h1 {
        font-size: 6vw;
        border-bottom: 3px solid #007BFF;
        margin-bottom: 5vw;
        margin-left: 2vw;
    }

    .main-content-all-blogs {
        flex-direction: column;
        gap: 5vw;
    }

    .blog-card {
        width: 90vw;
    }

    .blog-title {
        font-size: 4vw;
    }

    .blog-date {
        font-size: 3vw;
    }

    footer {
        padding: 4vw 2vw;
    }

    footer p {
        font-size: 3.5vw;
    }
}