/* =========================
   GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* =========================
   GLOBAL CSS
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fff;
}

/* =========================
   NAVBAR
========================= */
.custom-navbar {
    background: #fff;
    padding: 10px 0;
}

/* =========================
   LOGO
========================= */
.navbar-brand img {
    width: 170px;
    height: auto;
}

/* =========================
   MENU
========================= */
.navbar-nav .nav-link {
    color: #222;
    font-size: 16px;
    font-weight: 500;
    margin: 0 10px;
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #b0347a;
}

.dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
}

/* =========================
   APPOINTMENT BUTTON
========================= */
.appointment-btn {
    background: #b0347a;
    color: #fff;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
    display: inline-block;
    border: none;
    white-space: nowrap;
}

.appointment-btn:hover {
    background: #922c66;
    color: #fff;
}

/* =========================
   SOCIAL ICONS
========================= */
.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons a {
    width: 34px;
    height: 34px;
    background:  #b0347a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background: #287779;
    transform: translateY(-2px);
}

/* =========================
   RIGHT SECTION
========================= */
.right-section {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* =========================
   DROPDOWN MENU
========================= */
.custom-dropdown {
    position: relative;
}

@media (min-width: 992px) {
    .custom-dropdown .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: 0.3s ease;
        border: none;
        border-radius: 8px;
        padding: 10px 0;
        min-width: 220px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        margin-top: 0;
    }

    .custom-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .custom-dropdown .dropdown-menu {
        border: none;
        box-shadow: none;
        background: #f8f8f8;
        text-align: center;
    }

    .custom-dropdown .dropdown-item {
        padding: 10px;
    }
}

.custom-dropdown .dropdown-item:hover {
    background: #b0347a;
    color: #fff;
}

/* =========================
   CSS VARIABLES
========================= */
:root {
    --cream: #fdf6f0;
    --blush: #e8c9b8;
    --text-dark: #3a2e28;
    --text-body: #5a4a42;
    --circle-bg: #f2e0d6;
}

/* =========================
   PAGE WRAPPER (HERO BG)
========================= */
.page-wrapper {
    background: rgba(40, 119, 121, 0.10)  ;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

/* Left wavy decorative line */
.page-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 160px;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='600' viewBox='0 0 200 600'%3E%3Cpath d='M100 0 C60 100,150 200,80 300 C20 400,140 500,100 600' stroke='%23e8c9b8' stroke-width='2' fill='none'/%3E%3C/svg%3E") no-repeat center/cover;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

/* Right wavy decorative lines */
.page-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 160px;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='600' viewBox='0 0 200 600'%3E%3Cpath d='M50 0 C100 100,10 200,80 300 C140 400,20 500,60 600' stroke='%23e8c9b8' stroke-width='2' fill='none'/%3E%3Cpath d='M80 0 C130 100,40 200,110 300 C170 400,50 500,90 600' stroke='%23e8c9b8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat center/cover;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

/* Keep container above decorative lines */
.page-wrapper .container {
    position: relative;
    z-index: 1;
}

/* =========================
   TEXT COLUMN
========================= */
.text-col {
    padding-right: 30px;
    animation: fadeInLeft 0.8s ease both;
}

.eyebrow-line {
    width: 60px;
    height: 1.5px;
    background: var(--text-dark);
    margin-bottom: 18px;
}

.text-col h1 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 24px;
}

.text-col p {
    font-size: clamp(14px, 1.05vw, 16px);
    color: var(--text-body);
    line-height: 1.75;
    font-weight: 400;
    margin-bottom: 16px;
}

.btn-enquire {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: #b0347a;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.25s ease, transform 0.2s ease;
}

.btn-enquire:hover {
    background: #287779;
    transform: translateY(-2px);
    color: #fff;
}

/* =========================
   IMAGE COLUMN
========================= */
.image-col {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeInRight 0.9s ease both;
}

/* Large circle behind image */
.circle-bg {
    position: absolute;
    /* right: 0; */
    top: 50%;
    transform: translateY(-50%);
    width: min(480px, 90%);
    height: min(480px, 90%);
    background: #f199cb;
    border-radius: 50%;
    z-index: 0;
}

/* Dashed ring around circle */
.circle-bg::before {
    content: '';
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 1.5px dashed var(--blush);
}

/* Face image circle */
.face-img {
    position: relative;
    z-index: 1;
    width: min(460px, 50vw);
    height: min(460px, 50vw);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hexagon SVG overlay */
.hex-overlay {
    position: absolute;
    z-index: 2;
    width: min(460px, 50vw);
    height: min(460px, 50vw);
    pointer-events: none;
}

/* =========================
   WHATSAPP FAB
========================= */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: #b0347a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    cursor: pointer;
    transition: transform 0.2s;
}

.whatsapp-fab:hover { transform: scale(1.1); }
.whatsapp-fab svg { width: 24px; height: 24px; fill: #fff; }

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
    .navbar-nav { text-align: center; margin-top: 15px; }
    .navbar-nav .nav-link { margin: 8px 0; }
    .right-section { flex-direction: column; gap: 15px; margin-top: 15px; }
    .appointment-btn { width: 100%; text-align: center; }
    .social-icons { justify-content: center; }
    .navbar-brand img { width: 95px; }
}

@media (max-width: 768px) {
    .page-wrapper { padding: 40px 0; }

    .text-col {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .eyebrow-line { margin: 0 auto 16px; }

    .circle-bg {
        position: relative;
        top: auto;
        transform: none;
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .face-img,
    .hex-overlay {
        width: 260px;
        height: 260px;
        margin: 0 auto;
    }
}
/* =========================
   DOCTOR SECTION
========================= */

.doctor-section{
    background:rgba(176, 52, 122, 0.15);
    padding:100px 0;
    overflow:hidden;
    position:relative;
}

/* Wrapper */
.doctor-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

/* =========================
   LEFT IMAGE AREA
========================= */

.doctor-image-area{
    width:45%;
    position:relative;
}

/* Vertical Lines */
.vertical-lines{
    position:absolute;
    left:-60px;
    top:-80px;
    width:180px;
    height:500px;
    background:repeating-linear-gradient(
        to right,
        #d8b3aa 0px,
        #d8b3aa 2px,
        transparent 2px,
        transparent 10px
    );
    opacity:0.5;
}

/* Main Image */
.doctor-image{
    position:relative;
    z-index:2;
}

.doctor-image img{
    width:100%;
    object-fit:cover;
    display:block;

    /* Border */
    border:1px solid #287779;

    /* Shadow */
    box-shadow:

    0 15px 40px rgba(40, 119, 121, 0.20);

    border-radius:12px;

    transition:0.4s ease;
}

/* Hover Effect */
.doctor-image img:hover{
    transform:translateY(-6px);

    box-shadow:
    0 0 0 6px rgba(176, 52, 122, 0.25),
    0 20px 50px rgba(40, 119, 121, 0.35);
}

/* Decorative Leaf */
.leaf-design{
    position:absolute;
    top:-10px;
    right:20px;
    font-size:90px;
    color:#fff;
    z-index:3;
    opacity:0.8;
    transform:rotate(20deg);
}

/* Circle Stamp */
.circle-stamp{
    position:absolute;
    bottom:-20px;
    right:-20px;
    width:180px;
    height:180px;
    border:2px solid rgba(15, 235, 4, 0.7);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size:14px;
    color:#000;
    letter-spacing:2px;
    z-index:3;
    padding:20px;
    /* animation:rotateText 12s linear infinite; */
}

/* Rotate Animation */
@keyframes rotateText{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* =========================
   RIGHT CONTENT
========================= */

.doctor-content{
    width:50%;
}

.doctor-content h2{
    font-size:64px;
    line-height:1.2;
    font-weight:600;
    color:#222;
    margin-bottom:25px;
}

/* Heading Line */
.heading-line{
    width:180px;
    height:2px;
    background:#9b6a62;
    margin-bottom:35px;
}

.doctor-content p{
    font-size:20px;
    line-height:2;
    color:#555;
    margin-bottom:25px;
}

.doctor-content strong{
    color:#287779;
}

/* Name */
.doctor-content h4{
    margin-top:40px;
    font-size:28px;
    font-weight:500;
    color:#c08d82;
    letter-spacing:1px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .doctor-section{
        padding:70px 0;
    }

    .doctor-wrapper{
        flex-direction:column;
        gap:50px;
    }

    .doctor-image-area,
    .doctor-content{
        width:100%;
    }

    .doctor-content{
        text-align:center;
    }

    .doctor-content h2{
        font-size:40px;
    }

    .doctor-content p{
        font-size:17px;
        line-height:1.8;
    }

    .heading-line{
        margin:0 auto 30px;
    }

    .doctor-image img{
        height:auto;
    }

    .circle-stamp{
        width:130px;
        height:130px;
        font-size:10px;
        right:0;
        bottom:-10px;
    }

    .vertical-lines{
        left:-20px;
        width:120px;
    }
}
h1,h2{
    font-family: 'Poppins', sans-serif;
    font-size: 35px !important;
}
p{
    font-size: 16px !important;
}



/* Mobile Responsive */
@media(max-width:768px){

    .doctor-degree{
        font-size:15px;
        line-height:1.7;
        padding:0 10px;
    }

}
/* =========================
   SERVICES GRID
========================= */

.services-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

/* =========================
   CARD
========================= */

.service-card{
    background:#fff;
    padding:22px;
    display:flex;
    align-items:center;
    gap:30px;

    border-radius:12px;

    position:relative;
    overflow:hidden;

    transition:0.4s ease;

    border:1px solid rgba(40,119,121,0.12);

    box-shadow:
    0 10px 30px rgba(40,119,121,0.08);
}

/* Top Border Animation */
.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;

    width:0;
    height:4px;

    background:linear-gradient(
        90deg,
        #287779,
       
    );

    transition:0.5s ease;
}

/* Hover */
.service-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 20px 40px rgba(176,52,122,0.15);
}

.service-card:hover::before{
    width:100%;
}

/* =========================
   IMAGE
========================= */

.service-img{
    width:300px;
    min-width:300px;
    height:280px;

    overflow:hidden;
    border-radius:10px;

    position:relative;
}

.service-img img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:0.5s ease;
}

/* Image Hover Zoom */
.service-card:hover .service-img img{
    transform:scale(1.08);
}

/* Overlay */
.service-img::after{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        135deg,
        rgba(40,119,121,0.10),
        rgba(176,52,122,0.10)
    );

    opacity:0;

    transition:0.4s ease;
}

.service-card:hover .service-img::after{
    opacity:1;
}

/* =========================
   CONTENT
========================= */

.service-content h3{
    font-size:19px;
    line-height:1.3;
    font-weight:500;

    color:#444;

    margin-bottom:18px;

    text-transform:uppercase;

    transition:0.3s ease;
}

.service-content p{
    font-size:18px;
    line-height:1.9;

    color:#666;
}

/* Hover Heading */
.service-card:hover .service-content h3{
    color:#b0347a;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .services-grid{
        grid-template-columns:1fr;
    }

    .service-card{
        flex-direction:column;
        text-align:center;
    }

    .service-img{
        width:100%;
        min-width:100%;
        height:260px;
    }

    .service-content h3{
        font-size:26px;
    }

    .service-content p{
        font-size:16px;
        line-height:1.7;
    }
}


/* =========================
   MODERN PHILOSOPHY SECTION
========================= */

.modern-philosophy-section{
    padding:100px 0;
    background:#faf8f6;

    overflow:hidden;
}

/* Wrapper */
.modern-philosophy-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
}

/* =========================
   LEFT CONTENT
========================= */

.small-heading{
    display:inline-block;

    font-size:15px;
    font-weight:600;

    color:#287779;

    letter-spacing:3px;

    margin-bottom:20px;
}

.modern-philosophy-content h2{
    font-size:58px;
    line-height:1.2;
    font-weight:700;

    color:#222;

    margin-bottom:25px;
}

/* Line */
.section-line{
    width:140px;
    height:4px;

    background:#b0347a;

    border-radius:30px;

    margin-bottom:35px;
}

.modern-philosophy-content p{
    font-size:18px;
    line-height:2;

    color:#555;

    margin-bottom:20px;
}

/* =========================
   FEATURE CARDS
========================= */

.philosophy-features{
    display:flex;
    gap:20px;

    margin-top:40px;

    flex-wrap:wrap;
}

.feature-card{
    background:#fff;

    padding:25px 20px;

    border-radius:18px;

    text-align:center;

    min-width:190px;

    transition:0.4s ease;

    border:1px solid rgba(40,119,121,0.10);

    box-shadow:
    0 10px 25px rgba(40,119,121,0.08);
}

/* Hover */
.feature-card:hover{
    transform:translateY(-10px);

    border-color:#b0347a;
}

/* Icon */
.feature-card i{
    font-size:34px;

    color:#287779;

    margin-bottom:15px;
}

/* Title */
.feature-card h4{
    font-size:18px;
    color:#333;
}

/* =========================
   RIGHT IMAGE
========================= */

.modern-philosophy-image{
    position:relative;
}

/* Main Image */
.main-image{
    position:relative;

    overflow:hidden;

    border-radius:30px;

    border:6px solid #287779;

    box-shadow:
    0 20px 40px rgba(40,119,121,0.12);
}

.main-image img{
    width:100%;
    /* height:650px; */

    object-fit:cover;

    display:block;

    transition:0.5s ease;
}

/* Hover */
.main-image:hover img{
    transform:scale(1.06);
}

/* Floating Card */
.floating-card{
    position:absolute;

    bottom:30px;
    left:-40px;

    background:#b0347a;

    color:#fff;

    padding:22px 25px;

    border-radius:18px;

    display:flex;
    align-items:center;
    gap:18px;

    box-shadow:
    0 15px 35px rgba(176,52,122,0.20);
}

/* Icon */
.floating-card i{
    font-size:32px;
}

/* Text */
.floating-card h5{
    font-size:20px;
    margin-bottom:5px;
}

.floating-card span{
    font-size:14px;
    opacity:0.9;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .modern-philosophy-section{
        padding:70px 0;
    }

    .modern-philosophy-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .modern-philosophy-content{
        text-align:center;
    }

    .modern-philosophy-content h2{
        font-size:38px;
    }

    .modern-philosophy-content p{
        font-size:16px;
        line-height:1.8;
    }

    .section-line{
        margin:0 auto 30px;
    }

    .philosophy-features{
        justify-content:center;
    }

    .main-image img{
        height:450px;
    }

    .floating-card{
        left:20px;
        bottom:20px;

        padding:18px;
    }

    .floating-card h5{
        font-size:16px;
    }
}

/* =========================
   TREATMENT SECTION
========================= */

.treatment-section{
    padding:60px 0;
    background:#f8f6f1;
    overflow:hidden;
}

/* =========================
   HEADING
========================= */

.treatment-heading{
    margin-bottom:40px;
}

.sub-title{
    display:inline-block;

    font-size:15px;
    font-weight:600;

    color:#287779;

    letter-spacing:3px;

    margin-bottom:15px;
}

.treatment-heading h2{
    font-size:62px;
    font-weight:500;

    color:#000;

    line-height:1.2;
}

/* =========================
   CARD
========================= */

.treatment-card{
    background:#fff;

    padding:30px 25px;

    /* min-height:420px; */

    border-radius:10px;

    border:1px solid rgba(40,119,121,0.15);

    box-shadow:
    0 10px 25px rgba(0,0,0,0.04);

    transition:0.4s ease;
}

/* Hover */
.treatment-card:hover{
    transform:translateY(-10px);

    border-color:#287779;

    box-shadow:
    0 20px 40px rgba(40,119,121,0.10);
}

/* =========================
   ICON
========================= */

.card-icon{
    width:65px;
    height:65px;

    border-radius:50%;

    background:#287779;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:30px;
}

.card-icon i{
    font-size:23px;
    color:#fff;
}

/* =========================
   TITLE
========================= */

.treatment-card h3{
    font-size:19px;
    line-height:1.4;
    font-weight:500;

    color:#b0347a;

    margin-bottom:15px;
}

/* =========================
   PARAGRAPH
========================= */

.treatment-card p{
    font-size:14px;
    line-height:1.9;

    color:#555;
}

/* =========================
   SWIPER BUTTONS
========================= */

.swiper-button-next,
.swiper-button-prev{

    width:40px;
    height:40px;

    border-radius:50%;

    background:#287779;

    color:#fff;

    transition:0.3s ease;
}

/* Hover */
.swiper-button-next:hover,
.swiper-button-prev:hover{
    background:#b0347a;
}

/* Icon */
.swiper-button-next::after,
.swiper-button-prev::after{
    font-size:15px;
    font-weight:700;
}

/* Position */
.swiper-button-prev{
    left:44%;
    top:auto;
    bottom:0;
}

.swiper-button-next{
    right:44%;
    top:auto;
    bottom:0;
}

/* Slider Bottom Space */
.treatmentSlider{
    padding-bottom:50px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .treatment-section{
        padding:70px 0;
    }

    .treatment-heading{
        text-align:center;
    }

    .treatment-heading h2{
        font-size:40px;
    }

    .treatment-card{
        min-height:auto;
        padding:35px 25px;
    }

    .treatment-card h3{
        font-size:26px;
    }

    .treatment-card p{
        font-size:16px;
        line-height:1.8;
    }

    .swiper-button-prev{
        left:38%;
    }

    .swiper-button-next{
        right:38%;
    }
}
/* =========================
   WHY CHOOSE SECTION
========================= */

.why-choose-section{

    position:relative;

    padding:60px 0;

    background-image:url('assets/gallery/background-image.png');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    background-attachment:fixed;

    overflow:hidden;
}

/* Overlay */
.overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,0.65);

    z-index:1;
}

/* Container */
.why-choose-section .container{
    position:relative;
    z-index:2;
}

/* =========================
   HEADING
========================= */

.why-heading{
    text-align:center;

    margin-bottom:40px;
}

.why-heading h2{

    font-size:62px;
    font-weight:500;

    color:#fff;

    margin-bottom:18px;
}

/* Line */
.heading-line{

    /* width:180px; */
    /* height:2px; */

    background:#f3b9aa;

    margin:auto;
}

/* =========================
   GRID
========================= */

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

/* =========================
   CARD
========================= */

.why-card{

    background:#fff;

    padding:15px 10px;

    border-radius:8px;
    

    /* min-height:190px; */

   


    display:flex;
    flex-direction:column;

    align-items:center;
    justify-content:center;

    text-align:center;

    border:1px solid rgba(40,119,121,0.12);

    box-shadow:
    0 10px 25px rgba(0,0,0,0.08);

    transition:0.4s ease;
}

/* Hover */
.why-card:hover{

    transform:translateY(-10px);

    border-color:#287779;

    box-shadow:
    0 20px 40px rgba(40,119,121,0.18);
}

/* Icon */
.why-card i{

    font-size:32px;

    color:#287779;

    margin-bottom:25px;

    transition:0.3s ease;
}

/* Hover Icon */
.why-card:hover i{
    color:#b0347a;
}

/* Title */
.why-card h3{

    font-size:17px;
    line-height:1.5;
    font-weight:500;

    color:#222;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .why-choose-section{
        padding:70px 0;

        background-attachment:scroll;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .why-heading h2{
        font-size:40px;
    }

    .why-card{
        min-height:auto;
        padding:35px 25px;
    }

    .why-card h3{
        font-size:24px;
    }
}
/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section{

    padding:100px 0;

    background:#f8f6ef;

    position:relative;

    overflow:hidden;
}

/* Background Pattern */
.testimonial-section::before{

    content:"";

    position:absolute;
    inset:0;

    background-image:
    radial-gradient(rgba(40,119,121,0.05) 1px, transparent 1px);

    background-size:30px 30px;

    opacity:0.5;
}

/* Container */
.testimonial-section .container{
    position:relative;
    z-index:2;
}

/* =========================
   HEADING
========================= */

.testimonial-heading{

    text-align:center;

    margin-bottom:60px;
}

.testimonial-heading h2{

    font-size:62px;
    font-weight:500;

    color:#b0347a;

    margin-bottom:18px;
}

/* Line */
.heading-line{

    width:190px;
    height:2px;

    background:#b0347a;

    margin:0 auto 25px;
}

/* Subtitle */
.testimonial-heading p{

    font-size:28px;
    color:#d6a595;
}

/* =========================
   CARD
========================= */

.testimonial-card{

    background:#fff;

    padding:25px;

    border-radius:8px;

    min-height:340px;

    border:1px solid rgba(40,119,121,0.12);

    box-shadow:
    0 10px 25px rgba(0,0,0,0.04);

    transition:0.4s ease;
}

/* Hover */
.testimonial-card:hover{

    transform:translateY(-10px);

    border-color:#287779;

    box-shadow:
    0 20px 40px rgba(40,119,121,0.12);
}

/* =========================
   TOP AREA
========================= */

.review-top{

    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:25px;
}

/* User Info */
.user-info{

    display:flex;
    align-items:center;

    gap:14px;
}

/* User Image */
.user-img{

    width:60px;
    height:60px;

    border-radius:50%;

    background:#287779;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;
    font-weight:500;
}

/* Black User */
.black-img{
    background:#000;
}

/* Pink User */
.pink-img{
    background:#e63d82;
}

/* Image User */
.image-user{
    overflow:hidden;
    background:none;
}

.image-user img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Name */
.user-info h4{

    font-size:24px;
    font-weight:500;

    color:#1557d6;

    margin-bottom:5px;
}

/* Time */
.user-info span{

    font-size:16px;
    color:#666;
}

/* Google Icon */
.google-icon{

    font-size:30px;

    color:#4285F4;
}

/* =========================
   STARS
========================= */

.stars{

    margin-bottom:22px;
}

.stars i{

    color:#ff9800;

    font-size:18px;

    margin-right:3px;
}

/* =========================
   REVIEW TEXT
========================= */

.testimonial-card p{

    font-size:18px;
    line-height:1.9;

    color:#333;
}

/* =========================
   PAGINATION
========================= */

.swiper-pagination{

    position:relative;

    margin-top:35px;
}

.swiper-pagination-bullet{

    width:12px;
    height:12px;

    background:#d8b8aa;

    opacity:1;
}

.swiper-pagination-bullet-active{
    background:#ff9800;
}

/* =========================
   BUTTON
========================= */

.review-btn-area{

    text-align:center;

    margin-top:35px;
}

.review-btn{

    display:inline-block;

    padding:16px 40px;

    border:1px solid #d6a595;

    color:#d6a595;

    text-decoration:none;

    font-size:24px;

    border-radius:8px;

    transition:0.3s ease;
}

/* Hover */
.review-btn:hover{

    background:#287779;

    border-color:#287779;

    color:#fff;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .testimonial-section{
        padding:70px 0;
    }

    .testimonial-heading h2{
        font-size:40px;
    }

    .testimonial-heading p{
        font-size:20px;
    }

    .testimonial-card{
        min-height:auto;
    }

    .testimonial-card p{
        font-size:16px;
        line-height:1.8;
    }

    .review-btn{
        font-size:18px;
        padding:14px 30px;
    }
}

/* Custom Color Variables based on user preference */
    :root {
      --primary-teal: #287779;
      --accent-crimson: #b0347a;
      --light-bg: #f4f9f9;
    }

    .faq-section {
      padding: 60px 0;
      background-color: rgba(243, 225, 235, 0.55);
    }

    .faq-title {
      color: #000;
      font-weight: 700;
      position: relative;
      padding-bottom: 15px;
    }

    .faq-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--accent-crimson);
    }

    /* Accordion Custom Styling */
    .accordion-item {
      border: 1px solid rgba(40, 119, 121, 0.15);
      margin-bottom: 15px;
      border-radius: 8px !important;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }

    .accordion-button {
      color: var(--primary-teal);
      font-weight: 600;
      background-color: #ffffff;
      padding: 20px;
    }

    .accordion-button:not(.collapsed) {
      background-color: var(--light-bg);
      color: var(--primary-teal);
      box-shadow: none;
    }

    /* Target the Bootstrap arrow indicator */
    .accordion-button::after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23287779'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

    .accordion-button:not(.collapsed)::after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23b0347a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

    .accordion-body {
      padding: 20px;
      color: #4a5568;
      line-height: 1.6;
      background-color: #ffffff;
      border-top: 1px solid rgba(40, 119, 121, 0.1);
    }

    .highlight-text {
      color: var(--accent-crimson);
      font-weight: 600;
    }
    /* ==========================================================================
   Custom Footer CSS 
   Color Palette: Teal (#287779) & Crimson/Berry (#b0347a)
   ========================================================================== */

footer {
  background-color: #017e80; /* Primary deep teal background */
  color: #f4f9f9; /* Soft, readable off-white for body text */
  padding: 60px 0 20px 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* Brand Typography & Logo Layout */
footer .brand-name {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

footer .brand-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Header Sections inside Footer */
footer .footer-links h6 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

/* Small under-line accent for column headers */
footer .footer-links h6::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background-color: #ff0090; /* Crimson accent line */
}

/* Link Columns Structural Formatting */
footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer .footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: flex-start;
}

/* Link Hover States */
footer .footer-links a:hover {
  color: #D98AC7 !important; /* Pops over to Crimson on hover */
  transform: translateX(4px); /* Soft horizontal push effect */
}

/* Align and color Bootstrap icons uniquely in Contact column */
footer .footer-links a i.bi {
  color: #b0347a; /* Icons stand out in signature Crimson */
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Social Media Badges/Buttons Styling */
footer .social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  margin-right: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer .social-btn i {
  font-size: 1.1rem;
}

footer .social-btn:hover {
  background-color: #b0347a; /* Shifts entirely to crimson */
  color: #ffffff;
  transform: translateY(-3px); /* Subtle float lift up */
}

/* Divider Rule & Bottom Bar layout */
footer .footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 40px 0 20px 0;
  opacity: 1;
}

footer .footer-bottom {
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* Explicit style override for developer credit link to prevent clashes */
footer .footer-bottom a {
  font-weight: 800;
  transition: color 0.2s ease;
  color: #D98AC7 !important;
}

footer .footer-bottom a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}   


/* Color Scheme Configuration */
    :root {
      --teal-primary: #287779;
      --crimson-accent: #b0347a;
      --card-bg: #ffffff;
      --section-bg: #f4f9f9; /* Soft teal tint backdrop */
    }

    .testimonials-section {
      background-color: var(--section-bg);
      padding: 60px;
    }

    .section-title {
      color: var(--teal-primary);
      font-weight: 700;
      position: relative;
      padding-bottom: 15px;
      display: inline-block;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 3px;
      background-color: var(--crimson-accent);
      border-radius: 2px;
    }

    /* Testimonial Card Styling */
    .testimonial-card {
      background-color: var(--card-bg);
      border: 1px solid rgba(40, 119, 121, 0.1);
      border-radius: 16px;
      padding: 25px 30px;
      height: 100%;
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 20px rgba(40, 119, 121, 0.04);
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(40, 119, 121, 0.08);
      border-color: rgba(176, 52, 122, 0.2);
    }

    /* Floating Decorative Quote Mark */
    .quote-icon {
      position: absolute;
      top: 25px;
      right: 30px;
      font-size: 2.5rem;
      color: rgba(40, 119, 121, 0.1);
      line-height: 1;
    }

    /* Star Rating Configuration */
    .star-rating {
      color: var(--crimson-accent);
      font-size: 0.95rem;
      margin-bottom: 15px;
    }

    .testimonial-text {
      color: #4a5568;
      font-size: 0.98rem;
      line-height: 1.6;
      font-style: italic;
      margin-bottom: 25px;
    }

    /* Client Details Layout */
    .client-profile {
      display: flex;
      align-items: center;
      gap: 15px;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      padding-top: 15px;
    }

    .client-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--teal-primary);
    }

    .client-info h5 {
      color: var(--teal-primary);
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 2px;
    }

    .client-info span {
      color: #718096;
      font-size: 0.85rem;
      font-weight: 500;
    }
    :root {
      --teal-primary: #287779;
      --crimson-accent: #b0347a;
      --section-bg: #f4f9f9;
      --card-bg: #ffffff;
    }

    .testimonials-section {
      background-color: var(--section-bg);
      padding: 80px 0 60px 0; /* Extra bottom padding for custom pagination dots */
    }

    .section-title {
      color: var(--teal-primary);
      font-weight: 700;
      position: relative;
      padding-bottom: 15px;
      display: inline-block;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 3px;
      background-color: var(--crimson-accent);
      border-radius: 2px;
    }

    /* Swiper Container Spacing overrides */
    .swiper-container-wrapper {
      position: relative;
      padding: 10px 0;
    }

    /* Testimonial Card Layout Structure */
    .testimonial-card {
      background-color: var(--card-bg);
      border: 1px solid rgba(40, 119, 121, 0.12);
      border-radius: 16px;
      padding: 25px 30px;
      height: auto;
      position: relative;
      box-shadow: 0 4px 20px rgba(40, 119, 121, 0.03);
      transition: border-color 0.3s ease;
    }

    .testimonial-card:hover {
      border-color: rgba(176, 52, 122, 0.25);
    }

    /* Decorative Quote Icon placement */
    .quote-icon {
      position: absolute;
      top: 25px;
      right: 30px;
      font-size: 2.5rem;
      color: rgba(40, 119, 121, 0.1);
      line-height: 1;
    }

    /* Star Indicator Config */
    .star-rating {
      color: var(--crimson-accent);
      font-size: 0.95rem;
      margin-bottom: 15px;
    }

    .testimonial-text {
      color: #4a5568;
      font-size: 0.98rem;
      line-height: 1.6;
      font-style: italic;
      margin-bottom: 25px;
    }

    /* Client Profile Meta Area */
    .client-profile {
      display: flex;
      align-items: center;
      gap: 15px;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      padding-top: 15px;
    }

    .client-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--teal-primary);
    }

    .client-info h5 {
      color: var(--teal-primary);
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 2px;
    }

    .client-info span {
      color: #718096;
      font-size: 0.85rem;
      font-weight: 500;
    }

    /* Swiper Pagination Dot Overrides */
    .swiper-pagination {
      bottom: -40px !important;
    }

    .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      background-color: var(--teal-primary);
      opacity: 0.3;
      transition: all 0.3s ease;
    }

    .swiper-pagination-bullet-active {
      background-color: var(--crimson-accent) !important;
      opacity: 1;
      width: 26px; /* Elegant pill-shaped stretch for modern active status indicator */
      border-radius: 5px;
    }

    #btn-enquiree{
    display:flex;
    justify-content:center;
    align-items:center;

    width:180px;
    height:45px;
    border-radius: 8px;
    margin:30px auto 0;

    background:#b0347a;
    color:#fff;

    text-decoration:none;

 

   
}



.banner {
    height: 400px;
    background: url('banner-acene.jpeg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    /* text-align: center; */
}

.banner-content {
    color: #fff;
}

.banner-content h1 {
    font-size: 48px;
    margin-bottom: 10px;    
    color: #000 !important;
}

.banner-content p {
    font-size: 20px;
    color: #000 !important;
}
/* Banner Responsive */
@media (max-width: 768px) {
    .banner {

        width: 100%;
        height: 150px;
    }

    .banner-content h1 {
        margin-bottom: 5px;
        margin-top: 20px;
        font-size: 27px !important;
    }

    .banner-content p {
        font-size: 13px !important;
        margin-bottom: 15px !important;
    }

    .acne-img{
        height:200px !important;
        margin-bottom: 20px !important;
    }
}   

.treatment-section{
    padding:60px 0;
    background:#e7f0f0;
    overflow:hidden;
    line-height: 30px !important;
}
.acne-img{
    width:100%;
    height:400px;
    object-fit:cover;
    border-radius: 12px;
}


.contact-section{
    background: rgba(40,119,121,0.08);
    padding: 60px 0;
}

.contact-tag{
    color:#b0347a;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.contact-title{
    font-size:34px;
    font-weight:700;
    color:#287779;
    margin:10px 0 15px;
    line-height:1.3;
}

.contact-desc{
    font-size:15px;
    color:#555;
    line-height:1.8;
    margin-bottom:25px;
}

.info-box{
    display:flex;
    gap:12px;
    margin-bottom:20px;
}

.info-box i{
    width:42px;
    height:42px;
    background:#287779;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    flex-shrink:0;
}

.info-box h6{
    margin-bottom:3px;
    color:#222;
    font-size:16px;
    font-weight:600;
}

.info-box p{
    margin:0;
    color:#666;
    font-size:14px;
    line-height:1.6;
}

.contact-form-box{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.contact-form-box h3{
    color:#287779;
    font-size:24px;
    margin-bottom:20px;
    font-weight:600;
}

.form-control{
    height:48px;
    border-radius:8px;
    border:1px solid #ddd;
    font-size:14px;
}

textarea.form-control{
    height:120px;
    resize:none;
}

.form-control:focus{
    border-color:#b0347a;
    box-shadow:none;
}

.contact-btn{
    background:#b0347a;
    color:#fff;
    border:none;
    padding:12px 28px;
    border-radius:8px;
    font-size:14px;
    font-weight:500;
    transition:.3s;
}

.contact-btn:hover{
    background:#287779;
    color:#fff;
}

@media(max-width:768px){

    .contact-section{
        padding:40px 0;
    }

    .contact-title{
        font-size:28px;
    }

    .contact-desc{
        font-size:14px;
    }

    .contact-form-box{
        padding:20px;
        margin-top:20px;
    }

    .contact-form-box h3{
        font-size:22px;
    }
}

```css
.blog-section{
    background: #fff;
    padding: 70px 0;
}

.blog-card{
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.blog-card img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.4s ease;
}

.blog-card:hover img{
    transform: scale(1.05);
}

.blog-content{
    padding: 25px;
}

.blog-content h5{
    font-size: 22px;
    font-weight: 600;
    color: #287779;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p{
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.read-more{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b0347a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.read-more::after{
    content: "→";
    transition: 0.3s ease;
}

.read-more:hover{
    color: #287779;
}

.read-more:hover::after{
    transform: translateX(5px);
}

@media(max-width:991px){

    .blog-card img{
        height: 220px;
    }

    .blog-content h5{
        font-size: 20px;
    }
}

@media(max-width:767px){

    .blog-section{
        padding: 50px 0;
    }

    .blog-card img{
        height: 200px;
    }

    .blog-content{
        padding: 20px;
    }

    .blog-content h5{
        font-size: 18px;
    }

    .blog-content p{
        font-size: 13px;
    }
}

.content{
    margin-top: 20px;
    padding: 20px;
    background: #e5eded;
    border-radius: 12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}
.content h4{
    /* margin-bottom: 15px; */
}