:root{
  --primary:#00aeeff0;
  --color-secondary:#00aeeff0;
  --primary-light:#6fded6;
  --primary-dark:#169d96;
  --dark:#115278;
  --dark-strong:#0b4f6c;
  --bg-soft:#f6efea;
  --text-gray:#555;
  --text-light:#777;
  --white:#ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}
/* ================= FONT SYSTEM ================= */

/* Headings */
h1, h2, h3, h4, h5, h6,
.section-title,
.numbers-title,
.breadcrumb-title,
.hero-content h1,
.doctor-name,
.recent-title,
.kids-title,
.contact-title {
  font-family: 'Playfair Display', serif;
}

/* Paragraphs & Body Text */
body,
p,
.section-subtitle,
.breadcrumb-desc,
.call-btn,
.quote-text,
.service-card p,
.service-box p,
.contact-desc,
.article-excerpt,
.kids-desc,
.doctor-description {
  font-family: 'Maven Pro', sans-serif;
}

/* Buttons */
.btn,
.btn-view,
.image-btn,
.curve-btn,
.back-top,
.breadcrumb-nav .current {
  font-family: 'Playfair Display', serif;
}
/* TOP BAR */
.top-bar {
  background: #fff;
  color: var(--color-secondary);
  font-size: 14px;
  padding-top: 80px;
}

.top-left {
  display: flex;
  gap: 20px;
  padding: 8px 0;
}

/* HEADER */
.header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 60px;
}

/* NAV */
.nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav a {
  text-decoration: none;
  color: var(--color-secondary);
  font-weight: 500;
}

/* CALL BUTTON */
.call-btn {
  background: #0a4c6a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* MOBILE */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--color-secondary);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-secondary);
  display: none;
  flex-direction: column;
  padding: 40px;
  z-index: 2000;
}

.mobile-menu ul {
  list-style: none;
  margin-top: 60px;
}

.mobile-menu li {
  margin-bottom: 24px;
}

.mobile-menu a {
  color: #fff;
  font-size: 22px;
  text-decoration: none;
}

.close-menu {
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  align-self: flex-end;
}

/* RESPONSIVE */
/* ================= MOBILE RESPONSIVE FIX ================= */

/* Tablet & Mobile */
@media (max-width: 768px) {

  /* Hide desktop elements */
  .top-bar {
    display: none;
  }

  .nav,
  .call-btn {
    display: none;
  }

  /* Show hamburger */
  .menu-toggle {
    display: block;
  }

  /* Header height adjust */
  .header-inner {
    height: 64px;
  }

  .logo img {
    height: 45px;
  }
}

/* Small phones (320px – 375px) */
@media (max-width: 480px) {

  .container {
    padding: 0 12px;
  }

  .mobile-menu a {
    font-size: 18px;
  }

  .mobile-menu li {
    margin-bottom: 18px;
  }
}

/* Landscape phones */
@media (max-height: 500px) {

  .mobile-menu ul {
    margin-top: 30px;
  }
}

/* iPhone safe-area support */
.mobile-menu {
  padding-top: calc(40px + env(safe-area-inset-top));
  padding-bottom: calc(40px + env(safe-area-inset-bottom));
}

/* Enable mobile menu when active */
.mobile-menu.active {
  display: flex;
}


/* BREADCRUMB START  */
/* ================= BREADCRUMB ================= */

.breadcrumb-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 90px 0 120px;
  overflow: hidden;
}

.breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 190, 182, 0.55);
}

/* CONTENT ON TOP */
.breadcrumb-section .container {
  position: relative;
  z-index: 2;
}

/* BOTTOM WAVE */
.breadcrumb-wave {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 200px;
  background: var(--bg-soft); /* same as footer wave */
  border-radius: 50% 50% 0 0;
  z-index: 1;
}

/* TEXT */
.breadcrumb-title {
  font-size: 52px;
  color: var(--white);
  margin-bottom: 12px;
}

.breadcrumb-desc {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.7;
  color: #e9f9f8;
}

.breadcrumb-nav {
  font-size: 15px;
  display: flex;
  gap: 10px;
  color: var(--white);
}

.breadcrumb-nav a {
  color: var(--white);
  text-decoration: none;
}

.breadcrumb-nav .current {
  background: var(--white);
  color: var(--dark);
  padding: 6px 14px;
  border-radius: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .breadcrumb-section {
    padding: 70px 0 100px;
  }

  .breadcrumb-title {
    font-size: 36px;
  }

  .breadcrumb-wave {
    height: 160px;
    bottom: -100px;
  }
}
/* BREADCRUMB END  */

/* BANNER START  */
.hero-slider {
  position: relative;
  background: var(--primary);
  overflow: hidden;
}

.slide-1 {
  background-image: url('images/banner1.1.webp');
}

.slide-2 {
  background-image: url('images/banner2.1.webp');
}

@media (max-width: 768px) {

  .slide-1 {
    background-image: url('images/mobile-banner1.webp');
  }

  .slide-2 {
    background-image: url('images/mobile-banner2.webp');
  }

}

/* SLIDES */
.slides {
  position: relative;
  height: calc(100vh - 80px); /* header height */
  padding-bottom: 120px;      /* ✅ WAVE KE LIYE REAL SPACE */
  box-sizing: border-box;
}

/* SLIDE */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top; /* ✅ IMAGE UPAR LOCK */
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}

/* OPTIONAL OVERLAY */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(30,190,182,0.75); */
}

.slide.active {
  opacity: 1;
}



/* CONTENT */
.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 4;
  max-width: 623px;
  color: #fff;
}

.hero-content h1 {
  font-size: clamp(42px, 5vw, 90px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-content h1 small {
  display: block;
  font-size: 0.5em;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.4s ease, color 0.4s ease; /* smooth */
}

.btn.primary {
  background: #fff;
  color: var(--dark);
}

.btn.secondary {
  background: var(--dark);
  color: #fff;
}

/* Hover Swap */
.btn.primary:hover {
  background: var(--dark);
  color: #fff;
}

.btn.secondary:hover {
  background: #fff;
  color: var(--dark);
}

.hero-btn {
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Primary (White) */
.hero-btn-primary {
  background: #fff;
  color: var(--dark);
}

/* Secondary (Dark) */
.hero-btn-secondary {
  background: var(--dark);
  color: #fff;
}

/* Hover Swap */
.hero-btn-primary:hover {
  background: var(--dark);
  color: #fff;
}

.hero-btn-secondary:hover {
  background: #fff;
  color: var(--dark);
}
.slide {
  pointer-events: none;
}

.slide.active {
  pointer-events: auto;
}

.hero-content {
  position: relative;
  z-index: 10;
}
/* ARROWS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
}

.arrow.prev { left: 20px; }
.arrow.next { right: 20px; }

/* PAGINATION */
.hero-pagination {
  position: absolute;
  bottom: 60px;
  right: 60px;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 600;
  z-index: 5;
}

.hero-pagination .divider {
  width: 40px;
  height: 2px;
  background: #fff;
  margin: 0 12px;
}

/* WAVE */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  fill: #fff;
  z-index: 3;          /* ✅ IMAGE KE UPAR */
  pointer-events: none;
}

/* ================= RESPONSIVE ================= */

/* Tablet & Mobile */
@media (max-width: 768px) {

  .slides {
    height: calc(100vh - 64px);
    padding-bottom: 80px; /* smaller wave */
  }

    .hero-content {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: clamp(32px, 8vw, 52px);
    line-height: 1.1;
  }

  .hero-content p {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }


  .arrow {
    font-size: 32px;
  }

  .arrow.prev { left: 12px; }
  .arrow.next { right: 12px; }

  .hero-pagination {
    right: 20px;
    bottom: 30px;
    font-size: 14px;
  }

  .hero-pagination .divider {
    width: 28px;
  }

  .hero-wave {
    height: 80px;
  }
}

/* Small phones */
@media (max-width: 480px) {

  .hero-content {
    padding-top: 80px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .arrow {
    display: none;
  }

  .hero-pagination {
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
  }
}

/* Landscape phones */
@media (max-height: 500px) {

  .slides {
    height: auto;
    min-height: 100vh;
  }

  .hero-content {
    padding-top: 60px;
  }

  .hero-wave {
    display: none;
  }
}

/* iOS height fix */
@supports (-webkit-touch-callout: none) {
  .slides {
    min-height: -webkit-fill-available;
  }
}

/* BANNER END  */

/* Service Section START  */
/* ================= SECTION ================= */

.services-section{
  background:var(--white);
  padding-top:100px;
  padding-bottom:100px;
}

/* ================= HEADINGS ================= */

.section-title{
  font-size:60px;
  font-weight:600;
  color:var(--primary);
  margin-bottom:20px;
}

.section-subtitle{
  font-size:16px;
  color:var(--text-gray);
  /* max-width:600px; */
}

/* ================= CARD ================= */

.service-card h4{
  font-size:26px;
  margin-top:25px;
  margin-bottom:15px;
  color:#134b6f;
}

.service-card p{
  font-size:15px;
  color:var(--text-gray);
  line-height:1.7;
  margin-bottom:15px;
}

.read-more{
  position:relative;
  display:inline-block;
  padding:10px 22px;
  color:var(--primary);
  border:2px solid var(--primary);
  border-radius:30px;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  overflow:hidden;
  transition:color 0.3s ease;
  z-index:1;
}

/* Sliding Background */
.read-more::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:0%;
  height:100%;
  background:linear-gradient(90deg,var(--primary),var(--primary-dark));
  transition:width 0.4s ease;
  z-index:-1;
}

/* Hover */
.read-more:hover{
  color:#ffffff;
}

.read-more:hover::before{
  width:100%;
}

.read-more span{
  margin-left:5px;
  transition:0.3s;
}

.read-more:hover span{
  margin-left:10px;
}

/* ================= IMAGE ================= */

.image-wrap{
  position:relative;
  width:220px;
  height:220px;
  margin:0 auto;
}

.image-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}

/* ================= DECOR ELEMENTS ================= */

.decor{
  position:absolute;
  color:var(--primary);
  font-weight:600;
}

.decor-plus{
  font-size:22px;
  top:10px;
  right:15px;
}

.decor-plus.bottom{
  bottom:20px;
  left:15px;
}

.decor-dot{
  width:10px;
  height:10px;
  border:2px solid var(--primary);
  border-radius:50%;
  bottom:10px;
  left:15px;
}

.decor-dot.top{
  top:15px;
  right:20px;
}

.decor-dot.small{
  width:8px;
  height:8px;
  bottom:15px;
  right:15px;
}

/* ================= BUTTON ================= */

.btn-view{
  position:relative;
  display:inline-block;
  padding:14px 40px;
  color:#ffffff;
  border:2px solid var(--primary);
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  overflow:hidden;
  z-index:1;
  transition:color 0.3s ease;
}

/* Sliding Gradient Background */
.btn-view::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(90deg,var(--primary),var(--primary-dark));
  z-index:-1;
  transition:transform 0.4s ease;
  transform:scaleX(1);
  transform-origin:left;
}

/* Hover Effect */
.btn-view:hover::before{
  transform:scaleX(0);
}

.btn-view:hover{
  color:var(--primary);
  background:#ffffff;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){
  .section-title{
    font-size:40px;
  }

  .image-wrap{
    width:180px;
    height:180px;
  }
}
/* Service section END   */

/* quote-subscribe section START  */
/* ===============================
   QUOTE / SUBSCRIBE SECTION
================================ */

/* =========================
   QUOTE / SUBSCRIBE SECTION
========================= */
/* =========================
   QUOTE / SUBSCRIBE SECTION
========================= */
.quote-experience-section{
  background: linear-gradient(135deg,#25b3aa,#4fb8b2);
  padding:200px 0 0;
  position:relative;
  overflow:visible;
}
.quote-experience-section .container{
  position:relative;
  z-index:2;
}
.top-curve{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  line-height:0;
   z-index:0;
}

.top-curve svg{
  width:100%;
  height:160px;
  fill:#fff;
}

@media (max-width:768px){

  .top-curve svg{
    height:60px;
  }

  .bottom-curve svg{
    height:60px;
  }

  .quote-experience-section{
    padding:140px 0 0;
  }

}
@media (max-width:480px){

  .top-curve svg{
    height:40px;
  }
  .bottom-curve svg {
    height:40px;
  }

}
.quote-title{
  font-size:48px;
  margin-bottom:20px;
}

.quote-desc{
  font-size:18px;
  margin-bottom:30px;
}

.quote-form input{
  border-radius:50px;
  padding:18px;
  border:none;
}

.quote-form button{
  border-radius:50px;
  padding:0 30px;
  background:#123b6b;
  border:none;
}

.divider{
  border-color:rgba(255,255,255,0.4);
  margin:40px 0;
}

/* ================= SWEET EXPERIENCE ================= */

.sweet-experience{
  margin-top:60px;
}

.experience-title{
  font-size:52px;
  margin-bottom:20px;
  font-weight:600;
}

.experience-desc{
  max-width:750px;
  margin:0 auto 60px;
  font-size:18px;
  opacity:0.9;
}

.mini-card img{
  width:120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:20px;
}

.mini-card h5{
  font-size:20px;
  margin-bottom:10px;
  font-weight:600;
}

.mini-card p{
  font-size:14px;
  opacity:.9;
  max-width:260px;
  margin:0 auto;
}

.bottom-curve{
  position:relative;
 
}

.bottom-curve svg{
    width: 100%;
    height: 80px;
    display: block;
    fill: #fff;
}

.curve-btn{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-20%);
  
  /* Already gradient use karo */
  background: linear-gradient(135deg, #123b6b, #1e5fa3);
  color:#fff;
  padding:18px 40px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;

  transition: all 0.6s ease;
}

/* Hover – sirf gradient direction change */
.curve-btn:hover{
  background: linear-gradient(135deg, #1e5fa3, #123b6b);
}



/* ================= EXPERIENCE RESPONSIVE FIX ================= */

/* Tablet */
@media (max-width: 992px) {


  .experience-title {
    font-size: 42px;
  }

  .experience-desc {
    margin-bottom: 60px;
    padding: 0 20px;
  }


}

/* Mobile */
@media (max-width: 768px) {


  .experience-title {
    font-size: 30px;
  }

  .experience-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
  }


  .curve-btn {
    padding: 14px 32px;
    font-size: 15px;
    top: 0;
  }
}

/* Small phones */
@media (max-width: 480px) {

  .experience-title {
    font-size: 26px;
  }

  .experience-desc {
    font-size: 14px;
  }


  .curve-btn {
    width: 100%;
    max-width: 280px;
  }
}


/* prevent horizontal scroll */




/* ================= FINAL MOBILE OVERFLOW FIX ================= */


/* ---------- HERO PAGINATION ---------- */
@media (max-width: 480px) {
  .hero-pagination {
    right: 50%;
    transform: translateX(50%);
    bottom: 16px;
  }
}

/* ---------- QUOTE CURVES (BIGGEST ISSUE) ---------- */
@media (max-width: 768px) {
  .quote-subscribe::before,
  .quote-subscribe::after {
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
  }
}

@media (max-width: 480px) {
  .quote-subscribe::before,
  .quote-subscribe::after {
    width: 110%;
  }
}



/* ---------- SERVICE IMAGE SAFETY ---------- */
@media (max-width: 360px) {
  .service-media {
    width: 180px;
    height: 180px;
  }
}

/* ---------- MOBILE MENU SAFETY ---------- */
.mobile-menu {
  max-width: 100vw;
}



/* Recent Articles Section START  */
/* ================= RECENT ARTICLES ================= */

.recent-articles {
  padding: 60px 0 100px;
  background: var(--white);
}

.recent-title {
  font-size: 64px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 80px;
  margin-top: 30px;
}

/* Card */
.article-card {
  max-width: 260px;
}

/* Meta */
.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.article-meta img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.meta-text .author {
  font-size: 15px;
  font-weight: 500;
  color: #111;
  display: block;
}

.meta-info {
  font-size: 13px;
  color: var(--primary);
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

/* Title */
.article-title {
  font-size: 26px;
  font-weight: 400;
  color: #000;
  line-height: 1.25;
  margin-bottom: 16px;
}

/* Excerpt */
.article-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .article-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .recent-title {
    font-size: 42px;
    margin-bottom: 50px;
  }

  .article-title {
    font-size: 22px;
  }
}
/* Recent Articles Section END  */

/* Kids Oral Care start  */
/* ================= Meet Dr. Sonali start ================= */

.kids-care-section {
  padding: 60px 0;
      background: #63d4cb;
}

/* LEFT */
.kids-title {
  font-size: 52px;
  color: var(--dark);
  margin-bottom: 20px;
}

.kids-desc {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* FEATURES */
.kids-features {
  row-gap: 40px;
}

.feature-box {
  text-align: center;
}

.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary);
  margin: 0 auto 20px;
}

.feature-box h4 {
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 12px;
}

.feature-box p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* RIGHT IMAGE SHAPE */
.image-ring {
  position: relative;
  width: 420px;
  height: 420px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-wrapper {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BUTTON ON IMAGE */
.image-btn {
  display: inline-block;
  margin-top: 25px;
  background: var(--white);
  color: var(--dark);
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
   transition: 
    background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .kids-title {
    font-size: 31px;
    margin-top: 10px;
    font-weight: 700;
  }

  .kids-desc {
    margin-bottom: 40px;
  }

  .image-ring {
    margin-top: 60px;
  }
}

@media (max-width: 576px) {
  .image-ring {
    width: 300px;
    height: 300px;
  }

  .image-wrapper {
    width: 260px;
    height: 260px;
  }

  .image-btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}

 /* Meet Dr. Sonali end   */
/* Kids Oral Care end  */

 /* CONTACT US SECTION start  */

.contact-section {
  padding: 140px 0;
  background: var(--white);
}

/* MAP OUTER */
.contact-map-outer {
  position: relative;
  height: 520px;
  border-radius: 25px;
  overflow: hidden;
  background: #fff; /* inner safe */
}

.contact-map-outer::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 10px; /* 👈 thickness of line (2–4px best) */
  border-radius: 25px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: 2;
  pointer-events: none;
}
/* TOP CENTER ADDRESS */
.map-address-bar {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  z-index: 5;
  transition: transform 0.25s ease;
}

.map-address-bar:hover {
  transform: translateX(-50%) translateY(-2px);
}

/* MAP */
.contact-map {
  width: 100%;
  height: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* MAP PIN */
.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 4;
}

/* RIGHT CONTENT */
.contact-title {
  font-size: 56px;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-desc {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* ITEMS */
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  text-decoration: none;
}
.contact-icon {
  flex-shrink: 0;
}

/* CLICKABLE */
.contact-item.clickable {
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease;
}

.contact-item.clickable:hover {
  transform: translateY(-4px);
}

/* ICONS */
.contact-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.contact-icon.dark {
  background: var(--dark);
  color: var(--white);
}

.contact-icon.light {
  background: #f3f3f3;
  color: var(--primary);
}

.contact-item h4 {
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-map-outer {
    height: 420px;
    margin-bottom: 80px;
  }

  .contact-title {
    font-size: 44px;
  }
}

@media (max-width: 576px) {
  .contact-map-outer {
    height: 340px;
  }

  .map-pin {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .contact-title {
    font-size: 36px;
  }
}

 /* CONTACT US SECTION END  */


/* Footer START  */
/* ================= FOOTER ================= */

.site-footer {
  position: relative;
  background: var(--primary);
  color: #fff;
  padding: 130px 0 0px;
  overflow: hidden;
}

/* WAVE */
.footer-wave {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 200px;
  background: var(--bg-soft);
  border-radius: 0 0 50% 50%;
  z-index: 0;
}

.footer-inner {
  position: relative;
  z-index: 2;
}

/* LOGO */
.footer-logo {
  text-align: center;
  margin-bottom: 80px;
}

.footer-logo img {
  max-width: 250px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 30px;
  margin-bottom: 24px;
}

.footer-text {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: justify;
}

.footer-sub {
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-phone {
  font-size: 16px;
  margin-bottom: 10px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-social a {
  font-size: 20px;
  color: var(--dark);
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* LISTS */
.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
}

/* AWARDS */
.footer-awards img {
  max-width: 180px;
  margin-bottom: 20px;
}

.award-list li {
  font-size: 15px;
  margin-bottom: 8px;
}

/* WORKING HOURS */
.working-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  margin-bottom: 10px;
}

.closed {
  opacity: 0.7;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
}

.back-top {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .working-hours li {
    justify-content: center;
    gap: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 2px;
    text-align: center;
  }
}

ol,
ul {
  padding-left: 0rem !important;
}
/* Footer END  */


/* NEW SERVICE IN ABOUT US START  */
/* ================= SERVICES NEW ================= */

.services-new {
  padding: 120px 0;
  background: var(--white);
}

.services-header {
  width: 100%;
  margin-bottom: 80px;
}

.services-header h2 {
  font-size: 56px;
  color: var(--dark);
  margin-bottom: 16px;
}

.services-header p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-gray);
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 60px;
}

/* BOX */
.service-box {
  text-align: center;
}

/* ICON WRAP */
.icon-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 2px solid #dff3f2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* INNER ICON */
.icon {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  box-shadow: 0 6px 18px rgba(30,190,182,0.25);
}

/* GLOW RING */
.icon-wrap::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(30,190,182,0.35) 0%,
    rgba(30,190,182,0.15) 40%,
    rgba(30,190,182,0.05) 60%,
    transparent 70%
  );
  opacity: 0;
  transform: scale(0.6);
  transition: 0.45s ease;
}

/* HOVER EFFECT */
.service-box:hover .icon-wrap::before {
  opacity: 1;
  transform: scale(1);
}

/* TEXT */
.service-box h4 {
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

.icon-wrap img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.service-click {
  text-decoration: none;
  display: inline-block;
}

.service-name-link {
  text-decoration: none;
  color: inherit;
}

.service-name-link:hover {
  color: var(--primary);
}

.service-click:hover .icon-wrap::before {
  opacity: 1;
  transform: scale(1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .services-header h2 {
    font-size: 38px;
  }
}
/* NEW SERVICE IN ABOUT US END  */



/* new start  */
/* ================= NUMBERS SECTION ================= */

.numbers-section{
  position: relative;
  padding: 220px 0 200px;
  background: url("images/numbers-bg.webp") center/cover no-repeat;
  overflow: hidden;
}

/* OVERLAY */
.numbers-overlay{
  position:absolute;
  inset:0;
  background: rgba(30,190,182,0.85);
  z-index:1;
}

/* WAVES */
.numbers-wave{
  position:absolute;
  width:100%;
  height:140px;
  fill:var(--white);
  z-index:3;
}
.numbers-wave.top{ top:0; }
.numbers-wave.bottom{ bottom:0; }

/* CONTENT */
.numbers-section .container{
  position:relative;
  z-index:2;
  color:var(--white);
}

/* HEADINGS */
.numbers-subtitle{
  font-size:20px;
  opacity:.9;
  margin-bottom:6px;
}

.numbers-title{
  font-size:56px;
  font-weight:700;
  margin-bottom:60px;
}

/* ================= CIRCLES ================= */
.circle-wrap{
  width:140px;
  height:140px;
  margin:0 auto 22px;
}

.circle{
  width:100%;
  height:100%;
  border-radius:50%;
  border:6px solid var(--dark-strong);
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ICON CENTER */
.circle img{
  width:50px;
  height:50px;
  /* filter: brightness(0) invert(1); */
  display:block;
  border-radius: 25px;
}

/* TEXT */
.number-item h4{
  font-size:20px;
  margin-bottom:10px;
  font-weight:600;
}

.number-item p{
  font-size:15px;
  line-height:1.6;
  opacity:.9;
  max-width:260px;
  margin:0 auto;
}
/* ================= THIN LINE ================= */

.numbers-line{
  width:85%;
  height:1px;
  background: rgba(255,255,255,.4);
  margin:90px auto 0;
}

/* ================= QUOTE SECTION ================= */

.quote-section{
  margin-top:90px;
}

.quote-box{
  position: relative;
  max-width: 360px;
}

.quote-main{
  font-size:28px;
  line-height:1.4;
  font-weight:500;
  margin:0;
  display:inline;
}

.quote-mark{
  font-size:60px;
  line-height:1;
  opacity:.9;
}

.quote-mark.open{ margin-right:6px; }
.quote-mark.close{ margin-left:6px; }

.quote-text{
  font-size:15px;
  line-height:1.7;
  opacity:.95;
  max-width:520px;
}

/* ================= RESPONSIVE ================= */

@media (max-width:992px){
  .numbers-title{ font-size:44px; }
}

@media (max-width:768px){
  .numbers-section{
    padding:180px 0 160px;
  }

  .numbers-title{ font-size:36px; }

  .quote-main{
    font-size:24px;
    text-align:center;
  }

  .quote-text{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
  }

  .quote-box{ text-align:center; }
}
/* new end  */























/* dental check up strart  */
.service-detail-section{
  background:#f8f9fa;
}

.service-title{
  color:#1aa39a;
  font-weight:600;
}

.service-list{
  padding-left:20px;
}

.service-list li{
  margin-bottom:10px;
}

/* SERVICES BOX */
.sidebar-box{
  background:#e9dfd8;
  padding:35px;
  border-radius:25px;
}

.sidebar-title{
  font-weight:600;
  margin-bottom:25px;
  position:relative;
}

.sidebar-title::after{
  content:"";
  width:45px;
  height:3px;
  background:#20b2a6;
  display:block;
  margin-top:10px;
}

.sidebar-services{
  list-style:none;
  padding:0;
  margin:0;
}

.sidebar-services li{
  border-bottom:1px solid #d8ccc4;
}

.sidebar-services li:last-child{
  border-bottom:none;
}

.sidebar-services li a{
  display:block;
  padding:15px 0;
  color:#333;
  text-decoration:none;
  transition:0.3s;
}

.sidebar-services li a:hover{
  color:#20b2a6;
}

.sidebar-services li.active a{
  color:#20b2a6;
  font-weight:600;
}

/* CONTACT BOX */
.contact-box{
  background:#f3f3f3;
  padding:12px 48px;
  border-radius:30px;
  border:2px solid #e4d7cf;
}

/* Title */
.sidebar-title{
  font-weight:600;
  font-size:28px;
  margin-bottom:20px;
  position:relative;
}

.sidebar-title::after{
  content:"";
  width:50px;
  height:3px;
  background:#1fb5aa;
  display:block;
  margin-top:10px;
}

/* Row Layout */
.contact-row{
  display:flex;
  align-items:flex-start;
  gap:25px;
  padding:0px 0;
}

/* Circle EXACT SIZE */
.sidebar-icon-circle{
  width:70px;
  height:70px;
  border-radius:50%;
  background:#e9e9e9;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  color:#1fb5aa;
  flex-shrink:0;
}

/* Text */
.contact-info h6{
  font-size:20px;
  font-weight:600;
  margin-bottom:8px;
}

.contact-info p{
  margin:0;
  color:#666;
  font-size:16px;
}

/* Divider */
.contact-box hr{
  border-color:#ddd;
  margin:10px 0;
}

 /* About us section start   */

 
.doctor-profile-section {
  background: #fff;
}
.doctor-blob{
  width:420px;
  height:420px;
  margin:auto;
  position:relative;

  /* OUTER GRADIENT BORDER */
  background: linear-gradient(135deg,var(--primary),var(--primary-light));
  padding:18px;

  /* EXACT ORGANIC SHAPE */
  border-radius: 50% 40% 55% 45% / 60% 45% 55% 40%;
}

.doctor-blob img{
  width:100%;
  height:100%;
  object-fit:cover;

  /* SAME SHAPE APPLY */
  border-radius: inherit;
}
.doctor-blob::before{
  content:"";
  position:absolute;
  width:14px;
  height:14px;
  border-radius:50%;
  background:var(--primary);
  top:30px;
  right:30px;
}

.doctor-blob::after{
  content:"+";
  position:absolute;
  font-size:26px;
  color:var(--dark-strong);
  top:25px;
  left:35px;
}

@media(max-width:768px){
  .doctor-blob{
    width:280px;
    height:280px;
  }
}

.doctor-subtitle {
  color: #1bb4a9;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.doctor-name {
  font-size: 48px;
  font-weight: 700;
  color: #0f2d3c;
  margin-bottom: 10px;
}

.doctor-exp-badge {
  display: inline-block;
  background: #e8f7f6;
  color: #1bb4a9;
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.doctor-description {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
}

.doctor-highlights p {
  margin-bottom: 6px;
  font-weight: 500;
}

.doctor-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #1bb4a9;
  color: #fff;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}

.doctor-social a:hover {
  background: #0f2d3c;
}

.section-small-title {
  font-size: 28px;
  font-weight: 700;
  color: #0f2d3c;
}

.special-list {
  list-style: none;
  padding: 0;
}

.special-list li {
  margin-bottom: 10px;
  color: var(--text-gray);
}

.facility-box {
  padding: 20px;
}

.facility-box i {
  font-size: 36px;
  color: #1bb4a9;
  margin-bottom: 10px;
  display: block;
}

.facility-box h6 {
  font-weight: 600;
  color: #0f2d3c;
}
  /* About us section END  */



  /* Testimonials section START  */
/* ================= TESTIMONIAL PAGE ================= */
/* ================= TESTIMONIAL PAGE ================= */

.testimonial-page-section {
  padding: 120px 0;
  background: #f6f7f8;
  text-align: center;
}

.testimonial-slider {
  position: relative;
  max-width: 600px;
  margin: auto;
}

.ts-wrapper {
  overflow: hidden;
}

.ts-track {
  display: flex;
  transition: transform 0.5s ease;
}

.ts-card {
  min-width: 100%;
  padding: 40px;
  box-sizing: border-box;
}

.ts-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.ts-card h5 {
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 15px;
}

.ts-card p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
}

.ts-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}

.ts-btn.prev { left: -60px; }
.ts-btn.next { right: -60px; }

@media (max-width: 768px) {
  .ts-btn.prev { left: 10px; }
  .ts-btn.next { right: 10px; }
}

  /* Testimonials section END  */


   /* FAQ SECTION START   */

/* ================= FAQ SECTION ================= */

.faq-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #f6f7f8 0%, var(--white) 100%);
}

.faq-header h2 {
  font-size: 58px;
  color: var(--primary);
  margin-bottom: 20px;
}

.faq-header p {
  max-width: 700px;
  margin: 0 auto 80px;
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.7;
  text-align: justify;
}

/* CONTAINER */
.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* ITEM */
.faq-item {
  background: var(--white);
  border-radius: 18px;
  margin-bottom: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.4s ease;
}

/* QUESTION */
.faq-question {
  padding: 28px 35px;
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TOGGLE BUTTON */
.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 35px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-gray);
  transition: all 0.4s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 35px 30px;
}

.faq-item.active .faq-toggle {
  background: var(--dark);
  transform: rotate(45deg);
}

/* HOVER EFFECT */
.faq-item:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width:768px) {
  .faq-header h2 {
    font-size: 38px;
  }

  .faq-question {
    font-size: 17px;
    padding: 22px;
  }

  .faq-answer {
    padding: 0 22px;
  }
}

    /* FAQ SECTION END  */


    /* Blog Section Start  */
.blog-content-section {
    padding: 60px 0;
    background-color: var(--white);
}

/* LEFT SIDE - Multiple Blog Cards */
.blog-main-card {
    background: var(--white);
    border: 1px solid #e5e5e5;
    padding: 0 0 30px 0;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.blog-main-card:last-child {
    margin-bottom: 0;
}

.blog-featured-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 25px;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-main-card:hover .blog-featured-image img {
    transform: scale(1.05);
}

.blog-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.3;
    padding: 0 25px;
}

.blog-main-description {
    font-family: 'Maven Pro', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 25px;
    padding: 0 25px;
}

/* Button Style */
.blog-button-wrapper {
    padding: 0 25px;
}

.blog-read-more-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Maven Pro', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: var(--dark);
    border: 2px solid var(--primary);
    padding: 12px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: transparent;
}

.blog-read-more-btn .btn-text {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.blog-read-more-btn .btn-arrow {
    margin-left: 10px;
    position: relative;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-read-more-btn .btn-arrow i {
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.blog-read-more-btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

.blog-read-more-btn:hover .btn-text {
    color: var(--white);
}

.blog-read-more-btn:hover .btn-arrow i:first-child {
    transform: translateX(20px);
    opacity: 0;
}

.blog-read-more-btn:hover .btn-arrow i:last-child {
    left: 0 !important;
    opacity: 1 !important;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 40px;
    padding: 0 25px;
}

.pagination {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #e5e5e5;
    color: var(--text-gray);
    text-decoration: none;
    font-family: 'Maven Pro', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.page-item.active .page-link,
.page-item .page-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* RIGHT SIDE - Recent Posts Widget (EXACTLY SAME) */
.recent-posts-widget {
    border: 6px solid #e5e5e5;
    padding: 30px;
    background-color: var(--white);
    border-radius: 12px;
}

.recent-posts-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e5e5;
}

.recent-posts-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.post-thumb {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-post-item:hover .post-thumb img {
    transform: scale(1.1);
}

.post-info {
    flex: 1;
}

.post-date {
    display: block;
    font-family: 'Maven Pro', sans-serif;
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.post-title {
    font-family: 'Maven Pro', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.5;
    display: inline-block;
}

.post-title:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 991px) {
    .blog-main-card {
        margin-bottom: 30px;
    }
    
    .blog-featured-image {
        height: 300px;
    }
    
    .blog-main-title {
        font-size: 28px;
        padding: 0 20px;
    }
    
    .blog-main-description {
        padding: 0 20px;
    }
    
    .blog-button-wrapper {
        padding: 0 20px;
    }
    
    .recent-posts-widget {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .blog-content-section {
        padding: 40px 0;
    }
    
    .blog-featured-image {
        height: 250px;
    }
    
    .blog-main-title {
        font-size: 24px;
        padding: 0 15px;
    }
    
    .blog-main-description {
        padding: 0 15px;
    }
    
    .blog-button-wrapper {
        padding: 0 15px;
    }
    
    .recent-posts-widget {
        padding: 20px;
    }
    
    .post-thumb {
        width: 60px;
        height: 60px;
    }
}
    /* Blog Section end   */

    /* Gallery Section Start   */
.gallery-section {
    padding: 80px 0;
    background-color: var(--white);
}

/* Section Title */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-family: 'Maven Pro', sans-serif;
    font-size: 18px;
    color: var(--text-gray);
    /* max-width: 600px;
    margin: 0 auto 20px; */
    line-height: 1.7;
}

/* Diamond Separator (Exactly as you wanted) */
.title-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.separator-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.separator-diamond {
    color: var(--primary);
    font-size: 20px;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); color: var(--primary-light); }
    100% { opacity: 0.7; transform: scale(1); }
}

/* Gallery Items */
.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(30, 190, 182, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.1);
}




/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.lightbox.show {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border: 3px solid var(--primary);
    box-shadow: 0 0 30px rgba(30, 190, 182, 0.3);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 190, 182, 0.2);
    border-radius: 50%;
    border: 1px solid var(--primary);
}

.close-btn:hover {
    color: var(--primary);
    transform: rotate(90deg);
    background: rgba(30, 190, 182, 0.3);
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    padding: 20px;
    transition: all 0.3s ease;
    background: rgba(30, 190, 182, 0.2);
    border: 1px solid var(--primary);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

.prev:hover, .next:hover {
    background: var(--primary);
    color: var(--dark);
}

/* Responsive */
@media (max-width: 991px) {
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .prev, .next {
        font-size: 30px;
        width: 50px;
        height: 50px;
    }
    
    .close-btn {
        font-size: 40px;
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .separator-line {
        width: 40px;
    }
    
    .separator-diamond {
        font-size: 18px;
    }
    
    .prev {
        left: 10px;
    }
    
    .next {
        right: 10px;
    }
    
    .prev, .next {
        font-size: 25px;
        width: 40px;
        height: 40px;
    }
}



    /* Gallery Section ENd  */




/* ================= PREMIUM MOBILE STICKY BAR ================= */

.mobile-sticky-bar {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: rgba(170, 170, 170, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

/* Hide on desktop */
@media (min-width: 768px) {
  .mobile-sticky-bar {
    display: none;
  }
}

/* CALL BUTTON */
.sticky-call {
  width: 45px;
  height: 45px;
  background: #1e1e1e;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

/* GET QUOTE BUTTON */
.sticky-quote {
  background: linear-gradient(145deg, #2b2b2b, #111);
  color: white;
  padding: 11px 18px;
  border-radius: 35px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  box-shadow:
    0 6px 18px rgba(0,0,0,0.5),
    inset 3px 0 0 #c89b3c;
}

/* WhatsApp */
.sticky-whatsapp {
  font-size: 32px;
  color: #25D366;
  text-decoration: none;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.8));
}

/* PREMIUM CONNECT */
.sticky-premium {
  display: flex;
  align-items: center;
  gap: 8px;
  color: black;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
}

/* Gold Ribbon */
.premium-flag {
  width: 20px;
  height: 35px;
  background: linear-gradient(180deg,#ffd84d,#c89b3c);
  clip-path: polygon(0 0,100% 0,100% 80%,50% 100%,0 80%);
  display: inline-block;
}

.mobile-sticky-bar {
  animation: floatingBar 3s ease-in-out infinite;
}

@keyframes floatingBar {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}


/* ===== FLOATING SIDE BUTTON ===== */
.ds-floating-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 99999;

  animation: floatDrift 4s ease-in-out infinite;
}

/* Soft vertical drift */
@keyframes floatDrift {
  0%,100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(-6px); }
}

.ds-floating-btn a {
  position: relative;
  overflow: hidden;
  display: inline-block;

  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 14px 18px;
  border-radius: 12px 0 0 12px;
  font-weight: 600;
  text-decoration: none;
  writing-mode: vertical-rl;

  box-shadow: -5px 10px 25px rgba(0,0,0,0.2);

  transition: all 0.4s ease;

  animation: pulseGlow 2.5s ease-in-out infinite;
}

/* Glow pulse effect */
@keyframes pulseGlow {
  0% {
    box-shadow: -5px 10px 25px rgba(0,0,0,0.2);
  }
  50% {
    box-shadow: -8px 18px 40px rgba(30,190,182,0.5);
  }
  100% {
    box-shadow: -5px 10px 25px rgba(0,0,0,0.2);
  }
}

/* Shine sweep effect */
.ds-floating-btn a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 30%,
    rgba(255,255,255,0.5) 50%,
    rgba(255,255,255,0) 70%
  );
  animation: shineMove 4s infinite;
}

/* Auto shine every 4s */
@keyframes shineMove {
  0% { left: -120%; }
  60% { left: 120%; }
  100% { left: 120%; }
}

/* Hover smooth lift */
.ds-floating-btn a:hover {
  transform: translateX(-8px);
  box-shadow: -12px 25px 50px rgba(30,190,182,0.6);
}

@media (max-width:768px){
  .site-footer{
    padding-bottom:90px; /* sticky bar height ke according adjust karo */
  }
}