html,body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #fff;
  width: 100%;
}

header {
  background: linear-gradient(90deg, #33001b 0%, #4c0026 100%);
  padding: 12px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.navbar-brand img {
  height: 60px;
}

.nav-link {
  color: #fff !important;
  position: relative;
  font-weight: 500;
  margin: 0 12px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  display: inline-block;
}

/* 🌸 Smooth underline starts under text only */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #ff77a9, #e91e63);
  transition: width 0.35s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #ff77a9 !important;
}

/* ===== Offcanvas Menu ===== */
.offcanvas {
  background: linear-gradient(180deg, #33001b 0%, #4c0026 100%);
  color: #fff;
}

.offcanvas .nav-link {
  color: #fff !important;
  margin: 8px 0;
  font-size: 1.1rem;
}

.offcanvas .nav-link:hover {
  color: #ff77a9 !important;
}

/* ===== MOBILE MENU BUTTON ===== */
.btn-menu {
  color: #fff;
  border: 1px solid #e91e63;
  background-color: transparent;
  transition: 0.3s;
}

.btn-menu:hover {
  background: linear-gradient(90deg, #ff77a9, #e91e63);
  border-color: #e91e63;
  color: #fff;
}

/* ===== BANNER SECTION ===== */
.banner-section {
  background: url("../images/banner.png") center center / cover no-repeat;
   /*background-color: #ffe6f0;*/
  position: relative;
  color: #fff;
  padding: 120px 0 100px 0;
  overflow: hidden;
  z-index: 1;
}



.banner-content {
  position: relative;
  z-index: 1;
}

/* ===== TEXT STYLES ===== */
.banner-content .welcome-text {
  font-size: 2.6rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.banner-content .contact-text {
  font-size: 1.2rem;
  color: #020202;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.banner-content .intro-text,
.banner-content .services-text {
  font-size: 1.05rem;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* ===== BUTTON ===== */
.btn-primary {
  background: linear-gradient(90deg, #ff77a9, #e91e63);
  border: none;
  color: #000;
  font-size: 19px;
  padding: 15px 10px;
  font-weight: 500;
  border-radius: 6px;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #e91e63, #ff77a9);
  transform: translateY(-3px);
}


/*h1 section*/

  section h1 {
    font-size: 35px;
    color: rgb(248, 4, 106);
  }

  section p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
  }

  /*section .btn-dark {*/
  /*  background-color: #222;*/
  /*  border: none;*/
  /*  transition: 0.3s;*/
  /*}*/

  /*section .btn-dark:hover {*/
  /*  background-color: #444;*/
  /*}*/

  section img {
    max-height: 420px;
    object-fit: cover;
  }

  @media (max-width: 992px) {
    section h1 {
      font-size: 1.6rem;
    }
    section img {
      margin-bottom: 20px;
    }
  }



/* ===== OUR SERVICES SECTION ===== */
.services-section {
  background: #fff;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

/* Section Heading */
.section-title {
  font-size: 2.4rem;
  color: #000000;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff77a9, #e91e63);
  /* margin: 10px auto 0 auto; */
  margin-left: 13px;
  border-radius: 2px;
}

.section-desc {
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.8;
  max-width: 750px;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  /* background: #fff; */
  border-radius: 15px;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
  padding: 25px;
  transition: all 0.4s ease;
  height: 100%;
  /* border: 1px solid rgba(233, 30, 99, 0.1); */
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.25);
}

/* Service Images */
.service-card img {
  border-radius: 12px;
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

/* Service Text */
.service-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin: 10px 0 0;
}

.service-card p strong {
  color: #e91e63;
}

.service-footer-text {
  background: rgba(248, 4, 106, 0.05);
  padding: 18px 25px;
  border-radius: 50px;
  display: inline-block;
  margin: 0 auto;
}

.service-footer-text p {
  font-size: 1.05rem;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.service-footer-text strong {
  color: rgb(248, 4, 106);
  font-weight: 600;
}


/* ===== ABOUT SECTION ===== */
.about-section {
  background: #fff;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

/* Title */
.about-title {
  font-size: 2.4rem;
  color: #e91e63;
  position: relative;
}

.about-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #ff77a9, #e91e63);
  margin-top: 10px;
  border-radius: 2px;
}

/* Paragraph */
.about-text {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Image Styling */
.about-image-wrapper img {
  width: 100%;
  max-width: 500px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image-wrapper img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.25);
}

/* Testimonial Section */

.testimonial-heading {
  font-size: 32px;
  color: #000000;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.testimonial-section {
  background: #fff;
  color: #333;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Quote icon */
.quote-icon {
  font-size: 30px;
  color: rgb(248, 4, 106);
  margin-bottom: 15px;
}

/* Testimonial text */
.testimonial-text {
  font-size: 1rem;
  color: #000000;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 25px;
  min-height: 80px;
}

/* Footer */
.testimonial-footer {
  text-align: center;
}

/* contact */
.contact-text{
  font-size: 35px;
  color: #000000;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;

}
/* Avatar Circle with Initial Letter */
.user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgb(248, 4, 106);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  margin: 0 auto 8px;
  text-transform: uppercase;
}


.user-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}


/* Remove arrows */
.owl-carousel .owl-nav {
  display: none !important;
}




.contact-section {
  background: #ffd8ed25;
  font-size: 15px;
  color: #000;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgb(248, 4, 106);
  box-shadow: 0 0 5px rgba(248, 4, 106, 0.3);
}

.btn-primary {
  background-color: rgb(248, 4, 106);
  border: none;
}

.btn-primary:hover {
  background-color: #333;
}

.map-container {
  height: 100%;
  min-height: 400px;
}

.contact-section i {
  color: rgb(248, 4, 106);
}

.see-workers {
  background: #fffafc;
}

.see-workers h2 {
  color: #4c0026;
}

.see-workers img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.see-workers img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}



.whatsapp-icon-fixed {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

.whatsapp-icon-fixed img {
  width: 70px;
  height: 70px;
  border-radius: 0%;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-icon-fixed img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.call-icon-right {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.call-icon-right img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.call-icon-right img:hover {
  transform: scale(1.1);
}
/* ===== Footer Section Styling ===== */
.footer-section {
  background: linear-gradient(90deg, #33001b 0%, #4c0026 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.footer-section h4,
.footer-section h5 {
  font-weight: 600;
  color: #fff;
}

.footer-section p {
  font-size: 15px;
  margin-bottom: 6px;
  color: #ddd;
}

/* ===== Logo ===== */
.footer-section img {
  max-width: 180px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* ✅ Hover animation for logo */
.footer-section img:hover {
  transform: scale(1.08);
  filter: brightness(1.2);
}

/* ===== Social Icons ===== */
/* .footer-section .btn-light {
  background-color: #fff;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.footer-section .btn-light:hover {
  background-color: #f8046a;
  transform: translateY(-3px);
}

.footer-section .btn-light i {
  color: #4c0026;
  transition: color 0.3s ease;
}

.footer-section .btn-light:hover i {
  color: #fff;
} */

/* ===== Copyright ===== */
.footer-section .border-top {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.footer-section p.mb-0 {
  font-size: 14px;
  color: #ccc;
}

.package-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.package-link:hover {
  color: #ff3385;
  text-decoration: underline;
}


.social-icons {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}

/* base button style */
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}


/* icon inside */
.social-btn img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

/* hover animation */
.social-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.social-btn:hover img {
  transform: scale(1.15);
}



/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .footer-section {
    text-align: center;
  }

  .footer-section .btn-light {
    margin: 5px;
  }

  .footer-section img {
    margin-bottom: 15px;
  }

  .footer-section h5 {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .footer-section p {
    font-size: 14px;
  }

  .footer-section h5 {
    font-size: 16px;
  }
}


/* Responsive adjustments */
@media (max-width: 1024px) {
  .testimonial-card {
    padding: 25px 15px;
  }
}
