 *{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
}
.desk-view{
    display: block;
}
.mob-view{
    display: none;
}
@media(max-width:768px){
    .desk-view{
        display: none;
    }
    .mob-view{
        display: block;
    }
}
/* ===========================
            HEADER
=========================== */
.header {
    width: 100%;
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}
.header-wrapper {
    width: 96%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    padding: 10px 40px;
    margin: 30px auto 0;
    background:#FFF7F4;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
}
.header-wrapper-inner {
    width: 100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    padding: 10px 40px;
    margin: 0 auto;
    background:#FFF7F4;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.header .logo img{
    height:80px;
    display:block;
}
.header .navbar{
    display:flex;
    align-items:center;
    gap:20px;
}
.header .nav-link{
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    color:#B37F68;
    background:#F1AE91;
    padding:8px 20px;
    border-radius:50px;
    transition:.3s;
    font-family: "inter", sans-serif;
}
.header .nav-link:hover,
.header .hero-nav-active{
    background:#ed8f67;
    color: #fff;
}
.header .consult-btn{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    background:#ffffff;
    color:#222;
    padding:4px 4px 4px 18px;
    border-radius:40px;
    border:1px solid #9FC5CF;
    font-size:16px;
    font-weight:500;
}
.header .consult-icon{
    width:30px;
    height:30px;
    border-radius:50%;
    background:#9FC5CF;
    color:#ffffff;
    display:flex;
    justify-content:center;
    align-items:center;
}
/* menu button */
.header .menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#B37F68;
}
/* dropdown */
.header .dropdown{
    position:relative;
}
.header .dropdown .nav-link{
    display:flex;
    align-items:center;
    gap:8px;
}
.header .dropdown-menu{
    position:absolute;
    top:104%;
    left:0;
    width:240px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    padding:10px 0;
    display:none;
}
.header .dropdown-menu a{
    display:block;
    padding:12px 18px;
    text-decoration:none;
    color:#555;
    transition:.3s;
}
.header .dropdown-menu a:hover{
    background:#F1AE91;
    color:#fff;
}
.header .dropdown:hover .dropdown-menu{
    display:block;
}
/* hide mobile button */
.header .mobile-btn{
    display:none;
}
/* ====================== */
@media(max-width:768px){
.header-wrapper{
    padding:10px 20px;
    margin-top:15px;
    width: 100%;
    border-radius: 0;
    margin: 0 auto;
}
.header .logo img{
    height:40px;
}
.header .menu-toggle{
    display:block;
}
.header .desktop-btn{
    display:none;
}
.header .mobile-btn{
    display:flex;
    margin-top:20px;
}
.header .navbar{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#FFF7F4;
    flex-direction:column;
    gap:0;
    padding:20px;
    display:none;
    border-radius:0 0 20px 20px;
}
.header .navbar.active{
    display:flex;
}
.header .nav-link{
    width:100%;
    margin-bottom:12px;
    text-align:center;
}
/* dropdown */
.header .dropdown{
    width:100%;
}
.header .dropdown .nav-link{
    justify-content:center;
}
.header .dropdown-menu{
    position:static;
    display:none;
    box-shadow:none;
    background:#fff;
    width:100%;
    margin-top:10px;
    border-radius:12px;
}
.header .dropdown.active .dropdown-menu{
    display:block;
}
.header .dropdown-menu a{
    text-align:center;
}
}
/* =======================================
            HERO SECTION
======================================= */
.hero-section{
    width:100%;
    background:#ffffff;
}
.hero-wrapper{
    width:96%;
    margin:130px auto 0;
    background: linear-gradient(to bottom, #FFF9F7 0%, #F5E2D8 100%);
    /*background:#FFF6F3;*/
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
    padding:0;
    position:relative;
    overflow:hidden;
}
.hero-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.hero-content-left{
    width:47%;
    padding:30px 40px;
}
.hero-tagline{
    font-family: "Gotu", sans-serif;
    display:inline-block;
    background:#F4B8A8;
    color:#ffffff;
    font-size:44px;
    font-weight:800;
    padding:0 20px;
    border-radius:12px;
    margin-bottom:18px;
}
.hero-heading{
    font-family: "Gotu", sans-serif;
    font-size:88px;
    line-height:0.95;
    color:#67A6B5;
    font-weight:800;
}
.hero-heading span{
    font-size:58px;
    max-width: 500px;
}
.hero-heading.mw500{
    max-width: 500px;
}
.hero-heading.txtrgt{
    text-align: right;
}
.hero-service-btn{
    margin-top:45px;
    display:inline-flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
    background:#ffffff;
    color:#4A7381;
    padding:8px 8px 8px 18px;
    border-radius:50px;
    font-weight:500;
}
.hero-service-icon{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#9FC5CF;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#ffffff;
}
.hero-content-right{
    width:48%;
    text-align:right;
}
.hero-content-right img{
    width:100%;
    display:block;
}
@media(max-width:700px){
    .hero-wrapper{
        width:96%;
        margin:80px auto 0;
        border-radius: 30px;
    }
    .hero-content{
        display:block;
    }
    .hero-content-left{
        width:100%;
        padding: 20px;
    }
    .hero-tagline{
        font-size:24px;
        font-weight:800;
        padding:0 10px;
        border-radius:12px;
        margin-bottom:10px;
    }
    .hero-heading{
        font-size:44px;
    }
    .hero-heading span{
        font-size:29px;
    }
    .hero-heading.txtrgt {
        text-align: left;
    }
    .hero-service-btn{
        margin-top:25px;
    }
    .hero-content-right{
        width:100%;
        text-align:center;
    }
}
/* ======================================
        SERVICES SECTION
====================================== */
.services-section {
    width:100%;
    padding:90px 20px;
    background:#fff;
}
.services-section .services-wrapper{
    width:min(1400px,95%);
    margin:auto;
}
/* Heading */
.services-section .services-heading{
    text-align:center;
    margin-bottom:30px;
}
.services-section .services-heading h2{
    font-family:"Gotu",sans-serif;
    font-size:62px;
    font-weight:400;
    color:#000000;
}
.services-section .services-heading span{
    color:#D2967C;
}
/* Grid */
.services-section .services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}
/* Card */
.services-section .services-card{
    position:relative;
    text-decoration:none;
    overflow:visible;
    display:block;
}
/* Image */
.services-section .services-card-image{
    position:relative;
    border-radius:42px;
    overflow:hidden;
}
.services-section .services-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s;
}
/* Overlay */
.services-section .services-card-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.55),
    rgba(0,0,0,.05) 45%,
    rgba(0,0,0,0));
}
/* Arrow */
.services-section .services-card-arrow{
    transform:rotate(45deg);
    position:absolute;
    top:-18px;
    right:-18px;
    width:78px;
    height:78px;
    border-radius:50%;
    background:#D69B7F;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:30px;
    border:8px solid #fff;
    transition:.35s;
}
/* Text */
.services-section .services-card-content{
    position:absolute;
    top:75%;
    left:0;
    width:100%;
    text-align:center;
    padding:0 60px;
}
.services-section .services-card-content h3{
    color:#fff;
    font-family:"Poppins",sans-serif;
    font-size:20px;
    font-weight:400;
    line-height:1.25;
    border-top: 1px solid #FFFFFF;
    padding-top: 20px;
}
/* Hover */
.services-section .services-card:hover img{
    transform:scale(1.08);
}
.services-section .services-card:hover .services-card-arrow{
    transform:rotate(90deg);
    background:#7EB7BE;
}
/* ===========================
        Tablet
=========================== */
@media(max-width:1100px){
.services-section .services-grid{
    grid-template-columns:repeat(2,1fr);
}
.services-section .services-heading h2{
    font-size:50px;
}
}
/* ===========================
        Mobile
=========================== */
@media(max-width:700px){
    .services-section{
        padding:50px 0;
        overflow:hidden;
    }
    .services-section .services-wrapper{
        width:100%;
        padding:0 15px;
        box-sizing:border-box;
    }
    .services-section .services-heading{
        margin-bottom:45px;
    }
    .services-section .services-heading h2{
        font-size:32px;
    }
    .services-section .services-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:18px;
        width:100%;
    }
    .services-section .services-card{
        min-width:0;
    }
    .services-section .services-card-image{
        border-radius:22px;
    }
    .services-section .services-card-arrow{
        width:65px;
        height:65px;
        font-size:24px;
        top:-6px;
        right:-6px;
    }
    .services-section .services-card-content{
        padding:0 10px;
    }
    .services-section .services-card-content h3{
        font-size:18px;
        padding-top:10px;
    }
}
/* =====================================
            ABOUT SECTION
====================================== */
.about-section{
    padding:90px 20px;
    background: linear-gradient(180deg, #D2967C 50%, #000000 100%);
    border-top-left-radius:80px;
    border-top-right-radius:80px;
}
.about-wrapper{
    width:min(1400px,95%);
    margin:auto;
    padding:70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
}
/*==========================
        Gallery
==========================*/
.about-gallery{
    width:48%;
    height:600px;
    display:flex;
    gap:18px;
    position:relative;
}
.about-gallery-left{
    width:55%;
    height:100%;
}
.about-gallery-left img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:28px;
    display:block;
}
.about-gallery-right{
    width:45%;
    height:100%;
    display:flex;
    flex-direction:column;
    gap:18px;
}
.about-gallery-right img{
    width:100%;
    height:calc((100% - 18px) / 2);
    object-fit:cover;
    border-radius:22px;
    display:block;
}
/* Experience */
.about-experience{
    position:absolute;
    left:54%;
    top:50%;
    transform:translate(-50%,-50%);
    width:170px;
    height:170px;
    background:#fff;
    border:8px solid #d99a7c;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}
.about-experience h2{
    font-size:34px;
    font-weight:700;
    color:#000000;
}
.about-experience span{
    font-size:14px;
    font-weight:600;
}
/*==========================
        Content
==========================*/
.about-content{
    width:45%;
}
.about-heading{
    font-family: "Hedvig Letters Serif", serif;
    font-size:38px;
    line-height:1.2;
    font-weight:500;
    color:#000;
    margin-bottom:35px;
}
.about-heading span{
    font-family: "Gravitas One", serif;
    color: #25535CCC;
}
.about-heading strong{
    color:#25535CCC;
    font-weight:400;
}
.about-content p{
    color:#fff;
    font-size:22px;
    margin-bottom:28px;
    font-family: "Hepta Slab", serif;
}
/* Button */
.about-btn{
    display:inline-flex;
    align-items:center;
    gap:18px;
    background:#fff;
    border-radius:50px;
    padding:8px 8px 8px 28px;
    text-decoration:none;
    color:#111;
    font-size:20px;
    margin-top:20px;
}
.about-btn-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#8db7c3;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    transition:.35s;
}
.about-btn:hover .about-btn-icon{
    transform:translateX(5px);
}
/*==========================
        Tablet
==========================*/
@media(max-width:1100px){
.about-wrapper{
    flex-direction:column;
    padding:60px 40px;
    gap:60px;
}
.about-gallery,
.about-content{
    width:100%;
}
.about-heading{
    font-size:46px;
}
.about-content p{
    font-size:20px;
}
}
/*==========================
        Mobile
==========================*/
@media(max-width:768px){
.about-section{
    background: linear-gradient(180deg, #D2967C 62.5%, rgba(0, 0, 0, 0.9) 100%);
    padding:40px 14px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}
.about-wrapper{
    border-radius:40px;
    padding:0;
    gap: 0;
}
.about-gallery{
    flex-direction:column;
}
.about-gallery-left,
.about-gallery-right{
    width:100%;
}
.about-gallery-right{
    flex-direction:row;
}
.about-gallery-right img{
    width:50%;
    height:220px;
}
.about-gallery-left img{
    height:320px;
}
.about-experience{
    left: 50%;
    top: 55%;
    width:120px;
    height:120px;
    border-width:6px;
}
.about-experience h2{
    font-size:34px;
}
.about-experience span{
    font-size:12px;
}
.about-heading{
    text-align: center;
    font-size:32px;
}
.about-content p{
    font-size:16px;
    text-align: center;
}
.about-btn{
    font-size:16px;
    padding:8px 8px 8px 20px;
    width: fit-content;
    display: flex;
    margin: 0 auto;
}
}
.about-btn-icon{
    width:38px;
    height:38px;
}
}
/*==============================
  WHY CHOOSE SVAY
==============================*/
.svay-about-section {
    padding:70px 20px;
    background:#E5E5E5;
    margin: 20px 0 0 0;
}
.svay-about-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}
.svay-about-image{
    flex:0 0 42%;
}
.svay-about-image img{
    width:100%;
    display:block;
    border-radius:28px;
}
.svay-about-content{
    flex:1;
}
.svay-about-content h2{
    font-family: "Hedvig Letters Serif", serif;
    font-size:52px;
    font-weight:400;
    margin-bottom:45px;
    color:#000;
    line-height:1.1;
}
.svay-about-content h2 span{
    color:#2F6C78CC;
}
.svay-feature{
    margin-bottom:32px;
}
.svay-feature h3{
    font-family:"Hepta Slab", serif;
    font-size:23px;
    font-weight:600;
    color:#000;
    margin-bottom:10px;
}
.svay-feature p{
    font-family:"Hepta Slab", serif;
    font-size:18px;
    line-height:1.7;
    color:#444;
    max-width:560px;
}
.svay-btn{
    display:inline-flex;
    align-items:center;
    gap:14px;
    padding:10px 10px 10px 18px;
    border-radius:40px;
    background:#fff;
    text-decoration:none;
    color:#111;
    font-family:"Poppins",sans-serif;
    font-weight:500;
    transition:.35s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}
.svay-btn span{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#d9a487;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
}
.svay-btn:hover{
    transform:translateY(-3px);
}
.svay-btn:hover span{
    transform:translateX(4px);
}
/*==============================
      TABLET
==============================*/
@media(max-width:992px){
.svay-about-container{
    gap:40px;
}
.svay-about-content h2{
    font-size:40px;
}
.svay-feature h3{
    font-size:20px;
}
.svay-feature p{
    font-size:16px;
}
}
/*==============================
        MOBILE
==============================*/
@media(max-width:768px){
.svay-about-section{
    padding:60px 20px;
}
.svay-about-container{
    flex-direction:column;
}
.svay-about-image{
    width:100%;
}
.svay-about-content{
    /*text-align:left;*/
}
.svay-about-content h2{
    font-size:34px;
    margin-bottom:0;
}
.svay-feature{
    margin-bottom:25px;
}
.svay-feature h3 {
    font-size: 18px;
}
.svay-feature p{
    font-size: 14px;
    max-width:100%;
}
.svay-btn{
    margin:auto;
}
}
/*===========================
      STEPS SECTION
===========================*/
.svay-steps-section{
    margin: 20px 0 0 0;
    padding:70px 20px;
    background:#90BAC2CC;
    overflow: hidden;
}
.svay-steps-container{
    max-width:1300px;
    margin:auto;
}
.svay-steps-title{
    text-align:center;
    font-family:"Hepta Slab", serif;
    font-size:42px;
    font-weight:500;
    line-height:1.2;
    margin-bottom:70px;
    color:#1B3537;
    position: relative;
    z-index: 1;
}
.svay-steps-title span{
    color:#fff;
}
.svay-steps-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}
/*------------------
Columns
-------------------*/
.svay-steps-column{
    flex:1;
    display:flex;
    flex-direction:column;
}
.left{
    align-items:center;
}
.right{
    align-items:center;
}
.step6{margin-bottom:130px;}
.step5{margin-bottom:130px;}
.step1{margin-bottom:130px;}
.step2{margin-bottom:120px;}
.svay-step-item h4{
    margin-bottom:10px;
    font-family:"Poppins",sans-serif;
    font-size:18px;
    font-weight:600;
}
.svay-step-item span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:220px;
    height:35px;
    padding:0 25px;
    background:#25535CCC;
    color:#fff;
    border-radius:50px;
    font-family:"Poppins",sans-serif;
    font-size:15px;
}
/*------------------
Center
-------------------*/
.svay-steps-center{
    position:relative;
    width:420px;
    height:420px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}
/* =========================================
   ALL WAVE CIRCLES
========================================= */
.svay-circle {
    position: absolute;
    width: 470px;
    height: 470px;
    border-radius: 50%;
    pointer-events: none;
    transform: scale(0.95);
    opacity: 0;
}
/* =========================================
   WAVE 1
========================================= */
.one {
    background: #76A7B1;
    animation:
        svayWave 4s ease-out infinite,
        svayColorChange 4s ease-in-out infinite;
    animation-delay: 0s;
}
/* =========================================
   WAVE 2
========================================= */
.two {
    background: #90BAC2CC;
    animation:
        svayWave 4s ease-out infinite,
        svayColorChange 4s ease-in-out infinite;
    animation-delay: 0.8s;
}
/* =========================================
   WAVE 3
========================================= */
.three {
    background: #76A7B1;
    animation:
        svayWave 4s ease-out infinite,
        svayColorChange 4s ease-in-out infinite;
    animation-delay: 1.6s;
}
/* =========================================
   WAVE 4
========================================= */
.four {
    background: #90BAC2CC;
    animation:
        svayWave 4s ease-out infinite,
        svayColorChange 4s ease-in-out infinite;
    animation-delay: 2.4s;
}
/* =========================================
   WAVE 5
========================================= */
.five {
    background: #76A7B1;
    animation:
        svayWave 4s ease-out infinite,
        svayColorChange 4s ease-in-out infinite;
    animation-delay: 3.2s;
}
/* =========================================
   WAVE EXPAND + FADE
========================================= */
@keyframes svayWave {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }
    8% {
        opacity: 0.45;
    }
    45% {
        opacity: 0.28;
    }
    75% {
        opacity: 0.12;
    }
    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}
/* =========================================
   COLOR CHANGE
========================================= */
@keyframes svayColorChange {
    0% {
        background: #76A7B1;
    }
    50% {
        background: #90BAC2CC;
    }
    100% {
        background: #76A7B1;
    }
}
.svay-center-image{
    width:100%;
    height:100%;
    border-radius:50%;
    overflow:hidden;
    position:relative;
    z-index:5;
}
.svay-center-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}
/*------------------
Button
-------------------*/
.svay-step-btn{
    margin:70px auto 0;
    display:flex;
    width:max-content;
    align-items:center;
    gap:12px;
    background:#fff;
    color:#466a76;
    text-decoration:none;
    padding:10px 12px 10px 20px;
    border-radius:50px;
    font-family:"Poppins",sans-serif;
    font-weight:500;
    position: relative;
    z-index: 1;
}
.svay-step-btn span{
    width:32px;
    height:32px;
    border-radius:50%;
    background:#9ab8c1;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}
/*Mobile*/
@media(max-width:768px){
    .svay-steps-section {
        padding: 40px 10px;
    }
.svay-steps-title{
    font-size:28px;
    line-height: 1.6;
    margin-bottom:30px;
}
.svay-steps-wrapper{
        gap:0;
    }
    .svay-steps-center{
        width:110px;
        height:110px;
        flex-shrink:0;
    }
    .left {
        align-items: flex-start;
    }
    .right {
        align-items: end;
    }
    .one{
        width:190px;
        height:190px;
    }
    .two{
        width:160px;
        height:160px;
    }
    .three{
        width:140px;
        height:140px;
    }
    .svay-step-item h4{
        font-size:14px;
        margin-bottom:6px;
    }
    .svay-step-item span{
        min-width:100px;
        height:30px;
        padding:4px 12px;
        font-size:8px;
    }
    .step1,
    .step5,
    .step6{
        margin-bottom:65px;
    }
    .step2{
        margin-bottom:60px;
    }
.svay-step-btn{
    margin-top:25px;
}
}
.team-section{
    margin: 20px 0 0 0;
    background:#76A7B1CC;
    padding:70px 20px;
}
.team-container{
    max-width:1100px;
    margin:auto;
}
.section-title{
    text-align:center;
    font-size:clamp(34px,5vw,54px);
    color:#fff;
    font-weight:700;
    margin-bottom:70px;
}
.team-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}
.team-card{
    background:#D2967C;
    padding:12px;
    border-radius:16px;
    border:1px solid #FFFFFF;
    box-shadow:0 12px 25px rgba(0,0,0,.12);
    transition:.35s;
}
.team-card:hover{
    transform:translateY(-8px);
}
.team-image{
    overflow:hidden;
    border-radius:14px;
    border:1px solid #FFFFFF;
}
.team-image img{
    width:100%;
    display:block;
    aspect-ratio:3/4.8;
    object-fit:cover;
    box-shadow: 0px 4px 4px 0px #00000040;
}
.team-info{
    background:#fff;
    margin-top:14px;
    border-radius:6px;
    padding:8px;
    text-align:center;
    height:160px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.team-info h3{
    font-size:16px;
    color:#000;
    font-weight:600;
}
.team-info p{
    font-size:12px;
    color:#000;
    line-height:1.5;
    margin-bottom: 10px;
}
.team-info p1{
    font-size:11px;
    color:#000;
}
/* Large Tablet */
@media(max-width:1100px){
.team-grid{
    grid-template-columns:repeat(2,1fr);
}
}
/* Mobile */
@media(max-width:650px){
.team-section{
    padding:50px 10px;
}
.section-title{
    margin-bottom:20px;
}
.team-grid{
    gap:10px;
}
.team-card{
    max-width:380px;
    margin:auto;
}
.team-info{
    height:235px;
}
.team-info h3{
    font-size:16px;
    line-height: 1.3;
}
.team-info p{
    font-size:12px;
}
}
.packages-section{
    margin: 40px 0 0 0;
    background:#D2967C;
    padding:70px 20px;
}
.packages-section.bg-white{
    background:#fff;
}
.packages-section .packages-section-container{
    max-width:1200px;
    margin:auto;
}
.packages-section .section-tag{
    font-family: 'Poppins', sans-serif;
    display:table;
    margin:0 auto 25px;
    padding:8px 30px;
    border-radius:40px;
    color:#fff;
    font-size:14px;
    background: linear-gradient(90deg, rgba(118, 167, 177, 0.8) 66.67%, #FFFFFF 99.04%);
}
.packages-section .section-tag.bg-col2{
    background: linear-gradient(90deg, #FFC4AA 66.67%, rgba(0, 0, 0, 0.25) 99.04%);
}
.packages-section .section-title{
    font-family: "Gotu", sans-serif;
    text-align:center;
    color:#fff;
    font-size:clamp(32px,5vw,42px);
    font-weight:300;
    margin-bottom:70px;
}
.packages-section .section-title.text-black{
    color:#000;
}
.packages-section .package-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}
.packages-section .package-card{
    position:relative;
    background: linear-gradient(180deg, rgba(144, 186, 194, 0.95) 21.46%, rgba(37, 83, 92, 0.95) 79.81%);
    border-radius:28px;
    padding:60px 24px 30px;
    color:#fff;
    display:flex;
    flex-direction:column;
}
.packages-section .card-icon{
    position:absolute;
    width:82px;
    height:82px;
    border-radius:50%;
    background:#5e7f8a;
    border:6px solid #fff;
    top:-42px;
    right:30px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.packages-section .card-icon svg{
    width:34px;
    color:#fff;
}
.packages-section .package-card h3{
    font-size:22px;
    font-weight: 100;
    line-height:1.1;
    margin-bottom:18px;
    font-family: "Goblin One", serif;
}
.packages-section .card-desc{
    font-size:12px;
    margin-bottom:20px;
}
.packages-section .price{
    font-size:42px;
    font-weight:100;
    margin-bottom:8px;
    font-family: "Emblema One", system-ui;
}
.packages-section .validity{
    display:block;
    font-size:12px;
    margin-bottom:25px;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
}
.packages-section .sessions,
.packages-section .features{
    margin:0 0 25px;
    padding-left:18px;
    font-size: 14px;
}
.packages-section .package-card h4{
    font-size:22px;
    font-family:"Goblin One",serif;
    margin-bottom:15px;
    font-weight: 100;
}
.packages-section .package-btn{
    margin-top:auto;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    align-items:center;
    border:1px solid rgba(255,255,255,.5);
    border-radius:50px;
    padding:8px;
    text-decoration:none;
    color:#fff;
    font-weight:600;
    transition:.35s;
}
.packages-section .package-btn .span{
    display: flex;
    justify-content: right;
}
.packages-section .package-btn span{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#7fa3af;
    display:flex;
    align-items:center;
    justify-content:center;
}
.packages-section .package-btn:hover{
    background:#fff;
    color:#2d5965;
}
.packages-section .packageSwiper{
    display:none;
}
@media (max-width:767px){
    .packages-section{
        padding:50px 16px;
    }
    .packages-section .section-title {
        margin-bottom: 0;
    }
    .packages-section .package-grid{
        display:none;
    }
    .packages-section .packageSwiper{
        display:block;
        padding-top: 50px;
    }
    .packages-section .package-card h3{
        font-size:20px;
        margin-bottom:10px;
    }
    .packages-section .packageSwiper .swiper-slide{
        height:auto;
    }
    .packages-section .packageSwiper .package-card{
        height:100%;
    }
    .packages-section .packageSwiper .swiper-pagination{
        position:relative;
        margin-top:20px;
    }
    .packages-section .packageSwiper .swiper-pagination-bullet{
        width:10px;
        height:10px;
        opacity:1;
        background:#d9d9d9;
    }
    .packages-section .packageSwiper .swiper-pagination-bullet-active{
        background:#c78b73;
    }
}
.consultation-section{
    margin: 70px 0 0 0;
    width:100%;
}
.consultation-section-container{
    position:relative;
    width:96%;
    margin: 0 auto;
    min-height:500px;
    border-top-left-radius:20px;
    border-top-right-radius:20px;
    overflow:hidden;
    background:url("https://thechetannaik.com/svay/assets/img/consult-sec.jpg") center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:80px 20px;
}
.consultation-section .overlay{
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, rgba(144, 186, 194, 0.8) 0%, rgba(37, 83, 92, 0.8) 100%);
}
.consultation-content{
    position:relative;
    z-index:2;
    max-width:850px;
    color:#fff;
}
.consultation-section .subtitle{
    display:block;
    font-size:15px;
    color:#FFC4AA;
    font-weight:600;
    margin-bottom:18px;
    letter-spacing:.5px;
}
.consultation-content h1{
    font-family:Georgia, serif;
    font-size:68px;
    line-height:1.12;
    font-weight:500;
    margin-bottom:25px;
}
.consultation-content p{
    max-width:540px;
    margin:0 auto 40px;
    font-size:18px;
    line-height:1.8;
    color:#f1f1f1;
}
.consultation-section .book-btn{
    display:inline-flex;
    align-items:center;
    gap:14px;
    background:#fff;
    color:#111;
    padding:8px 8px 8px 22px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}
.consultation-section .book-btn .icon{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#d89a80;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    transition:.3s;
}
.consultation-section .book-btn:hover{
    transform:translateY(-3px);
}
.consultation-section .book-btn:hover .icon{
    transform:translateX(4px);
}
/* -------------------- */
/* Responsive */
/* -------------------- */
@media (max-width:1200px){
    .consultation-content h1{
        font-size:58px;
    }
}
@media (max-width:992px){
    .consultation-section{
        min-height:600px;
    }
    .consultation-content h1{
        font-size:48px;
    }
    .consultation-content p{
        font-size:17px;
    }
}
@media (max-width:768px){
    .consultation-section{
        margin: 0;
        min-height:auto;
        border-radius:20px;
        padding:30px 10px 0;
    }
    .consultation-section-container {
        min-height: auto;
        padding: 40px 20px;
        width: 100%;
    }
    .consultation-section .subtitle {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 14px;
    }
    .consultation-content h1{
        font-size:32px;
        line-height: 1;
        font-weight: 500;
        margin-bottom: 20px;
    }
    .consultation-content p{
        font-size:14px;
        line-height:1.7;
        margin: 0 0 20px;
    }
    .consultation-section .book-btn {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        background: #fff;
        color: #111;
        padding: 4px 4px 4px 18px;
        font-weight: 500;
        transition: .3s;
    }
    .consultation-section .book-btn .icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}
.footer{
    width: 100%;
}
.footer-container{
    border-top:2px dotted rgba(255,255,255,.4);
    width: 96%;
    margin: 0 auto;
    color:#fff;
    background: #25535CCC;
    padding: 40px 50px 20px;
}
.footer-top{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:70px;
}
.footer-logo{
    width:170px;
    margin-bottom:25px;
}
.footer p{
    font-size:14px;
    line-height:1.9;
    color:#f1f1f1;
}
.footer h3{
    color:#D2967C;
    font-size:22px;
    margin-bottom:20px;
    font-weight:600;
}
.contact-list,
.footer-links{
    list-style:none;
    padding:0;
    font-size:14px;
    margin:0;
}
.footer .contact-list li{
    display:flex;
    gap:14px;
    margin-bottom:10px;
    line-height:1.8;
    color:#f2f2f2;
}
.footer .contact-list i{
    color:#D2967C;
    margin-top:5px;
}
.footer-links li{
    margin-bottom:10px;
}
.footer-links a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}
.footer-links a:hover{
    color:#d89a80;
}
.footer-bottom{
    margin-top:20px;
    padding-top:20px;
    border-top:1px solid #D2967C;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}
.footer-bottom p{
    margin:0;
}
.footer-bottom a{
    color:#fff;
}
.footer .social-links{
    display:flex;
    gap:15px;
}
.footer .social-links a{
    width:42px;
    height:42px;
    border-radius:8px;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}
.footer .social-links a:hover{
    background:#d89a80;
    transform:translateY(-3px);
}
@media(max-width:786px){
    .footer{
        margin-top:0;
        padding: 0 10px;
    }
    .footer-container {
        width: 100%;
        padding: 20px;
    }
    .footer-top{
        grid-template-columns: repeat(2, 1fr);
        gap:10px;
    }
    .footer-top > :nth-child(1),
    .footer-top > :nth-child(2) {
        grid-column: 1 / -1;
    }
    .footer-logo{
        width: 120px;
        margin: 0;
    }
    .footer-divider{
        margin-bottom:40px;
    }
    .footer h3{
        font-size:18px;
        margin-bottom: 6px;
    }
    .footer p,
    .contact-list li,
    .footer-links a{
        font-size:14px;
    }
    .footer .contact-list li {
        align-items: center;
        gap: 14px;
        margin-bottom: 10px;
        line-height: 1;
    }
    .footer .contact-list i {
        margin-top: 0; 
    }
    .footer .social-links a{
        width:38px;
        height:38px;
    }
    .footer-links li {
        margin-bottom: 4px;
    }
}
/*ABOUT HERO */
        .abt-hero{
            padding:120px 20px 70px;
            background:#fff;
        }
        .abt-hero__container{
            max-width:1280px;
            margin:auto;
        }
        /* Banner */
        .abt-hero__banner{
            position:relative;
            overflow:hidden;
            border-radius:30px;
        }
        .abt-hero__banner img{
            width:100%;
            height:450px;
            object-fit:cover;
            display:block;
        }
        /* Dark Overlay */
        .abt-hero__banner::after{
            content:"";
            position:absolute;
            inset:0;
            background:rgba(0,0,0,.18);
        }
        /* Content */
        .abt-hero__overlay{
            position:absolute;
            inset:0;
            display:flex;
            flex-direction:column;
            justify-content:center;
            align-items:center;
            text-align:center;
            color:#fff;
            z-index:2;
            padding:20px;
        }
        .abt-hero__overlay h1{
            font-family: "Gotu", sans-serif;
            font-size:64px;
            font-weight:300;
            /*margin-bottom:35px;*/
            line-height:1.1;
        }
        .abt-hero__breadcrumb{
            position: absolute;
            bottom: 50px;
            display:flex;
            align-items:center;
            gap:10px;
            padding:12px 28px;
            border:1px solid #ffffff;
            border-radius:100px;
            background:#FFFFFF33;
        }
        .abt-hero__breadcrumb a,
        .abt-hero__breadcrumb span{
            color:#fff;
            text-decoration:none;
            font-size:16px;
            font-weight:400;
        }
        /* Bottom Text */
        .abt-hero__content{
            text-align:center;
            margin-top:55px;
        }
        .abt-hero__content h2{
            max-width:990px;
            font-family: "Gotu", sans-serif;
            margin:auto;
            font-size:42px;
            line-height:1.25;
            font-weight:300;
            color: #000000;
        }
        @media(max-width:767px){
            .abt-hero {
                padding: 74px 10px 30px;
            }
            .abt-hero__content{
                margin-top:20px;
            }
            .abt-hero__content h2{
                font-size:20px;
                line-height:1.45;
            }
            .abt-hero__banner{
                border-radius:18px;
            }
            .abt-hero__banner img{
                height:280px;
            }
            .abt-hero__overlay h1{
                font-size:34px;
                margin-bottom:18px;
            }
            .abt-hero__breadcrumb{
                padding:8px 18px;
                gap:8px;
            }
            .abt-hero__breadcrumb a,
            .abt-hero__breadcrumb span{
                font-size:14px;
            }
        }
        /*ABOUT STORY*/
.abt-story{
    width:100%;
    background: #ffffff;
}
.abt-story__container{
    max-width:1280px;
    margin:auto;
    padding:0 20px;
}
.abt-story__intro{
    background:#D2967C;
    padding:50px 0;
    text-align:center;
    margin-bottom: 50px;
}
.abt-story__intro p{
    font-family: "Gotu", sans-serif;
    max-width:860px;
    margin: 0 auto;
    color:#fff;
    font-size:18px;
    line-height:1.8;
    font-weight:300;
}
.abt-story__cards{
    background:#25535CCC;
    padding: 50px 0;
}
.abt-story__grid{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}
/* Card */
.abt-story__card{
    background: #D2967C;
    color:#fff;
    border:3px solid rgba(255,255,255,.9);
    border-radius:22px;
    padding:30px;
    width:450px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}
.abt-story__card h3{
    font-family: "Gotu", sans-serif;
    font-size:24px;
    font-weight:400;
    margin-bottom:10px;
}
.abt-story__card p{
    font-family:'Poppins',sans-serif;
    font-size:16px;
    line-height:1.4;
    font-weight:300;
}
@media (max-width:767px){
.abt-story__container{
    padding:0 15px;
}
.abt-story__intro{
    padding:50px 0;
    text-align: left;
    margin-bottom: 20px;
}
.abt-story__intro p{
    font-size:14px;
    line-height:1.8;
}
.abt-story__grid{
    gap:20px;
}
.abt-story__card{
    padding:18px;
    border-radius:18px;
}
.abt-story__card h3{
    font-size:24px;
    margin-bottom:8px;
}
.abt-story__card p{
    font-size:14px;
    line-height:1.5;
}
}
.the-story{
    padding:80px 20px;
    background:#fff;
}
.the-story-container{
    max-width:1120px;
    margin:auto;
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    align-items:center;
    gap:70px;
}
.the-story-image img{
    width:100%;
    display:block;
    border-radius:24px;
}
.the-story-content h2{
    font-family: "Gotu", sans-serif;
    margin:0 0 30px;
    font-size:30px;
    line-height:1.15;
    font-weight:400;
    color:#25535CCC;
}
.the-story-content h2 .accent{
    color:#D2967C;
}
.the-story-content p{
    margin:0 0 18px;
    font-size:14px;
    line-height:1.8;
    color:#404040;
    font-weight:400;
}
.the-story-content p:last-child{
    margin-bottom:0;
}
@media (max-width:768px){
    .the-story{
        padding:50px 20px;
    }
    .the-story-container{
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
    .the-story-image{
        width:100%;
    }
    .the-story-content h2{
        font-size: 22px;
        line-height: 1.25;
        margin-bottom: 0;
        text-align: center;
    }
    .the-story-content p{
        font-size:16px;
        line-height:1.7;
    }
}
        .visit-goa{
            padding:90px 20px;
            background:#fff;
        }
        .visit-goa-container{
            max-width:1100px;
            margin:auto;
        }
        .visit-goa-heading{
            text-align:center;
            margin-bottom:45px;
        }
        .visit-goa-heading h2{
            font-size:40px;
            font-family: "Gotu", sans-serif;
            font-weight:400;
            color:#000000;
            margin-bottom:15px;
            line-height:1.2;
        }
        .visit-goa-heading p{
            max-width:700px;
            font-family: "Gotu", sans-serif;
            margin:auto;
            font-size:18px;
            line-height:1.6;
            color:#000000;
        }
        .visit-goa-card{
            background:#fff;
            border-radius:24px;
            padding:40px 55px;
            box-shadow: 2px 7px 55px 0px #00000040;
        }
        .visit-goa-item{
            display:flex;
            align-items:flex-start;
            gap:15px;
            padding:18px 0;
            border-bottom:1px dashed #cfcfcf;
            color:#333;
            font-size:18px;
            line-height:1.7;
        }
        .visit-goa-item strong{
            color:#000000;
        }
        .visit-goa-item .icon{
            font-size:18px;
            line-height:1;
            margin-top:4px;
        }
        .border-none{
            border-bottom:none;
        }
        @media (max-width:767px){
            .visit-goa{
                padding:50px 20px;
            }
            .visit-goa-heading {
                margin-bottom: 30px;
            }
            .visit-goa-heading h2{
                font-size:34px;
            }
            .visit-goa-heading p{
                font-size:16px;
            }
            .visit-goa-card{
                padding:25px 20px;
                border-radius:18px;
            }
            .visit-goa-item{
                gap:12px;
                font-size:15px;
                line-height:1.6;
                padding:16px 0;
            }
            .visit-goa-item .icon{
                font-size:16px;
            }
        }
        .counselling-service{
    padding:90px 20px;
    background:#fff;
}
.counselling-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
    position: relative;
}
.service-badge{
    position: absolute;
    left: 0;
    top: 0;
    padding:8px 14px;
    border-radius:30px;
    background: linear-gradient(90deg, #D2967C 46.15%, #737373 99.04%);
    color:#fff;
    font-size:14px;
    font-weight:500;
    margin-bottom:35px;
}
/* Left */
.counselling-left{
    width:38%;
}
.counselling-left h2{
    font-size:42px;
    line-height:1.1;
    font-weight:400;
    margin:0 0 35px;
    color:#000000;
    font-family: "Gotu", sans-serif;
}
.counselling-left p{
    font-size:18px;
    color:#000000;
    font-family: 'Poppins', sans-serif;
    max-width:470px;
}
/* Right */
.counselling-right{
    width:56%;
}
.service-item{
    display:flex;
    gap:22px;
    margin-bottom:20px;
}
.service-item:last-child{
    margin-bottom:0;
}
.service-icon{
    width:38px;
    height:38px;
    min-width:38px;
    border-radius:50%;
    border:1.5px solid #d79b7d;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#4f6f7b;
    font-weight:700;
    font-size:18px;
}
.service-content h3{
    margin:0 0 4px;
    font-size:18px;
    color:#000;
    font-weight:700;
}
.service-content p{
    margin:0;
    font-size:14px;
    color:#484848;
}
.counselling-image{
    max-width:1200px;
    margin:70px auto 0;
}
.counselling-image img{
    height: 500px;
    width:100%;
    display:block;
    border-radius:28px;
    border:1px solid #222;
    object-fit:cover;
}
@media (max-width:991px){
    .counselling-container{
        gap:50px;
    }
    .counselling-left{
        width:40%;
    }
    .counselling-right{
        width:60%;
    }
    .counselling-left h2{
        font-size:54px;
    }
    .counselling-left p{
        font-size:18px;
    }
    .service-content h3{
        font-size:24px;
    }
    .service-content p{
        font-size:16px;
    }
    .counselling-image{
        margin-top:55px;
    }
}
@media (max-width:767px){
    .counselling-service{
        padding:50px 20px;
    }
    .counselling-container{
        flex-direction:column;
        gap:45px;
    }
    .counselling-left,
    .counselling-right{
        width:100%;
    }
    .service-badge{
        top: -40px;
        padding: 4px 8px;
        font-size: 12px;
        margin-bottom:20px;
    }
    .counselling-left h2{
        font-size:32px;
        margin-bottom: 8px;
    }
    .counselling-left p{
        font-size:16px;
        max-width:100%;
    }
    .service-item{
        gap:16px;
        margin-bottom:16px;
    }
    .service-icon{
        width:34px;
        height:34px;
        min-width:34px;
        font-size:16px;
    }
    .service-content h3{
        font-size:18px;
        font-weight: 500;
    }
    .service-content p{
        font-size:16px;
        line-height:1.4;
    }
    .counselling-image{
        margin-top:40px;
    }
    .counselling-image img{
        border-radius:18px;
        height: auto;
    }
}
.therapy-benefits{
    background:#25535CCC;
    padding:80px 20px;
}
.therapy-container{
    max-width:1100px;
    margin:auto;
}
.therapy-heading{
    text-align:center;
    margin-bottom:55px;
}
.therapy-badge{
    font-family: 'Poppins', sans-serif;
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background: linear-gradient(90deg, #D2967C 46.15%, #737373 99.04%);
    border: 1px solid #fff;
    color:#fff;
    font-size:14px;
    line-height:1;
    margin-bottom:20px;
}
.therapy-heading h2{
    font-family: "Gotu", sans-serif;
    font-size:42px;
    font-weight:400;
    color:#fff;
    margin:0;
}
.therapy-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}
.therapy-card{
    position:relative;
    background: #D2967C;
    color:#fff;
    padding:70px 20px 20px;
    border:2px solid rgba(255,255,255,.9);
    border-radius:20px;
}
.therapy-number{
    position:absolute;
    top:18px;
    left:20px;
    width:44px;
    height:44px;
    border-radius:50%;
    background: #90BAC2CC;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:600;
}
.therapy-card h3{
    font-family: 'Gotu', sans-serif;
    font-size:20px;
    font-weight:400;
    margin:0 0 6px;
}
.therapy-card p{
    font-family: 'Poppins', sans-serif;
    font-size:14px;
    margin:0;
    font-weight: 300;
}
@media(max-width:991px){
    .therapy-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .therapy-heading h2{
        font-size:36px;
    }
}
@media(max-width:767px){
    .therapy-benefits{
        padding:50px 10px;
    }
    .therapy-badge {
        padding: 4px 8px;
        font-size: 12px;
        margin-bottom: 20px;
    }
    .therapy-grid{
        gap:10px;
    }
    .therapy-heading{
        margin-bottom:20px;
    }
    .therapy-heading h2{
        font-size:32px;
    }
    .therapy-number {
        top: 10px;
        left: 10px;
        width: 40px;
        height: 40px;
    }
    .therapy-card{
        padding:60px 10px 20px;
    }
    .therapy-card h3{
        font-size:18px;
        line-height: 1.4;
    }
    .therapy-card p{
        font-size:14px;
    }
}
.faq-section{
    padding:90px 20px;
    background:#fff;
}
.faq-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:42% 1fr;
    gap:60px;
    align-items:center;
}
/* Left Image */
.faq-image{
    position:relative;
    width:100%;
    height:600px;
    overflow:hidden;
    border-radius:22px;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
}
.faq-image iframe{
    width:337px;
    height:600px;
    border:0;
    display:block;
    border-radius:22px;
}
.faq-play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:82px;
    height:82px;
    border-radius:50%;
    background:rgba(255,255,255,.9);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    color:#5f7e87;
    text-decoration:none;
    transition:.3s;
}
.faq-play-btn:hover{
    transform:translate(-50%,-50%) scale(1.08);
}
/* Right */
.faq-badge{
    font-family: "Poppins", sans-serif;
    display:inline-block;
    background: linear-gradient(90deg, #D2967C 50%, #B3B3B3 100%);
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:18px;
}
.faq-content h2{
    font-family: "Gotu", sans-serif;
    font-size:60px;
    line-height:1.1;
    font-weight:400;
    margin:0 0 45px;
    color:#000;
}
.faq-list{
    border-top:1px solid transparent;
}
.faq-item{
    padding:24px 0;
    border-bottom:1px dashed #cfcfcf;
}
.faq-item:last-child{
    border-bottom:none;
}
.faq-question{
    font-family: "Poppins", sans-serif;
    width:100%;
    background:none;
    border:none;
    padding:0;
    display:flex;
    align-items:flex-start;
    gap:15px;
    text-align:left;
    cursor:pointer;
    font-size:20px;
    font-weight:600;
    color:#000;
}
.faq-circle{
    width:20px;
    height:20px;
    border:1.5px solid #222;
    border-radius:50%;
    margin-top:5px;
    flex-shrink:0;
}
.faq-answer{
    font-family: "Poppins", sans-serif;
    margin-left:35px;
    margin-top:10px;
    font-size:14px;
    color:#696969;
}
/* Tablet */
@media(max-width:991px){
    .faq-container{
        grid-template-columns:1fr;
        gap:50px;
    }
    .faq-content h2{
        font-size:48px;
    }
    .faq-question{
        font-size:20px;
    }
}
/* Mobile */
@media(max-width:767px){
    .faq-section{
        padding:60px 20px;
    }
    .faq-content h2{
        font-size:36px;
        margin-bottom:30px;
    }
    .faq-question{
        font-size:18px;
        line-height:1.5;
    }
    .faq-answer{
        margin-left:35px;
        font-size:15px;
        line-height:1.7;
    }
    .faq-play-btn{
        width:65px;
        height:65px;
        font-size:28px;
    }
}
.more-services{
    background: #D2967C;
    padding:90px 20px;
}
.more-services-container{
    max-width:1200px;
    margin:auto;
}
/* Heading */
.more-services-heading{
    text-align:center;
    margin-bottom:55px;
}
.more-services-badge{
    font-family: "Poppins", sans-serif;
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background: linear-gradient(90deg, rgba(118, 167, 177, 0.8) 66.67%, rgba(255, 255, 255, 0.5) 99.04%);
    border: 1px solid #fff;
    color:#fff;
    font-size:14px;
    line-height:1;
    margin-bottom:20px;
}
.more-services-heading h2{
    font-family: "Gotu", sans-serif;
    margin:0;
    color:#fff;
    font-size:40px;
    font-weight:400;
    line-height:1.2;
}
/* Cards */
.more-services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}
.service-card{
    background: #76A7B1CC;
    border:2px solid #fff;
    border-radius:20px;
    padding:40px 25px;
    box-shadow:0 8px 18px rgba(0,0,0,.18);
    transition:.3s;
}
.service-card:hover{
    transform:translateY(-5px);
}
.service-card h3{
    font-family: "Gotu", sans-serif;
    color:#fff;
    font-size:20px;
    font-weight:500;
    margin:0 0 16px;
}
.service-card p{
    font-family: "Poppins", sans-serif;
    color:#fff;
    font-weight: 300;
    font-size:16px;
    margin:0;
}
/* Navigation */
.service-navigation{
    display:flex;
    justify-content:center;
    gap:18px;
    margin-top:45px;
}
.service-arrow{
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:#95adb3;
    color:#fff;
    font-size:28px;
    cursor:pointer;
    transition:.3s;
}
.service-arrow:hover{
    background:#6f8d95;
}
/* =========================
   Tablet
========================= */
@media(max-width:991px){
    .more-services{
        padding:70px 20px;
    }
    .more-services-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .more-services-heading h2{
        font-size:36px;
    }
}
/* =========================
   Mobile
========================= */
@media(max-width:767px){
    .more-services{
        padding:60px 20px;
    }
    .more-services-heading{
        margin-bottom:35px;
    }
    .more-services-heading h2{
        font-size:32px;
    }
    .more-services-grid{
        grid-template-columns:1fr;
        gap:18px;
    }
    .service-card{
        padding:30px 22px;
    }
    .service-card h3{
        font-size:20px;
    }
    .service-card p{
        font-size:16px;
    }
    .service-navigation{
        margin-top:35px;
    }
}
.pregnancy-packages{
    padding:80px 20px;
    background:#f8f7f5;
}
.pregnancy-packages .package-wrapper{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:400px 1fr;
    gap:40px;
    align-items:center;
}
.pregnancy-packages .package-left{
    display:flex;
    flex-direction:column;
    gap:35px;
}
.pregnancy-packages .package-heading h2{
    font-size:46px;
    font-family:"Gotu",serif;
    color: #484848;
    margin-bottom:18px;
    line-height: 1.2;
}
.pregnancy-packages .package-heading p{
    font-family:"Poppins",serif;
    font-size:17px;
    color:#737373;
    line-height:1.7;
}
.pregnancy-packages .package-image img{
    width:100%;
    display:block;
    border-radius:24px;
}
.pregnancy-packages .package-right{
    display:flex;
    flex-direction:column;
    gap:20px;
}
.pregnancy-packages .package-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}
.pregnancy-packages .package-card{
    background: linear-gradient(180deg, rgba(144, 186, 194, 0.95) 21.46%, rgba(37, 83, 92, 0.95) 79.81%);
    color:#fff;
    border-radius:24px;
    padding:28px;
    display:flex;
    flex-direction:column;
}
.pregnancy-packages .package-card-large{
    min-height:310px;
}
.pregnancy-packages .package-card h3{
    font-family:"Goblin One",serif;
    font-size:22px;
    font-weight: 100;
    margin-bottom: 8px;
}
.pregnancy-packages .package-card .price{
    font-size:26px;
    font-family:"Emblema One",serif;
    margin-bottom: 8px;
    font-weight: 100;
}
.pregnancy-packages .package-card small{
    display:block;
}
.pregnancy-packages .package-card hr{
    border:none;
    height:1px;
    background:rgba(255,255,255,.35);
    margin:10px 0;
}
.pregnancy-packages .package-card p{
    font-size:14px;
    line-height:1.5;
}
.pregnancy-packages .package-card ul{
    margin:18px 0;
    padding-left:18px;
}
.pregnancy-packages .package-card li{
    margin-bottom:8px;
    line-height:1.6;
}
.pregnancy-packages .package-btn{
    margin-top:auto;
    border:1px solid rgba(255,255,255,.7);
    border-radius:50px;
    color:#fff;
    text-decoration:none;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    transition:.3s;
    margin-top: 20px;
    padding: 4px;
}
.pregnancy-packages .package-btn span{
    width:30px;
    height:30px;
    border-radius:50%;
    background:rgba(255,255,255,.25);
    display:flex;
    align-items:center;
    justify-content:center;
}
.pregnancy-packages .package-btn:hover{
    background:#fff;
    color:#2f6269;
}
.pregnancy-packages .package-btn:hover span{
    background:#2f6269;
    color:#fff;
} 
@media(max-width:768px){
    .pregnancy-packages{
        padding: 50px 16px;
    }
    .pregnancy-packages .package-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .pregnancy-packages .package-left{
        flex-direction:column;
    }
    .pregnancy-packages .package-grid{
        grid-template-columns:1fr;
    }
    .pregnancy-packages .package-heading h2 {
        font-size: 22px;
        text-align: center;
    }
    .pregnancy-packages .package-heading p {
        font-size: 16px;
        line-height: 1.3;
    }
    .pregnancy-packages .package-card h3{
        font-size:18px;
    }
    .pregnancy-packages .package-card .price{
        font-size:30px;
    }
    .pregnancy-packages .package-card{
        padding:18px;
        border-radius: 18px;
    }
    .pregnancy-packages .package-card p {
        font-size: 12px;
    }
}
.contact-section{
    padding:90px 20px;
    background: linear-gradient(180deg, rgba(144, 186, 194, 0.8) 74.82%, rgba(255, 255, 255, 0.8) 100%);
}
.contact-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:50px;
    align-items:center;
}
.contact-badge{
    font-family:"Poppins",serif;
    display:inline-block;
    background:#ffc2a6;
    color:#fff;
    padding:8px 26px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:35px;
}
.contact-section h2{
    font-family:"Gotu",serif;
    font-size:42px;
    line-height:1.05;
    color:#20343a;
    margin-bottom:40px;
}
.contact-info{
    display:flex;
    flex-direction:column;
    gap:30px;
}
.info-item,
.info-grid{
    border-bottom:2px dotted rgba(255,255,255,.7);
    padding-bottom:20px;
}
.info-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}
.contact-info span{
    display:block;
    font-size:15px;
    color:#667980;
    margin-bottom:12px;
}
.contact-info h4{
    font-size:18px;
    font-weight:600;
    color:#1f2e34;
    line-height:1.6;
}
.contact-form-box{
    background:#fff;
    padding:30px;
    border-radius:24px;
    box-shadow: 2px 7px 55px 5px #00000040;
}
.contact-form-box h3{
    font-family:"Gotu",serif;
    font-size:34px;
    margin-bottom:10px;
    color:#1B3537;
}
.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}
.form-group{
    margin-bottom:12px;
}
.form-group label{
    display:block;
    font-weight:500;
    margin-bottom:10px;
    font-size:15px;
}
.form-group input,
.form-group textarea{
    width:100%;
    border:1.5px solid #0000001f;
    border-radius:40px;
    padding:8px 16px;
    font-size:16px;
    outline:none;
    font-family:inherit;
}
.form-group textarea{
    height:130px;
    resize:none;
    border-radius:18px;
}
.contact-btn{
    width:100%;
    border:none;
    background:#FFC4AA;
    border-radius:40px;
    padding:8px 16px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:16px;
    gap: 10px;
    font-weight:500;
    cursor:pointer;
}
.contact-btn span{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#90BAC2F2;
    display:flex;
    justify-content:center;
    align-items:center;
}
/* ---------- Mobile ---------- */
@media(max-width:767px){
.contact-section{
    padding:50px 16px;
}
.contact-container{
    grid-template-columns:1fr;
    gap:20px;
}
/* Reverse the order */
.contact-container > :first-child{
    order:2;
}
.contact-container > :last-child{
    order:1;
}
.contact-section h2{
    font-size:32px;
    margin-bottom:20px;
}
.contact-form-box{
    padding:16px;
    border-radius: 16px;
}
.contact-form-box h3{
    font-size:24px;
}
/*.form-row{
    grid-template-columns:1fr;
}*/
.form-group input, .form-group textarea {
    border: 1px solid #000000;
    padding: 4px 8px;
    font-size: 14px;
}
.form-group textarea {
    height: 100px;
    border-radius: 16px;
}
.contact-btn{
    font-size:14px;
}
.contact-info {
    gap: 10px;
}
.info-item, .info-grid {
    padding-bottom: 10px;
}
.contact-info span {
    font-size: 14px;
    margin-bottom: 4px;
}
.contact-info h4 {
    font-size: 14px;
    font-weight: 500;
}
}
.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:62px;
    height:62px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    z-index:9999;
    transition:.3s ease;
    animation:whatsappPulse 2s infinite;
}
.whatsapp-float:hover{
    transform:translateY(-5px) scale(1.08);
    background:#20c55a;
    color:#fff;
}
@keyframes whatsappPulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.6);
    }
    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}
/* Mobile */
@media(max-width:768px){
.whatsapp-float{
    width:56px;
    height:56px;
    right:18px;
    bottom:18px;
    font-size:30px;
}
}
.testimonials-section {
    width: 100%;
    padding: 70px 20px 60px;
    background: #fff;
    box-sizing: border-box;
}
.testimonials-section .testimonials-container {
    max-width: 960px;
    margin: 0 auto;
}
.testimonials-section .testimonials-container h2 {
    margin: 0 0 28px;
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.3;
    color: #111;
}
/* =========================
   DESKTOP 3 COLUMN LAYOUT
========================= */
.testimonials-section .testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 20px;
    align-items: start;
}
.testimonials-section .testimonial-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
/* =========================
   CARD
========================= */
.testimonials-section .testimonial-card {
    background: #f8e6dc;
    border-radius: 6px;
    padding: 12px 14px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.testimonials-section .testimonial-column:not(.middle-column) .testimonial-card {
    min-height: 171px;
}
/* Middle column cards are taller */
.testimonials-section .middle-column .testimonial-card {
    min-height: 216px;
}
/* =========================
   CARD CONTENT
========================= */
.testimonials-section .quote {
    display: block;
    height: 18px;
    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 18px;
    color: #000;
}
.testimonials-section .stars {
    margin: 6px 0;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1;
    color: #000;
}
.testimonials-section .testimonial-card p {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 10px;
    line-height: 1.22;
    color: #111;
    flex: 1;
}
/* =========================
   CLIENT
========================= */
.testimonials-section .client {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.testimonials-section .client-initial {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: #f3b59b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #111;
}
.testimonials-section .client strong {
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #111;
}
/* =========================
   VIEW MORE
========================= */
.testimonials-section .view-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 43px;
    margin: 39px auto 0;
    border-radius: 11px;
    background: #d49478;
    color: #fff;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    transition: 0.3s ease;
}
.testimonials-section .view-more:hover {
    opacity: 0.85;
}
/* =========================
   TABLET
========================= */
@media (max-width: 800px) {
    .testimonials-section {
        padding: 55px 20px 50px;
    }
    .testimonials-section .testimonials-container {
        max-width: 650px;
    }
    .testimonials-section .testimonials-slider {
        gap: 15px;
    }
    .testimonials-section .testimonial-column:not(.middle-column) .testimonial-card {
        min-height: 180px;
    }
    .testimonials-section .middle-column .testimonial-card {
        min-height: 210px;
    }
}
/* =========================
   MOBILE SLIDER
========================= */
/* =========================================
   MOBILE TESTIMONIAL SLIDER
========================================= */

.mobile-testimonials-wrapper {
    display: none;
}


@media (max-width: 600px) {

    .testimonials-section {
        padding: 45px 0 45px;
        overflow: hidden;
    }

    .testimonials-section .testimonials-container {
        width: 100%;
        max-width: none;
    }

    .testimonials-section .testimonials-container h2 {
        padding: 0 15px;
        font-size: 25px;
        margin-bottom: 25px;
    }


    /* Hide desktop 3-column layout */

    .testimonials-section .testimonials-slider {
        display: none;
    }


    /* =========================================
       MOBILE SLIDER
    ========================================= */

    .testimonials-section .mobile-testimonials-wrapper {
        display: block;
        width: 100%;
    }

    .testimonials-section .mobile-testimonials-slider {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .testimonials-section .mobile-testimonials-track {
        display: flex;
        gap: 15px;

        width: max-content;

        padding: 0 15px;

        will-change: transform;

        touch-action: pan-y;
    }


    /* =========================================
       ONE CARD PER SLIDE
    ========================================= */

    .testimonials-section .mobile-testimonials-track .testimonial-card {
        flex: 0 0 calc(100vw - 30px);
        width: calc(100vw - 30px);

        min-height: 190px;

        background: #f8e6dc;
        border-radius: 7px;

        padding: 15px;

        box-sizing: border-box;

        display: flex;
        flex-direction: column;
    }


    /* =========================================
       CARD CONTENT
    ========================================= */

    .testimonials-section .mobile-testimonials-track .testimonial-card p {
        font-size: 11px;
        line-height: 1.35;
        margin: 0;
        flex: 1;
    }

    .testimonials-section .mobile-testimonials-track .quote {
        display: block;
        height: 18px;

        font-family: Georgia, serif;
        font-size: 27px;
        font-weight: 700;
        line-height: 18px;
    }

    .testimonials-section .mobile-testimonials-track .stars {
        margin: 6px 0;
        font-size: 14px;
        letter-spacing: 1px;
        line-height: 1;
    }

    .testimonials-section .mobile-testimonials-track .client {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }

    .testimonials-section .mobile-testimonials-track .client-initial {
        width: 30px;
        height: 30px;
        min-width: 30px;

        border-radius: 50%;

        background: #f3b59b;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 14px;
    }

    .testimonials-section .mobile-testimonials-track .client strong {
        font-size: 10.5px;
    }


    /* =========================================
       PAGINATION DOTS
    ========================================= */

    .testimonials-section .mobile-testimonials-dots {
        display: flex;
        justify-content: center;
        align-items: center;

        gap: 7px;

        margin-top: 18px;
    }

    .testimonials-section .mobile-testimonials-dot {
        width: 7px;
        height: 7px;

        border-radius: 50%;

        background: #d9c4b9;

        transition: all 0.3s ease;

        cursor: pointer;
    }

    .testimonials-section .mobile-testimonials-dot.active {
        width: 22px;
        border-radius: 10px;
        background: #d49478;
    }


    /* =========================================
       VIEW MORE
    ========================================= */

    .testimonials-section .view-more {
        width: 170px;
        height: 42px;

        margin-top: 28px;
    }

}