:root {
      --primary-pink: #E91E63;
      --gold: #FFC107;
      --text-color: #212121;
      --bg-light: #FAFAFA;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: #fff;
      color: var(--text-color);
      line-height: 1.6;
    }
/* General Header Styling */
header {
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo left, toggle + nav right */
  padding: 15px 20px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: fixed; /* sticky */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  margin-bottom: 300px; 
}

header .logo img {
  height: 50px;
}

/* nav desktop */
header nav {
  display: flex;
  gap: 20px;
}

header nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: 0.3s;
}

header nav a:hover {
  color: #ff6600;
}

/* toggle icon */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #333;
  margin-left: auto; /* hamesha logo ke samne */
}

/* ----------- Mobile Responsive ----------- */
@media (max-width: 768px) {
  header nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  header nav.active {
    max-height: 500px;
    transition: max-height 0.4s ease-in;
  }

  header nav a {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  header nav a:last-child {
    border-bottom: none;
  }

  .menu-toggle {
    display: block; /* mobile pe show hoga */
  }
}

.main{
    padding-top: 50px;
}

  .hero {
  position: relative;
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?fit=crop&w=1600&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* Dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 20px;
}

.hero h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  justify-content: center; /* center align */
  align-items: center;
  flex-wrap: wrap; /* mobile me neeche aa jayega */
  gap: 15px; /* dono ke beech gap */
}

.buttons button {
  background: linear-gradient(135deg, #f7c14d, #d4a017);
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 30px;
  transition: 0.3s;
}

/* Mobile view me full width buttons chahiye to */
@media (max-width: 600px) {
  .buttons {
    flex-direction: column; /* ek ke niche ek */
  }
  
  .buttons button {
    width: 100%;  /* full width button */
    max-width: 250px; /* optional limit */
  }
}

    .section {
      padding: 60px 40px;
    }

    .section h3 {
      text-align: center;
      color: var(--primary-pink);
      margin-bottom: 30px;
      font-size: 28px;
    }

    .about-content {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      align-items: center;
      justify-content: center;
      max-width: 1000px;
      margin: auto;
    }

    .about-content img {
      width: 100%;
      max-width: 400px;
      border-radius: 10px;
    }

    .about-text {
      flex: 1;
      font-size: 16px;
      line-height: 1.8;
    }

    .about-list {
      margin-top: 20px;
      list-style: none;
      padding-left: 0;
    }

    .about-list li {
      margin: 10px 0;
    }

    .about-list i {
      color: var(--primary-pink);
      margin-right: 10px;
    }

    .why-us ul {
      max-width: 800px;
      margin: auto;
      list-style: none;
      padding: 0;
    }

    .why-us li {
      display: flex;
      align-items: center;
      margin: 15px 0;
    }

    .why-us li i {
      color: var(--primary-pink);
      margin-right: 12px;
      font-size: 20px;
    }

    .services {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .service-box {
      background: var(--bg-light);
      padding: 25px;
      border-radius: 15px;
      text-align: center;
      flex: 1 1 300px;
      max-width: 320px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      transition: transform 0.3s;
    }

    .service-box:hover {
      transform: translateY(-5px);
    }

    .service-box img {
      width: 200px;
      margin-bottom: 15px;
      border-radius: 5px;
    }

    .stat-box {
      background: var(--bg-light);
      padding: 30px;
      border-radius: 12px;
      text-align: center;
      width: 220px;
      margin: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      transition: transform 0.3s;
    }

    .stat-box:hover {
      transform: translateY(-5px);
    }

    .stats-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 30px;
    }

    .stat-box h4{
      color: #E91E63;

    }

    .testimonials {
      background: #fef5f9;
      padding: 50px 40px;
      text-align: center;
    }

    .testimonial-slider {
      max-width: 800px;
      margin: auto;
      position: relative;
    }

    .testimonial {
      display: none;
      font-size: 16px;
      padding: 20px;
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }

    .testimonial.active {
      display: block;
    }

    .contact-section {
      background: var(--bg-light);
      padding: 50px 40px;
      text-align: center;
    }

    .contact-section a {
      padding: 10px 25px;
      background: var(--primary-pink);
      color: #fff;
      text-decoration: none;
      border-radius: 30px;
      display: inline-block;
      margin-top: 20px;
    }


    @media(max-width: 768px) {
      .hero h2 {
        font-size: 28px;
      }
      .about-content {
        flex-direction: column;
        text-align: center;
      }
      .services {
        flex-direction: column;
        align-items: center;
      }
    }
