.index-containt h1 {
    font-size: 24px;
}

.our-work h1,
.disease-section h1,
#facilities h2 {
    font-size: 26px;
}

.container__left p {
    font-size: 16px;
}


/* Video Section Design Start */

.video-left img {
    height: 88vh;
    padding-left: 100px;
}

.video-call-section {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 15px 0px 0px 0px;
}

.video-right p {
    margin: 10px 0px;
    font-size: 30px;
    line-height: 44px;
    letter-spacing: 0;
    font-weight: 600;
    color: #141414;
}

.video-right i {
    font-family: auto;
    font-size: 22px;
}

.video-right-img {
    display: flex;
    align-items: center;
    gap: 20px;
}

.videos-img img {
    height: 14vh;
    display: block;
    margin: 0px auto;
    margin-top: 30px;
}

.videos-img p {
    font-size: 17px;
}

.video-right {
    padding-right: 46px;
}

.video-call-btn button {
    display: inline-block;
    margin: 0px auto 20px auto;
    padding: 5px;
    font-weight: bold;
    font-size: 14px;
    color: #000;
    text-align: center;
    text-decoration: none;
    border: 2px solid;
    border-image-source: linear-gradient(to right, var(--primary-color), rgb(11, 193, 11));
    border-image-slice: 1;
    background-color: transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-call-btn button:hover {
    background: linear-gradient(to right, var(--primary-color), var(--primary-color-dark));
    border-image-source: linear-gradient(to right, #000, rgb(11, 193, 11));
    color: #fff;
    /* Change text color to white */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    /* Slightly larger shadow */
    transform: scale(1.05);
    /* Slight zoom effect */
}

@media (max-width: 768px) {
    .video-call-section {
        flex-direction: column;
        padding: 20px 0px 0px 0px;
    }

    .video-call-btn button {
        margin-left: 23%;
    }

    .video-left img {
        height: 46vh;
        padding-left: 0px;
    }

    .video-right {
        padding: 0px 31px;
    }

    .video-right p {
        font-size: 20px;
        line-height: 32px;
        ;
    }

    .videos-img img {
        margin-top: 10px;
    }

    .video-right-img {
        display: block;
    }

    .videos-img p {
        text-align: center;
    }


}


/* Video Section Design End */

/* Nature Section Design Start */


.nature-container {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    padding: 51px;
    background: #d8e5e3;
    align-items: center;
}

.bgimgnature {
    background-image: url("/static/images/home_extra_img/karma-ayurveda.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 388px;
    height: 100%;
    border-radius: 3px;
    padding: 20px;
    color: white;
}

.bgimgnature span {
    font-size: 34px;
    font-weight: 600;
}

p.tranparent-text {
    background: #00000091;
    padding: 7px;
    border-radius: 3px;
    margin-top: 30px;
    height: 300px;
    line-height: 2;
}

.right-top-nature-img img {
    height: 20vh;
}

.right-img-text img {
    height: 28vh;
    display: block;
    margin: auto;
    animation: float 3s ease-in-out infinite;
}

.right-bottom-nature-box {
    display: flex;
    align-items: center;
    gap: 4px;
}

.right-img-text {
    background: white;
    padding: 7px;
    border-radius: 10px;
    height: 40vh;
    width: 80%;
}

.right-img-text p {
    font-size: 22px;
    text-align: center;
    color: #444444;
}


/* Keyframes for up-down floating */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-7px);
        /* move up */
    }
}

/* Opposite animation for middle image */
.right-img-text:nth-child(2) img {
    animation: floatReverse 3s ease-in-out infinite;
}

@keyframes floatReverse {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(7px);
        /* move down */
    }
}

@media (max-width: 768px) {
    .nature-container {
        display: block;
        padding: 16px;
    }

    .right-top-nature-img img {
        display: none;
    }

    .right-bottom-nature-box {
        display: block;
    }

    .bgimgnature {
        width: 100%;
    }

    p.tranparent-text {
        height: auto;
    }

    .right-img-text {
        margin: 5px auto !important;
        width: 90%;
        margin: 0 auto;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }
}


/* Nature Section Design End */

/* Whatsapp Icon Section Start */

.whatsapp-section {
    background: #106941;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-around;
}


.right-whatsapp img {
    height: 38vh;
    animation: floatReverse 3s ease-in-out infinite;
}

.left-whatsapp p {
    font-size: 34px;
    font-weight: 700;
    display: block;
    text-align: center;
    margin: 3% 10px;
    color: white;
}

.left-whatsapp strong {
    color: #e55451;
}

.join-img {
    height: 66px;
    animation: float 3s ease-in-out infinite;
}

img.whatsapp-gif {
    height: 105px;
}

.whatsapp-icon-gif-join {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.right-whatsapp {
    margin-right: 113px;
}


@media(max-width:768px) {
    .whatsapp-section {
        display: block;
        padding: 20px 0px;
    }

    .right-whatsapp {
        margin-right: 0px;
    }

    .bgimgnature span {
        font-size: 31px;
        font-weight: 600;
    }

}







/* Whatsapp Icon Section End */