/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Colors */
  --primary-gradient: linear-gradient(to right, #28C76F 0%, #0396FF 100%);
  --primary-color: #0396FF;
  --secondary-color: #28C76F;
  --text-dark: #2D3748;
  --text-light: #718096;
  --white: #FFFFFF;
  --bg-light: #F7FAFC;
  --success: #28C76F;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --section-spacing: 120px;
  /* Increased consistent section gap */
  --container-width: 1200px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.section-padding {
  padding: var(--section-spacing) 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

/* Global Mobile Menu Button Styles */
/* Global Mobile Menu Button Styles */
.mobile-menu-btn {
  display: none;
  width: 45px;
  height: 45px;
  position: relative;
  background: linear-gradient(135deg, #0ba360 0%, #3cba92 100%);
  /* Match logo/theme green-blue */
  border-radius: 12px;
  cursor: pointer;
  /* Centering the lines visually if needed, but absolute positioning handles it */
}

/* Gradient text/bg variables might differ, utilizing hardcoded gradient or var if known. Using theme green for now based on header border */
/* Wait, user showed BLUE button. Let's use blue. */
.mobile-menu-btn {
  display: none;
  width: 45px;
  height: 45px;
  position: relative;
  background: var(--primary-gradient);
  /* Theme Gradient */
  border-radius: 10px;
  /* display: flex; Removed to prevent desktop visibility. Moved to media query. */
  justify-content: center;
  align-items: center;
  border: none;
}

.mobile-menu-btn span {
  display: block;
  position: absolute;
  height: 3px;
  left: 15%;
  /* Padding side */
  width: 70%;
  /* Inner width */
  background: #ffffff;
  border-radius: 3px;
  transition: .25s ease-in-out;
}

.mobile-menu-btn span:nth-child(1) {
  top: 12px;
}

.mobile-menu-btn span:nth-child(2) {
  top: 21px;
  /* Mid point */
}

.mobile-menu-btn span:nth-child(3) {
  top: 30px;
}

.mobile-menu-btn.open span:nth-child(1) {
  top: 21px;
  transform: rotate(135deg);
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.mobile-menu-btn.open span:nth-child(3) {
  top: 21px;
  transform: rotate(-135deg);
}

.btn-outline:hover {
  background: var(--bg-light);
}

.btn-white {
  background: var(--white);
  color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-hero-gradient {
  background: linear-gradient(to right, #22c55e, #0ea5e9);
  color: white !important;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  /* Added slight white stroke */
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-hero-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  opacity: 0.9;
}

.btn-hero-outline {
  background: transparent;
  border: 2px solid #0ea5e9;
  color: #0ea5e9 !important;
  border-radius: 50px;
}

.btn-hero-outline:hover {
  background: rgba(14, 165, 233, 0.05);
  transform: translateY(-2px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
}

.section-title p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Header */
header {
  background: transparent;
  /* Changed to transparent so pill floats nicely */
  /* box-shadow: var(--shadow-sm); removed shadow from full width header, pill has it */
  position: fixed;
  /* Fixed allows it to stick AND overlay the hero */
  /* Overlay on top of hero to remove white gap */
  width: 100%;
  top: 0;
  z-index: 1000;
  padding-top: 50px;
  /* Increased to 50px to ensure logo doesn't touch top */
}

.pill-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  border-radius: 50px;
  /* Pill shape */
  padding: 0 4rem;
  /* More horizontal padding */
  height: 70px;
  /* Slightly taller */
  position: relative;
  box-shadow: var(--shadow-md);
  width: 100%;
  /* Match container width */
  margin: 0;
  /* (Centered by parent container) */
  /* Gradient Border effect using pseudo-element or border-image */
  border: 4px solid transparent;
  background-clip: padding-box;
}

/* Gradient Border Hack */
.pill-nav::before {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  z-index: -1;
  border-radius: 54px;
  /* slightly larger than parent */
  background: linear-gradient(to right, #0396FF, #28C76F);
}

.nav-links-left,
.nav-links-right {
  display: flex;
  gap: 3rem;
  /* More space between links */
  align-items: center;
  flex: 1;
  /* Take up available space */
}

.nav-links-left {
  justify-content: center;
  /* Center links in their half */
  margin-right: 90px;
  /* More space for bigger logo */
  padding-left: 2rem;
  /* Balance */
}

.nav-links-right {
  justify-content: center;
  /* Center links in their half */
  margin-left: 90px;
  /* More space for bigger logo */
  padding-right: 2rem;
  /* Balance */
}

.nav-links-left a,
.nav-links-right a {
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  font-size: 1rem;
}

.nav-links-left a.active,
.nav-links-right a.active {
  color: var(--primary-color);
}

.nav-links-left a:hover,
.nav-links-right a:hover {
  color: var(--primary-color);
}

.mobile-nav-links {
  display: none;
}

.logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -40px;
  /* (150 - 70) / 2 = 40. Centers vertically */
  background: var(--white);
  border-radius: 50%;
  padding: 1px;
  /* Standard crisp thin line */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  height: 150px;
  /* Bigger logo */
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.logo-center img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  /* Fill the circle */
  border-radius: 50%;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  transform: scale(1.05);
  /* Slight zoom to hide internal image whitespace */
}

/* Hero Section */
.hero {
  position: relative;
  padding: 160px 0 105px;
  /* Adjusted padding */
  overflow: hidden;
  background: linear-gradient(135deg, #0396FF 0%, #28C76F 100%);
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  color: var(--white);
}

.hero-marquee {
  position: absolute;
  top: 85px;
  /* Reverted to stay near header */
  left: 0;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-marquee span {
  display: inline-block;
  font-size: 10rem;
  /* Massive size */
  font-weight: 900;
  /* Max bold */
  letter-spacing: -2px;
  color: rgba(255, 255, 255, 0.07);
  animation: marquee 40s linear infinite;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.hero-dotted-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.5) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  opacity: 0.95;
}

.hero-paw-decor {
  position: absolute;
  width: 60px;
  height: 60px;
  opacity: 0.1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48.839 48.839' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M39.041,36.843c2.054,3.234,3.022,4.951,3.022,6.742c0,3.537-2.627,5.252-6.166,5.252 c-1.56,0-2.567-0.002-5.112-1.326c0,0-1.649-1.509-5.508-1.354c-3.895-0.154-5.545,1.373-5.545,1.373 c-2.545,1.323-3.516,1.309-5.074,1.309c-3.539,0-6.168-1.713-6.168-5.252c0-1.791,0.971-3.506,3.024-6.742 c0,0,3.881-6.445,7.244-9.477c2.43-2.188,5.973-2.18,5.973-2.18h1.093v-0.001c0,0,3.698-0.009,5.976,2.181 C35.059,30.51,39.041,36.844,39.041,36.843z M16.631,20.878c3.7,0,6.699-4.674,6.699-10.439S20.331,0,16.631,0 S9.932,4.674,9.932,10.439S12.931,20.878,16.631,20.878z M10.211,30.988c2.727-1.259,3.349-5.723,1.388-9.971 s-5.761-6.672-8.488-5.414s-3.348,5.723-1.388,9.971C3.684,29.822,7.484,32.245,10.211,30.988z M32.206,20.878 c3.7,0,6.7-4.674,6.7-10.439S35.906,0,32.206,0s-6.699,4.674-6.699,10.439C25.507,16.204,28.506,20.878,32.206,20.878z M45.727,15.602c-2.728-1.259-6.527,1.165-8.488,5.414s-1.339,8.713,1.389,9.972c2.728,1.258,6.527-1.166,8.488-5.414 S48.455,16.861,45.727,15.602z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}



.paw-2 {
  top: 400px;
  right: 15%;
  transform: rotate(15deg);
}

.paw-3 {
  bottom: 120px;
  left: 8%;
  transform: rotate(-10deg);
}

.paw-4 {
  top: 550px;
  /* Moved below heading */
  left: 30%;
  transform: rotate(20deg);
  opacity: 0.1;
  /* Back to standard opacity */
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
  margin-top: 80px;
  /* Increased spacing below marquee/header */
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--white);
}

.hero-text p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-md);
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-sm);
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-height: 550px;
  border-radius: 20px;
}

.glow-mild {
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

/* Footer */
footer {
  background: var(--text-dark);
  color: var(--white);
  padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-logo img {
  height: 50px;
  margin-bottom: var(--spacing-sm);
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: var(--spacing-sm);
  font-size: 1.2rem;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  color: #fff;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  :root {
    --section-spacing: 60px;
  }

  .container {
    padding: 0 1.5rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  header {
    padding-top: 20px;
  }

  .pill-nav {
    padding: 0 1.5rem;
    height: 60px;
    border-radius: 30px;
  }

  .pill-nav::before {
    border-radius: 34px;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
  }

  /* Hide desktop split lists on mobile */
  .nav-links-left,
  .nav-links-right {
    display: none !important;
  }

  /* Show and style unified mobile list */
  .mobile-nav-links {
    display: none;
    position: absolute;
    top: 58px;
    left: -0.5%;
    width: 101%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    margin: 0;
    z-index: 100;
    padding: 0;
    border-radius: 0 0 25px 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  .pill-nav.active .mobile-nav-links {
    display: flex !important;
  }

  .mobile-nav-links li {
    width: 100%;
    text-align: center;
  }

  .mobile-nav-links li a {
    display: block;
    padding: 35px 0;
    line-height: 0px;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
  }

  .pill-nav.active {
    background: #ffffff !important;
    border-radius: 25px 25px 0 0 !important;
    box-shadow: none !important;
    border-bottom: none !important;
  }

  .logo-center {
    height: 80px;
    width: 80px;
    top: -10px;
    z-index: 105;
    /* Higher than .nav-links (100) */
  }

  .mobile-menu-btn {
    display: flex;
    /* Show as flex on mobile */
    cursor: pointer;
    z-index: 101;
  }

  .hero {
    padding: 150px 0 30px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }

  .hero-marquee span {
    font-size: 5rem;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    margin-top: 60px;
    /* Increased from 40px */
  }

  .hero-text h1 {
    font-size: 1.6rem;
    /* Further reduced from 1.8rem for better fit */
    margin-bottom: 0.8rem;
    line-height: 1.25;
  }

  .hero-text p {
    font-size: 0.9rem;
    /* Further reduced for compactness */
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 0;
    padding: 0.7rem 1.5rem;
    /* Slightly smaller button padding */
  }

  .hero-image img {
    max-height: 250px;
    /* Slightly smaller for mobile flow */
    margin-top: 0;
    /* Gap minimized as requested */
  }

  .about-container {
    flex-direction: column;
    gap: 3rem;
    text-align: left;
    /* Changed from center */
  }

  .about-heading {
    font-size: 2.4rem;
    text-align: left;
    line-height: 1.2;
    margin: 1.5rem 0 1rem;
    /* 1.5rem top gap as requested */
    width: 100%;
    display: block;
    font-weight: 800;
  }

  .about-heading span {
    display: block;
    /* Force new line */
    color: var(--secondary-color);
  }

  /* Reduce About Section Visuals for Mobile */
  .about-image-wrapper {
    transform: scale(0.95);
    /* Reduced from 1.1 to fit better */
    margin: 2rem auto 0;
    /* Bottom margin removed to let heading control gap */
  }

  .glass-card {
    padding: 0.4rem 0.6rem !important;
    /* Even smaller */
    gap: 0.4rem !important;
    border-radius: 10px !important;
  }

  .card-icon {
    font-size: 0.9rem !important;
    /* Down from 1.1rem */
  }

  .card-text strong {
    font-size: 0.65rem !important;
    /* Down from 0.75rem */
    line-height: 1.1;
  }

  .card-text span {
    font-size: 0.55rem !important;
    /* Down from 0.65rem */
  }

  .abstract-shape {
    width: 35px !important;
    /* Reduced from 50px */
    height: 35px !important;
  }

  .shape-1 {
    top: -10px !important;
    right: 5% !important;
  }

  .shape-3 {
    left: -20px !important;
  }

  .about-content .btn {
    display: block !important;
    width: fit-content !important;
    /* Force fit-content even on small mobile */
    margin: 2rem auto 0 !important;
    text-align: center;
  }

  .service-preview-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Inner Pages Fixes */
  .page-header {
    padding-top: 200px !important;
    padding-bottom: 60px !important;
    margin-top: -100px !important;
  }

  .page-header h1 {
    font-size: 2.5rem !important;
  }

  .about-intro-grid,
  .vision-mission-grid,
  .features-grid,
  .services-grid,
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .doctor-profile {
    flex-direction: column !important;
    padding: 2rem !important;
    text-align: center;
    gap: 2rem !important;
  }

  .doctor-img img {
    width: 250px !important;
    height: 250px !important;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 1.4rem !important;
  }

  .hero-text p {
    font-size: 0.85rem !important;
  }

  .btn {
    width: 100% !important;
    margin-bottom: 0.5rem;
  }
}

/* About Us Section Styles */

/* About Us Section Styles */
.about-section {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: var(--section-spacing) 0;
}


.about-container {
  position: relative;
  z-index: 1;
  /* Content above overlay */
  display: flex;
  align-items: center;
  gap: 5rem;
}

.about-visual {
  flex: 1;
  position: relative;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  transform: scale(1.1);
  /* Slightly bigger as requested */
}

.about-bg-shape {
  position: absolute;
  top: 5%;
  left: -5%;
  width: 105%;
  height: 95%;
  /* Removed blue background as requested */
  background: transparent;
  z-index: 1;
}

.about-img {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 30px;
  display: block;
}

.circle-img {
  width: 100%;
  height: auto;
  border-radius: 0 !important;
}

/* Abstract Animated Shapes */
.abstract-shape {
  position: absolute;
  z-index: 1;
  width: 50px;
  /* Explicit size for container */
  height: 50px;
  opacity: 0.8;
  /* cleaner, less ghost-like */
  pointer-events: none;
  /* Removed blur for sharpness */
  color: var(--primary-color);
}

.abstract-shape svg {
  width: 100%;
  height: 100%;
  display: block;
}

.shape-1 {
  top: -20px;
  right: 10%;
  animation: floatRandom 6s ease-in-out infinite;
}

.shape-2 {
  bottom: 20%;
  right: -30px;
  animation: floatRandom 8s ease-in-out infinite reverse;
}

.shape-3 {
  top: 40%;
  left: -40px;
  animation: floatRandom 7s ease-in-out infinite 1s;
}

@keyframes floatRandom {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(15px, -20px) rotate(10deg);
  }

  66% {
    transform: translate(-10px, 10px) rotate(-10deg);
  }
}

.glass-card {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.25);
  /* More transparent */
  backdrop-filter: blur(16px);
  /* Stronger blur */
  -webkit-backdrop-filter: blur(16px);
  padding: 0.8rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.card-top {
  top: 15%;
  right: -10%;
}

.card-bottom {
  bottom: 10%;
  left: -10%;
  animation-delay: 1s;
}

.card-icon {
  font-size: 1.5rem;
}

.card-text {
  display: flex;
  flex-direction: column;
}

.card-text strong {
  font-size: 0.9rem;
  color: #1e1b4b;
}

.card-text span {
  font-size: 0.8rem;
  color: var(--primary-color);
}

.about-content {
  flex: 1;
}

.about-heading {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1e1b4b;
  font-weight: 800;
}

.about-heading span {
  color: var(--secondary-color);
  /* Theme green */
}

.about-description {
  color: #52525b;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: #3f3f46;
  font-weight: 500;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.btn-purple-gradient {
  background: linear-gradient(135deg, #28C76F 0%, #0396FF 100%);
  color: white !important;
  border: none;
  border-radius: 50px;
  padding: 1.1rem 2.8rem;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(40, 199, 111, 0.3);
  transition: all 0.3s ease;
}

.btn-purple-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(3, 150, 255, 0.4);
  opacity: 0.95;
}

@media (max-width: 1200px) {
  .about-heading {
    font-size: 3rem;
  }

  .about-container {
    gap: 3rem;
  }
}

/* Service Section Preview */
.service-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.services-section {
  position: relative;
  overflow: hidden;
  /* Premium Soft Bokeh Effect */
  background:
    radial-gradient(circle at 15% 15%, rgba(40, 199, 111, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(3, 150, 255, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(40, 199, 111, 0.05) 0%, transparent 35%),
    radial-gradient(circle at 15% 85%, rgba(3, 150, 255, 0.05) 0%, transparent 35%),
    linear-gradient(to bottom, #ffffff, #f7fafc);
  background-color: var(--bg-light);
}

.service-card {
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  border: none;
  background: transparent;
  overflow: hidden;
  /* CRITICAL: Clips the giant spinning layers */
}

/* 1. The Giant Spinning Gradient Layer (The "Ink") */
.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: -2;
  background: conic-gradient(from 0deg,
      transparent 0deg,
      var(--secondary-color) 45deg,
      var(--primary-color) 180deg,
      transparent 360deg);
  /* Smoother gradient tail */
  background: conic-gradient(var(--secondary-color), var(--primary-color), var(--secondary-color));
  /* Full stroke */
}

/* 2. The Static White Background Layer (The "Mask") */
.service-card::after {
  content: '';
  position: absolute;
  inset: 2px;
  /* Default Border Thickness: 2px */
  border-radius: 18px;
  background: white;
  z-index: -1;
  transition: inset 0.3s ease;
  /* Smooth thickness change */
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Thicken border to 3px on hover */
.service-card:hover::after {
  inset: 3px;
}

/* Spin the giant gradient on hover */
.service-card:hover::before {
  animation: spinBorder 0.5s linear infinite;
}

@keyframes spinBorder {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.service-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 1.5rem;
  object-fit: contain;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-size: 1.25rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: justify;
}

@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: left;
    /* Changed from center */
    gap: 1.5rem;
  }

  .about-visual {
    width: 80%;
    margin: 0 auto;
  }

  .about-heading {
    font-size: 2.4rem;
  }

  .about-list li {
    justify-content: flex-start;
    /* Changed from center */
  }

  .service-subtitle span {
    display: block;
    /* Force 2 lines on mobile */
  }

  .service-card p {
    text-align: left !important;
  }

  .video-section .section-title h2 {
    line-height: 2.5rem;
  }
}

/* Video Section Styles */
.video-section {
  position: relative;
  overflow: hidden;
  background: var(--primary-gradient);
  color: var(--white);
}

/* New Pets Overlay Image Layer */
.video-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/pets-bg-overlay.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  /* Subtly visible */
  mix-blend-mode: luminosity;
  /* Blends nicely with the gradient */
  pointer-events: none;
  z-index: 1;
}

.video-section .container {
  position: relative;
  z-index: 2;
  /* Bring content above the image layer */
}

.video-section .section-title h2 {
  color: var(--white);
}

.video-section .section-title p {
  color: rgba(255, 255, 255, 0.9);
}

/* Added decorative dots to match hero */
.video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.4;
}

.video-container-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px;
  background: white;
  border-radius: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  /* Premium border like service cards */
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.video-container-inner {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 30px;
}

.video-container-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .video-container-wrapper {
    border-radius: 25px;
  }

  .video-container-inner {
    border-radius: 20px;
  }
}

/* Testimonials Section */
.testimonials-section {
  position: relative;
  overflow: hidden;
  /* Premium Soft Bokeh Effect (Match Services) */
  background:
    radial-gradient(circle at 15% 15%, rgba(40, 199, 111, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(3, 150, 255, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(40, 199, 111, 0.05) 0%, transparent 35%),
    radial-gradient(circle at 15% 85%, rgba(3, 150, 255, 0.05) 0%, transparent 35%),
    linear-gradient(to bottom, #ffffff, #f7fafc);
  background-color: var(--bg-light);
}

.testimonials-slider {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 50px;
}

.testimonials-viewport {
  overflow: hidden;
}

.testimonials-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  flex: 0 0 50%;
  /* Show two on desktop */
  padding: 15px;
}

@media (max-width: 992px) {
  .testimonial-slide {
    flex: 0 0 100%;
    /* Show one on mobile/tablet */
  }

  .testimonials-section .section-title h2 span,
  .testimonial-subtitle-break,
  .mobile-heading-break {
    display: block;
  }

  /* Testimonial Slider Mobile Layout */
  .testimonials-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* Anchor for arrows */
    padding: 0;
  }

  .testimonials-viewport {
    order: 1;
    width: 100%;
    margin-bottom: 2rem;
  }

  .slider-controls {
    order: unset;
    position: absolute !important;
    top: 40%;
    /* Adjusted slightly up to center on card */
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* Left and Right edges */
    padding: 0 10px;
    margin: 0;
    z-index: 10;
    pointer-events: none;
    /* Let clicks pass through gap */
  }

  .slider-arrow {
    pointer-events: auto;
    /* Re-enable clicks */
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    width: 40px;
    height: 40px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
  }

  .slider-dots {
    order: 2;
    /* Pagination above arrows */
    position: static !important;
    transform: none !important;
    margin-top: 0;
    padding-bottom: 0;
    margin-bottom: 3rem;
  }

  .testimonials-section {
    padding-bottom: 6rem;
    /* Reasonable space */
  }

  /* Hide CTA on mobile */
  .footer-cta {
    display: none;
  }

  .testimonial-wave svg {
    height: 100% !important;
    /* Force fit to bottom */
  }

  .site-footer {
    margin-top: -5px !important;
    /* Ensure overlap */
  }
}

.testimonial-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-quote {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.8;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 5rem;
  color: var(--primary-color);
  opacity: 0.1;
  position: absolute;
  top: -30px;
  left: -20px;
  font-family: serif;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f0f7ff;
}

.client-info h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.client-info p {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 500;
}

.stars {
  color: #fbbf24;
  /* Gold/Amber color */
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}

/* Slider Navigation */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: none;
}

.slider-arrow:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
  left: 0;
}

.next-arrow {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

@media (max-width: 900px) {
  .testimonials-slider {
    padding: 0;
  }
}

/* Testimonial Wave at Bottom */
.testimonials {
  position: relative;
  background: #f7fafc;
  padding-top: 5rem;
  padding-bottom: 400px;
  /* Large explicit pixel value */
  z-index: 1;
}

.testimonial-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  overflow: hidden;
  z-index: 20;
}

.testimonial-wave svg {
  width: 100%;
  height: 140%;
  display: block;
}

.testimonial-wave .shape-fill {
  fill: url(#footerWaveGradient);
}

/* New Site Footer Styles */
/* New Site Footer Styles */
.site-footer {
  position: relative;
  background: var(--primary-gradient);
  color: var(--white);
  padding-top: 8rem;
  /* Increased to clear the wave/logo */
  /* overflow: hidden; Removed to show full logo */
  margin-top: -2px;
  /* Slight overlap to prevent gap */
  z-index: 10;
}

.logo-col {
  display: flex;
  flex-direction: column;
  /* Stack logo and icons vertically */
  align-items: center;
  justify-content: center;
  margin-top: -110px;
  /* Move logo up significantly */
}

.footer-silhouette-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 20px;
  /* Add gap between logo and icons */
}

.footer-silhouette-img {
  width: 220px;
  height: auto;
  opacity: 1;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: -10px;
  /* Pull icons up closer to logo */
}

.social-icon {
  color: var(--white);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.social-icon:hover {
  transform: translateY(-3px);
  color: var(--secondary-color);
  /* Hover effect color */
}

.footer-title-accent {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 25px !important;
}

.footer-title-accent::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 40px;
  height: 4px;
  background: #00bcd4;
  /* Accent color from reference */
  border-radius: 2px;
}

.footer-menu li a {
  opacity: 1;
  font-weight: 500;
}

.contact-info p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-info strong {
  color: #fff;
  font-size: 1rem;
  display: block;
  margin-bottom: 5px;
}

.footer-cta {
  text-align: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.footer-cta h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}

.cta-pill-white {
  display: inline-block;
  background: var(--white);
  color: var(--primary-color);
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-pill-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.footer-logo-img {
  height: 70px;
  margin-bottom: 1.5rem;
  background: white;
  border-radius: 50%;
  padding: 8px;
}

.footer-tagline {
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--white);
  opacity: 0.3;
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 1.2rem;
}

.footer-menu a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.75;
  transition: all 0.3s ease;
}

.footer-menu a:hover {
  opacity: 1;
  padding-left: 10px;
}

.contact-info p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  display: flex;
  flex-direction: column;
}

.contact-info strong {
  color: var(--white);
  font-weight: 600;
}

.footer-bottom-bar {
  padding: 1rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.6;
}

.footer-social {
  margin-top: 2rem;
}

.social-icon-decor {
  width: 60px;
  height: 60px;
  opacity: 0.3;
  transition: all 0.4s ease;
  filter: brightness(0) invert(1);
}

.social-icon-decor:hover {
  opacity: 0.8;
  transform: scale(1.1) rotate(5deg);
}

/* Responsive Footer & Utilities */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-logo-img {
    margin: 0 auto 1.5rem;
  }

  .testimonial-wave svg {
    height: 60px;
    width: 100%;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}

/* Modern Service Card Design */
.service-card-modern {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: var(--primary-color);
}

.service-header-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-header-modern img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.service-header-modern h3 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--secondary-color);
  font-weight: 600;
}

.service-card-modern p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
  text-align: left;
}

/* Services Page Styles (Inner) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.inner-service-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s ease;
  border-top: 4px solid var(--secondary-color);
}

.inner-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-list ul {
  text-align: left;
  margin-top: 1rem;
  padding-left: 1.5rem;
  list-style-type: disc;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
}

.contact-info-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
}

.info-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.timings-table {
  width: 100%;
  margin-top: 1rem;
  border-collapse: collapse;
}

.timings-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
}


/* About Us Spacing Control */
.doctor-section {
  padding: 4rem 0;
}

.footer-spacer {
  padding-bottom: 80px;
  background: #fff;
}

@media (max-width: 992px) {

  /* About Us Mobile Spacing */
  .doctor-section {
    padding: 2rem 0 !important;
  }

  .footer-spacer {
    display: none;
  }
}