@import url('https://fonts.googleapis.com/css2?family=Jacques+Francois&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');

/* .main-hero-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -100;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: #485342;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: auto;
}

.logo {
    font-size: 34px;
    font-weight: bold;
    color: white;
    font-family: urban;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    padding: 5px 20px;
    font-family: urban;
}

.hamburger {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* Hero section *
.hero {
    padding-top: 80px;
    height: 100vh;
    background: linear-gradient(to bottom, #002701, #004000);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

/* Responsive *
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #485342;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 150px;
        border-radius: 5px;
        padding: 10px;
    }

    .nav-links.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }
} */


/****************************************************** home-her-section-start ******************************************************/
/* .home-hero-section {
    position: relative;
}

.home-hero-cont {
    position: absolute;
    transform: translate(50%, 1200%);
    z-index: 100;
} */

/****************************************************** home-her-section-end ******************************************************/


body {
    background-image: url('/assets/images/hero/home-hero-section.png');
    /* Replace with your path */
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 100vh;
    color: white;
    width: 100%;
    position: relative;
}

/* Optional dark overlay */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* === Navbar === */
header {
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: #485342;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 10%;
}

.logo h1 {
    font-size: 35px;
    font-weight: 300;
    color: white;
    font-family: 'Jacques Francois', sans-serif;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.logo a {
    font-size: 25px;
    font-weight: 300;
    color: white;
    font-family: 'Jacques Francois', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 10px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 20px;
    transition: all 0.4s ease;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
}

.nav-links a:hover {
    background-color: #fff;
    color: #485342;
    border-radius: 8px;
}

.hamburger {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}



@media(max-width: 768px) {
    body {
        background-image: none;
    }

    .bg-overlay {
        display: none;
    }

    header {
        background-color: #485342;
    }

    .logo h1 {
        display: none;
    }

    .logo img {
        width: 20%;
    }
}

/* === Hero Section === */
.home-hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.home-hero-cont {
    width: 60%;
}

.home-hero-cont p {
    font-size: 20px;
    color: #fff;
    font-family: 'Jacques Francois', sans-serif;
}


.home-hero-cont h1 {
    font-size: 58px;
    color: #fff;
    font-family: 'Jacques Francois', serif;
}

.home-hero-cont span {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
}

.home-hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.home-btn-1 {
    text-decoration: none;
    color: #fff;
    padding: 10px 40px;
    border-radius: 50px;
    background-color: transparent;
    border: 2px solid white;
    transition: all 0.4s ease;
    font-family: urban;
    font-weight: 600;
    width: 27%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
}

.home-btn-1:hover {
    background-color: #fff;
    color: #000;
}

.home-btn-2 {
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
    border-radius: 50px;
    background-color: transparent;
    border: 2px solid white;
    transition: all 0.4s ease;
    font-family: urban;
    font-weight: 600;
    width: 27%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
}

.home-btn-2:hover {
    background-color: #fff;
    color: #000;
}


/* === Responsive === */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.8);
        position: absolute;
        top: 60px;
        right: 20px;
        width: 150px;
        border-radius: 5px;
        padding: 10px;
    }

    .nav-links.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .home-hero-section {
        background-color: #fff;
        height: 70%;
        display: flex;
        align-items: center;
    }

    .home-hero-cont {
        width: 100%;
        position: relative;
        top: 30;
    }

    .home-hero-cont p {
        font-size: 15px;
        width: 100%;
        text-align: center;
        color: #485342;
    }

    .home-hero-cont h1 {
        font-size: 35px;
        color: #485342;
    }

    .home-hero-cont span {
        width: 100%;
        text-align: center;
        font-size: 15px;
        color: #485342;
    }

    .home-hero-buttons {
        justify-content: center;
    }

    .home-btn-1 {
        width: 50%;
        font-size: 15px;
        color: #485342;
        border: 2px solid #485342;
    }

    .home-btn-1:hover {
        background-color: #485342;
        color: #fff;
    }

    .home-btn-2 {
        width: 50%;
        font-size: 15px;
        color: #485342;
        border: 2px solid #485342;
        padding: 10px 25px;
    }

    .home-btn-2:hover {
        background-color: #485342;
        color: #fff;
    }
}

.my-test-class {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: start;
}

.my-test-class p {
    font-family: 'Jacques Francois', sans-serif;
    text-transform: uppercase;
    font-size: 15px;
}

@media(max-width: 768px) {
    .my-test-class {
        display: flex;
        align-items: center;
    }
}


.home-info-section {
    background-color: #C7CEC9;
    padding: 80px 0px;
}

.home-hero-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 0px 30px 0px;
}

.home-hero-heading h1 {
    font-family: 'Jacques Francois', sans-serif;
    color: #485342;
    font-size: 50px;
    text-transform: uppercase;
    text-align: center;
}

.info-1 {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.info-img {
    width: 100%;
    height: 350px;
    background-color: #fff;
    border-radius: 12px;
    object-fit: cover;
}

.info-1 h1 {
    font-family: 'Jacques Francois', sans-serif;
    font-weight: 500;
    font-size: 24px;
    text-align: center;
}

.info-btn {
    padding: 15px 40px;
    border-radius: 50px;
    background-color: transparent;
    border: 3px solid #485342;
    text-decoration: none;
    color: #485342;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.4s ease;
}

.info-btn:hover {
    background-color: #485342;
    color: #fff;
}

.info-btn-1 {
    padding: 15px 40px;
    border-radius: 50px;
    background-color: transparent;
    border: 3px solid #485342;
    text-decoration: none;
    color: #485342;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.4s ease;
}

.info-btn-1:hover {
    background-color: #485342;
    color: #fff;
}

.info-btn-1 {
    display: none;
}

@media(max-width: 768px) {
    .home-hero-heading h1 {
        font-size: 30px;
    }

    .info-img {
        width: 90%;
        height: 320px;
    }

    .info-btn {
        display: none;
    }

    .info-btn-1 {
        display: block;
    }
}


/*************************************************** home-about-section-start ***************************************************/
.home-about-chaya {
    position: relative;
    background-color: #DBE2DD;
}

.home-about-img img {
    width: 100%;
    height: 750px;
}

.my-col {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.home-about-cont {
    padding: 0px 0px 0px 50px;
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: start;
}

.home-about-cont h1 {
    font-family: 'Jacques Francois', sans-serif;
    text-transform: uppercase;
    color: #485342;
}

.home-about-cont p {
    font-family: 'Poppins', sans-serif;
    color: rgb(72, 83, 66);
    font-size: 15px;
}

.home-about-btn {
    padding: 10px 50px;
    border-radius: 50px;
    background-color: transparent;
    border: 3px solid #485342;
    text-decoration: none;
    color: #485342;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.4s ease;
    letter-spacing: 3px;
}

.home-about-btn:hover {
    background-color: #485342;
    color: #fff;
}


@media(max-width: 768px) {
    .home-about-img {
        padding: 50px 0px;
    }

    .home-about-img img {
        height: 490px;
        border-radius: 12px;
    }

    .home-about-cont {
        padding: 0px 0px 50px 0px;
        width: 100%;
    }

    .home-about-cont h1 {
        font-size: 25px;
    }

    .home-about-btn {
        padding: 10px 30px;
    }
}

/*************************************************** home-about-section-end ***************************************************/


/*************************************************** home-gallery-section-start ***************************************************/
.home-gallery-section {
    position: relative;
    background-color: #485342;
    width: 100%;
}

.carousel {
    width: 100%;
}

.carousel img {
    width: 100%;
    height: 700px;
    object-fit: fill;
}

.home-gallery-cont {
    padding: 0px 50px 0px 0px;
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: start;
}

.home-gallery-cont h1 {
    font-family: 'Jacques Francois', sans-serif;
    text-transform: uppercase;
    color: #ffffff;
}

.home-gallery-cont p {
    font-family: 'Poppins', sans-serif;
    color: rgb(255, 255, 255);
    font-size: 15px;
}

.home-gallery-btn {
    padding: 10px 50px;
    border-radius: 50px;
    background-color: transparent;
    border: 3px solid #ffffff;
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.4s ease;
    letter-spacing: 3px;
}

.home-gallery-btn:hover {
    background-color: #ffffff;
    color: #485342;
}



@media(max-width: 768px) {
    .carousel {
        padding: 0px 0px 50px 0px;
    }

    .carousel img {
        height: 490px;
        border-radius: 12px;
    }

    .home-gallery-cont {
        padding: 50px 0px;
        width: 100%;
    }

    .home-gallery-cont h1 {
        font-size: 25px;
    }

    .home-gallery-btn {
        padding: 10px 30px;
    }
}

/*************************************************** home-gallery-section-end ***************************************************/

.service-hero-section {
    width: 100%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url(/assets/images/hero/home-hero-section.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.new-bg-overlay {
    width: 100%;
    background-color: #000;
    height: 100%;
    position: absolute;
    opacity: 0.5;
    z-index: 10;
}

.service-heading {
    position: absolute;
    z-index: 20;
}

.service-heading h1 {
    font-family: 'Jacques Francois', sans-serif;
    color: #fff;
    font-size: 50px;
}

/************************************************** home-service-section-start **************************************************/
.home-service-section {
    padding: 100px 0px;
    position: relative;
    background-color: #2F3A29;
}

.margin-class {
    margin-bottom: 20px;
}

.home-service-heading h1 {
    text-align: center;
    font-family: 'Jacques Francois', sans-serif;
    color: #fff;
    font-size: 40px;
    margin-bottom: 100px;
    text-transform: uppercase;
}

.home-service-card {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.home-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-service-icon i {
    color: #DBE2DD;
    font-size: 40px;
}

.home-service-card-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.home-service-card-cont h3 {
    color: #DBE2DD;
    font-family: 'Jacques Francois', sans-serif;
    text-align: center;
}

.home-service-card-cont p {
    text-align: center;
    color: #DBE2DD;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
}

@media(max-width: 768px) {
    .home-service-heading h1 {
        font-size: 30px;
        margin-bottom: 50px;
    }
}

/************************************************** home-service-section-end **************************************************/

/************************************************* home-testimonial-section-start *************************************************/
.home-testimonial-section {
    padding: 80px 0px;
    position: relative;
    background-color: #DBE2DD;
}

.home-testimonial-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 50px;
}

.home-testimonial-heading h1 {
    font-family: 'Jacques Francois', sans-serif;
    color: #485342;
    font-size: 40px;
    text-transform: uppercase;
}

.home-testimonial-heading p {
    font-family: 'Poppins', sans-serif;
    color: #485342;
    font-size: 20px;
    text-transform: uppercase;
}

.item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.item p {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #485342;
}

.item span {
    font-family: 'Jacques Francois', sans-serif;
    font-size: 30px;
    color: #2F3A29;
}

.my-img {
    max-width: 80px;
    border-radius: 80px;
    padding: 10px;
}


@media(max-width: 768px) {
    .home-testimonial-section {
        padding: 50px 0px 50px 0px;
    }

    .home-testimonial-heading h1 {
        font-size: 30px;
        text-align: center;
    }

    .item p {
        font-size: 17px;
    }

    .item span {
        font-size: 25px;
    }
}

/************************************************* home-testimonial-section-end *************************************************/



.footer-section {
    padding: 80px 0px;
    position: relative;
    background-color: #C7CEC9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.footer-logo-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo-info img {
    width: 45%;
}

.footer-logo-info p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    text-align: justify;
    color: #2F3A29;
}

.my-footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quick-links-heading {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.quick-links-heading h3 {
    font-family: 'Jacques Francois', sans-serif;
    color: #485342;
}

.footer-quick-links {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 10px;
    padding-left: 0px;
}

.footer-quick-links li {
    font-family: 'Poppins', sans-serif;
}

.footer-quick-links li {
    font-family: 'Poppins', sans-serif;
}

.footer-quick-links li a {
    text-decoration: none;
    color: #2F3A29;
}

.notified-info {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.notified-heading h3 {
    font-family: 'Jacques Francois', sans-serif;
    color: #485342;
}

.address {
    list-style: none;
    padding-left: 0px;
}

.address li {
    font-family: 'Poppins', sans-serif;
}

.number-email {
    list-style: none;
    padding-left: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.number-email li {
    display: flex;
    gap: 10px;
}

.number-email li a {
    font-family: 'Poppins', sans-serif;
    color: #000000;
    text-decoration: none;
    transition: all 0.4s ease;
}


.number-email li a:hover {
    color: #485342;
}


@media(max-width: 768px) {
    .footer-logo-info {
        gap: 20px;
        align-items: start;
    }

    .footer-row {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .footer-logo-info img {
        width: 50%;
    }

    .my-footer-col {
        align-items: start;
    }

    .quick-links-heading {
        gap: 10px;
    }

    .footer-quick-links {
        padding-left: 10px;
    }
}

.footer-copy-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copy-right p {
    color: #000000;
    font-weight: 400;
    font-size: 20px;
    line-height: 2;
    margin-bottom: 0px;
}

.footer-copy-right p i {
    color: #ff1f1f;
}

.footer-copy-right p a {
    color: #2F3A29;
    text-decoration: none;
}

@media(max-width: 768px) {
    .footer-copy-right p {
        padding: 0px 20px;
        text-align: center
    }
}

/* ------------------------------------------------------------------- 
 * ## about stats
 * ------------------------------------------------------------------- */
.about-stats {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #485342;
    /* padding: 50px 0px 0px 0px; */
}

.stats__col {
    margin: 5.4rem 0;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.stats__col:last-child {
    border-right: none;
}

.stats__count {
    font-family: "Poppins", sans-serif;
    font-size: 70px;
    line-height: 1;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
}

.stats h5 {
    font-family: "Jacques Francois", sans-serif;
    margin-top: 1.8rem;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.333;
    position: relative;
    text-transform: uppercase;
}

.about__line {
    display: block;
    width: 2px;
    height: 10.2rem;
    background-color: #FFFFFF;
    position: absolute;
    right: 7.2rem;
    top: 0;
}


/* ------------------------------------------------------------------- 
 * responsive:
 * about
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 1200px) {
    .about-desc {
        font-size: 2.2rem;
        max-width: 940px;
    }

    .about-stats {
        padding-top: 3rem;
        padding-bottom: 3.9rem;
    }

    .about-stats {
        max-width: 800px;
    }

    .stats__col {
        margin: 1.5rem 0;
    }

    .stats__col:nth-child(n) {
        border: none;
    }

    .stats__col:nth-child(2n+1) {
        border-right: 1px solid rgba(255, 255, 255, 0.25);
    }
}

@media only screen and (max-width: 800px) {
    .about-desc {
        font-size: 2rem;
        max-width: 600px;
    }

    .stats__count {
        font-size: 8rem;
    }

    .stats h5 {
        margin-top: 1.2rem;
    }
}

@media only screen and (max-width: 700px) {
    .about__line {
        right: 5.5rem;
    }
}

@media only screen and (max-width: 600px) {
    .s-about {
        padding-top: 12rem;
    }

    .about-desc {
        font-size: 1.9rem;
    }

    .about-stats {
        padding-top: 0;
    }

    .stats__col {
        margin: 0;
        padding-top: 3rem;
        padding-bottom: 3rem;
        position: relative;
    }

    .stats__col::after {
        content: "";
        display: block;
        height: 1px;
        width: 250px;
        background-color: rgba(255, 255, 255, 0.25);
        position: absolute;
        bottom: 0;
        left: 50%;
        margin-left: -125px;
    }

    .stats__col:last-child::after {
        display: none;
    }

    .stats__col:nth-child(n) {
        border: none;
    }

    .about__line {
        height: 7.2rem;
    }
}

@media only screen and (max-width: 400px) {
    .about-desc {
        font-size: 1.8rem;
    }

    .stats__count {
        font-size: 7.8rem;
    }
}


@media(max-width: 768px) {
    .about-stats {
        flex-direction: column;
        padding: 50px 0px;
    }

    .stats__col {
        padding: 30px 0px;
    }

    .stats__count {
        font-size: 45px;
    }

    .stats h5 {
        font-size: 25px;
    }
}




/******************************************* about-page-about-section-start *******************************************/
.about-guru-dev-section {
    position: relative;
    /* padding: 80px 0px 0px 0px; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
}


.about-guru-dev-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.about-guru-dev-heading h1 {
    font-size: 60px;
    color: #485342;
    font-family: 'Jacques Francois', sans-serif;
}

.about-guru-dev-heading p {
    font-size: 20px;
}

.sacred-village {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px 40px;
    background-color: #C7CEC9;
}

.village-cont {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.village-cont h1 {
    font-size: 35px;
    color: #485342;
    text-transform: uppercase;
    font-family: 'Jacques Francois', sans-serif;
}

.village-cont p {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: rgb(72, 83, 66);
    line-height: 40px;
}

.village-image {
    width: 35%;
}

.village-image img {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    /* background-color: #b9d5e3; */
    object-fit: cover;
    object-position: left;
}


.life-legacy {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px 40px;
    background-color: #DBE2DD;
}

.life-cont {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.life-cont h1 {
    font-size: 35px;
    color: #485342;
    text-transform: uppercase;
    font-family: 'Jacques Francois', sans-serif;
}

.life-cont p {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: rgb(72, 83, 66);
    line-height: 40px;
}

.life-img {
    width: 35%;
}

.life-img img {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    object-fit: cover;
    object-position: 0px 0px;
}


.ashram-mandir {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px 40px;
    background-color: #485342;
}

.mandir-cont {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mandir-cont h1 {
    font-size: 35px;
    font-family: 'Jacques Francois', sans-serif;
    text-transform: uppercase;
    color: #ffffff;
}

.mandir-cont p {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: rgb(255, 255, 255);
    line-height: 40px;
}

.mandir-img {
    width: 35%;
}

.mandir-img img {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    object-fit: cover;
}


@media(max-width: 768px) {
    .sacred-village {
        flex-direction: column-reverse;
        width: 100%;
        padding: 50px 25px;
    }

    .village-cont {
        width: 100%;
        padding: 0px;
    }

    .village-cont h1 {
        font-size: 24px;
        text-align: center;
    }

    .village-cont p {
        font-size: 15px;
        line-height: 30px;
    }

    .village-image {
        width: 100%;
    }

    .village-image img {
        width: 100%;
        height: 350px;
    }

    .life-legacy {
        flex-direction: column;
        width: 100%;
        padding: 50px 25px;
    }

    .life-cont {
        width: 100%;
        padding: 0px;
    }

    .life-cont h1 {
        font-size: 24px;
        text-align: center;
    }

    .life-cont p {
        font-size: 15px;
        line-height: 30px;
    }

    .life-img {
        width: 100%;
    }

    .life-img img {
        width: 100%;
        height: 350px;
    }

    .ashram-mandir {
        flex-direction: column-reverse;
        width: 100%;
        padding: 50px 25px;
    }

    .mandir-cont {
        width: 100%;
        padding: 0px;
    }

    .mandir-cont h1 {
        font-size: 30px;
        text-align: center;
    }

    .mandir-cont p {
        font-size: 15px;
        line-height: 30px;
    }

    .mandir-img {
        width: 100%;
    }

    .mandir-img img {
        width: 100%;
        height: 350px;
    }
}

/******************************************* about-page-about-section-end *******************************************/


/********************************************* about-gallery-section-start *********************************************/
.about-gallery-section {
    position: relative;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2F3A29;
}

.about-gallery-col {
    display: flex;
    align-items: center;
    justify-content: center;
}


.about-gallery-cont {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: start;
    justify-content: center;
}

.about-gallery-cont h1 {
    font-size: 40px;
    font-family: 'Jacques Francois', sans-serif;
    text-transform: uppercase;
    color: #fff;
}

.about-gallery-cont p {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    line-height: 40px;
}

.gallery-btn {
    padding: 15px 40px;
    border-radius: 6px;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    transition: all 0.4s ease;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.gallery-btn:hover {
    background-color: #fff;
    border: 2px solid #fff;
    color: #000000;
    font-weight: 500;
}

.about-gallery-collage {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-gallery-collage img {
    width: 80%;
}

/*
.collage-1 {
    width: 300px;
    height: 300px;
    background-color: #082535;
    border-radius: 22px;
    position: absolute;
    left: 70px;
    border: 10px solid white;
}

.collage-2 {
    width: 300px;
    height: 300px;
    background-color: #bba31b;
    border-radius: 22px;
    position: absolute;
    border: 10px solid white;
    top: 50px;
}

.collage-3 {
    width: 300px;
    height: 300px;
    background-color: #c9c9c9;
    border-radius: 22px;
    position: absolute;
    border: 10px solid white;
    left: 380px;
    top: -199px;
} */

/* @media(max-width: 1550px) {
    .about-gallery-cont {
        width: 50%;
    }

    .collage-1 {
        width: 250px;
        height: 250px;
    }

    .collage-2 {
        width: 250px;
        height: 250px;
        left: 200px;
    }

    .collage-3 {
        width: 250px;
        height: 250px;
        left: 330px;
        top: -165px;
    }
}*/

@media(max-width: 768px) {
    .about-gallery-section {
        padding: 80px 25px;
    }

    .about-gallery-cont {
        width: 100%;
        margin-bottom: 60px;
    }

    .about-gallery-cont h1 {
        font-size: 30px;
    }

    .about-gallery-cont p {
        font-size: 15px;
        line-height: 30px;
    }

    .about-gallery-collage img {
        width: 100%;
    }

    .gallery-btn {
        padding: 10px 40px;
    }
}

/********************************************* about-gallery-section-end *********************************************/





/************************************************* gallery-section-start **************************************************/
.img-gallery-section {
    padding: 100px 0px;
    background-color: #DBE2DD;
}

.img-gallery-row {
    display: flex;
    gap: 20px;
}

.img-gallery-a:hover {
    transform: scale(1.1);
}

.img-gallery-1 img {
    width: 100%;
    /* background-color: #fff; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 550px;
}

.img-gallery-2 img {
    width: 100%;
    /* background-color: #fff; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 270px;
    object-fit: cover;
}

.img-gallery-col {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.img-gallery-3 img {
    width: 100%;
    /* background-color: #fff; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 260px;
    object-fit: cover;
}

.img-gallery-4 img {
    width: 100%;
    /* background-color: #fff; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 550px;
}

.img-gallery-col-2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}


.img-gallery-5 img {
    width: 94%;
    /* background-color: #fff; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 260px;
    position: absolute;
    object-fit: cover;
}

.img-gallery-6 img {
    width: 95%;
    /* background-color: #fff; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 260px;
    position: absolute;
    left: 450;
    object-fit: cover;
    object-position: bottom;
}

.img-gallery-6-1 img {
    width: 95%;
    /* background-color: #fff; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 260px;
    position: absolute;
    left: 450;
    object-fit: cover;
    object-position: center;
}

.img-gallery-7 img {
    width: 100%;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 350px;
    object-fit: cover;
}

.img-gallery-8 img {
    width: 100%;
    /* background-color: #fff; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 350px;
    object-fit: cover;
}


.img-gallery-9 img {
    width: 100%;
    /* background-color: #fff; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 550px;
    object-fit: cover;
}

.img-gallery-col-3 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.img-gallery-10 img {
    width: 100%;
    /* background-color: #fff; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 260px;
    object-fit: cover;
}

.img-gallery-11 img {
    width: 100%;
    /* background-color: #fff; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    object-fit: cover;
    height: 260px;
}

.img-gallery-mobile-section {
    display: none;
}

@media(max-width: 768px) {
    .img-gallery-section {
        display: none;
    }

    .img-gallery-mobile-section {
        display: block;
        padding: 80px 0px;
    }

    .img-gallery-mobile-container {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .mobile-gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .mobile-gallery-grid-1 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .mobile-img-1 img {
        width: 100%;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        height: 200px;
        border-radius: 6px;
    }

    .mobile-img-1-cover img {
        width: 100%;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        height: 200px;
        border-radius: 6px;
        object-fit: cover;
    }
}

/************************************************** gallery-section-end **************************************************/


/*********************************************** retreat-section-start ***********************************************/
.retreat-section {
    padding: 100px 0px;
    background-color: #DBE2DD;
}

.retreat-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.right-retreat {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.right-top-retreat {
    width: 100%;
    height: 270px;
    background-color: #354D51;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
}

.right-top-retreat-1 {
    width: 100%;
    height: 270px;
    background-color: #22364F;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
}

.right-middle-retreat {
    width: 100%;
    height: 550px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
}

.right-bottom-retreat {
    width: 100%;
    height: 270px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
}

.center-retreat {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.center-top-retreat {
    width: 100%;
    height: 560px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
}

.center-bottom-retreat {
    width: 100%;
    height: 560px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
}

.left-retreat {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.left-top-retreat {
    width: 100%;
    height: 270px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
}

.left-middle-retreat {
    width: 100%;
    height: 550px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
}

.left-bottom-retreat {
    width: 100%;
    height: 270px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
}


@media(max-width: 768px) {
    .retreat-row {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
}

/*********************************************** retreat-section-end ***********************************************/




/*********************************************** contact-page-start ***********************************************/
.get-in-touch-section {
    padding: 80px 0;
    background-color: #485342;
}

.get-in-touch-heading h1 {
    font-family: 'Jacques Francois', sans-serif;
    font-size: 40px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
}

.get-in-touch-left-side h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #fff;
}

.get-in-touch-left-side p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #fff;
}

.get-in-touch-left-side {
    padding: 50px 20px 20px 20px;
}

.get-in-touch-inputs {
    display: flex;
    gap: 20px;
}

.inputGroup {
    font-family: 'Poppins', sans-serif;
    margin: 1em 0 1em 0;
    width: 50%;
    position: relative;
}

.my-input-2 {
    font-size: 100%;
    padding: 0.8em;
    outline: none;
    border: 2px solid #c9c9c9;
    background-color: transparent;
    border-radius: 8px;
    width: 100%;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.my-input-2::placeholder {
    color: transparent;
}

/* Specific styling for select dropdowns */
.my-input-2 select,
.my-input-2[type="date"],
select.my-input-2 {
    font-size: 100%;
    padding: 0.8em;
    outline: none;
    border: 2px solid #c9c9c9;
    background-color: transparent;
    border-radius: 8px;
    width: 100%;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    appearance: none;
    cursor: pointer;
}

/* Custom dropdown arrow for select */
select.my-input-2 {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

/* Date picker specific styling */
.my-input-2[type="date"] {
    color: #fff;
}

.my-input-2[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Option styling for dropdowns */
select.my-input-2 option {
    background-color: #333;
    color: #fff;
    padding: 8px;
}

.my-label {
    font-size: 100%;
    position: absolute;
    left: 0;
    padding: 0.8em;
    margin-left: 0.5em;
    pointer-events: none;
    transition: all 0.3s ease;
    color: #c7c7c7;
    font-family: 'Poppins', sans-serif;
}

/* Enhanced selector to include date and select inputs */
.inputGroup :is(.my-input-2:focus, .my-input-2:valid, .my-input-2[type="date"]:not([value=""]), select.my-input-2:not([value=""]))~.my-label {
    transform: translateY(-50%) scale(.9);
    margin: 0em;
    margin-left: 1.3em;
    padding: 0.2em;
    background-color: #fff;
    color: #485342;
    /* border-radius: 10%; */
}

.inputGroup :is(.my-input-2:focus, .my-input-2:valid, .my-input-2[type="date"], select.my-input-2) {
    border-color: #fff;
}

/* Force label to stay up when date has value */
.inputGroup .my-input-2[type="date"]:not(:placeholder-shown)~.my-label,
.inputGroup select.my-input-2:not([value=""])~.my-label {
    transform: translateY(-50%) scale(.9);
    margin: 0em;
    margin-left: 1.3em;
    padding: 0.2em;
    background-color: #fff;
    color: #485342;
    /* border-radius: 10%; */
}

/* Additional JavaScript trigger class for select elements */
.inputGroup select.my-input-2.has-value~.my-label {
    transform: translateY(-50%) scale(.9);
    margin: 0em;
    margin-left: 1.3em;
    padding: 0.2em;
    background-color: #fff;
    color: #485342;
    /* border-radius: 10%; */
}

.get-in-touch-message {
    border: 2px solid #ffffff;
    border-radius: 8px;
}

/* .form-control {
    height: 110px;
    padding: 20px;
    border: none;
    font-family: 'Lexend Deca', sans-serif;
} */

/* Additional styles for better dropdown and date input appearance */
.my-input-2[type="date"] {
    color: #ffffff;
}

.my-input-2[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

.my-input-2 select option {
    padding: 8px;
}

/* Ensure consistent styling for select elements */
.my-input-2 select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.submit-button {
    padding: 7px 50px;
    margin-top: 20px;
    border: none;
    color: #ffffff;
    background-color: transparent;
    border-radius: 5px;
    transition: all 0.4s ease;
    font-family: 'Poppins', sans-serif;
    border: 2px solid #ffffff;
}

.submit-button:hover {
    background-color: #fff;
    border: 2px solid #fff;
    color: #485342;
}


.get-in-touch-right-side {
    padding: 50px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.call-us-now {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.call-us-now h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    color: #fff;
}

.call-us-now ul {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 400;
    color: #717171;
    list-style: none;
    display: flex;
    flex-direction: column;
    padding-left: 0px;
    gap: 10px;

}

.call-us-now ul li {
    display: flex;
    gap: 10px;
}

.call-us-now li i {
    color: #fff;
}

.call-us-now li a {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}



.visit-us-now h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    color: #fff;
}

.visit-us-now p {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 400;
    color: #fff;
}

.visit-us-now a {
    text-decoration: none;
}

.visit-us-now-icon {
    display: flex;
    gap: 10px;
}

.visit-us-now-icon {
    font-size: 17px;
    color: #fff;
}

.visit-us-now-icon h6 {
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 1px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}


@media(max-width: 480px) {
    .call-us-now ul {
        flex-direction: column;
    }

    .visit-us-now-icon h6 {
        font-size: 17px;
    }

    .get-in-touch-heading h1 {
        font-size: 35px;
    }

    .get-in-touch-left-side {
        padding: 10px 0px 0px 0px;
    }

    .get-in-touch-right-side {
        padding: 50px 0px 0px 0px;
    }

    .call-us-now h4 {
        font-size: 35px;
    }

    .visit-us-now h4 {
        font-size: 35px;
    }
}

.contact-map {
    position: relative;
    padding: 80px 0;
    background-color: #485342;
}



.google-map iframe {
    width: 100%;
    height: 510px;
    border-radius: 12px;
}

.retreat-card-section {
    padding: 80px 0px;
    background-color: #fff;
}

.retreat-card-1 {
    width: 100%;
    height: 400px;
    background-color: #fdedd8;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.retreat-card-1:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.retreat-card-2 {
    width: 100%;
    height: 400px;
    background-color: #ffffde;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.retreat-card-2:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.retreat-card-3 {
    width: 100%;
    height: 400px;
    background-color: #d7fded;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.retreat-card-3:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

@media(max-width: 768px) {
    .retreat-card-row {
        display: flex;
        gap: 20px;
    }
}

.get-in-touch-row {
    display: flex;
    align-items: center;
    justify-content: center;
}



.rating-section {
    padding: 80px 0px;
    background-color: #f4fff7;
}

.rating-heading {
    margin-bottom: 30px;
}

.rating-heading h1 {
    font-family: 'Jacques Francois', sans-serif;
    color: #485342;
    font-size: 40px;
    text-transform: uppercase;
    text-align: center;
}

.rating-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 10px; */
}

.rating-number h1 {
    font-size: 80px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0px;
    font-weight: 600;
}

.rating-stars {
    display: flex;
}

.rating-stars i {
    font-size: 25px;
    color: #F6B500;
}

.rating-number h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #6a6a6a;
}

.bar-col{
    display: flex;
    align-items: center;
    justify-content: center;
}

.five-bar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.five-bar p {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0px;
}

.five-bar p i {
    font-size: 25px;
    color: #f6b500;
}

.bar-relative {
    position: relative;
    display: flex;
    align-items: center;
}

.five-bar-div {
    position: absolute;
    width: 450px;
    height: 20px;
    background-color: #f6b500;
    border-radius: 50px 0px 0px 50px;
    z-index: 10;
}

.five-bar-bg {
    width: 500px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 50px;
    position: absolute;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


.four-bar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.four-bar p {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0px;
}

.four-bar p i {
    font-size: 25px;
    color: #f6b500;
}

.four-bar-div {
    position: absolute;
    width: 70px;
    height: 20px;
    background-color: #f6b500;
    border-radius: 50px 0px 0px 50px;
    z-index: 10;
}

.four-bar-bg {
    width: 500px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 50px;
    position: absolute;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


.three-bar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.three-bar p {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0px;
}

.three-bar p i {
    font-size: 25px;
    color: #f6b500;
}

.three-bar-div {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #f6b500;
    border-radius: 50px 0px 0px 50px;
    z-index: 10;
}

.three-bar-bg {
    width: 500px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 50px;
    position: absolute;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


.two-bar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.two-bar p {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0px;
}

.two-bar p i {
    font-size: 25px;
    color: #f6b500;
}

.two-bar-div {
    width: 500px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


.one-bar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.one-bar p {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0px;
}

.one-bar p i {
    font-size: 25px;
    color: #f6b500;
}

.one-bar-div {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #f6b500;
    border-radius: 50px 0px 0px 50px;
    z-index: 10;
}

.one-bar-bg {
    width: 500px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 50px;
    position: absolute;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


.high-rated {
    display: flex;
    flex-direction: column;
}

.high-rated h3 {
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
}


.high-rated p {
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

.high-rated img{
    width: 46%;
}

/* .high-rated a img{
    width: 100%;
} */


@media(max-width: 768px) {
    .five-bar-bg {
        width: 300px;
    }

    .five-bar-div {
        width: 270px;
    }

    .four-bar-bg {
        width: 300px;
    }

    .four-bar-div {
        width: 50px;
    }

    .three-bar-bg {
        width: 300px;
    }

    .three-bar-div {
        width: 20px;
    }

    .two-bar-div {
        width: 300px;
    }

    .one-bar-bg {
        width: 300px;
    }

    .one-bar-div {
        width: 20px;
    }
}