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

  body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;
    position: relative;
    z-index: 0;
    background: linear-gradient(120deg, #f8fafc 0%, #e3f0ff 100%);
  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
  }

  /* Enhanced smooth scroll for all browsers */
  * {
    scroll-behavior: smooth;
  }

  /* Smooth scroll for specific elements */
  body {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }

  /* Enhanced scroll behavior for sections */
  section {
    scroll-margin-top: 100px;
    scroll-behavior: smooth;
  }

  /* Smooth scroll for navigation */
  nav a {
    scroll-behavior: smooth;
  }

  /* Smooth scroll for buttons */
  .btn, .cta-button {
    scroll-behavior: smooth;
  }

  /* Hide mobile nav by default */
  .mobile-nav {
    display: none;
  }

  /* ---------------------- HEADER STYLES ---------------------- */
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    padding: 0 5rem;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow: visible;
  }

  .logo {
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
    width: 300px;
    overflow: visible;
  }

  .logo img {
    margin-top: 20px;
    margin-bottom: -20px;
    object-position: left;
    height: 250px;
    width: auto;
    object-fit: contain;
    cursor: pointer;
    max-height: none;
  }

  nav ul {
    list-style: none;
    display: flex;
    gap: 3.5rem;
    align-items: center;
    margin-left: auto;
    height: 100%;
  }

  nav a {
    text-decoration: none;
    color: #222;
    font-size: 1.3rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 1rem 0;
    position: relative;
    transition: color 0.3s ease;
  }

  nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 0%;
    height: 2px;
    background: green;
    transition: width 0.3s ease;
  }

  nav a:hover {
    color: green;
  }

  nav a:hover::after {
    width: 100%;
  }



  /* Active state for current section */
  nav li a.active {
    color: #059669;
  }

  nav li a.active::after {
    width: 100%;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 10001;
  }

  .hamburger span {
    height: 3px;
    width: 25px;
    background: #333;
    border-radius: 2px;
    transition: 0.3s ease;
  }


  /* ---------------------- HOME STYLES ---------------------- */

  .home {
    position: relative;
    height: calc(100vh - 100px);
    margin-top: 100px; /* Push the slider below the fixed header */
    overflow: hidden;
  }

  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 100% 100%; /* <-- THIS IS THE KEY CHANGE */
    background-position: center center; /* You can keep this, but with 100% 100%, it won't matter much */
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .slide.active {
    opacity: 1;
  }

  /* Hero Content Container */
  .hero-content-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 3rem;
    width: 90%;
    max-width: 1200px;
    align-items: center;
    justify-content: space-between;
  }

  .overlay {
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 3rem 4.5rem;
    border-radius: 20px;
    width: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .overlay::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(rgba(0, 255, 128, 0.15), transparent 80%);
    z-index: -1;
    border-radius: 20px;
    filter: blur(30px);
  }

  .overlay h1 {
    font-size: 50px;
    margin-bottom: 1.5rem;
    font-family: "Georgia", serif;
    white-space: nowrap;
    line-height: 1.1;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }
  .overlay p {
    font-size: 24px;
    margin-bottom: 2.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
  }
  .button-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn {
    display: inline-block;
    background-color: #2c5aa0;
    color: white;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #2c5aa0;
    position: relative;
    overflow: hidden;
  }

  .btn:hover {
    background-color: white;
    color: #2c5aa0;
    box-shadow: 0 0 10px rgba(44, 90, 160, 0.6), 0 4px 15px rgba(44, 90, 160, 0.3);
    transform: translateY(-2px);
  }
  .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      120deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent
    );
    transition: left 0.5s ease;
  }

  .btn:hover::before {
    left: 100%;
  }

  /* Services button - Classic Parrot Green */
  .btn-services {
    background-color: #00C851 !important;
    border-color: #00C851 !important;
  }

  .btn-services:hover {
    background-color: white !important;
    color: #00C851 !important;
    box-shadow: 0 0 10px rgba(0, 200, 81, 0.6), 0 4px 15px rgba(0, 200, 81, 0.3) !important;
  }

  /* Appointment button - Classic Blue */
  .btn-appointment {
    background-color: #007bff !important;
    border-color: #007bff !important;
  }

  .btn-appointment:hover {
    background-color: white !important;
    color: #007bff !important;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.6), 0 4px 15px rgba(0, 123, 255, 0.3) !important;
  }

  /* Fade-in from bottom */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Typing-style fade-in for each text block */
  @keyframes fadeText {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-text {
    opacity: 0;
    animation: fadeText 1.2s ease forwards;
    transform: scale(0.95);
    transition: transform 0.3s ease;
  }

  .fade-text:hover {
    transform: scale(1.02);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
  }

  .fade-text.delay-1 {
    animation-delay: 0.5s;
  }

  .fade-up {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
  }

  .fade-up.delay-2 {
    animation-delay: 1.2s;
  }

  .fade-up.delay-3 {
    animation-delay: 1.6s;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }

  .fade-up.delay-2,
  .fade-up.delay-3 {
    animation: fadeUp 0.8s ease forwards;
  }

  /* Social Icons */

  .social-icon-wrapper {
    display: flex;
    justify-content: center;
    gap: 5.5rem;
    margin-top: 30px;
    z-index: 10;
  }

  /* Hero Contact Form */
  .hero-contact-form {
    width: 42%;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.2rem;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
  }

  .hero-contact-form h3 {
    color: #2c5aa0;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0.4rem;
    text-align: center;
    font-family: "Inter", "Segoe UI", "Roboto", sans-serif;
    letter-spacing: 0.5px;
  }

  .form-subtitle {
    color: #6b7280;
    font-size: 14px;
    text-align: center;
    margin-bottom: 1.2rem;
    font-style: normal;
    font-family: "Inter", "Segoe UI", "Roboto", sans-serif;
    letter-spacing: 0.3px;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
  }

  .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }

  .input-icon {
    position: absolute;
    left: 14px;
    color: #2c5aa0;
    font-size: 15px;
    z-index: 2;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 10px 14px 10px 44px !important;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    transition: all 0.3s ease;
    background: white;
    width: 100%;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
  }

  .contact-form textarea {
    padding-top: 10px;
    resize: vertical;
    min-height: 70px;
  }

  .submit-btn {
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0.5rem;
  }

  .submit-btn:hover {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
  }

  /* Form Benefits */
  .form-benefits {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 0.8rem 0;
  }

  .benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(5, 150, 105, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid rgba(5, 150, 105, 0.2);
    flex: 1;
    justify-content: center;
  }

  .benefit-item i {
    color: #059669;
    font-size: 14px;
  }

  .benefit-item span {
    color: #059669;
    font-size: 12px;
    font-weight: 600;
  }

  /* Form Note */
  .form-note {
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    margin-top: 1rem;
    font-style: italic;
  }

  /* Trust Stats */
  .trust-stats {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .trust-text {
    color: #059669;
    font-size: 16px;
    font-weight: 600;
    background: rgba(5, 150, 105, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(5, 150, 105, 0.2);
  }

  /* Stats Grid */
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.3rem;
    margin-top: 0.6rem;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(44, 90, 160, 0.05);
    padding: 6px 4px;
    border-radius: 4px;
    border-top: 2px solid #2c5aa0;
    text-align: center;
  }

  .stat-number {
    font-size: 8px;
    font-weight: 700;
    color: #2c5aa0;
    font-family: "Georgia", serif;
    margin-bottom: 1px;
  }

  /* More specific selector for contact form stats */
  .hero-contact-form .stats-grid .stat-number {
    font-size: 30px !important;
    font-weight: 700 !important;
    color: #2c5aa0 !important;
    font-family: "Georgia", serif !important;
    margin-bottom: 1px !important;
  }


  /* More specific selector for contact form stats text */
  .hero-contact-form .stats-grid .stat-text {
    font-size: 15px !important;
    color: #374151 !important;
    font-weight: 500 !important;
    text-align: center !important;
    line-height: 1.0 !important;
  }

  .icon-circle {
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .icon-circle i {
    font-size: 30px;
  }

  /* Branded colors */
  .icon-circle i.fa-instagram {
    color: #e4405f;
  }

  .icon-circle i.fa-linkedin-in {
    color: #0077b5;
  }

  .icon-circle:hover {
    transform: scale(1.1);
  }






  .btn-advanced {
    background: linear-gradient(90deg, #0b5ed7 0%, #2dbb4e 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(43, 187, 78, 0.15);
    font-size: 1.08rem;
    letter-spacing: 0.5px;
    font-family: 'Segoe UI', Arial, sans-serif;
    padding: 10px 22px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  .btn-advanced i {
    margin-right: 8px;
    color: #fff;
    transition: transform 0.3s ease;
  }
  .btn-advanced:hover {
    background: linear-gradient(90deg, #2dbb4e 0%, #0b5ed7 100%);
    box-shadow: 0 8px 32px rgba(11, 94, 215, 0.25);
    transform: translateY(-2px) scale(1.05);
  }
  .btn-advanced:hover i {
    transform: rotate(10deg) scale(1.1);
  }
  .btn-advanced:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 16px rgba(11, 94, 215, 0.2);
  }
  .btn-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
  }
  .btn-advanced:hover::before {
    left: 100%;
  }



  /* About Section - Modern Design */
  .about-section {
    padding: 2rem 1.5rem 6rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    scroll-margin-top: 0px;
    position: relative;
    overflow: hidden;
  }

  .about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
  }

  .about-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-bg 8s ease-in-out infinite;
  }

  @keyframes float-bg {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
  }

  /* Section Header */
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .section-subtitle {
    color: #059669;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-family: "Inter", sans-serif;
  }

  .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: "Inter", sans-serif;
  }

  .section-description {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* Why Choose Section */
  .why-choose-section {
    text-align: center;
    margin: 3rem 0;
  }

  .why-choose-section .content-intro h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    font-family: "Inter", sans-serif;
  }

  .why-choose-section .content-intro p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* About Grid */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
  }

  /* Content Blocks */
  .about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .content-block {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
  }

  .content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.1), transparent);
    transition: left 0.6s ease;
  }

  .content-block:hover::before {
    left: 100%;
  }

  .content-block:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(5, 150, 105, 0.2);
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #059669, #047857);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
    position: relative;
    transition: all 0.3s ease;
  }

  .icon-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #059669, #047857);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease;
  }

  .content-block:hover .icon-wrapper::before {
    opacity: 0.3;
    transform: scale(1.1);
  }

  .icon-wrapper i {
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
  }

  .content-block:hover .icon-wrapper i {
    transform: scale(1.1) rotate(5deg);
  }

  .content-block h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-family: "Inter", sans-serif;
  }

  .content-block p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
  }

  /* Enhanced About Content Styles */
  .content-intro {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.1);
  }

  .content-intro h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    font-family: "Inter", sans-serif;
  }

  .content-intro p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
  }

  .features-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.6s ease;
  }

  .feature-card:hover::before {
    left: 100%;
  }

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

  .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
  }

  .feature-card:hover .feature-icon {
    transform: scale(1.1);
  }

  .feature-content {
    flex: 1;
  }

  .feature-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.8rem;
    font-family: "Inter", sans-serif;
  }

  .feature-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .feature-benefits li {
    font-size: 0.9rem;
    color: #10b981;
    margin-bottom: 0.4rem;
    position: relative;
    padding-left: 1.2rem;
    font-weight: 500;
  }

  .feature-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
  }

  .credentials-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.1);
  }

  .credentials-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-family: "Inter", sans-serif;
    text-align: center;
  }

  .credentials-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  .credential-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .credential-item i {
    color: #10b981;
    font-size: 1.2rem;
    width: 20px;
  }

  .credential-item span {
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 500;
  }

  /* Stats Row */
  .stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
    width: 100%;
    margin-left: 50%;
  }

  .stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 0;
  }

  .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #059669, #047857);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .stat-item:hover::before {
    transform: scaleX(1);
  }

  .stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(5, 150, 105, 0.2);
  }

  .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 0.5rem;
    font-family: "Inter", sans-serif;
  }

  .stat-label {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* About Image */
  .about-image {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
  }

  .image-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #059669, #047857, #059669);
    border-radius: 30px;
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
    filter: blur(15px);
  }

  .image-container:hover::before {
    opacity: 0.3;
    transform: scale(1.05);
  }

  .image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .image-container:hover {
    transform: translateY(-5px);
  }

  .image-container:hover img {
    transform: scale(1.05);
  }

  .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
  }

  .overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: "Inter", sans-serif;
  }

  .overlay-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
  }

  .left-align {
    text-align: left !important;
  }

  .credentials {
    display: flex;
    gap: 0.5rem;
  }

  .credential {
    background: rgba(5, 150, 105, 0.9);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
  }

  /* Call to Action */
  .about-cta {
    background: linear-gradient(135deg, #059669, #047857);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
  }

  .about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
  }

  .cta-content {
    position: relative;
    z-index: 2;
  }

  .cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: "Inter", sans-serif;
  }

  .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }

  .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #059669;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
  }

  .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.1), transparent);
    transition: left 0.6s ease;
  }

  .cta-button:hover::before {
    left: 100%;
  }

  .cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
  }

  .cta-button i {
    transition: transform 0.3s ease;
  }

  .cta-button:hover i {
    transform: translateX(5px);
  }

  .scroll-fade {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s ease, transform 1s ease;
  }

  .scroll-fade.active {
    opacity: 1;
    transform: translateY(0);
  }


  /* Equipment Section - Modern Design */
  .equipment-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  .equipment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }

  /* Equipment Header */
  .equipment-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
  }

  .equipment-header .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    color: #3b82f6;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .equipment-header .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: "Inter", sans-serif;
  }

  .equipment-header .section-description {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* Equipment Categories */
  .equipment-categories {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 2;
  }

  .equipment-category {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  .equipment-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  }

  /* Category Header */
  .category-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
  }

  .category-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-family: "Inter", sans-serif;
  }

  .category-header p {
    font-size: 1.1rem;
    color: #64748b;
  }

  /* Equipment Grid */
  .equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .equipment-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
  }

  .equipment-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  }

  /* Card Image */
  .card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
  }

  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    background: #f8f9fa;
  }

  .equipment-card:hover .card-image img {
    transform: scale(1.1);
  }

  .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(16, 185, 129, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .equipment-card:hover .card-overlay {
    opacity: 1;
  }

  .overlay-content {
    text-align: center;
    color: white;
  }

  .overlay-content i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
  }

  .overlay-content span {
    font-size: 1.1rem;
    font-weight: 600;
  }

  /* Card Content */
  .card-content {
    padding: 1.5rem;
  }

  .card-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-family: "Inter", sans-serif;
  }

  .card-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  /* Feature Tags */
  .card-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .feature-tag {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
  }

  /* Technology Stats */
  .tech-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
  }

  .tech-stats .stat-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .tech-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .tech-stats .stat-item:hover::before {
    transform: scaleX(1);
  }

  .tech-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  }

  .tech-stats .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
  }

  .tech-stats .stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .tech-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    font-family: "Inter", sans-serif;
  }

  .tech-stats .stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
  }

  /* ===----------------- Services Section -------------=== */
  .services-section {
    scroll-margin-top: 0px;
    padding: 2rem 2rem 6rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  .services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }

  .services-section .container {
    max-width: 1400px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: "Inter", sans-serif;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }

  .service-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  }

  .service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .service-card:hover img {
    transform: scale(1.1);
  }

  .card-content {
    padding: 2rem;
    position: relative;
  }

  .card-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    font-family: "Inter", sans-serif;
    transition: color 0.3s ease;
  }

  .service-card:hover .card-content h3 {
    color: #10b981;
  }

  .card-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
  }

  /* Center the last card (Pediatric rehab) in its row */
  .service-card:last-child {
    margin-left: auto;
    margin-right: auto;
    grid-column: 1 / -1;
    justify-self: center;
  }

  /* Service Detail Sections - Hidden by default, shown on click */
  .service-detail-section {
    display: none;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .service-detail-section.active {
    display: block;
  }

  .detail-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .detail-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  }

  .detail-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-family: "Inter", sans-serif;
  }

  .detail-text p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .btn-advanced {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
  }

  .btn-advanced:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #059669, #10b981);
  }

  .btn-advanced:hover i {
    transform: rotate(10deg) scale(1.1);
  }

  .btn-advanced:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  }

  .btn-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
  }

  .btn-advanced:hover::before {
    left: 100%;
  }






  /* ===----------------- Contact Section -------------=== */
  .contact-section {
    scroll-margin-top: 0px;
    padding: 2rem 2rem 6rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }

  .contact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
  }

  .contact-header .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .contact-header .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: "Inter", sans-serif;
  }

  .contact-header .section-description {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
  }

  .contact-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
  }

  .map-section {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 2rem;
  }

  .map-section .map-card {
    max-width: 800px;
    width: 100%;
  }

  .contact-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
  }

  .contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  }

  .contact-card .contact-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
      align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem auto;
  }

  .contact-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-family: "Inter", sans-serif;
  }

  .contact-card p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }

  .map-card {
    padding: 1.5rem;
  }

  .map-container {
    margin: 1rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
  }

  .contact-btn {
    background: #10b981;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    display: inline-flex;
      align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
  }

  .contact-btn:hover {
    background: #059669;
    color: white;
    text-decoration: none;
  }

  .contact-btn i {
    font-size: 0.8rem;
  }



  /* -------------Footer Styles------------ */
  .footer-section {
    background: #1e293b;
    color: #fff;
    padding: 2rem 0;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: "Inter", sans-serif;
  }
  
  .footer-brand h3 a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  /* Base clinic emoji styling for desktop */
  .footer-brand h3 a::after {
    content: "🏥";
    font-size: 1.4rem;
    display: inline-block;
    margin-left: 6px;
  }
  
  .footer-brand p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  
  .footer-social a {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    display: flex;
      align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer-social a:hover {
    background: #10b981;
    transform: translateY(-2px);
  }
  
  .footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1.5rem;
    text-align: center;
  }
  
  .footer-bottom p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 0;
  }
  

  /* New Floating Contact Buttons */
  .floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 1000;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
  }

  .floating-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse-glow 2s infinite, bulge-effect 3s ease-in-out infinite;
    transform: scale(1.05);
  }

  .call-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    box-shadow: 
      0 8px 25px rgba(0, 123, 255, 0.4), 
      0 0 30px rgba(0, 123, 255, 0.3),
      inset 0 2px 4px rgba(255, 255, 255, 0.2),
      inset 0 -2px 4px rgba(0, 0, 0, 0.1);
  }

  .whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 
      0 8px 25px rgba(37, 211, 102, 0.4), 
      0 0 30px rgba(37, 211, 102, 0.3),
      inset 0 2px 4px rgba(255, 255, 255, 0.2),
      inset 0 -2px 4px rgba(0, 0, 0, 0.1);
  }

  .floating-btn:hover {
    transform: translateY(-3px) scale(1.15);
    animation: none;
  }

  .call-btn:hover {
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.6), 0 0 40px rgba(0, 123, 255, 0.5);
  }

  .whatsapp-btn:hover {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6), 0 0 40px rgba(37, 211, 102, 0.5);
  }

  .floating-btn i {
    font-size: 24px;
  }

  .btn-text {
    display: none;
  }

  /* Glowing pulse animation */
  @keyframes pulse-glow {
    0% {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 20px rgba(0, 123, 255, 0.2);
    }
    50% {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 30px rgba(0, 123, 255, 0.4);
    }
    100% {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 20px rgba(0, 123, 255, 0.2);
    }
  }

  @keyframes pulse-glow-whatsapp {
    0% {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 20px rgba(37, 211, 102, 0.2);
    }
    50% {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 30px rgba(37, 211, 102, 0.4);
    }
    100% {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 20px rgba(37, 211, 102, 0.2);
    }
  }

  .whatsapp-btn {
    animation: pulse-glow-whatsapp 2s infinite, bulge-effect 3s ease-in-out infinite;
  }

  /* Bulge effect animation */
  @keyframes bulge-effect {
    0% {
      transform: scale(1.05);
    }
    50% {
      transform: scale(1.08);
    }
    100% {
      transform: scale(1.05);
    }
  }

  /* Floating Book Appointment Button */
  .floating-appointment-btn {
    position: fixed;
    bottom: 30px;
    right: 100px;
    z-index: 1001;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .floating-appointment-btn.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .floating-appointment-btn a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    animation: pulse-appointment 2s infinite;
  }

  .floating-appointment-btn a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6);
    background: linear-gradient(135deg, #059669, #10b981);
  }

  .floating-appointment-btn i {
    font-size: 16px;
  }

  .floating-appointment-btn .btn-text {
    display: block;
    white-space: nowrap;
  }

  @keyframes pulse-appointment {
    0% {
      box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    }
    50% {
      box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6), 0 0 20px rgba(16, 185, 129, 0.3);
    }
    100% {
      box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    }
  }


  /* ==================== TESTIMONIALS SECTION ==================== */
  .testimonials-section {
    scroll-margin-top: 0px;
    padding: 2rem 0 40px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
  }

  .testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23e2e8f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
  }

  .testimonials-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
  }

  .testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
  }

  .testimonials-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .testimonials-container-inner {
    overflow: hidden;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
  }

  .testimonials-grid {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    animation: infiniteScroll 50s linear infinite;
    width: calc(200% + 60px);
  }

    .testimonial-card {
    flex: 0 0 350px;
    min-width: 350px;
  }

  @keyframes infiniteScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-50% - 15px));
    }
  }

    .testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f1f5f9;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  }

  /* Pause animation on hover */
  .testimonials-container-inner:hover .testimonials-grid,
  .testimonial-card:hover ~ .testimonials-grid,
  .testimonials-grid:hover {
    animation-play-state: paused !important;
  }

  .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 20px 20px 0 0;
  }

    .testimonial-content {
    margin-bottom: 25px;
  }

  .quote-icon {
    color: #10b981;
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0.8;
  }

    .testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    font-style: italic;
    margin: 0;
    position: relative;
  }

  .testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
  }

  .author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 5px 0;
    font-family: 'Inter', sans-serif;
  }

  .author-role {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
  }

  .rating {
    display: flex;
    gap: 2px;
  }

  .rating i {
    color: #fbbf24;
    font-size: 0.9rem;
  }

  .testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }

  .testimonials-stats .stat-item {
    text-align: center;
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
  }

  .testimonials-stats .stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .testimonials-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
  }

  .testimonials-stats .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }


  /* ==================== FEEDBACK FORM SECTION ==================== */
  .feedback-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
  }

  .feedback-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .feedback-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
  }

  .feedback-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .feedback-form-container {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
  }

  .feedback-form-title {
    text-align: center;
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
  }

  .feedback-form-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 2px;
  }

  .feedback-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    font-family: 'Inter', sans-serif;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    background: white;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 100px;
  }

  .rating-input {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
  }

  .rating-input input[type="radio"] {
    display: none;
  }

  .star-label {
    font-size: 2.5rem;
    color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    position: relative;
    display: inline-block;
    transform: scale(1);
  }

  .star-label:hover {
    color: #fbbf24;
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
    text-shadow: 0 0 12px rgba(251, 191, 36, 0.8);
  }

  .star-label:active {
    transform: scale(0.95);
  }

  /* Selected stars styling */
  .star-label.selected {
    color: #fbbf24;
    transform: scale(1.1);
    filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.5));
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.6);
  }

  /* Unselected stars styling */
  .star-label.unselected {
    color: #d1d5db;
    transform: scale(1);
    filter: none;
    text-shadow: none;
  }

  /* Enhanced hover effect for all stars when hovering over any star */
  .rating-input:hover .star-label {
    color: #fbbf24;
    transform: scale(1.05);
  }

  .rating-input:hover .star-label:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
    text-shadow: 0 0 12px rgba(251, 191, 36, 0.8);
  }

  .submit-feedback-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    margin-top: 10px;
  }

  .submit-feedback-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  }

  .submit-feedback-btn:active {
    transform: translateY(0);
  }

  .success-message {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: slideIn 0.5s ease;
  }

  .success-message i {
    font-size: 1.5rem;
  }

  .success-message p {
    margin: 0;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

