body {
      font-family: 'Poppins', sans-serif;
      background-color: #f9f9f9;
      color: #333;
      scroll-behavior: smooth;
    }
    .intro-section {
      padding: 100px 20px 50px;
      background: linear-gradient(135deg, #ffffff, #f1f1f1);
      text-align: center;
    }
    .intro-title {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: #222;
    }
    .intro-description {
      margin-top: 20px;
      font-size: 1.2rem;
      color: #666;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    .cta-btn {
      margin-top: 30px;
      padding: 12px 30px;
      font-size: 1.1rem;
      border-radius: 50px;
      background: #000;
      color: #fff;
      border: none;
      transition: 0.3s;
    }
    .cta-btn:hover {
      background: #444;
      color: #fff;
    }
    .services-section {
      padding: 60px 20px;
      background: #fff;
    }
    .service-item {
      padding: 30px 20px;
      border-radius: 12px;
      background: #fafafa;
      transition: 0.3s;
      height: 100%;
    }
    .service-item:hover {
      background: #f0f0f0;
      box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }
    .service-icon {
      font-size: 3rem;
      color: #007bff;
      margin-bottom: 15px;
    }
    .service-title {
      font-weight: 600;
      font-size: 1.3rem;
      margin-bottom: 10px;
    }
    .service-text {
      color: #666;
      font-size: 1rem;
    }

/* css for the working section  */

.contact-info-section {
  background: #ffffff;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}
.section-subtitle {
  font-size: 1rem;
  color: #6c757d;
  font-family: 'Poppins', sans-serif;
}
.info-card {
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.info-card:hover {
  transform: translateY(-8px);
  background: #e9ecef;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}
.info-icon {
  font-size: 3rem;
  color: #007bff;
}
.info-title {
  font-weight: 600;
  margin-bottom: 8px;
}
.info-text {
  font-size: 0.95rem;
  color: #555;
}


/* css for the send us and frequently asked question */

.contact-faq-section {
  background: #f2f6fa;
}
.send-message-box, .faq-box {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
  font-family: 'Poppins', sans-serif;
}
.form-control {
  border-radius: 12px;
  border: 1px solid #ced4da;
}
.form-control:focus {
  box-shadow: 0 0 5px rgba(0,123,255,0.4);
  border-color: #80bdff;
}
.btn-primary {
  background: linear-gradient(135deg, #007bff, #0056d2);
  border: none;
  border-radius: 12px;
  font-weight: 600;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #0056d2, #007bff);
}
.accordion-button {
  border-radius: 12px !important;
  font-weight: 600;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-body {
  font-size: 0.95rem;
}


/* testimonial css */

.testimonials-section {
  background: #fff;
}

.testimonial-card {
  background: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.testimonial-content p {
  font-size: 1rem;
  color: #333;
  font-style: italic;
}

.testimonial-author h6 {
  font-weight: 600;
}

.testimonial-author img {
  object-fit: cover;
}

/* css for the animation section  */

.cta-animation-section {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.animate-text {
  animation: fadeInUp 1s ease-out;
}

.animate-img {
  animation: zoomIn 1.2s ease;
  border: 3px solid #e0e0e0;
}

.image-box {
  position: relative;
  overflow: hidden;
}

.floating-icon, .floating-icon2 {
  position: absolute;
  background: #007bff;
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  animation: float 3s ease-in-out infinite;
}

.floating-icon {
  top: 10%;
  left: 10%;
}

.floating-icon2 {
  bottom: 10%;
  right: 10%;
  animation-delay: 1s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .floating-icon, .floating-icon2 {
    font-size: 1.2rem;
    padding: 8px;
  }
}

/* css for map */

.map-section {
  background: #f8f9fa;
}

.map-container {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 15px;
}
