 h1,
 h1 span {
     font-family: "MonteCarlo", cursive;
     padding: 0;
     margin: 0;
 }

 html,
 body {
     padding: 0;
     margin: 0;
 }

 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: "Playfair Display", serif;
     font-weight: 700;
     padding: 0;
     margin: 0;
 }

 p,
 span,
 li,
 div,
 button {
     font-family: "Playfair Display", serif;
     font-weight: 400;
     padding: 0;
     margin: 0;
 }

 p,
 li,
 div,
 button {
     font-family: "Inter", sans-serif;
     font-weight: 400;
     padding: 0;
     margin: 0;
 }

 img {
     width: 100%;
     display: block
 }

 .swiper-container {
     width: 100%;
 }

 #mySwiper {
     padding: 40px 0 0;
 }

 /*
        .swiper-slide {
            width: auto !important;
        }

        .card {
            width: 400px;
            border-radius: 8px;
            background: white;
            overflow: hidden;
        }

        .card__img {
            display: block;
            width: 100%;
            object-fit: cover;
        }

        .card__body {
            padding: 15px 20px;
            font-weight: 600;
            text-align: center;
        }

        .card__body>h3 {
            font-size: 1.25rem;
            line-height: 1.5;
        }

        .card__body>span {
            display: block;
            font-size: 1rem;
            color: #f44336;
        } */

 .container {
     max-width: 1180px;
     margin: auto;
 }

 .btn {
     background: #1f1f1f;
     color: #fff;
     padding: 14px 34px;
     display: inline-block;
     font-size: 13px;
     letter-spacing: 1px;
     text-transform: uppercase
 }

 /* Header Styling */
 .header {
     position: fixed;
     top: 0;
     left: 0;
     z-index: 100;
     transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
     width: 100%;
 }

 .header .row {
     height: 100%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 16px 0;
 }

 .header.scrolled {
     background-color: rgb(254, 248, 236);
     backdrop-filter: blur(10px);
     box-shadow: var(--box-shadow);
 }

 .nav-list .nav-item .nav-link {
     position: relative;
 }

 html {
     scroll-behavior: smooth;
 }

 .nav-list .nav-item .nav-link:after {
     content: "";
     position: absolute;
     bottom: -2px;
     left: 0;
     height: 2px;
     width: 100%;
     transform: scaleX(0);
     transition: transform 350ms ease-out;
     transform-origin: right;
 }


 .nav-list .nav-item .nav-link.active:after {
     transform: scaleX(1);
 }

 .nav-list .nav-item .nav-link:hover::after,
 .nav-list .nav-item .nav-link.active::after {
     transform: scaleX(1);
     transform-origin: left;
 }

 .nav-list .nav-item .nav-link::after,
 .nav-list .nav-item .nav-link.active::after {
     background: #404040;
 }


 section .slick-prev {
     left: -15px;
     z-index: 1;
     width: 36px;
     height: 36px;
 }

 section .slick-next {
     right: -15px;
     z-index: 1;
     width: 36px;
     height: 36px;
 }

 section .slick-prev::before,
 section .slick-next::before {
     color: #E8D9C4;
     display: block;
     width: 36px;
     height: 36px;
     font-size: 36px;
     opacity: 1;
     line-height: 36px;
 }

 section .slick-prev::before {
     content: '';
     background-image: url('../image/left.svg');
 }

 section .slick-next::before {
     content: '';
     background-image: url('../image/right.svg');
 }
#wpcf7-f7-o1 .hidden-fields-container {
    display: none;
}
 .logo {
     font-size: 1.8rem;
     font-weight: 700;
     color: var(--primary-color);
     text-decoration: none;
     text-transform: uppercase;
     letter-spacing: 1px;
     transition: transform 0.3s ease;
 }

 /*.logo:hover {*/
 /*    transform: scale(1.05);*/
 /*}*/

 /* Navigation Menu */
 .nav-list {
     list-style: none;
     display: flex;
     gap: 2rem;
 }

 .nav-link {
     font-size: 16px;
     font-weight: 500;
     color: #404040;
     text-decoration: none;
     position: relative;
     padding-bottom: 5px;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 0;
     width: 0;
     height: 2px;
     background-color: var(--primary-color);
     transition: width 0.3s ease;
 }

 .nav-link:hover::after {
     width: 100%;
 }

 /* Hamburger Menu for Mobile */
 .nav-toggle {
     display: none;
     /* Hide on desktop */
     width: 40px;
     height: 40px;
     border: none;
     background: transparent;
     cursor: pointer;
     position: relative;
 }

 .hamburger {
     display: block;
     width: 25px;
     height: 2px;
     background-color: #000;
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     transition: background-color 0.3s ease, transform 0.3s ease;
 }

 .hamburger::before,
 .hamburger::after {
     content: '';
     position: absolute;
     width: 100%;
     height: 2px;
     background-color: #000;
     transition: transform 0.3s ease, top 0.3s ease;
     left: 0;
 }

 .hamburger::before {
     top: -8px;
 }

 .hamburger::after {
     top: 8px;
 }

 .nav-toggle.open .hamburger {
     background-color: transparent;
 }

 .nav-toggle.open .hamburger::before {
     top: 0;
     transform: rotate(45deg);
 }

 .nav-toggle.open .hamburger::after {
     top: 0;
     transform: rotate(-45deg);
 }


 /* HERO */
 .hero {
     background: url('../image/bg-img.jpg') center/cover no-repeat;
     grid-template-columns: 1.2fr 1fr;
     align-items: center;
     color: #fff;
     position: relative;
     padding: 80px 0 0;
 }

 .hero .container {
     display: flex;
     width: 100%;
     gap: 115px;
     align-items: center;
 }

 .hero .container .content-box {
     text-align: center;

 }


 .hero .content-box,
 .hero .image-box {
     width: 50%;
 }

 .hero .content-box {
     position: relative
 }

 .hero .content-box .badge {
     padding: 8px 18px;
     display: inline-block;
     color: #404040;
     text-align: center;
     font-size: 34px;
     font-style: normal;
     font-weight: 500;
     line-height: initial;
     letter-spacing: 2.38px;
 }

 .hero .content-box h1 {
     position: relative;

 }

 .hero .content-box h1 span {
     display: block;
     color: #404040;
     text-align: center;
     font-size: 128px;
     font-style: normal;
     font-weight: 400;
     line-height: 130px;
     text-transform: capitalize;
     position: relative;
     z-index: 1;
     opacity: 0;
     padding: 0 0 17px 0;
 }

 .hero .content-box h1:after {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-image: url('../image/hp-banner-inner-bg\ 1.svg');
     background-repeat: no-repeat;
     background-size: contain;
     background-position: 50% 50%;
     z-index: 0;
 }

 .hero .content-box p {
     color: #404040;
     text-align: center;
     font-size: 16px;
     font-weight: 400;
     line-height: 24px;
     /* 150% */
     padding-bottom: 40px;
     width: 80%;
     margin: 0 auto;
 }

 .hero .content-box .btn-block {
     display: flex;
     align-items: center;
     gap: 24px;
 }

 a,
 .btn {
     cursor: pointer;
 }

 .hero .content-box .btn-block .book-btn {
     background: #404040;
     color: #FFF;
     text-align: center;
     font-size: 20px;
     font-style: normal;
     font-weight: 500;
     line-height: normal;
     padding: 16px 24px;
     display: inline-flex;
     align-items: center;
     gap: 16px;
     transition: 0.45s all ease;
     border: 1px solid #404040;
     text-decoration: none;
 }

 .hero .content-box .btn-block .book-btn:hover,
 .about-sec .about-card .btn-box a.btn:hover,
 .contact .row form .btn:hover {
     background-color: transparent;
     color: #404040;
     border: 1px solid #404040;
     transition: 0.45s all ease;
 }

 .hero .content-box .btn-block .book-btn:hover svg path,
 .about-sec .about-card .btn-box a.btn:hover svg path,
 .contact .row form .btn:hover svg path {
     transition: 0.45s all ease;
     stroke: #404040;
 }

 .hero .content-box .btn-block .book-btn svg path {
     stroke: #fff;
 }

 .hero .content-box .btn-block .learn-btn {
     border: 1px solid #404040;
     color: #404040;
     text-align: center;
     font-size: 20px;
     font-weight: 600;
     padding: 16px 28px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 16px;
 }



 .hero .content-box .btn-block .learn-btn:hover {
     background: #404040;
     color: #fff;
     border: 1px solid #404040;
     transition: 0.45s all ease;
 }

 .hero .content-box .btn-block .learn-btn:hover svg path {
     transition: 0.45s all ease;
     stroke: #fff;
 }


 /* ABOUT */
 .about-sec {
     background: url('../image/sec-bg.jpg') center/cover no-repeat;
     position: relative;
     padding: 1px 0;
 }


 .about-card {
     background: url('../image/Frame\ 2147224288.jpg');
     margin: -31px 0;
     padding: 80px;
     position: relative;
     z-index: 1;
     background-position: 50% 59%;
 }

 .about-sec .about-card .upper-block {
     width: 70%;
     margin: 0 auto;
     padding-bottom: 40px;
 }

 .about-sec .about-card .upper-block span {
     color: #404040;
     text-align: left;
     font-size: 34px;
     font-weight: 500;
     line-height: initial;
     /* 147.059% */
     letter-spacing: 3.4px;
     display: block;
 }

 .about-sec .about-card .upper-block h2 {
     background: linear-gradient(90deg, #D7C6AB 0%, #454545 100%);
     background-clip: text;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     font-family: MonteCarlo;
     font-size: 128px;
     font-weight: 400;
     line-height: 128px;
     /* 101.563% */
     text-transform: capitalize;
     text-align: center;
 }

 .about-sec .about-card .upper-block span.text-end {
     text-align: end;
 }

 .about-sec .about-card .upper-block .d-flex {
     display: flex;
     text-align: center;
     /* gap: 12px; */
     justify-content: center;
     padding-top: 24px;
 }

 .about-sec .about-card .upper-block .d-flex p {
     border-right: 1px solid #000;
     padding: 0 6px;
 }

 .about-sec .about-card .upper-block .d-flex p:last-child {
     border: none;
 }

 .about-sec .about-card .content h3 {
     color: #404040;
     font-family: 'Inter';
     font-size: 16px;
     font-style: normal;
     font-weight: 500;
     line-height: 24px;
     /* 150% */
 }

 .about-sec .about-card .content p,
 .about-sec .about-card .content ul li {
     color: #404040;
     font-family: 'Inter';
     font-size: 16px;
     font-style: normal;
     font-weight: 400;
     line-height: 24px;
     /* 150% */
     padding-bottom: 16px;
 }

 .about-sec .about-card .btn-box {
     text-align: center;
     padding-top: 40px;
 }

 .about-sec .about-card .btn-box a.btn {
     background: #404040;
     padding: 20px 46px;
     color: #FFF;
     text-align: center;
     font-size: 20px;
     font-weight: 600;
     text-transform: capitalize;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 17px;
     border: 1px solid #404040;
 }

 /* EXPERT */
 .expert {
     background: url('../image/expert-bg.png') center/cover no-repeat;
     position: relative;
     padding: 120px 0 0;
 }

 .expert .grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     align-items: center;
 }

 .expert .head-block {
     text-align: center;
     width: 72%;
     margin: 0 auto;
     padding-bottom: 40px;
 }

 .expert .head-block span {
     color: #404040;
     text-align: center;
     font-family: 'Inter';
     font-size: 24px;
     font-weight: 400;
     line-height: initial;
     /* 125% */
     letter-spacing: 0.96px;
     font-style: italic;
     position: relative;
 }

 .expert .head-block span:before {
     content: '';
     position: absolute;
     left: 20%;
     bottom: -14px;
     background-color: #404040;
     width: 60%;
     height: 2px;
 }

 .expert .head-block h2 {
     color: #404040;
     text-align: center;
     font-size: 50px;
     font-weight: 500;
     line-height: initial;
     /* 128% */
     letter-spacing: 2px;
     padding: 16px 0;
 }

 .expert .head-block {
     color: #404040;
     text-align: center;
     font-size: 16px;
     font-weight: 400;
     line-height: 24px;
     /* 150% */
 }

 .expert .grid .service {
     padding: 24px;
     background: #FEF8EC;
     box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
 }

 .expert .grid .service h3 {
     color: #364153;
     text-align: center;
     font-family: "Playfair Display";
     font-size: 24px;
     font-weight: 500;
     line-height: initial;
     /* 125% */
     padding: 16px 0;
 }

 .expert .grid .service p {
     color: #364153;
     text-align: center;
     font-size: 14px;
     font-weight: 400;
     line-height: 22px;
     /* 157.143% */
 }




 /* TESTIMONIAL */
 .testimonials {
     background: url('../image/testi.jpg') center/cover no-repeat;
     padding: 80px 20px;
 }

 .testimonials .row {
     text-align: center;
 }

 .testimonials .row h2 {
     background: linear-gradient(90deg, #B6A790 0%, #454545 100%);
     background-clip: text;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     font-family: MonteCarlo;
     font-size: 128px;
     font-weight: 400;
     line-height: 128px;
     /* 101.563% */
     letter-spacing: 8.96px;
     text-transform: capitalize;
     text-align: center;
     position: relative;
     z-index: 9;
     display: inline;

 }

 .testimonials .row h2:after {
     content: '';
     position: absolute;
     background-image: url('../image/feather.png');
     background-repeat: no-repeat;
     background-size: contain;
     background-position: 78% 50%;
     z-index: -3;
     width: 89.446px;
     height: 184.348px;
     right: 11%;
     top: -40px;
     z-index: 0;
     transform: rotate(24deg);
 }

 .testimonials .row p,
 .testimonials .row span {
     font-family: "Playfair Display";
     color: #404040;
     text-align: center;
     font-size: 34px;
     font-weight: 500;
     line-height: initial;
     /* 147.059% */
     letter-spacing: 3.4px;
     text-align: center;
     display: block;
 }

 /*.testimonial-slider {*/
 /*    padding-top: 20px;*/
 /*}*/

 .testimonials .testimonial-slider h3 {
     color: #404040;
     font-family: 'Inter';
     font-size: 24px;
     font-weight: 500;
     line-height: initial;
     /* 166.667% */
     text-align: left;
 }

 .testimonials .testimonial-slider p {
     font-family: 'inter';
     padding: 40px 0;
     color: #404040;
     font-size: 16px;
     font-weight: 400;
     line-height: inherit;
     letter-spacing: 0.16px;
     text-align: left;
 }


 .testimonial-slider .item {
     background: #FEF8EC;
     box-shadow: 8px 4px 12px 0 rgba(0, 0, 0, 0.25);
     padding: 40px;
     margin: 0 20px;
     position: relative;
 }

 .testimonial-slider .item:after {
     content: '';
     position: absolute;
     top: 8%;
     left: 0;
     background: #988B76;
     width: 8px;
     height: 87.052px;

 }

 .testimonial-slider .item:before {
     content: '';
     position: absolute;
     top: -14px;
     left: 16px;
     z-index: 1;
     background-image: url('../image/quotes.svg');
     background-size: cover;
     background-repeat: no-repeat;
     width: 38px;
     height: 30px;
 }

 .testimonial-slider .slick-list {
     padding: 60px 0 20px !important;
 }

 .testimonial-slider .item .profile {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .testimonial-slider .item .profile img {
     width: 53px;
     height: 53px;
 }

 .testimonial-slider .item .profile h4 {
     color: #404040;
     font-family: 'Inter';
     font-size: 18px;
     font-weight: 600;
     line-height: initial;
     /* 133.333% */
 }

 .testimonial-slider .item .profile span {
     color: #404040;
     font-family: 'Inter';
     font-size: 16px;
     font-weight: 400;
     line-height: initial;
     /* 150% */
     letter-spacing: 0.16px;
     text-align: left;
 }

 .testimonial-slider video {
     width: 100%;
     height: 344px;
     padding: 40px 0 0;
     border: 0;
     object-fit: cover;
 }

 .testimonial-slider {}

 .testimonial-slider .slick-track {
     display: flex;
     align-items: center;
 }

 /* BEFORE AFTER */
 .after-before {
     background: url('../image/testi.jpg') center/cover no-repeat;
     padding: 80px 20px
 }

 .after-before h2 {
     color: #404040;
     text-align: center;
     font-size: 34px;
     font-style: italic;
     font-weight: 500;
     line-height: initial;
     /* 117.647% */
     letter-spacing: 1.36px;
     padding-bottom: 34px;
 }

 .after-before .ba-slider .slide {
     background: #E8D9C4;

 }

 .after-before .ba-slider .slide .content {
     padding: 24px;
 }

 .after-before .ba-slider .slide .content h3 {
     color: #364153;
     font-size: 24px;
     font-style: normal;
     font-weight: 500;
     line-height: 30px;
     /* 125% */
     padding-bottom: 16px;
 }

 .after-before .ba-slider .slide .content p {
     color: #364153;
     font-size: 14px;
     font-weight: 400;
     line-height: 22px;
     /* 157.143% */
 }


 .ba-slider {
     display: none;
 }

 .ba-slider.active {
     display: block;
 }

 .after-before .tabs .tab-btn {
     background: transparent;
     padding: 16px 43px;
     border: none;
     border: 1px solid #988B76;
     cursor: pointer;
     color: #404040;
     text-align: center;
     font-family: 'Inter';
     font-size: 16px;
     font-style: normal;
     font-weight: 400;
     line-height: 24px;
     /* 150% */
     margin: 0;
     transition: 0.45s ease;
 }

 .after-before .tabs .tab-btn:hover {
     border: 1px solid #988B76;
     background-color: #988B76;
     color: #fff;
 }


 .after-before .tabs .tab-btn.active {
     background: #988B76;
     color: #fff;
 }


 .after-before .tabs {
     text-align: center;
     margin-bottom: 40px;
     gap: 0;
 }

 .tabs button {
     margin: 0 8px;
     padding: 10px 25px;
     border: none;
     background: #ddd
 }

 .tabs button.active {
     background: #1f1f1f;
     color: #fff
 }

 /* .ba-slider .slide {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center
        } */


 /* INSTAGRAM */
 .insta-video-sec {
     background: url('../image/insta-bg.jpg') center/cover no-repeat;
     padding: 80px 0;
     background-position: center center;
 }

 .insta-video-sec .video video {
     display: block;
     width: 100%;
     height: 450px;
     object-fit: cover;
 }

 .insta-video-sec .row span {
     color: #404040;
     text-align: center;
     font-family: 'Inter';
     font-size: 24px;
     font-style: italic;
     font-weight: 400;
     line-height: 30px;
     /* 125% */
     letter-spacing: 0.96px;
     display: block;
     text-align: center;
     position: relative;
 }

 .insta-video-sec .row span:before {
     content: '';
     position: absolute;
     position: absolute;
     left: 47%;
     bottom: -14px;
     background-color: #404040;
     width: 6%;
     height: 2px;
 }

 .insta-video-sec .row h2 {
     color: #404040;
     text-align: center;
     font-size: 50px;
     font-weight: 500;
     line-height: inherit;
     padding: 16px 0;
     /* 128% */
     letter-spacing: 2px;
 }

 .insta-video-sec .row p {
     color: #404040;
     text-align: center;
     font-family: 'Inter';
     font-size: 16px;
     font-style: normal;
     font-weight: 400;
     line-height: 24px;
     /* 150% */
 }

 .insta-video-sec .insta-grid .slick-slider .slick-track {
     padding-top: 40px;
     display: flex;
     gap: 20px;
 }

 .insta-video-sec .insta-grid img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* ACHIEVEMENTS */

 .achievements .row span {
     color: #404040;
     text-align: center;
     font-family: 'Inter';
     font-size: 24px;
     font-style: italic;
     font-weight: 400;
     line-height: 30px;
     /* 125% */
     letter-spacing: 0.96px;
     display: block;
     text-align: center;
     position: relative;
 }

 .achievements .row span:before {
     content: '';
     position: absolute;
     left: 40%;
     bottom: -14px;
     background-color: #404040;
     width: 20%;
     height: 2px;
 }

 .achievements .row h2 {
     color: #404040;
     text-align: center;
     font-size: 50px;
     font-weight: 500;
     line-height: inherit;
     padding: 16px 0;
     /* 128% */
     letter-spacing: 2px;
 }

 .achievements .row p {
     color: #404040;
     text-align: center;
     font-family: 'Inter';
     font-size: 16px;
     font-style: normal;
     font-weight: 400;
     line-height: 24px;
     /* padding-top: 16px; */
     /* 150% */
 }

 .achievements {
     background: url('../image/bg.jpg') center/cover no-repeat;
     padding: 80px 20px;
 }

 .achievements .row .box {
     width: 60%;
     margin: 0 auto;
 }

 .achievements .ach-grid {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 24px;
     row-gap: 40px;
     padding-top: 40px;
 }

 .achievements .ach-grid .award {
     text-align: center;
     max-width: 31.33%;
     width: 100%;
 }

 /* media coverage  */
 .media-section {
     background: #E8D9C4;
     padding: 80px 20px 0;
     text-align: center;
 }

 .media-label {
     color: #404040;
     text-align: center;
     font-family: Inter;
     font-size: 24px;
     font-style: italic;
     font-weight: 400;
     line-height: 30px;
     /* 125% */
     letter-spacing: 0.96px;
     position: relative;
 }

 .media-label:before {
     content: '';
     position: absolute;
     left: 20%;
     bottom: -14px;
     background-color: #404040;
     width: 60%;
     height: 2px;
 }

 .media-header h2 {
     color: #404040;
     text-align: center;
     font-size: 50px;
     font-weight: 500;
     line-height: 64px;
     /* 128% */
     letter-spacing: 2px;
     padding: 36px 0 16px;
 }



 .media-header p {
     color: #404040;
     text-align: center;
     font-size: 16px;
     font-weight: 400;
     line-height: 24px;
     /* 150% */
     width: 60%;
     text-align: center;
     margin: 0 auto;
 }

 .media-section .media-slider {
     padding-top: 40px;
 }


 /* .slick-list {
            overflow: visible;
        } */

 /* .media-slider .slick-list {
            overflow: visible;
        } */
 .media-header .slide.slick-slide {
     width: 400px;
     height: 400px !important;
     transition: transform .4s;
     position: relative;
 }

 .media-header .slick-slide:after {
     content: '';
     position: absolute;
     z-index: 2;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 0, 0, .5);
     transition: transform .4s;
 }

 .media-header .slide.slick-slide {
     transform: scale(0.7) translate(640px);
 }

 .media-header .slide.slick-slide.slick-center+.slick-slide {
     transform: scale(0.8) translate(-250px);
     z-index: 10;
 }

 .media-header .slick-center:after {
     opacity: 0;
 }

 .media-header .slide.slick-slide.slick-center+.slick-slide+.item.slick-slide {
     transform: scale(0.7) translate(-640px);
     z-index: 5;
 }

 .media-header .slide.slick-slide.slick-active {
     transform: scale(0.8) translate(250px);
 }

 .media-header .slide.slick-slide.slick-center {
     /* margin: 0 -10%; */
     transform: scale(1);
     z-index: 30;
 }

 .media-slide {
     opacity: 0.35;
     transform: scale(0.85);
     transition: all 0.4s ease;
 }

 .media-slide img {
     width: 100%;
     border-radius: 6px;
 }

 .media-header .slick-center {
     opacity: 1 !important;
     transform: scale(1) !important;
     z-index: 3;
 }



 .media-header .slick-center {
     opacity: 1 !important;
     transform: scale(1) !important;
     z-index: 3;
 }

 .media-header .slick-prev,
 .media-header .slick-next {
     width: 44px;
     height: 44px;
     border-radius: 50%;
     background: #fff;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
     z-index: 10;
 }

 .media-header .slick-prev:before,
 .media-header .slick-next:before {
     color: #000;
     font-size: 20px;
 }


 /* Responsive */
 @media (max-width: 768px) {
     .slide {
         flex: 0 0 90%;
     }

     .media-header h2 {
         font-size: 28px;
     }
 }




 /* gallery */
 .gallery-section {
     background-color: #e8dac5;
     padding: 80px 0;
 }

 .gallery-header {
     text-align: center;
     margin-bottom: 40px;
 }

 .gallery-link {
     display: inline-block;
     text-decoration: none;
     border-width: 100%;
     color: #404040;
     text-align: center;
     font-family: 'Inter';
     font-size: 24px;
     font-style: italic;
     font-weight: 400;
     line-height: 30px;
     /* 125% */
     letter-spacing: 0.96px;
     padding-bottom: 20px;
     position: relative;
 }

 section .slick-next {
     right: 0;
 }

 .swiper-button-next,
 .swiper-container-rtl,
 .swiper-button-prev {
     background: none !important;
 }

 .swiper-button-next svg,
 .swiper-button-prev svg {
     width: 54px;
     height: 54px;

 }

 .swiper-button-prev {
     left: 31%;
 }

 .swiper-button-next {
     right: 32%;
 }

 section .slick-prev {
     left: 0;
 }

 .gallery-link:before {
     content: '';
     position: absolute;
     left: 20%;
     bottom: 0;
     background-color: #404040;
     width: 60%;
     height: 2px;
 }

 .gallery-header h2 {
     color: #404040;
     text-align: center;
     font-size: 50px;
     font-weight: 500;
     line-height: 64px;
     /* 128% */
     letter-spacing: 2px;
 }

 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
 }

 .gallery-item {
     overflow: hidden;
     border-radius: 0px;
 }

 .gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.4s ease;
 }

 .gallery-item:hover img {
     transform: scale(1.05);
 }

 /* Responsive */
 @media (max-width: 1024px) {
     .gallery-grid {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 @media (max-width: 768px) {
     .gallery-header h2 {
         font-size: 28px;
     }

     .gallery-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 480px) {
     .gallery-grid {
         grid-template-columns: 1fr;
     }
 }


 /* CONTACT */

 .contact input,
 .contact textarea {
     width: -webkit-fill-available;
     margin-bottom: 20px;
     border: 1px solid #7E7A7A;
 }

 .contact {
     background-color: #E8DAC5;
     padding: 0;
 }

 .contact .content-box .block {
     position: relative;
 }

 /* .contact .content-box .block:after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;

            background: url('../image/bg-text.png') center/cover no-repeat;

        } */
 /* .contact .content-box .block span {
            color: #404040;
            text-align: center;
            font-family: "Playfair Display";
            font-size: 34px;
            font-weight: 500;
            line-height: 50px; 
            letter-spacing: 3.4px;
            display: block;
            position: relative;
            z-index: 1;
        }

        .contact .content-box .block h3 {
            font-family: 'MonteCarlo';
            font-size: 96px;
            font-weight: 400;
            line-height: 130px; 
            text-transform: capitalize;
            text-align: end;
            position: relative;
            z-index: 1;
        }

        .contact .content-box .block p {
            color: #404040;
            text-align: end;
            font-family: "Playfair Display";
            font-size: 34px;
            font-weight: 500;
            line-height: 50px; 
            letter-spacing: 3.4px;
            position: relative;
            z-index: 1;
        } */
 .contact .content-box p {
     color: #080808;
     font-size: 16px;
     font-weight: 400;
     line-height: 24px;
     padding: 34px 0 24px;
 }

 .contact .content-box ul {
     list-style: none;
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 16px;
     padding-left: 0;
     margin: 0;
     padding-bottom: 34px;
 }

 .contact .content-box ul li span {
     display: flex;
 }

 .contact .content-box ul li {
     display: flex;
     align-items: center;
     gap: 12px;
     color: #080808;
     font-family: 'Inter';
     font-size: 16px;
     font-weight: 400;
     line-height: 24px;
 }

 .contact .content-box .text p {
     color: #080808;
     font-size: 14px;
     font-style: italic;
     font-weight: 300;
     line-height: 22px;
     /* 157.143% */
     padding: 0 0 0 16px;
 }

 .contact .content-box .text {
     position: relative;
 }

 .contact .content-box .text:after {
     content: '';
     position: absolute;
     top: 0%;
     left: 0;
     background: #988B76;
     width: 8px;
     height: 100%;
 }

 /* .contact .content-box ul li::marker {
            content: url(../image/Frame.svg);
         } */

 .contact .row .contact-form {
     border: 0.5px solid rgba(99, 78, 47, 0.60);
     background: linear-gradient(0deg, rgba(254, 248, 236, 0.90) 0%, rgba(254, 248, 236, 0.90) 100%), url(<path-to-image>) lightgray 50% / cover no-repeat;
     box-shadow: 0 0 7.7px 0 rgba(0, 0, 0, 0.25);
     padding: 40px;
     border: 0;
 }

 .contact .row .contact-form h2 {
     color: #404040;
     font-size: 34px;
     font-weight: 500;
     line-height: 40px;
     letter-spacing: 1.36px;
     padding-bottom: 32px;
 }

 .contact .row form input,
 .contact .row form textarea {
     color: #5F5C5C;
     font-family: 'Inter';
     font-size: 14px;
     font-weight: 400;
     line-height: 22px;
     padding: 12px;
     /* 157.143% */
	 margin-bottom: 4px;
 }
.contact .row form .wpcf7-form-control-wrap {
	display: block;
	margin-bottom: 20px;
}
.invalid .wpcf7-response-output {
	font-size: 14px;
	padding: 12px;
 	border: 1px solid red;
}
.success .wpcf7-response-output {
	font-size: 14px;
	padding: 12px;
 	border: 1px solid lime;
}
 .contact .row form input:focus-visible,
 .contact .row form textarea:focus-visible {
     outline: 1px solid #dcceba;
 }

 .contact .row form input,
 .contact .row form textarea {
     background-color: transparent;
 }
.invalid .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  display: block;
}
.screen-reader-response {
	display:none;
}
 .contact .row form .btn {
     background: #2F2F2F;
     border: 1px solid #2F2F2F;
     color: #FFF;
     text-align: center;
     font-size: 20px;
     font-weight: 600;
     text-transform: capitalize;
     display: flex;
     align-items: center;
     gap: 16px;
     padding: 20px 46px;
	 width: 100%;
	 margin-bottom: 6px;
 }

 .contact .row {
     background: url('../image/contact-bg\ \(2\).jpg') center/cover no-repeat;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     padding: 80px;
     box-shadow: 0 -1px 50px 3px rgba(0, 0, 0, 0.25);
     margin-bottom: -236px;
     position: relative;
 }

 /* footer  */

 footer.pb-footer {
     background-image: url('../image/PB-Footer.jpg');
     background-size: cover;
     background-repeat: no-repeat;
     background-position: bottom;
     color: #ccc;
     padding: 300px 0 80px;

 }

 footer.footer-col {}

 footer .pb-footer-container {
     margin: auto;
     padding: 0 40px;
     display: grid;
     grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
     gap: 60px;
 }

 /* Headings */
 footer.pb-footer h3 {
     color: #E8D9C4;
     font-family: "intel";
     font-size: 24px;
     font-style: normal;
     font-weight: 400;
     line-height: 28px;
     /* 116.667% */
 }

 footer.pb-footer h4 {
     color: #E8D9C4;
     font-size: 18px;
     font-weight: 700;
     line-height: normal;
     padding-bottom: 16px;
 }


 /* Subtitle */
 .footer-about .subtitle {
     display: block;
     color: #E8D9C4;
     font-family: "intel";
     font-size: 14px;
     font-weight: 400;
     line-height: 16px;
     /* 114.286% */
     letter-spacing: 1.68px;
     padding-bottom: 18px;
 }

 /* Text */
 .footer-about .logo {
     padding-bottom: 18px;
 }

 .footer-about p {
     color: #FFF;
     font-size: 16px;
     font-weight: 400;
     line-height: 24px;
     /* 150% */
 }

 /* Menu & lists */
 .pb-footer ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .pb-footer ul li {
     margin-bottom: 16px;
 }

 .pb-footer ul li a {
     color: #FFF;
     font-size: 14px;
     font-weight: 400;
     line-height: initial;
     /* 19.6px */
     text-decoration: none;
     transition: color 0.3s ease;
     border-bottom: 1px solid transparent;
 }

 .pb-footer ul li a:hover {
     color: #ffffff;
     border-bottom: 1px solid #fff;
 }

 /* Contact */
 .pb-footer .contact-list li {
     display: flex;
     align-items: center;
     gap: 16px;
 }

 .pb-footer .contact-list span {
     font-size: 14px;
 }

 /* Social */
 .pb-footer .footer-social .social-icons {
     display: flex;
     gap: 12px;
     margin-top: 10px;
 }

 .pb-footer .footer-social .social-icons a {
     width: 32px;
     height: 32px;
     border-radius: 50%;
     background: #f3efe9;
     color: #2f2f2f;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
     text-decoration: none;
     transition: transform 0.3s ease;
 }

 .pb-footer .footer-social .social-icons a:hover {
     transform: translateY(-3px);
 }

 /* Decorative art placeholder */
 .pb-footer .footer-art {
     margin-top: 30px;
     width: 120px;
     height: 120px;
     opacity: 0.15;
     background: url("your-leaf-face-icon.svg") no-repeat center;
     background-size: contain;
 }

 /* Responsive */
 @media (max-width: 1024px) {
     .pb-footer-container {
         grid-template-columns: 1fr 1fr;
     }
 }

 @media screen and (max-width: 767px) {
     .pb-footer-container {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .testimonial-slider video {
         padding: 40px 0 0;
     }

     .logo svg {
         width: 130px;
         height: auto;
     }

     .hero .container {
         flex-direction: column;
         gap: 22px;
         padding: 0;
     }

     .hero .container .content-box,
     .hero .container .content-box,
     .hero .content-box,
     .hero .image-box {
         width: 100%;
     }

     .about-sec .container {
         padding: 0 16px;
     }

     .insta-video-sec .row h2 br {
         display: none;
     }

     .container-fluid {
         padding: 0 16px;
     }

     .about-sec .container .about-card {
         padding: 32px 16px;
     }

     .about-sec .about-card .upper-block {
         width: 100%;
     }

     .about-sec .about-card .upper-block h2 {
         font-size: 60px;
         font-weight: 400;
         line-height: 61px;
     }

     .about-sec .about-card .upper-block .d-flex {
         flex-wrap: wrap;
     }

     .about-sec .about-card .upper-block .d-flex p {
         font-size: 16px;
         font-weight: 400;
         line-height: 24px;
     }

     .testimonials .testimonial-slider p {
         padding: 32px 0;
     }

     .about-sec .about-card .upper-block span {
         font-size: 20px;
         line-height: 28px;
     }

     .about-sec .about-card h3,
     .about-sec .about-card p {
         font-size: 16px;
         line-height: 24px;
     }

     .about-sec .about-card ul {
         margin: 0;
     }

     .about-sec .about-card ul li {
         padding-bottom: 8px;
     }

     .nav {
         position: fixed;
         top: 0;
         right: -100%;
         width: 70%;
         height: 100vh;
         background-color: #fff;
         padding: 80px 0 0 20px;
         box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
         transition: right 0.4s ease-in-out;
     }

     .swiper-button-next svg,
     .swiper-button-prev svg {
         width: 32px;
         height: 32px;
     }

     .swiper-button-prev {
         left: 31%;
         top: 60%;
     }

     .swiper-button-next {
         right: 32%;
         top: 60%;
     }

     .nav.open {
         right: 0;
     }

     .nav-list {
         flex-direction: column;
         gap: 28px;
     }

     .nav-link {
         font-size: 18px;
     }

     .footer-about .logo svg {
         width: 180px;
     }

     .nav-toggle {
         display: block !important;
     }

     .header.scrolled .nav-toggle {
         /* Optional: Change hamburger color on scroll */
         color: var(--secondary-color);
     }

     .hero .content-box h1 span {
         font-size: 60px;
         font-weight: 400;
         line-height: 68px;
     }

     .hero .content-box .btn-block {
         flex-direction: column;
         gap: 16px;
     }

     html,
     body {
         overflow-x: hidden;
     }

     .hero {
         padding: 80px 16px 0 !important;
     }

     .hero .content-box .btn-block .book-btn,
     .hero .content-box .btn-block .learn-btn,
     .about-sec .about-card .btn-box a.btn,
     .contact .row form .btn {
         font-size: 14px;
         line-height: 22px;
         padding: 9px 16px;
     }

     .hero .content-box .btn-block .learn-btn {
         padding: 9px 42px;
     }

     .about-sec .about-card .btn-box {
         padding-top: 24px;
     }

     .expert .head-block span,
     .testimonials .row .item p,
     .testimonials .row .item span,
     .insta-video-sec .row span,
     .achievements .row span,
     .media-label,
     .gallery-link {

         font-size: 16px;
         line-height: 24px;
     }

     .expert .grid .service h3 {
         font-size: 18px;
         line-height: 26px;
     }


     .expert .head-block h2,
     .after-before h2,
     .insta-video-sec .row h2,
     .achievements .row h2,
     .media-header h2,
     .gallery-header h2 {
         font-size: 24px;
         line-height: 32px;
         /* 133.333% */
     }

     .expert .head-block {
         width: 100%;
     }

     .expert .grid {
         padding: 0 16px;
         gap: 24px;
     }

     .testimonials {
         padding: 30px 0;
         background: url('../image/cus-bg.jpg') center/cover no-repeat;
     }


     .testimonials .container {
         padding: 0 16px;
     }

     .testimonials .row span {
         font-size: 20px;
         line-height: 28px;
     }

     .testimonials .row h2 {
         font-size: 44px;
         line-height: 58px;
         background: linear-gradient(90deg, #B6A790 0%, #454545 100%);
         background-clip: text;
         -webkit-background-clip: text;
         -webkit-text-fill-color: transparent;
     }

     /*.testimonials .row h2 span {*/
     /*    position: relative;*/
     /*}*/

     .testimonials .row p,
     .testimonials .row span {
         font-size: 24px;
         line-height: 32px;
     }

     .testimonials .row h2::after {
         width: 24px;
         height: 48px;
         right: 19%;
         top: 1px;
     }

     .testimonials .testimonial-slider h3 {
         font-size: 24px;
         line-height: 32px;
     }

     .after-before {
         background: url('../image/mob-bg.jpg') center/cover no-repeat;
         padding: 30px 0;
     }

     .after-before .tabs .tab-btn {
         padding: 10px 6px;
         font-size: 16px;
         line-height: 24px;
     }

     .after-before .tabs {
         display: flex;
         flex-wrap: wrap;
     }

     .after-before .tabs .tab-btn {
         width: 50%;
     }

     .container {
         padding: 0 16px;
     }

     .after-before .ba-slider .slide .content {
         padding: 16px;
     }

     .after-before .ba-slider .slide .content h3,
     .insta-video-sec .row p {
         font-size: 16px;
         line-height: 24px
     }

     .after-before .ba-slider .slide .content p {
         font-size: 12px;
         line-height: 20px;
         /* 166.667% */
     }

     .insta-video-sec,
     .achievements,
     .media-section,
     .gallery-section {
         padding: 30px 0;
     }

     .achievements .row .box {
         width: 100%;
     }

     .achievements .ach-grid .award {
         max-width: 100%;
     }

     .achievements .ach-grid .award svg {
         padding-bottom: 16px;
     }

     .media-header p {
         width: 100%;
     }

     .gallery-grid {
         grid-template-columns: repeat(4, 1fr);
     }

     .contact .row {
         padding: 32px 16px;
         gap: 40px;
         grid-template-columns: 1fr;
         margin-bottom: -150px;
         background: url('../image/contect-new-bg.png') center/cover no-repeat;
     }

     .contact .row form {
         padding: 40px 16px;
     }

     .contact .content-box ul li {
         font-size: 14px;
         line-height: 22px;
     }

     .contact .content-box p {
         padding: 0 0 24px;
     }

     .contact .content-box ul {
         grid-template-columns: 1fr;
         padding-bottom: 46px;
     }

     .gallery-item {
         border-radius: 0;
     }

     .gallery-section .container-fluid {
         padding: 0;
     }

     .expert {
         padding-top: 80px;
     }

     .contact .content-box .text::after {
         content: '';
         position: absolute;
         top: -36%;
         left: 41%;
         background: #988B76;
         width: 16%;
         height: 5px;
     }

     .hero .content-box p {
         width: 100%
     }

     .contact .row form .btn {
         display: flex;
         align-items: center;
         justify-content: center;
         width: 100%;
     }

     footer.pb-footer {
         background-image: url('../image/mob-footer.jpg');
     }

     .contact .content-box .text p {
         padding: 0;
     }

     footer .pb-footer-container {
         grid-template-columns: 1fr;
         gap: 32px;
         padding: 0 16px;
     }

     footer.pb-footer {
         padding: 180px 0 80px
     }

     .pb-footer .footer-art {
         display: none;
     }

     .pb-footer ul li:last-child {
         margin-bottom: 0;
     }

     .contact .row form h2 {
         font-size: 24px;
         line-height: 32px;
     }

     .contact .row form {
         background: url('../image/form.jpg') center/cover no-repeat;
         background-position: center;
     }


 }


 @media(max-width:992px) {
     .hero {
         grid-template-columns: 1fr;
         padding: 120px 20px
     }

     .services-grid,
     .ach-grid,
     .media-grid {
         grid-template-columns: 1fr 1fr
     }

     .expert .grid,
     .ba-slider .slide,
     .contact {
         grid-template-columns: 1fr;
         padding: 0;
     }

     .insta-grid {
         grid-template-columns: repeat(3, 1fr)
     }
 }

 @media(max-width:600px) {

     .services-grid,
     .media-grid {
         grid-template-columns: 1fr
     }

     .insta-grid {
         grid-template-columns: repeat(2, 1fr)
     }
 }