    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      scroll-behavior: smooth;
}
     
:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --accent: #14b8a6;
  --white: #ffffff;
  --text: #0f172a;
  --muted: #dbeafe;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
}

/* Reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Manrope", Arial, sans-serif;
  background: #f8fafc;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 22px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(30, 64, 175, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.12);
}

.logo,
.navbar .brand {
  color: white;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-links,
.navbar ul {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a,
.navbar a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  transition: 0.25s ease;
}

.nav-links a::after,
.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: white;
  transition: 0.25s ease;
}

.nav-links a:hover,
.navbar a:hover {
  color: white;
}

.nav-links a:hover::after,
.navbar a:hover::after {
  width: 100%;
}

/* Hero */
.hero{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

    min-height:100vh;

    padding:120px 8% 0;

    overflow:hidden;

    position:relative;

    background:linear-gradient(

        135deg,

        #2563EB 0%,

        #1D4ED8 55%,

        #1E40AF 100%);
}

 

/* Subtle medical cross pattern */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 2px, transparent 2px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
  pointer-events: none;
}


.hero-image,
.hero-img,
.doctor-image {
    flex: 1;
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transform: none;
}

/* Glow behind doctor */
.hero-image::before,
.hero-img::before,
.doctor-image::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  filter: blur(10px);
  z-index: -1;
}

.hero-image img,
.hero-img img,
.doctor-image img {
  max-width: 520px;
  width: 100%;
  display: block;
  filter: drop-shadow(0 30px 50px rgba(15, 23, 42, 0.35));
  animation: doctorFade 0.9s ease both;
transform: translateY(20px)
}

.hero-content {
  flex: 1;
  max-width: 620px;
  color: white;
  position: relative;
  z-index: 4;
  animation: contentFade 0.8s ease both;
}

.hero-content h1 {
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.05;
  margin: 0 0 28px;
  font-weight: 850;
  letter-spacing: -1.8px;
}

.hero-content p {
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.65;
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.86);
  max-width: 620px;
}
.hero-container{
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;

    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
/* Button */
.btn,
button,
.hero-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 32px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(135deg, #22c55e, #14b8a6);
  color: #06231e;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(20, 184, 166, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover,
button:hover,
.hero-content a:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(20, 184, 166, 0.45);
}

/* Optional trust cards */
.trust-row {
  margin-top: 42px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.trust-card {
  min-width: 140px;
  padding: 18px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: white;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.trust-card strong {
  display: block;
  font-size: 26px;
  margin-bottom: 4px;
}

.trust-card span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  font-size: 30px;
  text-decoration: none;
  z-index: 50;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  transition: 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.04);
}

/* Animations */
@keyframes contentFade {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes doctorFade {
  from {
    opacity: 0;
    transform: translateY(35px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .navbar {
    padding: 18px 5%;
  }

  .nav-links,
  .navbar ul {
    gap: 18px;
  }

  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 130px 5% 0;
    gap: 30px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .trust-row {
    justify-content: center;
  }

  .hero-image img,
  .hero-img img,
  .doctor-image img {
    max-width: 390px;
  }
}

@media (max-width: 600px) {
  .navbar {
    position: absolute;
  }

  .nav-links,
  .navbar ul {
    display: none;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .btn,
  button,
  .hero-content a {
    width: 100%;
    max-width: 320px;
  }
}
.about {
  background-color: #ffffff; /* Pure white background */
  padding: 8rem 2rem;        /* Spacing above and below the text */
  display: flex;
  justify-content: center;
  text-align: center;
}

.about-container {
  max-width: 1000px; /* Keeps the text lines from stretching too wide */
}

.about h2 {
  color: #1e40af; /* Matches your navbar blue */
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.about p {
  color: #4b5563; /* Dark gray for soft, clean readability */
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* --- SCROLL ANIMATION STATES --- */

/* 1. Starting State: Hidden and pushed down slightly */
.animate-up {
  opacity: 0;
  transform: translateY(40px); /* Pushes the element 40px down */
  transition: opacity 0.8s ease, transform 0.8s ease; /* Transitions over 0.8 seconds */
}

/* 2. Target State: Faded in and moved back up to original position */
.animate-up.appear {
  opacity: 1;
  transform: translateY(0); /* Pulls it back up to its natural position */
}



.reviews-section {
      background-color: #1e40af; /* Your specific blue background */
      padding: 6rem 0;
      overflow: hidden; /* CRITICAL: Hides cards that slide off the screen edges */
      display: flex;
      flex-direction: column;
      gap: 2rem; /* Spacing between Row 1 and Row 2 */
    }

  

    /* 2. THE MARQUEE VIEWPORT CONTAINER */
    .marquee-container {
      display: flex;
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    /* 3. THE MOVING TRACK */
    .marquee-track {
      display: flex;
      gap: 1.5rem;
      width: max-content; /* Allows track to stretch as wide as all cards combined */
    }

    /* Row 1 Animation: Moves Right slowly */
    .move-right {
      animation: scrollRight 35s linear infinite;
    }

    /* Row 2 Animation: Moves Left slowly (creates the staggered effect from your image) */
    .move-left {
      animation: scrollLeft 35s linear infinite;
    }

    /* Pause animation when user hovers over the cards so they can read them */
    .marquee-container:hover .marquee-track {
      animation-play-state: paused;
    }

    /* 4. INDIVIDUAL REVIEW CARD STYLES */
    .review-card {
      background-color: #ffffff; /* White cards */
      width: 300px;
      border-radius: 16px; /* Rounded squares/rectangles */
      padding: 2rem;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 1.5rem;
    }

    /* Yellow Stars Customization */
    .stars {
      color: #eab308; /* Perfect UI yellow code */
      font-size: 1.2rem;
      letter-spacing: 2px;
    }

    .review-text {
      color: #374151; /* Dark gray text for crisp readability */
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* Profile Row at bottom of card */
    .profile {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #e5e7eb;
    }

    .profile-info h4 {
      color: #111827;
      font-size: 0.9rem;
      font-weight: 600;
    }

    .profile-info p {
      color: #6b7280;
      font-size: 0.8rem;
    }

    /* 5. THE ANIMATION KEYFRAMES */
    /* Moves the track forward horizontally */
    @keyframes scrollRight {
      0% {
        transform: translateX(-50%); /* Starts halfway through the duplicated content */
      }
      100% {
        transform: translateX(0); /* Glides perfectly right to the end */
      }
    }

    /* Moves the track backward horizontally */
    @keyframes scrollLeft {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%); /* Glides left until halfway mark */
      }
    }

 .services-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto; 
           padding: 20px;
        }

        .services-header {
            text-align: center;
            margin-bottom: 20px;
            padding: 50px;
            
        }

        .services-header h2 {
            font-size: 2.5rem;
            color: #1e40af;
            margin-bottom: 12px;
        }

        .services-header p {
            color: #6b7280;
            font-size: 1.1rem;
            margin: 0;
        }

        /* Responsive Grid Layout */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        /* Clickable Card Wrapper */
        .service-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        /* Service Card Styles */
        .service-card {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 35px 30px;
            position: relative; /* Crucial for absolute icon positioning */
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            border: 1px solid #e5e7eb;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s;
            height: 100%;
            box-sizing: border-box;
        }

        /* Hover Effect: Enlarge, add depth, and tweak border color */
        .service-card-link:hover .service-card {
            transform: scale(1.04);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            border-color: #3b82f6;
        }

        /* Top Right Icon Placement */
        .service-icon {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 44px;
            height: 44px;
            background-color: #eff6ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #3b82f6;
            transition: background-color 0.3s, color 0.3s;
        }

        /* Color swap for icon background on card hover */
        .service-card-link:hover .service-icon {
            background-color: #3b82f6;
            color: #ffffff;
        }

        /* Card Content Typography */
        .service-card h3 {
            font-size: 1.3rem;
            color: #1f2937;
            margin-top: 20px;
            margin-bottom: 12px;
        }

        .service-card p {
            color: #4b5563;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        /* --- SLIDE PANEL & BLUR EFFECTS --- */

/* Wrapper layout transitions */
#main-content {
    transition: filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Blur Class applied dynamically */
#main-content.blurred, .navbar.blurred {
    filter: blur(10px);
    pointer-events: none;
    user-select: none;
}

/* Semi-transparent Backdrop Overlay */
.panel-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.15); /* Soft overlay contrast */
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.panel-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

/* Side Sliding Panel (Optimized for GPU acceleration) */
.details-panel {
    position: fixed;
    top: 0;
    right: 0; /* Position it at the right edge */
    width: 450px;
    max-width: 100%;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -10px 0 30px rgba(15, 23, 42, 0.15);
    z-index: 100;
    
    /* Push it 100% of its own width to the right (hiding it) */
    transform: translateX(100%); 
    
    /* Transition transform instead of "right" */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    box-sizing: border-box;
    will-change: transform; /* Tells the browser to prepare the GPU */
}

/* Slide in to its original position */
.details-panel.active {
    transform: translateX(0); 
}

/* Content Area within slide out */
.panel-inner-content {
    padding: 80px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#panel-title {
    font-size: 2.2rem;
    color: #1e40af; /* Primary Brand Blue */
    font-weight: 700;
    margin-bottom: 15px;
}

.panel-divider {
    border: 0;
    border-top: 2px solid #eff6ff;
    margin-bottom: 25px;
}

#panel-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
}

/* Panel Close Button */
.close-btn {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #f1f5f9;
    border: none;
    font-size: 1.5rem;
    font-weight: bold;
    color: #4b5563;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.close-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: rotate(90deg);
}

.site-footer {
    background-color: #1e40af; /* Requested Deep Blue */
    color: #ffffff;            /* Base Text Color */
    padding: 60px 20px 30px 20px;
    font-family: system-ui, -apple-system, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid layout for the 4 main columns */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Typography elements */
.footer-column h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #cbd5e1; /* Subtle soft light blue/gray link color */
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-column p {
    margin: 0 0 8px 0;
    font-size: 0.95rem;
    color: #ffffff;
}

.footer-column .sub-text {
    color: #cbd5e1;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

/* Brand column customization */
.brand-col .logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-methods .badge {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #ffffff;
}

/* Social Media Line Icons styling */
.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #ffffff; /* White background circle */
    color: #1e40af;            /* Inner blue icon color */
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff; /* Turns icon into white frame on hover */
    outline: 1px solid #ffffff;
}

/* Divider line */
.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

/* Bottom elements layout */
.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 0.85rem;
    color: #cbd5e1;
}

.copyright-info {
    text-align: center;
}

.copyright-info p {
    margin: 4px 0;
}

.tax-number {
    font-size: 0.75rem;
    opacity: 0.8;
}

.certificates {
    display: flex;
    gap: 15px;
}

.cert-badge {
    border: 1px dashed rgba(255, 255, 255, 0.4);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
}

/* Responsive fix for desktop spacing */
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
    .copyright-info {
        text-align: left; /* Adapts cleanly if context switches, stays aligned via grid structural boundaries */
    }
}

/* Base Section - Aligning everything to the left */


/* Bright & Clean Container */
.contact-card-rectangular {
           
    background-color: #1e40af; 
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e1e4e6; /* Soft subtle border line */
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.05); /* Very soft blue-tinted shadow */
    max-width: 500px;
    width: 100%;
}


/* Mobile responsive fixes */
@media (max-width: 480px) {
    #contacts {
        padding: 60px 20px;
    }
   
}

/* Base Section with a full blue background layout */
#booking-section {
    padding: 80px 40px;
    background-color: #0056b3; /* Rich blue background */
    display: flex;
    justify-content: flex-start; /* Keeps layout left-aligned */
    align-items: center;
    gap: 40px; /* Space between booking form and rectangular contact card */
}

/* White Booking Form Container */
.booking-container {
    background: #ffffff; 
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 480px;
    width: 100%;
}

.booking-container h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 26px;
    color: #111111; /* Sharp black title */
    font-weight: 700;
}

.booking-container p {
    color: #555555;
    margin-bottom: 30px;
    font-size: 14px;
}

/* Form inputs & Button styling */
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 13px;
    color: #0056b3; /* Accent blue labels */
}

.form-group input, 
.form-group select {
    background-color: #ffffff;
    color: #111111;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    outline: none;
}

.form-group input:focus, 
.form-group select:focus {
    border-color: #0056b3;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.book-btn {
    width: 100%;
    padding: 14px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* The Rectangular Contact Card sitting on front of the blue background */
.contact-card-rectangular {
    background: #ffffff; /* Stark white background */
    border-radius: 12px;
    padding: 30px 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); /* Makes it look like it's floating on front */
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 320px;
    height: auto;
}

/* Individual Content Rows */
.contact-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Icon box setups */
.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 8px; /* Slightly squared rectangle look */
}

.blue-icon {
    background-color: #e6f0fa;
    color: #0056b3; /* Blue identifier */
}

.black-icon {
    background-color: #f1f3f5;
    color: #111111; /* Black identifier */
}

/* Text rules inside card */
.contact-text {
    display: flex;
    flex-direction: column;
}

.label-blue {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0056b3; /* Clean Blue label */
    letter-spacing: 0.5px;
}

.num-black {
    font-size: 18px;
    font-weight: 700;
    color: #111111; /* Solid Black text phone number */
    text-decoration: none;
}

/* Responsive breakpoint for small layouts */
@media (max-width: 820px) {
    #booking-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 20px;
    }
    .contact-card-rectangular {
        width: 100%;
        min-width: unset;
    }
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 100px;
  color: #222;
  transform: translateY(50px);
}

/* Grid Layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Rounded Rectangular Card */
.team-card {
  background: #ffffff;
  border-radius: 16px; /* Smooth rounded corners */
  overflow: hidden;    /* Clips image to the border radius */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Image on top */
.card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover; /* Keeps image proportions clean */
  display: block;
}

/* Content on bottom */
.card-content {
  padding: 20px;
  text-align: center;
}

.member-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}

.member-specialty {
  font-size: 0.9rem;
  font-weight: 500;
  color: #007bff; /* Accent color for specialty */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.member-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}
.whatsapp-btn {
            display: inline-flex;
            align-items: center;
            background-color: #25D366; /* Official WhatsApp Green */
            color: white;
            text-decoration: none;
            padding: 12px 24px;
            font-family: Arial, sans-serif;
            font-size: 16px;
            font-weight: bold;
            border-radius: 50px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        /* Hover effect */
        .whatsapp-btn:hover {
            background-color: #20ba5a;
            transform: translateY(-2px);
        }

        /* Simple icon styling */
        .whatsapp-btn svg {
            margin-right: 10px;
            fill: white;
        }