
  :root {
    --primary-blue: #4b1fd6;
    --secondary-blue: #2575fc;
    --accent-teal: #2dd4bf;
    --dark-blue: #0a0e2a;
    --footer-light: #1a1f3e;
    --text-light: #b0b7d3;
  }

  /* =====================
     SINGLE ROW FOOTER
  ===================== */
  .single-row-footer {
    background: linear-gradient(135deg,#00c6ff,#0072ff);
    color: white;
    padding: 60px 0 40px;
    position: relative;
  }

  /* Decorative line */
  .footer-top-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
      }

  /* Main row container */
  .footer-row-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
  }

  /* Individual footer sections */
  .footer-section {
    flex: 1;
    min-width: 200px;
    padding: 0 15px;
  }

  /* Clinic info section */
  .clinic-info-section {
    flex: 1.2;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .logo-icon {
    width: 50px;
    height: 50px;
    
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 24px;
    
  }

  .clinic-title h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #fff, var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .clinic-title p {
    font-size: 0.8rem;
    font-weight: 600;
    color:white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 5px 0 0 0;
  }

  .footer-description {
    color: white;
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 700;
  }

  /* Social icons */
  .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--footer-light);
    display: flex;
    align-items: center;
    justify-content: center;
   color:white;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .social-icon:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    transform: translateY(-3px);
  }

  /* Section headings */
  .footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
  }

  .footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-teal);
    border-radius: 2px;
  }

  /* Links styling */
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    color:white;
  }

  .footer-links li {
    margin-bottom: 12px;
    color: white;
  }

  .footer-links a {
    
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    color: white;
    font-weight: 700;
  }

  .footer-links a:hover {
    color: black;
    transform: translateX(5px);
  }

  .footer-links a i {
    font-size: 0.7rem;
    margin-right: 10px;
    color:white;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .footer-links a:hover i {
    opacity: 1;
  }

  /* Services list */
  .service-item {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
  }

  .service-item::before {
    
    color: white;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
  }

  /* Contact info */
  .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color:white;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .contact-item i {
    color: white;
    font-size: 16px;
    margin-right: 12px;
    margin-top: 3px;
    flex-shrink: 0;
  }

  /* Bottom bar */
  .footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
  }

  .copyright {
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
  }

  /* =====================
     RESPONSIVE DESIGN
  ===================== */
  @media (max-width: 1200px) {
    .footer-row-container {
      gap: 30px;
    }
  }

  @media (max-width: 992px) {
    .footer-row-container {
      flex-wrap: wrap;
      gap: 40px;
    }
    
    .footer-section {
      flex: 1 0 calc(50% - 20px);
    }
    
    .clinic-info-section {
      flex: 1 0 100%;
    }
  }

  @media (max-width: 768px) {
    .single-row-footer {
      padding: 40px 0 30px;
    }
    
    .footer-section {
      flex: 1 0 100%;
    }
    
    .footer-heading {
      margin-top: 20px;
    }
  }

  @media (max-width: 576px) {
    .footer-row-container {
      gap: 30px;
    }
    
    .contact-item {
      flex-direction: column;
      text-align: center;
    }
    
    .contact-item i {
      margin-right: 0;
      margin-bottom: 8px;
    }
    
    .social-icons {
      justify-content: center;
    }
  }

  
  
  .logo-icon {
    width: 60px;
    height: 60px;
   
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
   
}

.logo-icon img {
    width: 90px;   /* adjust if needed */
    height: auto;
    object-fit: contain;
}


.service-link{
    text-decoration: none;
    color: white;
    font-weight: 700;

}


  .service-link:hover {
    color: black;
    transform: translateX(5px);
  }