* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


/* Fix for body width overflow */
body {
  overflow-x: hidden;
}

body {
    background-color: #f4f4f4;
}

body {
  padding-top: 90px; /* 32px (marquee) + ~48px (navbar height with padding) */
}




/* Navbar */

.navbar {
  position: sticky;
  top: 32px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  background-color: white;
  padding: 10px 15px;
  max-width: 100%;
  margin:  0 auto;
  color: #e60073;               
  font-weight: bold;            
   padding-right: 20px;
} 










.logo a {
  text-decoration: none;
  color: #ff007f;
  font-size: 22px;
  font-weight: bold;
}


.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  position: relative;
  margin: 0 10px;
}

.nav-links a {
  text-decoration: none;
  color: #e60073;               /* 💖 Bright pink links */
  padding: 10px;
  display: block;
  font-weight: bold;            /* ✅ Bold links */
}

.nav-links a:hover {
  background-color: #ffe0ec;    /* 💗 Light pink background */
  border-radius: 5px;
  color: #c2185b;               /* 💄 Deep pink hover */
}


/* Dropdown */
/* Dropdown Menu को ठीक करने के लिए */
/* Dropdown Menu */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: bold;
  color: #e91e63; 
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  list-style: none;
  min-width: 200px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 0;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  z-index: 1000;
  text-align: center;
}


.dropdown-menu li {
  padding: 1% 0;              /* 🔧 Increased vertical spacing */
  font-size: 14px;
  line-height: 0.9;
}

.dropdown-menu a {
  color: #e91e63; 
  text-decoration: none;
  display: block;
  transition: background 0.2s, color 0.2s;
  border-radius: 5px;
  padding: 6px 12px;           /* 🔧 Space inside link area */
}

.dropdown-menu a:hover {
  background-color: #ffe4ec;   /* 💖 Soft pink background on hover */
  color: #e91e63;              /* 💖 Pink text color on hover */
}


.dropdown-menu a.active {
  color: #e91e63;
  font-weight: 500;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
  display: block !important;
}



/* ==============================
   HERO SECTION (Slider)
============================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  align-items: center;
  background-color: transparent;
  padding: 8px 16px;
  border-radius: 6px;
  z-index: 10; /* <-- VERY IMPORTANT */
}

.hero-controls button {
  background: #007bff;
  color: rgb(208, 12, 12)  ;
  border: none;
  padding: 6px 12px;
  font-size: 20px;
  border-radius: 4px;
  cursor: pointer;
}

.hero-controls span {
  color: rgb(213, 31, 7);
  font-weight: bold;
  font-size: 16px;
}



.hero-slider {
  position: relative;
  height: auto; /* Allow it to scale */
  overflow: hidden;
}

.hero-slider img.slide {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-slider img.slide.active {
  opacity: 1;
  position: relative;
  z-index: 2;
}












/* new             

.hero-slider .slide {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  width: 100%;
  height: auto;
}
.hero-slider .slide.active {
  opacity: 1;
  z-index: 2;
}
 */







/* ==============================
   SEARCH BOX SECTION (Below Slider)
============================== */
.hero-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  padding: 40px 20px;
  background: #f1f5f9;
}

/* Left, Center, Right sections same width */
.hero-left, .hero-center, .hero-right {
  flex: 1;
  min-width: 280px;
}

/* LEFT BOX */
.worker-box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  max-width: 100%;
}

.worker-box h2 {
  color: #2563eb;
  font-size: 24px;
  margin-bottom: 10px;
}

.worker-box p {
  color: #555;
  font-size: 15px;
  margin-bottom: 20px;
}

.worker-box .form-control {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.worker-box button {
  width: 100%;
  background-color: #2563eb;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

/* CENTER SEARCH */
.hero-content {
  width: 100%;
  text-align: center;
  background-color: #fbfbfb;
  padding: 30px 20px;
  border-radius: 15px;
}

.hero-content h1 {
  font-size: 26px;
  color: rgb(166, 0, 28);
}

.hero-content p {
  font-size: 16px;
  color: #03d350;
  margin-bottom: 20px;
}

.search-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.search-box input {
  padding: 12px;
  width: 90%;
  max-width: 300px;
  border: 1px solid #960404;
  border-radius: 7px;
  font-size: 14px;
}

.search-box button {
  padding: 12px 15px;
  background-color: #d60000;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.search-results {
  margin-top: 15px;
  width: 90%;
  max-width: 300px;
  text-align: left;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
}

.result-list li {
  list-style: none;
  padding: 5px 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

/* RIGHT BOX */
.hero-right h3 {
  font-size: 18px;
  color: #900;
}

.latest-blog-box {
  background-color: #f9f9f9;
  padding: 15px;
  border-left: 4px solid #d00;
  border-radius: 8px;
}





















/* ==============================
   RESPONSIVE
============================== */
@media screen and (max-width: 768px) {
  .hero-content {
    width: 90%;
    padding: 20px;
  }

  .search-box input,
  .search-box button {
    width: 100%;
  }
}



/* Results Section */
.results-container {
    text-align: center;
    margin-top: 20px;
}

.results-container ul {
    list-style: none;
    padding: 0;
}

.results-container li {
    background: white;
    margin: 5px auto;
    padding: 10px;
    width: 300px;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu */
.hamburger {
    display: none;
    font-size: 25px;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #333;
    }

    .nav-links.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}





/* service list */

body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.services-container {
    padding: 20px;
}

h1 {
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 20px;
}

.service-item {
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.2s;
}

.service-item:hover {
    transform: scale(1.05);
}

.service-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.service-item a {
    display: block;
    margin-top: 10px;
    text-decoration: none;
    font-weight: bold;
    color: #007BFF;
}

.service-item a:hover {
    color: #0056b3;
}

.view-more-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.view-more-btn:hover {
    background-color: #0056b3;
}

/* photo slide view service list */
/*
.section {
    margin: 40px 0;
}
.section h2 {
    color: #e91e63;
}
.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.gallery {
    display: flex;
    overflow: hidden;
    width: 1200px;
    scroll-behavior: smooth;
}
.gallery a {
    text-decoration: none;
    color: black;
    min-width: 200px;
    margin: 2 5px;
    text-align: center;
}
.gallery img {
    width: 200px;
    height: 150px;
    border-radius: 10px;
    transition: transform 0.3s;
}
.gallery img:hover {
    transform: scale(1.1);
}
.prev, .next {
    background-color: #e91e63;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.prev {
    left: 5px;
}
.next {
    right: 5px;
}



.image-wrapper {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.image-wrapper img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}




/* service list */

.services-section {
  text-align: center;
  padding: 10px;
}


.service-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}


.service-item {
  width: 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
}

.view-more-btn {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  margin-top: 20px;
}

.button-wrapper {
  width: 100%;
  text-align: center;
}

/*
#viewMoreBtn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}
*/




/* Footer Base */
.site-footer {
    background-color: #f9f9f9;
    color: #333;
    padding: 40px 20px 20px;
    border-top: 1px solid #ddd;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-section {
    flex: 1 1 220px;
    margin: 10px;
  }
  
  .footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #555;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin: 8px 0;
  }
  
  .footer-section ul li a {
    text-decoration: none;
    color: #333;
    transition: 0.3s;
  }
  
  .footer-section ul li a:hover {
    color: #ff6600;
  }
  
  /* Category Icons */
  .icon-list li {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .icon-list i {
    color: #ff6600;
  }
  
  /* App */
  .play-store-btn {
    width: 150px;
    margin-top: 10px;
  }
  
  .social-icons {
    margin-top: 15px;
  }
  
  .social-icons a {
    margin-right: 10px;
    font-size: 20px;
    color: #333;
  }
  
  .social-icons a:hover {
    color: #ff6600;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #ccc;
  }
  


  
  /* Newsletter */
  /*
  .newsletter {
    text-align: center;
    background: #fff;
    padding: 20px;
    margin: 30px auto 10px;
    max-width: 500px;
    border-radius: 8px;
  }
  
  .newsletter input {
    padding: 10px;
    width: 60%;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .newsletter button {
    padding: 10px 20px;
    background-color: #ff6600;
    color: #fff;
    border: none;
    border-radius: 4px;
    margin-left: 10px;
    cursor: pointer;
  }
  
  .newsletter .msg {
    margin-top: 10px;
  }
  



  /* Rating Stars */
  /*
  .rating-box {
    text-align: center;
    margin: 20px auto;
  }
  
  .stars i {
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
  }
  
  .stars i.active {
    color: gold;
  }
*/
  
  
 /* Font Awesome CDN (add this inside <head> in your HTML file) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* WhatsApp Floating Button Styling */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 15px;
  font-size: 24px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #20b954;
}


  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-section {
      margin-bottom: 20px;
    }
  
    .newsletter input {
      width: 90%;
      margin-bottom: 10px;
    }
  
    .newsletter button {
      width: 90%;
      margin: 10px 0 0 0;
    }
  }



/*  this is service area css */

  .nav-links-village {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}

.nav-links-village .dropdown {
  margin-bottom: 10px;
  position: relative;
}

.nav-links-village .dropdown > a {
  display: block;
  padding: 10px 15px;
  background: #3498db;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

.nav-links-village .dropdown-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin-top: 5px;
  background-color: #f1f1f1;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.nav-links-village .dropdown:hover .dropdown-menu {
  display: block;
}

.nav-links-village .dropdown-menu li a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
}

.nav-links-village .dropdown-menu li a:hover {
  background-color: #ddd;
}



/* sliding */


/*
.carousel-container {
    position: relative;
    overflow: hidden;
    width: 90%;
    margin: auto;
}

.gallery {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: max-content;
}

.gallery a {
    flex: 0 0 auto;
    width: 200px;
    margin-right: 10px;
    text-align: center;
}

.prev, .next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1;
}

.prev { left: 0; }
.next { right: 0; }

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

#pauseBtn {
    font-size: 20px;
    margin-right: 15px;
    cursor: pointer;
}

#slideIndicator {
    font-weight: bold;
}


  
