
  
  /* Added cohesive typography */
  body,
  .navbar-brand,
  h1,
  h2,
  h3,
  h4,
  p {
      font-family: 'Poppins', sans-serif;
  }

  /* Suggested pastel palette */
  :root {
      --primary-color: #FFF2EB;
      --secondary-color: #F49FB6;
      --accent-color: #A3D8D2;
      --text-dark: #333;
  }

  /* Service Cards: Less repetitive look */
  .service-card img {
      border-radius: 10px;
      height: 200px;
      object-fit: cover;
      margin-bottom: 1rem;
  }




  /* Header */
  .navbar {
      background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      margin-bottom: 0 !important;
  }

  .navbar-brand {
      font-size: 1.5rem;
      font-weight: bold;
      color: white !important;
  }

  .navbar-nav .nav-link {
      color: white !important;
      font-weight: 500;
  }

  .navbar-nav .nav-link:hover {
      color: #FFD700 !important;
  }

  @media screen and (max-width: 480px) {
      .navbar-brand {
          font-size: 1.1rem;
      }
  }

  /* Hero Carousel */
  .hero-carousel {
      height: 85vh;
      margin-top: 66px;
  }

  .carousel-item {
      background-size: cover;
      background-position: center;
      position: relative;
      height: 85vh;
  }

  .carousel-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1;
  }

  .carousel-item:nth-child(1) {
      background-image: url("images/hero-section-img-for-brday.webp");
  }

  .carousel-item:nth-child(2) {
      background-image: url("images/hero-section-img-for-theme.webp");
  }

  .carousel-item:nth-child(3) {
      background-image: url("images/hero-section-img-for-babyshower.jpg");
  }

  .carousel-caption {
      z-index: 2;
      bottom: 30%;
  }

  .carousel-caption h1 {
      font-size: 3.5rem;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      margin-bottom: 1rem;
  }

  .carousel-caption p {
      font-size: 1.5rem;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
      margin-bottom: 2rem;
  }

  .btn-custom {
      background: linear-gradient(45deg, #FFD700, #FFA500);
      border: none;
      padding: 15px 40px;
      font-size: 1.2rem;
      font-weight: bold;
      border-radius: 50px;
      color: #333;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  }

  .btn-custom:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
      color: #333;
  }

  @media screen and (max-width: 480px) {
      .carousel-caption h1 {
          font-size: 2.8rem;
      }

      .carousel-caption p {
          font-size: 1.2rem;
      }

      .btn-custom {
          padding: 10px 25px;
          font-size: 13px;
      }
  }

  /* Services Section */
  .services {
      padding: 80px 0;
      background: var(--primary-color);
  }

  .section-title {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 3rem;
      position: relative;
      color: var(--text-dark);
  }

  .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  }

  .service-card {
      background: white;
      border-radius: 15px;
      padding: 2rem;
      ;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      border: 2px solid transparent;
      height: 90%;
      margin-bottom: 1.5rem;

  }

  .service-card:hover {
      transform: scale(1.05);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
      border-color: var(--secondary-color);
  }


  .service-card h4 {
      font-size: 1.4rem;
      font-weight: bold;
      margin-bottom: 1rem;
      color: var(--text-dark);
  }

  .service-card p {
      color: #666;
      line-height: 1.6;
  }

  /* Contact Section */
  .contact {
      padding: 80px 0;
      background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
      color: white;
  }

  .contact-form {
      background: rgba(255, 255, 255, 0.1);
      padding: 2.5rem;
      border-radius: 20px;
      backdrop-filter: blur(10px);
  }

  .form-control {
      border: none;
      border-radius: 10px;
      padding: 12px 20px;
      margin-bottom: 1rem;
      background: rgba(255, 255, 255, 0.9);
  }

  .contact-details {
      background: rgba(255, 255, 255, 0.1);
      padding: 2.5rem;
      border-radius: 20px;
      backdrop-filter: blur(10px);
  }

  .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 1.5rem;
      padding: 1rem;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
  }

  .contact-item i {
      font-size: 1.5rem;
      margin-right: 1rem;
      width: 30px;
  }

  /* WhatsApp Float Button */
  .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 40px;
      right: 40px;
      background-color: #25d366;
      color: #FFF;
      border-radius: 50px;
      text-align: center;
      font-size: 30px;
      box-shadow: 2px 2px 3px #999;
      z-index: 100;
      transition: all 0.3s ease;
      animation: pulse 2s infinite;
  }

  .whatsapp-float:hover {
      background-color: #128C7E;
      color: white;
      transform: scale(1.1);
  }

  .whatsapp-float i {
      margin-top: 16px;
  }

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

      50% {
          transform: scale(1.1);
      }

      100% {
          transform: scale(1);
      }
  }

  /* Footer */
  footer {
      background: var(--text-dark);
      color: white;
      padding: 2rem 0;
  }