<style>
html {
  font-size: 16px;
}

body {
  font-size: 17px;   /* THIS restores original visual scale */
}
html, body {
    overflow-x: hidden;
  }

    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
      scroll-behavior: smooth;
    }
.tight-spacing {
  word-spacing: -2px; /* Adjust the negative value as needed */
}
.about-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 20px;
}
.about {
    background-color: #55CBCD; /* soft pink example */
    padding: 80px 10%;          /* keep padding */
}
.profile-img {
    width: 350px;      /* Increase size */
    height: auto;      /* Keeps correct proportions */
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.content-text {
  color: #101D6B;
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
}

.about p {
    flex: 1;
    text-align: justify;
    line-height: 1.8;
    font-size: 17px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;   /* keeps full logo */
  background: transparent; /* ❌ remove white box */
  padding: 0;            /* ❌ remove border space */
}
.logo span {
    font-size: 26px;
    font-weight: 700;
    color: #1A73E8;
}
.appointment-btn {
    background-color: #FF0000; /* bright red */
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s;
}

/* Hover effect */
.appointment-btn:hover {
    background-color: #e60000; /* slightly darker red */
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.testimonials {
  padding: 80px 10%;
  background: #f0f7ff;
  text-align: center;
}

.testimonial-container {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.testimonial-card {
  width: 300px;
  background: white;
  padding: 25px;
  border-radius: 15px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
  border-left: 6px solid #42a5f5;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

/* Stars */
.stars {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 10px;
  text-shadow: 0 0 5px rgba(255,215,0,0.6);
}

/* Google link text */
.review-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9em;
  color: #1a73e8;
  font-weight: 600;
}
.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-slider {
  width: 100%;
  height: 100vh;        /* takes full screen height */
  margin: 0;
  overflow: hidden;
  position: relative;
}

/* Each slide fills the space */
.slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.slide.active {
  display: block;
}

/* Image fills slide completely */
.hero-slider img {
  width: 100%;
  height: 80%;
  object-fit: cover;   /* IMPORTANT */
}
/* Overlay text */
.slide-text {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  max-width: 750px;
  padding: 10px 20px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
/* Text spacing */
.slide-text h2 {
  margin-bottom: 8px;
  font-size: 2.3em;
}

.slide-text p {
  margin-bottom: 12px;
  font-size: 1.1em;
}

/* Button directly below text */
.slide-text button {
  display: inline-block;
  padding: 10px 26px;
  border: none;
  border-radius: 24px;
  background: #1976d2;
  color: white;
  font-weight: 600;
  cursor: pointer;
}
/* Animation */
@keyframes fadeSlide {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Mobile */
@media (max-width: 768px) {
  .slide-text h2 {
    font-size: 1.6em;
  }
}
.bubble-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.bubble-bg span {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: bubbleFloat 12s linear infinite;
  bottom: -150px;
}

@keyframes bubbleFloat {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-800px) scale(1.4);
    opacity: 0;
  }
}

.bubble-bg span:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 9s; }
.bubble-bg span:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 11s; }
.bubble-bg span:nth-child(3) { left: 45%; animation-delay: 4s; animation-duration: 10s; }
.bubble-bg span:nth-child(4) { left: 65%; animation-delay: 6s; animation-duration: 12s; }
.bubble-bg span:nth-child(5) { left: 85%; animation-delay: 8s; animation-duration: 9s; }

/* ===== Glow Effect for Hero Text and Button ===== */
.hero h2 {
  text-shadow: 0 0 15px rgba(255,255,255,0.7), 0 0 25px #81d4fa;
  animation: glowText 3s ease-in-out infinite alternate;
}

@keyframes glowText {
  from { text-shadow: 0 0 10px #90caf9, 0 0 20px #90caf9; }
  to { text-shadow: 0 0 25px #f48fb1, 0 0 35px #f48fb1; }
}

.hero button {
  animation: float 3s ease-in-out infinite, glowBtn 2s ease-in-out infinite alternate;
  box-shadow: 0 0 15px #ffffff;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes glowBtn {
  0% { box-shadow: 0 0 15px #f48fb1, 0 0 20px #f48fb1; }
  100% { box-shadow: 0 0 25px #90caf9, 0 0 35px #90caf9; }
}
.profile-img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  border: 5px solid #90caf9;
  animation: popIn 1.5s ease;
}

   body {
  background-color: #82CAFF; /* soft blue background */
}
.overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.popup {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  max-width: 450px;
  text-align: center;
  animation: popIn 0.6s ease;
}

.close-btn {
  margin-top: 20px;
  padding: 10px 25px;
  background: linear-gradient(to right, #42a5f5, #7e57c2);
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.close-btn:hover {
  transform: scale(1.05);
}
.simple-layout {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.simple-layout img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #90caf9;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.simple-layout img:hover {
  transform: scale(1.08);
}
/* ===== Header ===== */
.clinic-header {
  transition: transform 0.4s ease;
}

/* Hidden state */
.clinic-header.hide {
  transform: translateY(-100%);
}
    .clinic-header {
  background: linear-gradient(to right, #42a5f5, #7e57c2);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  animation: fadeInDown 1s ease-in-out;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 40px; /* Adjusts space between title and icons */
}

.clinic-header h1 {
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(255,255,255,0.6);
  animation: glow 3s ease-in-out infinite alternate;
}

/* Gentle glowing animation for title */
@keyframes glow {
  from { text-shadow: 0 0 10px #fff, 0 0 15px #81d4fa; }
  to { text-shadow: 0 0 20px #f48fb1, 0 0 25px #81d4fa; }
}


    nav a {
      text-decoration: none;
      color: white;
      margin: 0 15px;
      font-weight: 500;
      transition: 0.3s;
    }

    nav a:hover {
      color: #ffeb3b;
    }

    /* ===== Hero Section ===== */
.healthy-section {
  background: #ffffff;
  padding: 80px 20px;
}

/* Ensure slider area has NO background */
.hero,
.hero-slider {
  background: transparent;
}
 
       .hero::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      width: 120%;
      height: 200px;
      background: url('https://svgshare.com/i/uzY.svg') no-repeat center;
      background-size: cover;
      transform: rotate(180deg);
    }

    .hero h2 {
      font-size: 2.8em;
      margin-bottom: 15px;
      animation: popIn 1s ease-out;
    }

    .hero p {
      font-size: 1.2em;
      max-width: 700px;
      margin: auto;
      animation: fadeInUp 1.5s ease;
    }

    .hero button {
      margin-top: 25px;
      background: white;
      color: #7e57c2;
      border: none;
      padding: 12px 35px;
      border-radius: 30px;
      cursor: pointer;
      font-weight: 600;
      font-size: 1em;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      transition: 0.4s;
    }

    .hero button:hover {
      background: #7e57c2;
      color: white;
    }.book-btn {
  background: linear-gradient(to right, #42a5f5, #7e57c2);
  color: white;
  padding: 14px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  animation: fadeInPop 1.5s ease-out forwards;
}

.book-btn:hover {
  transform: scale(1.1);
  background: linear-gradient(to right, #7e57c2, #42a5f5);
}
.about-images {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.about-images img {
  width: 220px;
  height: 220px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  border: 4px solid #90caf9;
  transition: transform 0.3s ease;
}

.about-images img:hover {
  transform: scale(1.05);
}

    /* ===== Sections ===== */
    section {
      padding: 80px 10%;
      text-align: center;
      animation: fadeIn 2s ease;
    }

    h2.section-title {
      font-size: 2.4em;
      color: #42a5f5;
      margin-bottom: 20px;
      position: relative;
    }
 h3.section-title {
      font-size: 2.4em;
      color: #FF1694;
      margin-bottom: 20px;
      position: relative;
    }
 h3.section-title::after {
      content: "";
      display: block;
      width: 70px;
      height: 4px;
      background: #f48fb1;
      margin: 10px auto;
      border-radius: 2px;
    }



    h2.section-title::after {
      content: "";
      display: block;
      width: 70px;
      height: 4px;
      background: #f48fb1;
      margin: 10px auto;
      border-radius: 2px;
    }

    /* ===== About Section ===== */
    .about p {
      max-width: 800px;
      margin: auto;
      line-height: 1.8;
      font-size: 1.1em;
      color: #0000A0;
      animation: fadeInUp 2s ease;
    }

    /* ===== Services ===== */
    .services {
      background: #FF1694;
    }

    .service-boxes {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .service {
      background: white;
      width: 270px;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      padding: 25px;
      transition: 0.4s;
      animation: popIn 1s ease;
    }

    .service:hover {
      transform: scale(1.07);
      background: #e1f5fe;
    }

    .service img {
      width: 80px;
      margin-bottom: 10px;
      animation: bounce 2s infinite;
    }

    .service h3 {
      color: #7e57c2;
      margin-bottom: 10px;
    }

.services h2.section-title {
  animation: none !important;
  transform: none !important;
  text-shadow: none !important;
  filter: none !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
    /* ===== Appointment Section ===== */
    .appointment {
      background: #fff3e0;
    }

    form {
      max-width: 600px;
      margin: auto;
      background: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      animation: fadeInUp 2s ease;
    }

    input, textarea {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 1em;
    }

    button.submit {
      background: linear-gradient(to right, #42a5f5, #7e57c2);
      color: white;
      border: none;
      padding: 12px 30px;
      border-radius: 25px;
      cursor: pointer;
      transition: 0.3s;
      font-weight: 600;
    }

    button.submit:hover {
      transform: scale(1.05);
    }

    /* ===== Footer ===== */
    footer {
  background: linear-gradient(to right, #1e88e5, #6a1b9a);
  color: white;
  padding: 60px 10% 30px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-title {
  color: #FFD700;
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-box h4 {
  font-size: 1.1em;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding-bottom: 5px;
}

.footer-logo {
  width: 110px;
  margin-bottom: 15px;
}

.footer-doctor {
  font-size: 0.95em;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 0.95em;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #FFD700;
}

.google-review-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: #ff0000;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.google-review-btn:hover {
  background: #cc0000;
  transform: scale(1.05);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.3);
  font-size: 0.9em;
  color: #e0e0e0;
}
 body {
    font-family: Arial, sans-serif;
    background: #eef6ff;
    margin: 0;
    padding: 0;
  }

  .navbar {
    background: #004aad;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    color: white;
  }

  .navbar a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    font-size: 18px;
  }

  .container {
    width: 80%;
    margin: auto;
    padding: 30px 0;
  }

  h1 {
    text-align: center;
    color: #004aad;
  }
/* ===== Global Styles ===== */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #eef6ff;
  color: #333;
  line-height: 1.6;
}

/* ===== Blog Container ===== */
.blog-container {
  max-width: 900px;
  margin: 40px auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ===== Back Link ===== */
.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #004aad;
  text-decoration: none;
  font-weight: bold;
}

.back-link:hover {
  text-decoration: underline;
}

/* ===== Blog Title ===== */
h1 {
  color: #004aad;
  margin-bottom: 15px;
}

/* ===== Blog Content ===== */
p {
  font-size: 16px;
  margin-bottom: 15px;
}

/* ===== Blog Links (blogs.html) ===== */
.blog-container a {
  color: #004aad;
  text-decoration: none;
  font-weight: 500;
}

.blog-container a:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .blog-container {
    margin: 20px;
    padding: 20px;
  }

  h1 {
    font-size: 24px;
  }
}
  .blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
  }

  .blog-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  }

  .blog-card h2 {
    color: #004aad;
  }

  .blog-card p {
    color: #444;
    line-height: 1.6;
  }

  .read-more {
    display: inline-block;
    margin-top: 10px;
    background: #004aad;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
  }

  .read-more:hover {
    background: #0077ff;
  }

  .full-text {
    display: none;
  }

    /* ===== Floating Buttons ===== */
    .float-btn {
      position: fixed;
      bottom: 25px;
      right: 25px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 15px;
      opacity: 0;
      animation: fadeInPop 1.5s ease-out forwards;
      animation-delay: 1.5s;
    }

    .float-btn img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      transition: transform 0.3s;
    }

    .float-btn img:hover {
      transform: scale(1.1);
    }
.social-icons {
  display: flex;
  gap: 15px;
}

/* Base Icon Style */
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 20px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Facebook Blue */
.social-icons a.facebook {
  background-color: #1877F2;
}

/* Instagram Gradient */
.social-icons a.instagram {
  background: radial-gradient(circle at 30% 107%, 
    #fdf497 0%, #fdf497 5%, 
    #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* WhatsApp Green */
.social-icons a.whatsapp {
  background-color: #25D366;
}

.social-icons a.youtube {
    background-color: #FF0000; /* YouTube red */
}
.social-icons a.youtube:hover {
    transform: scale(1.15);
    box-shadow: 0 0 12px rgba(0,0,0,0.3);
}
/* Hover effect with glow */
.social-icons a:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(255,255,255,0.8);
}
/* Gentle floating animation */
@keyframes bubbleGlow {
  0% { transform: translateY(0); box-shadow: 0 0 10px rgba(255,255,255,0.3); }
  50% { transform: translateY(-4px); box-shadow: 0 0 20px rgba(255,255,255,0.6); }
  100% { transform: translateY(0); box-shadow: 0 0 10px rgba(255,255,255,0.3); }
}

    /* ===== Animations ===== */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes popIn {
      0% { transform: scale(0.7); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    @keyframes fadeInPop {
      0% { opacity: 0; transform: scale(0.6) translateY(20px); }
      60% { opacity: 1; transform: scale(1.1) translateY(0); }
      100% { opacity: 1; transform: scale(1); }
    }
/* =========================
   MOBILE OPTIMIZATION (Minimal Changes)
========================= */
@media (max-width: 768px) {

  /* ----- Header ----- */
  .clinic-header {
    padding: 12px 20px;
    flex-direction: column;
    align-items: center;
  }

  .header-left {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  nav {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  nav a {
    margin: 5px;
    font-size: 15px;
  }

  /* ----- Hero Section ----- */
  .hero-slider {
    height: 75vh;
  }

  .hero-slider img {
    height: 100%;
  }

  .slide-text {
    bottom: 15%;
    padding: 10px;
  }

  .slide-text h2 {
    font-size: 1.6em;
  }

  .slide-text p {
    font-size: 1em;
  }

  .slide-text button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  /* ----- Healthy Section ----- */
  .healthy-section {
    padding: 50px 15px;
  }

  .content-text {
    font-size: 16px;
    line-height: 1.7;
  }

  /* ----- About Section ----- */
  .about {
    padding: 60px 20px;
  }

  .about-content {
    flex-direction: column;
    gap: 25px;
  }

  .about-images {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-images img {
    width: 140px;
    height: 140px;
  }

  .about p {
    font-size: 16px;
  }

  /* ----- Services ----- */
  .service-boxes {
    gap: 20px;
  }

  .service {
    width: 90%;
    max-width: 320px;
  }

  /* ----- Popup ----- */
  .popup {
    width: 90%;
    max-width: 360px;
    padding: 25px;
  }

  /* ----- Appointment Form ----- */
  form {
    padding: 20px;
  }

  /* ----- Testimonials ----- */
  .testimonial-container {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    width: 90%;
  }

  /* ----- Footer ----- */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }

  /* ----- Floating Button ----- */
  .float-btn {
    right: 15px;
    bottom: 15px;
  }

  .book-btn {
    padding: 12px 18px;
    font-size: 14px;
  }
* {
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img, video, iframe {
  max-width: 100%;
}
@media (max-width: 768px) {
  body {
    position: relative;
    overflow-x: hidden;
  }

  section, div {
    max-width: 100%;
    overflow-x: hidden;
  }
.slider, .carousel {
  overflow-x: hidden;
}
}
}

 </style>
