/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fffafc;
  color: #333;
  scroll-behavior: smooth;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h5, h6 {
  font-weight: 600;
}

/* ========== NAVBAR ========== */
.navbar-brand {
  font-size: 1.8rem;
  color: #e91e63 !important;
}

.navbar-nav .nav-link {
  color: #555;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #e91e63 !important;
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(to right, #ffe0ec, #fff2f7);
  padding: 80px 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 20px;
  animation: fadeIn 1.2s ease-in;
}

.hero h1 {
  font-size: 3rem;
  color: #c2185b;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* ========== BUTTONS ========== */
.btn-pink {
  background-color: #e91e63;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.btn-pink:hover {
  background-color: #c2185b;
  color: #fff;
  transform: scale(1.05);
}

/* ========== FOOTER ========== */
footer {
  background-color: #222;
  color: white;
  text-align: center;
  font-size: 0.9rem;
  padding: 20px 0;
}

footer a {
  color: #ffb6c1;
}

footer a:hover {
  text-decoration: none;
  color: #ffc1cc;
}

/* ========== CAROUSEL CAPTIONS ========== */
.carousel-caption {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 10px;
  animation: slideUp 1s ease;
}

.carousel-caption h2 {
  color: #fff;
  font-weight: 700;
}

.carousel-caption p {
  color: #fce4ec;
}

/* ========== CARD IMAGES ========== */
.card-img-top {
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.card-img-top:hover {
  transform: scale(1.03);
}

/* ========== WHY CHOOSE US SECTION ========== */
section.bg-light {
  background-color: #fdf2f5 !important;
}

section.bg-light h2 {
  color: #c2185b;
}

section.bg-light .col-md-3 img {
  margin-bottom: 15px;
}

section.bg-light h5 {
  font-size: 1.1rem;
  color: #c2185b;
}

section.bg-light p,
section.bg-light .text-muted {
  font-size: 0.9rem;
  color: #555 !important;
}

/* ========== TESTIMONIALS ========== */
.card p {
  font-style: italic;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}

.card h6 {
  font-weight: 600;
  color: #e91e63;
  font-size: 0.9rem;
}

/* ========== OUR PROFESSIONALS ========== */
section.bg-light .rounded-circle {
  border: 3px solid #f8bbd0;
  transition: transform 0.3s ease;
}

section.bg-light .rounded-circle:hover {
  transform: scale(1.05);
}

section.bg-light h6 {
  margin-top: 10px;
  font-size: 1rem;
  color: #c2185b;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .navbar-nav .nav-link {
    margin-left: 10px;
  }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Expert Cards as Square Tabs */
.expert-card {
  background: white;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f8bbd0;
}

.expert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.expert-photo {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid #e91e63;
  transition: transform 0.3s ease;
}

.expert-photo:hover {
  transform: scale(1.05);
}

.expert-card h6 {
  font-size: 1rem;
  color: #c2185b;
  margin-bottom: 5px;
}

.expert-role {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}
.whyImage{
  width: 100%;
  border-radius: 10px;
}