/*============================General-css============================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}
h1, h2, h3, h4, h5 {
    font-weight: 600;
    letter-spacing: 0.5px;
}
p {
    font-size: 16px;
    line-height: 1.6;
}
ul {
    list-style: none;
    padding-left: 0;
}
:root {
    --primary-color: #04c3cb;
    --secondary-color: #195254eb;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --sec-bg-color: #eefbff;
}
a.learn-more-btn {
    color: var(--primary-color);
}
a.learn-more-btn:hover {
    color:var(--secondary-color);
    text-decoration: none;
}
.navbar-toggler:focus{
    box-shadow: 0 0 0 0.25rem #028a8f !important;
}
.title {
    position: relative;
    display: inline-block;
    font-size: 24px;
    color: #04c3cb;
    padding-bottom: 5px;
    cursor: pointer;
}
/* Bottom line (initial hidden) */
.title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background-color: #04c3cb;
    transition: width 0.4s ease-in-out;
    border-radius: 5px;
}
@media (max-width: 991px) {
    .title {
        font-size: 22px;
        text-align: center;
        display: block;
        margin-bottom: 10px !important;
}
.sub-title {
    text-align: center;
    font-size: 19px;
}
section#about p {
    text-align: center;
}
}
@media (max-width: 767px) {
    .title {
        font-size: 20px;
    }
    .sub-title{
        font: 17px
    }
}
/* Hover animation */
.title:hover::after {
    width: 100%;
}
/*============================header-css============================*/
/* Header Background */
/* Fixed Header */
.clinic-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;   /* background white so it does not become transparent */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
/* Prevent content from going under the header */
body {
    padding-top: 80px;   /* adjust height as per your header height */
     font-family: 'Poppins', sans-serif;
}
@media (max-width: 991px){
    body {
    padding-top: 120px;   /* adjust height as per your header height */
}
}
/*============================ HEADER CSS (FINAL FIXED) ============================*/
/* Logo size */
.clinic-logo {
    max-width: 115px;
}
/* Menu Styling */
.navbar-nav .nav-link {
    font-size: 17px;
    font-weight: 500;
    padding: 10px 15px;
    color: #333;
    position: relative;
    transition: 0.3s;
}
.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-color);
    text-decoration: none;
}
span.logo-sub-name {
    font-size: 12px;
    font-weight: 600;
    color: #2b6061;
}
header .navbar-brand:focus, .navbar-brand:hover {
    color:var(--secondary-color);
}
/* ================= UNDERLINE ONLY FOR NORMAL LINKS ================= */
.navbar-nav .nav-link:not(.dropdown-toggle)::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    left: 50%;
    bottom: 3px;
    transition: 0.3s;
    transform: translateX(-50%);
}
/* Expand underline */
.navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
.navbar-nav .nav-link:not(.dropdown-toggle).active::after {
    width: 60%;
}
@media (max-width: 991px){
    .navbar-nav .nav-link:not(.dropdown-toggle):hover::after, .navbar-nav .nav-link:not(.dropdown-toggle).active::after {
    width: 100%;
}
.carousel-indicators{
   display:none;
}
}
/* Hover text color */
.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}
/* ================= DROPDOWN FIX ================= */
/* Arrow right side */
.navbar-nav .dropdown-toggle::after {
    margin-left: 6px;
    border-top-color: var(--primary-color);
    border-width: 6px 5px 0 5px !important;
}

/* Arrow hover effect */
.navbar-nav .dropdown-toggle:hover::after {
    border-top-color: var(--primary-color);
}
/* Dropdown Box */
.dropdown-menu {
    border-radius: 10px;
    padding: 10px 0;
    border: none;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.12);
    margin-top: 10px !important;
}
/* Dropdown Items */
.dropdown-menu .dropdown-item {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: 0.3s;
}

.dropdown-menu .dropdown-item:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Hover -> show dropdown (desktop only) */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* ================= APPOINTMENT BUTTON ================= */
.appointment-btn {
    padding: 10px 18px;
    font-weight: 600;
    border-radius: 30px;
    background-color: var(--primary-color);
    border-color: transparent;
}

.appointment-btn:hover {
    background-color: var(--secondary-color);
    border-color: transparent;
    color: #fff;
}
/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 991px) {

    /* Mobile dropdown is click-based only */

    .navbar-nav .dropdown-toggle::after {
        margin-left: 6px;
    }
}
@media (max-width: 991px) {
    ul.navbar-nav {
    background-color: var(--secondary-color);
    }
    .navbar-nav .nav-link{
        color: #fff;
    }
}
/*============================ END HEADER CSS ============================*/
/* ==================== BANNER CSS START ==================== */
/* Full Width Banner */
.hero-banner-slider .hero-img {
  object-fit: cover;
}

/* =======================
   PREMIUM ARROWS
========================= */
.hero-banner-slider .premium-arrow {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #fff;
  backdrop-filter: blur(12px);
  border: 2px solid rgba(4, 195, 203, 0.7);
  color: #04c3cb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.35s ease;
  box-shadow: 0 0 18px rgba(4, 195, 203, 0.35);
}

/* left */
.hero-banner-slider .carousel-control-prev.premium-arrow {
  left: 35px;
}

/* right */
.hero-banner-slider .carousel-control-next.premium-arrow {
  right: 35px;
}

/* Hover effect */
.hero-banner-slider .premium-arrow:hover {
  background: linear-gradient(135deg, #04c3cb, #028a8f);
  color: #fff;
  border-color: #04c3cb;
  box-shadow: 0 0 22px rgba(4, 195, 203, 0.55), 0 0 45px rgba(4, 195, 203, 0.25);
}

/* Remove BS default icons */
.hero-banner-slider .carousel-control-prev-icon,
.hero-banner-slider .carousel-control-next-icon {
  display: none !important;
}

/* =======================
   PREMIUM DOTS FOR MOBILE
========================= */
.hero-banner-slider .carousel-indicators [data-bs-target] {
  width: 11px;
  height: 11px;
  background-color: #04c3cb;
  border-radius: 50%;
  opacity: 0.7;
}

.hero-banner-slider .carousel-indicators .active {
  opacity: 1;
  background-color: #028a8f;
}
/* ==================== BANNER CSS END ==================== */

.running-strip {
    width: 100%;
    background: var(--secondary-color);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}
.strip-content {
  display: inline-block;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  padding-left: 100%;
  animation: moveText 30s linear infinite;
}

@keyframes moveText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .strip-content {
    font-size: 16px;
    animation-duration: 25s;
  }
}

@media (max-width: 480px) {
  .strip-content {
    font-size: 14px;
    animation-duration: 25s;
  }
}

/*============================Treatment-css============================*/
/* Treatment Section */
.treatment-section {
    background-color: var(--sec-bg-color);
}
.section-tag {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}
.treat-box {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    position: relative;
    border: 2px solid #e1f8f9;
    transition: 0.3s;
    min-height: 370px;
}
.treat-box:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.treat-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
    height: 180px;
}
.treat-num {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--primary-color);
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.treat-box h5{
    color: var(--primary-color);
}
.treatment-carousel .owl-dots {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.treatment-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #d0d0d0;
    border-radius: 50%;
    display: block;
    transition: 0.3s ease;
}

.treatment-carousel .owl-dots .owl-dot.active span {
    background: var(--primary-color);
    transform: scale(1.3);
}

/*============================Treatment-css============================*/
/*============================Stats-css============================*/
.stats-box {
    background: var(--secondary-color);
    color: #fff;
    border-radius: 30px;
}
.stats-box .counter {
    font-size: 40px;
    font-weight: 700;
}
.stats-box p {
    margin: 0;
    font-size: 15px;
}
.divider {
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    height: 50px;
}
/*============================Stats-css============================*/
/* Masonry Grid */
.masonry {
  column-count: 3;    
  column-gap: 20px;         
}
/* Each item */
.masonry-item {
    position: relative;
    margin-bottom: 20px;
    break-inside: avoid;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgb(43 96 97 / 49%);
}
/* Images no crop */
.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: .35s ease;
}
/* Hover zoom */
.masonry-item:hover img {
  transform: scale(1.05);
}

/* Overlay */
.g-overlay {
    position: absolute;
    inset: 0;
    background: rgb(4 195 203 / 36%);
    color:#000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: .35s ease;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.masonry-item:hover .g-overlay {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .masonry { column-count: 2; }
}
@media (max-width: 576px) {
  .masonry { column-count: 1; }
}

/*============================Review-css============================*/
.review-section {
  background-color: var(--sec-bg-color);
}
.review-tag {
    color: #04c3cb;
    font-weight: 600;
}
.review-box {
    padding: 15px;
}
.review-inner {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    min-height: 200px;
}
.rev-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.rev-left {
    display: flex;
    align-items: flex-start;
    max-width: 500px;
}
.rev-user {
    max-width: 65px;
    height: 65px;
    margin-right: 12px;
}
.rev-name {
    margin: 0;
    font-weight: 700;
    color: var(--secondary-color);
}
.rev-role {
    display: block;
    margin-top: 5px;
    font-size: 15px;
    color: #444;
    line-height: 1.4;
}
.rev-stars img {
    width: 120px;
    margin-top: 8px;
}
.clinic-logo {
    width: 90px;
}
.rev-stars i {
    color: gold;
    margin-top: 10px;
}
/* ========== FIXED QUOTE ICON ========== */
.quote-icon {
    position: absolute;
    right: -15px;
    bottom: -15px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 36px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1;
    padding-top: 12px;
}
/* ========== FIX NAV BUTTONS (Always on top) ========== */
.nav-prev, .nav-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #04c3cb;
    background: none;
    color: #04c3cb;
    margin: 0 10px;
    position: relative;
    z-index: 9999 !important;
}
.custom-nav {
    position: relative;
    z-index: 999;
}
/*============================Review-css============================*/
/* ---------- CARD MAIN STYLE ---------- */
.treat-card{
    background:#fff;
    border-radius:18px;
    padding:22px;
    box-shadow:0 6px 25px rgba(0,0,0,0.08);
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
    min-height: 450px;
}

/* Hover Effect: Float + Glow */
.treat-card:hover{
    transform:translateY(-10px);
    box-shadow:0 12px 35px rgba(0,0,0,0.15);
}

/* ---------- IMAGE STYLE WITH ANIMATION ---------- */
.treat-img{
    overflow:hidden;
    border-radius:14px;
    margin-bottom:18px;
}

.treat-img img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:14px;
    transition:transform .45s ease;
}

/* Image Zoom on Hover */
.treat-card:hover .treat-img img{
    transform:scale(1.08);
}

/* ---------- TITLE ---------- */
.treat-card h3{
    font-size:21px;
    font-weight:700;
    margin-bottom:14px;
    color:var(--secondary-color);
    position:relative;
}
.treatment-Packages{
    background-image: url(../image/page-banner.avif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Small underline animation */
.treat-card h3::after{
    content:"";
    width:0%;
    height:3px;
    background:#04c3cb;
    position:absolute;
    left:0;
    bottom:-6px;
    border-radius:12px;
    transition:.35s ease;
}

.treat-card:hover h3::after{
    width:40%;
}

/* ---------- LIST STYLE WITH ICON ANIMATION ---------- */

.treat-card ul{
    padding-left:0px;
    list-style:none;
}

.treat-card ul li{
    font-size:15.5px;
    margin-bottom:8px;
    display:flex;
    align-items:center;
    opacity:0;
    transform:translateX(-10px);
    animation:fadeInList .6s forwards;
}

/* Staggered animation to each list item */
.treat-card ul li:nth-child(1){ animation-delay:.1s; }
.treat-card ul li:nth-child(2){ animation-delay:.2s; }
.treat-card ul li:nth-child(3){ animation-delay:.3s; }
.treat-card ul li:nth-child(4){ animation-delay:.4s; }
.treat-card ul li:nth-child(5){ animation-delay:.5s; }

/* Animated tick icon */
.treat-card ul li::before{
    content:"✔";
    color:var(--primary-color);
    margin-right:8px;
    font-size:15px;
    transform:scale(0);
    animation:tickPop .4s forwards ease-out;
    animation-delay:inherit;
}
/* ---------- ANIMATIONS ---------- */
@keyframes fadeInList{
    to{
        opacity:1;
        transform:translateX(0);
    }
}
@keyframes tickPop{
    to{
        transform:scale(1);
    }
}
/* ---------- SECTION TITLE ---------- */
.section-title{
    font-size:34px;
    font-weight:800;
    color:var(--secondary-color);
    margin-bottom:35px;
}

/*============================Appointment-css============================*/
.appoint-section {
background-color: var(--sec-bg-color);
}
.appoint-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    margin: auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.appoint-box label {
    font-weight: 600;
    margin-bottom: 5px;
}
.appoint-btn {
    background: #04c3cb;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 18px;
    margin-top: 10px;
}
/*============================Appointment-css============================*/
/* Map Section Box */
.map-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 0px 10px rgb(4 195 203);
}
/* Responsive Map Wrapper */
.map-responsive {
    position: relative;
    overflow: hidden;
    padding-bottom: 38%;  /* Desktop height ~350px */
    border-radius: 15px;
}

/* Actual iframe full size */
.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
}

/* Mobile map height */
@media (max-width: 768px) {
    .map-responsive {
        padding-bottom: 55%;  /* Mobile height ~400px */
    }
}
/*============================Map-css============================*/

/*============================Footer-css============================*/
/* Footer Section */
.footer-section {
    background: var(--secondary-color);
}

/* Titles */
.footer-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Quick Links / Treatments List */
.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s;
}

.footer-list a:hover {
    color: #333;
    padding-left: 5px;
}

/* Address icons */
.address-list li i {
    margin-right: 8px;
    color: #ffffff;
}

/* Social icons */
.social-icons a {
    display: inline-block;
    margin-right: 12px;
    font-size: 18px;
    color: #ffffff;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #333;
    transform: translateY(-3px);
}
.footer-logo {
    width: 100px;
}
/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    background: var(--primary-color);
    padding: 10px 0;
    margin-top: 20px;
}

/* Text styling */
.footer-bottom p {
    font-size: 14px;
    color: #ffffff;
}

/* Developer logo */
.dev-logo {
    height: 22px;
    margin-left: 5px;
    vertical-align: middle;
}

/* Responsive center alignment */
@media (max-width: 768px) {
    .footer-bottom .container {
        justify-content: center !important;
        text-align: center;
        gap: 10px;
    }
}
/*============================Footer-css============================*/
/*============================Floating-button-css============================*/
/* Floating Buttons Container */
.float-container {
    position: fixed;
    bottom: 25px;
    left: 25px;  /* ⬅ LEFT SIDE FIX */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Individual Button Styles */
.float-btn {
    width: 55px;
    height: 55px;
    background: #25D366; /* Default WhatsApp color */
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
    text-decoration: none;
}

/* Hover Effect */
.float-btn:hover {
    transform: scale(1.1);
}

/* WhatsApp Button */
.float-btn.whatsapp {
    background: #25D366;
}

/* Call Button */
.float-btn.call {
    background: var(--primary-color);
}
/*============================Floating-button-css============================*/
/*============================Go-to-top-button-css============================*/
/* Go To Top Button */
.go-top-btn {
    position: fixed;
    bottom: 25px;   /* bottom distance */
    right: 25px;    /* right side - change to left:25px if left side chahiye */
    z-index: 9999;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
}
/* Show */
.go-top-btn.show {
    opacity: 1;
    visibility: visible;
}
/* Hover effect */
.go-top-btn:hover {
    transform: scale(1.1);
}

/*============================Go-to-top-button-css============================*/
/*============================page-banner-css============================*/
/* Image Parent */
.about-img.dr-img {
    position: relative;
    text-align: center;
    max-width: 400px;
    margin: auto;
    display: block;
}
@media (max-width: 767px) {
    .about-img.dr-img {
        max-width: 300px;
    }
}
/* Image styling (your custom radius) */
.about-img.dr-img img {
    border-radius: 140px 10px 140px;
    position: relative;
    z-index: 2;
}

/* Premium gradient border around image */
.about-img.dr-img::before {
    content: "";
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: 150px 20px 150px;
    background: linear-gradient(135deg, #04c3cb, #0bb7b7, #04c3cb);
    z-index: 1;
    opacity: 0.7;

    /* smooth glowing animation */
    box-shadow: 0 0 22px rgba(4,195,203,0.4);
    animation: glowBorder 4s ease-in-out infinite;
}

/* Glow Animation */
@keyframes glowBorder {
    0% { box-shadow: 0 0 12px rgba(4,195,203,0.25); opacity: 0.5; }
    50% { box-shadow: 0 0 28px rgba(4,195,203,0.55); opacity: 0.9; }
    100% { box-shadow: 0 0 12px rgba(4,195,203,0.25); opacity: 0.5; }
}
/* Zoom Animation (your existing) */
.zoom-img {
    animation: zoomInOut 7s ease-in-out infinite;
}
@keyframes zoomInOut {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

.page-banner-section {
    background-color: var(--secondary-color);
    padding: 100px 0;
}
.about-img.dr-img::after {
    content: "";
    position: absolute;
    width: 140px;          /* small image size */
    height: 140px;
    background-image: url(../image/about-img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    right: -35px;         /* adjust position */
    bottom: 0px;
    z-index: 3;
    animation: floatIcon 4s ease-in-out infinite;
}

/* Smooth floating animation */
@keyframes floatIcon {
    0% { transform: translateY(0); opacity: 0.8; }
    50% { transform: translateY(-10px); opacity: 1; }
    100% { transform: translateY(0); opacity: 0.8; }
}



@media (max-width: 767px) {
    .page-banner-section {
        padding:50px 0;
    }
    section.about-section p {
    text-align: center;
    font-size: 12px;
    }
    .service-detail-content p {
        text-align: center;
        font-size: 14px;
    }
    section.service-detail-section ul {
    text-align: center;
    max-width: 300px;
    margin: auto;
}
section.service-detail-section ul li {
    font-size: 14px;
}
}
.service-detail-img img {
    border-radius: 10px 40px;
}
li.breadcrumb-item a {
    color: var(--primary-color);
}
/* Accordion Styles */
.accordion-custom .accordion-item {
    border: none !important;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
/* Header Button */
.accordion-custom .accordion-button {
    background: #fff;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Remove default arrow */
.accordion-button::after {
    display: none !important;
}

/* + icon default */
.faq-icon {
    font-size: 18px;
    transition: 0.3s ease;
}

/* When opened → show minus icon */
.accordion-button:not(.collapsed) .faq-icon {
    transform: rotate(180deg);
    color: #04c3cb;
}

/* Open Header BG */
.accordion-button:not(.collapsed) {
    background: #e8fafa;
    color: #04c3cb;
    box-shadow: none !important;
}

/* Body Style */
.accordion-body {
    background: #fff;
    padding: 18px 20px;
    font-size: 15px;
    line-height: 1.6;
}
.faq-section {
    background-color: var(--sec-bg-color);
}
/*============================page-banner-css============================*/
   
/* UNIVERSAL SCROLLBAR – Chrome, Safari, Edge, Firefox, Mobile */

/* WebKit Browsers (Chrome, Safari, Edge, Android Chrome, iOS Safari) */
::-webkit-scrollbar {
    width: 8px;               /* scrollbar width */
}

::-webkit-scrollbar-track {
    background: #e0f7f8;      /* track color */
}

::-webkit-scrollbar-thumb {
    background: #04c3cb;      /* thumb color */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0bb7b7;      /* hover color */
}

/* Firefox Browsers */
* {
    scrollbar-width: thin;                   /* auto | thin */
    scrollbar-color: #04c3cb #e0f7f8;        /* thumb | track */
}

/* Smooth scroll on mobile (optional but recommended) */
html {
    -webkit-overflow-scrolling: touch;
}
