/* Common */

:root {
    --color-primary: #CCA369;
    --color-secondary: #474747;
    --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.box-shadow {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

body {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #fff;
    color: var(--color-secondary)
}

a {
    text-decoration: none;
    color: inherit;
}

.text-justify {
    text-align: justify;
}

.main-heading {
    text-align: center;
    margin-bottom: 50px;
}

.main-heading .main-head {
    font-family: "Cinzel", serif;
    font-weight: 600;
    font-size: 36px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.main-heading .sub-head {
    color: var(--color-primary);
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 0;
}

.main-heading .head-divider {
    width: 530px;
    max-width: 80%;
    margin: 0px auto 20px;
}

.main-heading .head-divider img {
    width: 400px;
    max-width: 100%;
}

.btn-book {
    background: var(--color-secondary);
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 100px;
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    padding: 5px 20px;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
    transform: translateY(-2px);
}


.btn-primary {
    background: var(--color-primary);
    color: var(--color-secondary);
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 18px;
    border-radius: 50px;
    padding: 5px 20px;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

.btn-primary:hover {
    background: var(--color-secondary);
    color: #fff;
    transform: translateY(-2px);
}


.btn-secondary {
    background: var(--color-secondary);
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 18px;
    border-radius: 50px;
    padding: 5px 20px;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--color-secondary);
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 18px;
    border-radius: 50px;
    padding: 5px 20px;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

.btn-white:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
    transform: translateY(-2px);
}

.list-style {
    list-style: none;
    padding-left: 0;
}

.list-style li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 0.75rem;
}

.list-style li::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 0.15em;
    width: 1.2em;
    height: 1.2em;
    background: url('../../images/circle-right.svg') no-repeat center center;
    background-size: contain;
    display: inline-block;
}

.list-style2 {
    list-style: none;
}

.list-style2 li {
    position: relative;
    margin-bottom: 0.75rem;
}

.list-style2 li::before {
    content: "";
    position: absolute;
    left: -2rem;
    width: 1.2em;
    height: 1.2em;
    background: url('../../images/flower.png') no-repeat center center;
    background-size: contain;
    display: inline-block;
}

@media (max-width: 991px) {
    .main-heading {
        margin-bottom: 25px;
    }

    .main-heading .main-head {
        font-size: 24px;
    }

    .main-heading .sub-head {
        font-size: 18px;
    }

    .main-heading .head-divider {
        width: 450px;
    }

    .main-heading .head-divider img {
        width: 400px;
    }

}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }

    .main-heading {
        margin-bottom: 20px;
    }

    .main-heading .main-head {
        font-size: 20px;
    }

    .main-heading .sub-head {
        font-size: 16px;
    }

    .main-heading .head-divider {
        width: 400px;
    }

    .main-heading .head-divider img {
        width: 350px;
    }

    .btn-primary {
        font-size: 16px;
    }

    .btn-secondary {
        font-size: 16px;
    }

    .btn-white {
        font-size: 14px;
    }

}


/* Common */

/* TopBar */

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-secondary);
    color: #fff;
    padding: 10px 5vw;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 600;
    flex-wrap: wrap;
    gap: 10px;
}

.topbar-left {
    display: flex;
    gap: 40px;
    align-items: center;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact_details {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact_details .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-secondary);
    background: #fff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
}

.contact_details .icon i {
    font-size: 18px;
}

.contact_details a {
    color: #fff;
    text-decoration: none;
}

.contact_details a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.social {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s;
    color: var(--color-secondary);
    font-size: 18px;
    ;
}

.social:hover {
    background: var(--color-primary);
    color: #fff;
}

@media (max-width: 991px) {
    .topbar {
        justify-content: center;
        padding: 10px 3vw;
    }

    .topbar-left,
    .topbar-right {
        gap: 20px;
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }

    .contact_details .icon {
        width: 25px;
        height: 25px;
    }

    .contact_details .icon i {
        font-size: 16px;
    }

    .contact_details a {
        font-size: 14px;
    }

    .social {
        width: 25px;
        height: 25px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .topbar {
        justify-content: center;
        padding: 10px 2vw;
        gap: 5px;
    }

    .topbar-left,
    .topbar-right {
        flex-direction: row;
        gap: 20px;
        align-items: center;
        width: 100%;
    }

    .contact_details .icon {
        width: 25px;
        height: 25px;
    }

    .contact_details .icon i {
        font-size: 16px;
    }

    .contact_details a {
        font-size: 14px;
    }

    .social {
        width: 25px;
        height: 25px;
        font-size: 16px;
    }
}

/* TopBar */

.navbar {
    padding: 0;
    border-bottom: 2px solid var(--color-secondary);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-collapse {
    padding: 30px 0;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    width: 100px;
    height: auto;
}

.navbar-nav {
    column-gap: 10px;
}

.nav-link {
    color: var(--color-secondary);
    font-weight: 700;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link:focus,
.nav-link:active,
.nav-link.active {
    color: var(--color-primary) !important;
}

@media (max-width: 991px) {
    .navbar {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .navbar-brand img {
        width: 60px;
        height: auto;
    }

    .navbar-collapse {
        padding: 10px 0;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0;
        padding-bottom: 20px;
    }

    .nav-link {
        padding: 10px 0;
        font-size: 15px;
    }
}

/* Dropdownmenu Styling */

.navbar .dropdown:hover .dropdown-menu {
    display: block;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 1px solid var(--color-secondary);
    padding: 1rem;
    border-radius: 10px;
    border: none;
    box-shadow: var(--box-shadow);
}

.dropdown-menu .dropdown-item:not(:last-child) {
    border-bottom: 1px solid rgba(71, 71, 71, 0.15) !important;
}

.dropdown-item:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-book {
    background: var(--color-secondary);
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 100px;
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    padding: 5px 20px;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
}

@media (max-width: 991px) {
    .dropdown-menu {
        position: static !important;
        float: none;
        box-shadow: none;
        width: 100%;
        min-width: unset;
        padding: 0.5rem;
    }

    .btn-book {
        width: 100%;
    }
}

/* Navbar */

/* Yoga Section */
.yoga-section {
    padding: 50px 0;
    display: flex;
    justify-content: center;
}

.yoga-container {
    position: relative;
    background: var(--color-secondary);
    border-radius: 20px;
    padding: 40px 20px;
    width: 80%;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    overflow: hidden;
}

.yoga-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../../images/bg/bg-2.png) 0% 0% / cover no-repeat;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
    border-radius: 20px;
}

.yoga-container>* {
    position: relative;
    z-index: 1;
}

/* Left Column */
.yoga-info {
    flex: 33%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
}

.yoga-info .heading {
    font-family: "Cinzel", serif;
    font-weight: 700;
    font-size: 36px;
}

.yoga-info .subheading {
    font-size: 20px;
}

/* Center Column */
.contact-card {
    flex: 33%;
    background: linear-gradient(145deg, #f5e7d0, #d9c1a3);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--box-shadow);
}

.contact-card .heading {
    font-size: 64px;
    font-weight: 800;
    ;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item .icon {
    background-color: var(--color-secondary);
    width: 55px;
    height: 55px;
    margin-right: 15px;
    border-radius: 50%;
    text-align: center;
    align-items: center;
    align-content: center;
}

.contact-item svg {
    color: #fff;
    /* width: 35px;
    height: 35px; */
}

.contact-item .label {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 0px;
    color: var(--color-secondary);
}

.contact-item .info {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--color-secondary);
}

.contact-item .info:hover {
    text-decoration: underline;
}

/* Right Column */
.map-container {
    flex: 30%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width:1200px) {
    .contact-card .heading {
        font-size: 36px;
        text-align: center;
    }
}

@media (max-width:991px) {
    .yoga-section {
        padding: 30px 0;
    }

    .map-container {
        flex: 100%;
    }

    .contact-card .heading {
        font-size: 36px;
        text-align: center;
    }
}

@media (max-width:767px) {
    .yoga-section {
        padding: 20px 5px;
    }

    .yoga-container {
        padding: 20px 10px;
        width: 100%;
    }

    .contact-card {
        flex: 100%;
    }

    .yoga-info {
        flex: 100%;
        margin-bottom: 20px;
    }

    .yoga-info .heading {
        font-size: 18px;
    }

    .contact-card {
        padding: 10px;
    }

    .contact-card .heading {
        font-size: 24px;
        margin-bottom: 15px;
        text-align: center;
    }


    .contact-item .icon {
        width: 35px;
        height: 35px;
    }

    .contact-item .label {
        font-size: 14px;
    }

    .contact-item .info {
        font-size: 16px;
    }

}

/* Yoga Section */

/* Footer */
.footer {
    position: relative;
    background:
        linear-gradient(86.63deg, #CCA369 -73.23%, #FFF3E3 106.53%);
    color: var(--color-secondary);
    margin-top: 40px;
    overflow: hidden;
    border-top-right-radius: 80px;
    border-top-left-radius: 80px;
    padding-top: 50px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.25);
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../../images/bg/bg-1.png) repeat;
    background-size: 200px 200px;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
    border-radius: 20px;
}

.footer>* {
    position: relative;
    z-index: 1;
}


.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 20px 0;
    align-items: baseline;
}

.footer-col:first-child {
    width: 350px;
}

.footer-logo {
    width: 90px;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
    color: var(--color-secondary);
    text-align: justify;
}

.footer-head {
    font-size: 26px;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--color-secondary);
    display: inline-block;
    padding-bottom: 5px;
    font-family: "Cinzel", sans-serif;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer .footer-menu li {
    margin: 6px 0;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.footer .footer-menu li::before {
    content: "";
    position: absolute;
    left: 0;
    background: url(../../images/footer_bullet.png);
    width: 20px;
    height: 20px;
    margin-top: 3px;
    background-size: contain;
    background-repeat: no-repeat;
}

.footer .footer-menu li a:hover {
    text-decoration: underline;
}


.footer-bottom {
    background: var(--color-secondary);
    color: #fff;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    padding: 10px 8%;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover {
    text-decoration: undderline;
}

.footer-links span {
    color: #fff;
    opacity: 0.5;
}

.footer-text {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .footer {
        border-top-right-radius: 50px;
        border-top-left-radius: 50px;
        padding-top: 20px;
    }

    .footer-bottom {
        font-size: 14px;
        padding: 10px 5px;
    }

    .footer-links {
        gap: 5px;
    }
}

/* Footer */

/*Note Section */
.note-section {
    background: #f7f1e6;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    margin-top: 50px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    border-left: 8px solid rgba(204, 163, 105, 1);
}

.note-section .note-heading {
    font-size: 18px;
    color: var(--color-secondary);
    font-weight: 800;
    margin-bottom: 10px;
}

.note-section .note-content {
    list-style: disc;
    padding-left: 20px;
    color: var(--color-secondary);
    font-size: 14px;
}

.note-section li {
    margin-bottom: 6px;
}

@media (max-width: 767px) {
    .note-section .note-heading {
        font-size: 16px;
    }
}

/* Teacher */

.teachers-section {
    padding: 40px 0;
}

.teachers-text {
    max-width: 1000px;
    margin: 0 auto 40px;
    color: var(--color-secondary);
    line-height: 1.7;
    font-size: 15px;
}

.teacher-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px 15px 30px;
    transition: all 0.3s ease;
}

.teacher-img {
    width: 100%;
    background: #f39c2b;
    border-radius: 20px;
    box-shadow: 10px 10px 0 rgba(71, 71, 71, 0.3);
    overflow: hidden;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.teacher-img img {
    width: 100%;
    height: auto;
}

.teacher-card:hover .teacher-img {
    transform: translateY(-5px);
    box-shadow: 10px 10px 0 var(--color-secondary);
}

.teacher-card .teacher-name {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 18px;
    color: var(--color-secondary);
    font-family: "Cinzel", serif;
    text-transform: uppercase;
}

.teacher-card .teacher-position {
    color: var(--color-secondary);
    font-size: 16px;
}


.teachers-carousel .owl-nav button {
    position: absolute;
    top: 40%;
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    font-size: 24px;
    color: #fff !important;
}

.teachers-carousel .owl-nav .owl-prev {
    left: -50px;
    background: var(--color-secondary) !important;
    width: 30px;
    height: 30px;
}

.teachers-carousel .owl-nav .owl-next {
    right: -50px;
    background: var(--color-secondary) !important;
    width: 30px;
    height: 30px;
}

.teachers-carousel .owl-nav .owl-prev:hover,
.teachers-carousel .owl-nav .owl-next:hover {
    background: var(--color-primary) !important;
}


/* Teacher */

/* Food Accomodation */
.food-accommodation {
    position: relative;
    background-image: url("../../images/bg/acco-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
    text-align: center;
}


/* Optional overlay for better text visibility */
.food-accommodation::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    opacity: 0.8;
    z-index: 1;
}

.food-accommodation .container {
    position: relative;
    z-index: 2;
}

.text-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
}

.carousel-card {
    flex: 35%;
    max-width: 40%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    min-width: 320px;
}

.text-card {
    padding: 30px;
    text-align: left;
}

.text-card .heading {
    color: var(--color-primary);
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
    border-bottom: 2px solid var(--color-primary);
}


.food-accommodation .carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.food-accommodation .carousel-track {
    display: flex;
    transition: transform 0.6s ease;
}

.food-accommodation .carousel img {
    width: 100%;
    flex-shrink: 0;
    border-radius: 15px;
}

.food-accommodation .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.food-accommodation .carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
}

.food-accommodation .carousel-dots button.active {
    background: #b68a2b;
}


/* Responsive */
@media (max-width: 992px) {
    .text-card {
        padding: 10px;
    }

    .carousel-card {
        margin-bottom: 20px;
    }

    .teachers-carousel .owl-nav .owl-prev {
        left: 0;
    }

    .teachers-carousel .owl-nav .owl-next {
        right: 0;
    }
}

@media (max-width: 767px) {}

/* Food Accomodation */

/* Review Section */

.review-section {
    padding: 40px 0;
    text-align: center;
    background-image:
        linear-gradient(0deg, #ffffff3b, #ffffff7a), linear-gradient(35.19deg, rgba(210, 188, 152, 0.23) -38.25%, rgba(242, 242, 242, 0.49) 133.19%), url(../../images/courses_bg.png);
    background-blend-mode: normal, multiply, overlay;
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;
}


.video-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    max-width: 350px;
    background-color: #fff;
    border: 1px dashed var(--color-primary);
    padding: 2px;
    box-shadow: 10px 10px 0px var(--color-primary);
}

.video-card img {
    width: 100%;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 42px;
    color: #FF0000 !important;
    line-height: 40px;
    font-size: 40px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.video-card:hover .play-btn {
    background-color: #fff;
}


.review-card {
    position: relative;
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: left;
    margin: 10px;
    background-color: #fff;
    border: 2px solid var(--color-primary);
    box-shadow: 10px 10px 0px var(--color-secondary);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: scale(1.01);
}

.review-card .stars {
    color: var(--color-primary);
    font-size: 24px;
}

.review-card .name {
    margin: 10px 0;
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 24px;
    font-family: "Cinzel", serif;
}

.review-card .show-more {
    color: var(--color-primary);
    cursor: pointer;
}

.review-card .profile-img {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-primary);
}

.review-card .profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-carousel .owl-nav button {
    position: absolute;
    top: 40%;
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    font-size: 24px;
    color: #fff !important;
}

.review-carousel .owl-nav .owl-prev {
    left: -50px;
    background: var(--color-secondary) !important;
    width: 30px;
    height: 30px;
}

.review-carousel .owl-nav .owl-next {
    right: -50px;
    background: var(--color-secondary) !important;
    width: 30px;
    height: 30px;
}

.review-carousel .owl-nav .owl-prev:hover,
.review-carousel .owl-nav .owl-next:hover {
    background: var(--color-primary) !important;
}

@media (max-width: 768px) {
    .video-row {
        flex-direction: column;
        align-items: center;
    }

    .review-carousel .owl-nav .owl-prev {
        left: 0;
    }

    .review-carousel .owl-nav .owl-next {
        right: 0;
    }
}

/* Review Section */


/* Follow On Instagram */

.follow-instagram {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Nunito", sans-serif;
    position: relative;
    background:
        linear-gradient(35.19deg, rgba(210, 188, 152, 0.404706) -38.25%, rgba(242, 242, 242, 0.86) 133.19%);
}

.follow-instagram .flower-left,
.follow-instagram .flower-right {
    position: absolute;
    top: 50%;
    width: 300px;
    opacity: 0.8;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.follow-instagram .flower-left {
    left: 0px;
}

.follow-instagram .flower-right {
    right: 0px;
}

.follow-instagram .container {
    z-index: 1;
}

.follow-item {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 10px;
    text-align: left;
    margin: 10px;
    background-color: #fff;
    border: 2px solid var(--color-primary);
    box-shadow: 10px 10px 0px var(--color-secondary);
    transition: all 0.3s ease;
}

.follow-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.follow-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(199, 155, 92, 0.6);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 20px;
    color: #fff;
    font-size: 100px;
}

.follow-item:hover .overlay {
    opacity: 1;
}


/* Flower background images */
.flower-left,
.flower-right {
    position: absolute;
    top: 50%;
    width: 300px;
    opacity: 0.3;
    transform: translateY(-50%);
    z-index: 0;
}

.flower-left {
    left: 0px;
}

.flower-right {
    right: 0px;
}

.follow-carousel .owl-nav button {
    position: absolute;
    top: 40%;
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    font-size: 24px;
    color: #fff !important;
}

.follow-carousel .owl-nav .owl-prev {
    left: -50px;
    background: var(--color-secondary) !important;
    width: 30px;
    height: 30px;
}

.follow-carousel .owl-nav .owl-next {
    right: -50px;
    background: var(--color-secondary) !important;
    width: 30px;
    height: 30px;
}

.follow-carousel .owl-nav .owl-prev:hover,
.follow-carousel .owl-nav .owl-next:hover {
    background: var(--color-primary) !important;
}

@media (max-width: 768px) {
    .follow-carousel .owl-nav .owl-prev {
        left: 0;
    }

    .follow-carousel .owl-nav .owl-next {
        right: 0;
    }
}

/* Follow On Instagram */

/* FAQ */
.faq-accordion .faq-button {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    border-radius: 20px;
    font-weight: 800;
    padding: 8px 15px 8px 40px;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: var(--box-shadow);
    font-size: 16px;
    position: relative;
}

.faq-accordion .faq-button:hover {
    background-color: var(--color-secondary);
    color: #fff;
}

.faq-accordion .faq-button::before {
    content: "Q";
    background: var(--color-secondary);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    font-size: 14px;
    margin-right: 12px;
    transition: transform 0.3s ease;
    position: absolute;
    left: 5px;
}

.faq-accordion .faq-button::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform 0.3s ease;
    position: absolute;
    right: 20px;
}

.faq-accordion .faq-button:not(.collapsed)::after {
    transform: rotate(180deg);
}


.faq-body {
    background: #fff;
    border: 1px solid var(--color-primary);
    border-top: none;
    border-radius: 0 0 20px 20px;
    padding: 16px 24px;
    box-shadow: var(--box-shadow);
    max-width: 95%;
    margin: auto;
}

/* FAQ */