/********************header****************************/
#site-header .sf-menu li a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #0a0a0a;
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.2s ease;
    display: block;
}
/********************header****************************/
#hero.hero-image-banner {
  position: relative;
  width: 100%;

  aspect-ratio: 1024 / 474;
  
  
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #2371af; 
}

/* Background Image Wrap */
#hero .hero-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#hero .hero-img-wrap img {
  width: 100%;


  object-position: right center; 
  display: block;
}

/* Text Overlay */
#hero .hero-caption {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 40px 0;
}

#hero .hero-caption .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#hero .hero-content {
  max-width: 520px;
  color: #ffffff;
}

#hero .hero-content h1 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

#hero .hero-content p {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 28px;
}

/* Button (#7a0655 & White) */
#hero .btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #7a0655;
  color: #ffffff !important;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(122, 6, 85, 0.35);
}

#hero .btn-hero:hover {
  background-color: #5f0442;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(122, 6, 85, 0.5);
}

#hero .btn-hero .arrow-icon {
  stroke: #ffffff;
  transition: transform 0.2s ease;
}

#hero .btn-hero:hover .arrow-icon {
  transform: translateX(4px);
}

/* ====================================================
   RESPONSIVE (MOBILE & TABLET)
   ==================================================== */
@media (max-width: 991px) {
  #hero.hero-image-banner {
    min-height: 480px;
    aspect-ratio: auto; 
  }
  #hero .hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  #hero.hero-image-banner {
    min-height: 440px;
    aspect-ratio: auto;
    padding: 50px 0;
  }

  
  #hero.hero-image-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(35, 113, 175, 0.94) 0%, rgba(35, 113, 175, 0.8) 60%, rgba(35, 113, 175, 0.35) 100%);
    z-index: 2;
    pointer-events: none;
  }

  #hero .hero-content h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  #hero .hero-content p {
    font-size: 15px;
    margin-bottom: 22px;
  }

  #hero .btn-hero {
    padding: 12px 22px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  #hero .hero-content h1 {
    font-size: 25px;
  }
  #hero .btn-hero {
    width: 100%;
    justify-content: center;
  }
}



/*about*/

/* ====================================================
   ABOUT SECTION (Exact Design & Size Matched)
   ==================================================== */
#about {
  padding: 70px 0 65px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

#about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Left Content Wrapper Padding for clean gap before image */
#about .col-lg-7 {
  padding-right: 30px;
}

/* Section Header */
#about .section-header {
  margin-bottom: 24px;
}

#about .title-style-1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #000000;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.3px;
}

#about .title-style-1 .brand-name {
  font-size: 46px;
  font-weight: 900;
  color: #000000;
  display: block;
  margin-top: 4px;
  letter-spacing: -0.5px;
}

/* Paragraph Descriptions */
#about .about-desc {
  font-family: 'Myriad Pro', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.68;
  color: #444444;
  margin-bottom: 16px;
  text-align: justify;
}

#about .about-desc:last-of-type {
  margin-bottom: 20px;
}

#about .about-desc a {
  color: #2371af;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

#about .about-desc a:hover {
  text-decoration: underline;
  color: #175485;
}

/* Bullet Checklist */
#about .check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0 0;
}

#about .check-list li {
  font-family: 'Myriad Pro', Arial, sans-serif;
  font-size: 15px;

  color: #222222;
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  line-height: 1.5;
}

#about .check-list li:last-child {
  margin-bottom: 0;
}

#about .check-list li::before {
  content: "■";
  color: #2371af; 
  font-size: 11px;
  position: absolute;
  left: 2px;
  top: 1px;
}

/* Right Image (Exact 424px Scale & Right Alignment) */
#about .about-img {
  margin: 0;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#about .about-img img {
  width: 100%;
  max-width: 430px; /* Mockup-le exact 424px size */
  height: auto;
  aspect-ratio: 424 / 452;
  object-fit: contain;
  display: inline-block;
}

/* ====================================================
   RESPONSIVE (TABLET & MOBILE)
   ==================================================== */
/* Tablet Screens (<= 991px) */
@media (max-width: 991px) {
  #about {
    padding: 55px 0 50px;
  }
  #about .col-lg-7 {
    padding-right: 15px;
  }
  #about .title-style-1 {
    font-size: 32px;
  }
  #about .title-style-1 .brand-name {
    font-size: 38px;
  }
  #about .about-desc {
    text-align: left; /* Mobile/Tab-il justify gap varathirikan */
  }
  #about .about-img {
    margin-top: 35px;
    justify-content: center;
    text-align: center;
  }
  #about .about-img img {
    max-width: 380px;
  }
}

/* Mobile Screens (<= 767px) */
@media (max-width: 767px) {
  #about {
    padding: 45px 0 40px;
  }
  #about .title-style-1 {
    font-size: 26px;
  }
  #about .title-style-1 .brand-name {
    font-size: 32px;
  }
  #about .about-desc {
    font-size: 14.5px;
    line-height: 1.6;
  }
  #about .check-list li {
    font-size: 14.5px;
    margin-bottom: 8px;
  }
  #about .about-img {
    margin-top: 25px;
  }
  #about .about-img img {
    max-width: 320px;
  }
}


/*serviceoverview*/

#serviceOverview {
 background-image: url('https://www.freshsmile.in/wp-content/themes/freshsmile-theme/assets/images/patterns/background.png');
  padding: 60px 0 70px;
  position: relative;
  border-bottom: 4px solid #6dad29;
}

#serviceOverview .services-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 45px;
  letter-spacing: -0.5px;
}

/* Service Card (Default: White Background) */
.service-card {
  background: #ffffff;
  border-radius: 4px;
  padding: 30px 20px 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 295px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

/* ====================================================
   ICON WITH CIRCLE & BUBBLE BACKGROUND
   ==================================================== */
.service-card .service-icon {
  position: relative;
  width: 68px;
  height: 68px;
  margin: 0 auto 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #edf5fb; /* ഡിസൈനിലുള്ള ലൈറ്റ് ബ്ലൂ ബാക്ക്‌ഗ്രൗണ്ട് */
  border: 1.5px solid #d9e8f5;
  transition: all 0.3s ease;
}

.service-card:hover {
    background-color: #2371af;
}
/* ഡിസൈനിലെ 2 ചെറിയ ബബിളുകൾ (Top-Left & Top-Right) */
.service-card .service-icon::before,
.service-card .service-icon::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: #dbeaf7;
  z-index: 0;
  transition: all 0.3s ease;
}

/* Left Small Bubble */
.service-card .service-icon::before {
  width: 14px;
  height: 14px;
  top: -2px;
  left: -2px;
}

/* Right Slightly Bigger Bubble */
.service-card .service-icon::after {
  width: 18px;
  height: 18px;
  top: -5px;
  right: -3px;
}

/* Icon Image */
.service-card .service-icon img {
  position: relative;
  z-index: 1;
  max-height: 36px;
  max-width: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* ഡിസൈനിലെ പോലെ ഐക്കണിന് #7a0655 പ്ലം കളർ ലഭിക്കാൻ */
  filter: invert(12%) sepia(85%) saturate(4500%) hue-rotate(300deg) brightness(85%);
  transition: all 0.3s ease;
}

/* Card Heading (Arial) */
.service-card h4 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
  line-height: 1.25;
  transition: color 0.3s ease;
}

/* Card Description (Myriad Pro) */
.service-card p {
  font-family: 'Myriad Pro', Myriad, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #555555;
  margin-bottom: 18px;
  flex-grow: 1;
  transition: color 0.3s ease;
}

.service-card:hover h4 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.25;
  transition: color 0.3s ease;
}

/* Card Description (Myriad Pro) */
.service-card:hover p {
  font-family: 'Myriad Pro', Myriad, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #ffffff;
  margin-bottom: 18px;
  flex-grow: 1;
  transition: color 0.3s ease;
}

/* Read More Link (Default) */
.service-card .read-more {
  font-family: Arial, sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: #7a0655;
  text-decoration: none;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ====================================================
   HOVER EFFECT (ഹൂവർ ചെയ്യുമ്പോൾ മാത്രം സംഭവിക്കുന്നത്)
   ==================================================== */
/* Icon Circle Container with Light Blue & Bubbles */
.service-card .service-icon {
  position: relative;
  width: 68px;
  height: 68px;
  margin: 0 auto 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #edf5fb; /* ലൈറ്റ് ബ്ലൂ ബാക്ക്‌ഗ്രൗണ്ട് */
  border: 1.5px solid #d9e8f5;
  transition: all 0.3s ease;
}

/* 2 Decorative Bubble Circles */
.service-card .service-icon::before,
.service-card .service-icon::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: #dbeaf7;
  z-index: 0;
  transition: all 0.3s ease;
}

.service-card .service-icon::before {
  width: 14px;
  height: 14px;
  top: -2px;
  left: -2px;
}

.service-card .service-icon::after {
  width: 18px;
  height: 18px;
  top: -5px;
  right: -3px;
}

/* Icon Image with #7a0655 Color */
.service-card .service-icon img {
  position: relative;
  z-index: 1;
  max-height: 36px;
  max-width: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(11%) sepia(89%) saturate(4854%) hue-rotate(303deg) brightness(78%) contrast(108%);
  transition: all 0.3s ease;
}

/* Hover Changes */
.service-card:hover .service-icon {
  background-color: #ffffff;
  border-color: #ffffff;
}

.service-card:hover .service-icon::before,
.service-card:hover .service-icon::after {
  background-color: rgba(255, 255, 255, 0.4);
}

.service-card:hover .service-icon img {
  filter: brightness(0) saturate(100%) invert(36%) sepia(85%) saturate(1500%) hue-rotate(185deg) brightness(95%) contrast(90%);
}

/* 6. READ MORE ലിങ്ക് പ്ലം കളർ ബട്ടൺ ആയി മാറുന്നു */
.service-card:hover .read-more {
  background-color: #7a0655;
  color: #ffffff !important;
  padding: 7px 20px;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}


/*are you*/
#homeBanner {
  position: relative;
 
  background: url("../images/backgrounds/testimonials-bg.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
}

/* Blue Gradient Overlay Matching the Design */
#homeBanner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('https://www.freshsmile.in/wp-content/themes/freshsmile-theme/assets/images/patterns/strip-image.jpg');
  z-index: 1;
}

#homeBanner .banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

#homeBanner .banner-subtitle {
  display: block;
  font-family: 'Myriad Pro', Arial, sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

#homeBanner .banner-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

/* Button (#7a0655 & White) */
#homeBanner .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #7a0655;
  color: #ffffff !important;
  text-decoration: none;
  font-family: 'Myriad Pro', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(122, 6, 85, 0.4);
}

#homeBanner .btn-cta:hover {
  background-color: #5f0442;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(122, 6, 85, 0.55);
}

#homeBanner .btn-cta .arrow-icon {
  transition: transform 0.2s ease;
}

#homeBanner .btn-cta:hover .arrow-icon {
  transform: translateX(4px);
}


/*================================================*/
  /* RESPONSIVE BREAKPOINTS
   ========================================================================== */


  #homeBanner {
    padding: 45px 15px;
    min-height: 240px;
  }
  #homeBanner .banner-subtitle {
    font-size: 19px;
  }
  #homeBanner .banner-title {
    font-size: 23px;
    margin-bottom: 20px;
  }
  #homeBanner .btn-cta {
    padding: 10px 20px;
    font-size: 14px;
  }



/*testimonial*/

.testimonials-section {
  padding: 85px 0 80px;
  background-color: #ffffff;

  /* Map Background Pattern */
 background-image: url('https://www.freshsmile.in/wp-content/themes/freshsmile-theme/assets/images/patterns/map.webp');
  background-repeat: no-repeat;
  background-position: center 30px;
  background-size: 880px auto;

  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.testimonials-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

/* Heading */
.testimonials-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-section .main-title {
  color: #0f172a;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 1.2;
}

/* Slider Dimensions */
.testimonial-slider-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto 40px;
}

.testimonial-slider {
  width: 100%;
  overflow: hidden;
}

.testimonial-slider .swiper-wrapper {
  display: flex !important;
  align-items: stretch !important;
  box-sizing: border-box;
}

.testimonial-slider .swiper-slide {
  height: auto !important;
  display: flex !important;
  box-sizing: border-box;
  flex-shrink: 0 !important;
}

/* Testimonial Card */
.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 42px 34px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden; /* Clips the top half of the peach circle */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.07);
}

/* Peach Semi-Circle Accent at Top (#ffeedc) — pokes out above the card */
.card-peach-circle {
  position: absolute;
  top: -45px;
  left: 35px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #ffeedc; /* Exact color #ffeedc */
  pointer-events: none;
  z-index: 1;
}

/* Lighter peach outer ring behind the peach circle — two-tone effect matching the avatar */
.card-peach-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background-color: #fff6ec; /* lighter peach outer ring */
  z-index: -1;
}

/* Review Text */
.testimonial-text {
  color: #334155;
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 28px;
  position: relative;
  z-index: 2;
  flex-grow: 1; /* Pushes the profile section to the bottom */
}

/* Client Meta */
.client-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
}

/*
  Grey Silhouette Avatar (#c2c2c2)
  NOTE: Icon is rendered as a CSS background-image (SVG data URI)
  instead of an inline <svg> tag, so it can never be stripped out
  by WordPress content sanitization (wp_kses) when pasted into
  the block/page editor. This guarantees the white person icon
  always shows up inside the grey circle.
*/
.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #c2c2c2; /* Exact color #c2c2c2 */
  /*background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8v2.4h19.2v-2.4c0-3.2-6.4-4.8-9.6-4.8z'/%3E%3C/svg%3E");*/
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative; /* needed so the outer ring can be positioned behind it */
}

/* Outer light-grey ring behind the avatar — same "peeking circle" style as .card-peach-circle */
.client-avatar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: #f1f1f1; /* light grey outer ring */
  z-index: -1;
  pointer-events: none;
}

.client-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.client-name {
  color: #0f172a;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.2;
}

/* Stars */
.rating-stars {
  color: #fda50f;
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 1;
}

/* Write A Review Button */
.review-btn-wrap {
  text-align: center;
}

.btn-review {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #6d074c;
  color: #ffffff;
  padding: 13px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.2s ease;
  box-shadow: 0 4px 14px rgba(109, 7, 76, 0.2);
}

.btn-review:hover {
  background-color: #55043b;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-review .btn-arrow {
  font-size: 17px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.btn-review:hover .btn-arrow {
  transform: translateX(3px);
}

/* ==========================================================================
   BREAKPOINTS
   ========================================================================== */
/* Desktop & Laptop (>= 992px): 2 Cards Side-by-Side */
@media (min-width: 992px) {
  .testimonial-slider-wrapper {
    max-width: 1140px !important;
  }
}

/* Tablet & Mobile (<= 991px): 1 Card centered */
@media (max-width: 991px) {
  .testimonials-section {
    padding: 60px 0 55px;
    background-size: 550px auto;
    background-position: center 25px;
  }
  .testimonials-section .section-title {
    margin-bottom: 35px;
  }
  .testimonials-section .main-title {
    font-size: 28px;
  }
  .testimonial-slider-wrapper {
    max-width: 620px !important;
    margin-bottom: 30px;
  }
  .testimonial-card {
    padding: 34px 24px 24px;
  }
}

/* Mobile Screens (< 576px) */
@media (max-width: 575px) {
  .testimonials-section .main-title {
    font-size: 24px;
  }
  .testimonial-card {
    padding: 28px 20px 20px;
  }
}


/*header*/

/* ====================================================
   BOOK APPOINTMENT BUTTON (#7a0655)
   ==================================================== */
.btn-book-appointment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #7a0655; 
  color: #ffffff !important;
  text-decoration: none;
  font-family: 'Myriad Pro', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 4px;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(122, 6, 85, 0.3);
  cursor: pointer;
  border: none;
}

.btn-book-appointment:hover {
  background-color: #5f0442;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(122, 6, 85, 0.45);
  color: #ffffff !important;
}

/* Mobile Hamburger Button */
#site-header .btn-sandwich {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

/* ====================================================
   PRACTO MODAL POPUP (SCREENSHOT STYLE)
   ==================================================== */
.practo-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.practo-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.practo-modal-container {
  position: relative;
  width: 92%;
  max-width: 680px;
  height: 85vh;
  max-height: 580px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: visible;
}

.practo-modal-overlay.active .practo-modal-container {
  transform: scale(1);
}

/* Round Close Button 'X' on Top-Right Corner */
.practo-close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #dcdfe6;
  color: #606266;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 100;
  transition: all 0.2s ease;
  padding: 0;
}

.practo-close-btn:hover {
  background: #f2f4f8;
  color: #111111;
  transform: scale(1.08);
}

/* Iframe */
.practo-iframe-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.practo-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}



@media (max-width: 767px) {
  .practo-modal-container {
    width: 95%;
    height: 90vh;
    max-height: none;
  }

  .practo-close-btn {
    top: -12px;
    right: -8px;
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
}