* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
::selection {
    background: var(--third-color);
    color: #fff;
}

/* COLORS */

:root{
   --main-color: #e91e8f;
  --main-dark: #c2185b;
  --accent-color: #d46a8c;
  --soft-accent: #d98290;
  --light-bg: #fef5fa;
  --gradient-main: linear-gradient( to left, var(--main-color) 0%, var(--light-bg) 60%);
  --gradient: linear-gradient( to top, var(--main-color) 0%, var(--light-bg) 60%);

  --highlight-bg: linear-gradient(180deg, #fff 0%, #fbeff1 100%);
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  --border-radius: 20px;
  --transition: all 0.3s ease;
  --text-dark: #333;
  --text-light: #555;
  --heading-color: #92565D;
    --primary-color:#EB2491;
    --hover:#b80668;
    --third-color:#92565D;
    --secondary-color:#fce3f0;
    --white-color:#ffffff;
    --black-color:#000000;
    --text-color:#444444;
    --gray-color:gray;
    --light-text:#888888;
    --basic-grey:#d9d9d9;
    --light-gray:#ddd;
    --border: #ced4da;
    --success: #4CAF50;
    --warning: #FFC107;
    --danger: #F44336;
    --info: #2196F3;
    --action: #8B4513;
    --box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    --transition: all ease-in-out .3s;
    --placeholder: rgba(128, 128, 128, 0.6);
    --border-radius:8px;
}


.header{
  height: 78px;
}
/* Navbar Base */ 
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 0.6rem 2rem;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
}

/* Logo */
.logo {
  width: 90px;
  cursor: pointer;
}

/* Nav Links */
.nav-center .nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-center .nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-center .nav-links a:hover {
  color: #e91e8f;
}

/* Dropdown-profile */
.dropdown {
  position: relative;
  z-index: 1000;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 25px;
  right: -30px;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  border-radius: 6px;
  list-style: none;
  padding: 10px 0;
  min-width: 140px;
  z-index: 1000;
  pointer-events: auto;
}

.dropdown-menu li {
  padding: 5px 20px;
}

.dropdown-menu li a {
  color: #555;
  font-weight: 400;
  display: block;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0,0,0,0.1);
  pointer-events: auto;
  touch-action: manipulation;
  user-select: none;
}

.dropdown-menu li a:hover {
  color: #e91e8f;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  display: block !important;
  visibility: visible;
  opacity: 1;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-right .dropdown .dropdown-menu li a{
  color: #92565D;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-right .dropdown .dropdown-menu li a:hover{
  color: var(--main-color);
}


.nav-right a{
  text-decoration: none;
  
}


/* Icons */
.nav-right i {
  font-size: 1.3rem;
  color: #92565D;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-right i:hover {
  color: #e91e8f;
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 25px;
  overflow: hidden;
  background-color: #fef5fa;
  transition: all 0.3s ease;
}

.search-bar input {
  border: none;
  outline: none;
  padding: 8px 12px;
  width: 180px;
  font-size: 0.9rem;
  background: transparent;
}

.search-bar button {
  background-color: #fef5fa;
  border: none;
  color: #e91e8f;
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-bar button:hover i {
  color: #c2185b;
}

/* Hide search bar by default on small screens */
.search-bar.hidden {
  display: none;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 1.6rem;
  color: #333;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-center {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-center.active {
    display: block;
    
  }

  .nav-center .nav-links {
    flex-direction: column;
    padding: 15px 0;
    text-align: center;

  }

  .nav-center .nav-links li {
    padding: 10px 0;
  }

  .menu-toggle {
    display: block;
  }
  
  .menu-toggle i{
    color: #92565D;
    transition: color 0.3s ease ;
  }
  .menu-toggle:hover i{
    color: #e91e8f;
  }

  .search-bar {
    display: none;
  }

  .nav-right {
    gap: 15px;
  }

  .search-container{
    display: none;
  }
}


@media (max-width: 576px) {
  .logo {
    width: 100px;
  }

  .nav-right i {
    font-size: 1.2rem;
  }
  
  .nav-right .dropdown {
    position: relative;
  }
  
  .nav-right .dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 160px;
    z-index: 1001;
    margin-top: 5px;
  }
  
  .nav-right .dropdown a {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
  }
  
}


/* DROPDOWN-SERVICES */

/* Wrapper */
.dropdown-services {
  position: relative;
  display: inline-block;
}

/* Main Dropdown Box */
.dropdown-services .dropdown-menu-services {
  position: absolute;
  top: 100%;
  left: -40%;
  background: #ffffff;
  width: 750px;
  max-height: 65vh;
  overflow-y: auto;
  padding: 25px 30px;

  display: none;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 25px;
  row-gap: 12px;

  border-radius: 14px;
  box-shadow: 0px 20px 40px rgba(0,0,0,0.12);

  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: all 0.28s cubic-bezier(0.23,1,0.32,1);
  z-index: 100;
}

/* Hover to show menu */
.dropdown-services:hover .dropdown-menu-services {
  display: grid;
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Title Styling */
.submenu > a {
  font-weight: 600;
  font-size: 15px;
  color: #EB2491 !important;
  border-bottom: 1px solid #ececec;
  padding-bottom: 6px;
  margin-bottom: 8px;
  display: block;
}

/* List items */
.submenu-items {
  margin-top: 4px;
}

.submenu-items li {
  list-style: none;
  padding: 4px 0;
}

.submenu-items li a {
  font-size: 15px;
  color: var(--third-color) !important;
  display: block;
  transition: 0.25s ease;
}

.submenu-items li a:hover {
  color: #c2185b !important;
  transform: translateX(6px);
}

/* Arrow animation */
.dropdown-toggle i {
  margin-left: 6px;
  transition: 0.3s;
}

.dropdown-services:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

/* Scrollbar Styling (Optional & Clean) */
.dropdown-menu-services::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu-services::-webkit-scrollbar-thumb {
  background: #e3e3e3;
  border-radius: 10px;
}

.dropdown-menu-services::-webkit-scrollbar-thumb:hover {
  background: #cdcdcd;
}


/* ---------------------------- */
/*        MOBILE VERSION        */
/* ---------------------------- */

@media(max-width: 1024px) {

  .dropdown-services .dropdown-menu-services {
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  top: 100%;
  left: -30%;
  }


}

@media(max-width: 900px) {

  .dropdown-services .dropdown-menu-services {
    position: static;
    min-width: 100%;
    display: none;
    opacity: 1;
    transform: none;
    padding: 10px 15px;
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .dropdown-services.active > .dropdown-menu-services {
    display: block;
  }
}




/* Footer Section */
/* ========================= FOOTER BASE ========================= */
.footer {
  background: #FFF5FA;
  font-family: 'Poppins', sans-serif;
  padding-top: 10px;
  border-top: 1px solid #f4b2c677;
}

/* ========================= FOOTER DETAILS ========================= */
.footer .details {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 30px 60px;
  border-bottom: 1px solid #ddd;
  gap: 25px;
}

/* Logo / Column Structure */
.footer .details div {
  flex: 1 1 200px;
  min-width: 170px;
}

.footer .details .logo img {
  width: 100px;
  height: auto;
  margin-bottom: 8px;
}

.footer .details .logo p {
  width: 90%;
  font-size: 13px;
  color: #555;
  line-height: 1.4;
}

/* ========================= HEADING ========================= */
.footer .details div h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

/* ========================= LINKS ========================= */
.footer .columns ul li {
  list-style: none;
  padding-bottom: 4px;
  font-size: 13px;
  color: #444;
}

.footer .columns ul li a {
  text-decoration: none;
  color: #444;
  font-size: 13px;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer .columns ul li a:hover {
  transform: scale(1.03);
  color: #e91e8f;
}

/* ========================= SOCIAL LINKS ========================= */
.social-links {
  margin-top: 8px;
}

.social {
  font-size: 18px;
  margin-right: 8px;
}

.social i {
  font-size: 18px;
  padding-inline: 4px;
  transition: all 0.2s ease-in-out;
}

.social:hover i {
  transform: scale(1.15);
  opacity: 0.8;
}

/* Brand Colors */
.fa-facebook-f, .fa-facebook { color: #1877f2; }
.fa-instagram { color: #e4405f; }
.fa-twitter { color: #1da1f2; }
.fa-x-twitter{ color: black; }
.fa-linkedin-in { color: #0077b5; }
.fa-youtube { color: #ff0000; }
.fa-whatsapp { color: #25D366; }

/* ========================= COPYRIGHT ========================= */
.footer .copyright {
  width: 100%;
  text-align: center;
  color: #666;
  font-size: 12px;
  padding: 12px 0;
}

/* ========================= RESPONSIVE BREAKPOINTS ========================= */

/* ----------- Tablets & Medium Screens ----------- */
@media (max-width: 1024px) {
  .footer .details {
    padding: 25px 40px;
    gap: 20px;
  }

  .footer .details div h4 {
    font-size: 14px;
  }

  .footer .columns ul li,
  .footer .columns ul li a {
    font-size: 12.5px;
  }
}

/* ----------- Tablets (Portrait) ----------- */
@media (max-width: 768px) {
  .footer .details {
    padding: 20px 25px;
    justify-content: space-between;
  }

  .footer .details div {
    flex: 1 1 45%;
    min-width: 45%;
    text-align: left;
  }

  .footer .details .logo img {
    width: 85px;
  }

  .footer .details .logo p {
    width: 100%;
  }
}

/* ----------- Mobile Landscape ----------- */
@media (max-width: 600px) {
  .footer .details div {
    flex: 1 1 100%;
  }

  .footer .details {
    gap: 30px;
  }

  .footer .details .logo img {
    width: 80px;
  }
}

/* ----------- Small Phones (Full Stack) ----------- */
@media (max-width: 450px) {
  .footer .details {
    padding: 20px 15px;
    gap: 25px;
  }

  .footer .details div {
    text-align: left;
  }

  .footer .details div h4 {
    font-size: 13.5px;
  }

  .footer .columns ul li,
  .footer .columns ul li a {
    font-size: 12px;
  }

  .social i {
    font-size: 16px;
  }
}



/* Back to Top Button */
#backToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background-color: #d98290;
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  border-radius: 50%;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  display: none; /* Hidden by default */
  width: auto !important;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
}

#backToTopBtn:hover {
  background-color: #e91e8f;
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

/* 
#backToTopBtn i {
  pointer-events: none;
} */







/* scrollbar  */
.scrollbar{
  padding-bottom: 30px;
}
.scrollbar::-webkit-scrollbar{
  /* height: 5px;
  margin-top: 20px; */
  display: none;
}
.scrollbar::-webkit-scrollbar-track{
  background-color: #f1f1f1;
  border-radius: 10px;
}
.scrollbar::-webkit-scrollbar-thumb{
  background-color: #fef5fa;
  border-radius: 10px;
}
.scrollbar::-webkit-scrollbar-thumb:hover{
  background-color: #e91e8f;
  cursor: pointer;
}

/* all section container */
.section{
  /* text-align: center; */
  padding: 35px 50px !important;
  margin-inline: 40px;  
}

/* all sections title */
.section-title {
  font-size: 2.1rem;
  color: #8a3b49;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 1px;
  position: relative;
}
.section-title i {
  color: #e91e8f;
  font-size: 1.8rem;
}
.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #d98290;
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}
@media only screen and (max-width:930px){
  .section{
  padding: 20px 30px !important;
}
}
/* .section-content{
} */

/* card border */
.card-border{
  border : 1px solid #eee ;
}

/* image container */
.img{
  border-radius: 15%;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* View More Button */
.view-more-btn {
  width: 20%;
  font-size: 16px;
  background-color: transparent;
  border: 2px solid #e91e8f;
  color: #e91e8f;
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 40px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.view-more-btn:hover {
  transform: translateY(-3px);
  background-color: #e91e8f;
  color: #fff;
}

.view-more-btn .arrow {
  display: inline-block;
  margin-left: 6px;
  font-size: large;
  transition: transform 0.5s ease;
}

.view-more-btn:hover .arrow {
  transform: translateX(15px);
}

/* responsive globally used elements */
@media (max-width: 992px) {

}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }
  .view-more-btn {
    width: 60%;
  }
}

@media (max-width: 567px) {
  .section{
    margin-inline: 0px;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .section-title i {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .view-more-btn {
    width: 80%;
    font-size: 14px;
  }
  .section{
    margin-inline: 0px;
  }
}

/* BUTTONS */

.btn{
    font-size: 1rem;
    border-radius: var(--border-radius);
    border: none;
    padding-inline: 1rem;
    padding-block: .5rem;
    outline: none;
    cursor: pointer;
    transition: var(--transition);

}
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    transition: var(--transition);
}
.btn-primary:hover{
    background-color: var(--third-color);
}
.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white-color);
}
.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}
.btn-transparent {
    background-color:transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-transparent:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.search-container {
   width: 240px; /* reduced from 320px */
  position: relative;
}
p{
  font-size: 1rem;
  line-height: 1.6;
}

/* Search Input + Icon Wrapper */
.search-box {
  display: flex;
  align-items: center;
  border: 1.5px solid #e0b7d3;
  background: #fff5fa;
  border-radius: 30px;
  padding: 5px 12px;
  transition: all 0.3s ease-in-out;
}

.search-box:focus-within {
  border-color: #e91e63;
  box-shadow: 0px 3px 8px rgba(233, 30, 99, 0.25);
}

/* Input */
#searchInput {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
}

/* Search Button */
#searchBtn {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--third-color);
  cursor: pointer;
  padding: 5px;
  transition: 0.2s ease;
}

#searchBtn:hover {
  transform: scale(1.1);
}

/* Suggestions Dropdown */
#suggestionBox {
  list-style: none;
  padding: 0;
  margin-top: 6px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  max-height: 200px;
  overflow-y: auto;
  position: absolute;
  width: 100%;
  z-index: 1000;
  box-shadow: 0px 6px 12px rgba(0,0,0,0.1);
}

#suggestionBox li {
  padding: 12px;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 15px;
}

#suggestionBox li:hover {
  background: #ffe3ec;
}

.hidden {
  display: none;
}

  /* WhatsApp Floating Button */
   .whatsapp-btn {
     position: fixed;
      bottom: 100px; 
      right: 35px; 
      background-color: #25D366; 
      text-decoration: none;
      border-radius: 50%; 
      width: 55px; 
      height: 55px; 
      display: flex; 
      align-items: center; 
      justify-content: center; 
      font-size: 28px; 
      box-shadow: 0 4px 10px rgba(0,0,0,0.2); 
      cursor: pointer; 
      z-index: 1000; 
      transition: transform 0.3s ease; 
    }                                                  
    .whatsapp-btn i{
      color: white; 
    }
    .whatsapp-btn:hover {
       transform: scale(1.1); 
      }

.whatsapp-btn:hover {
  transform: scale(1.1);
  background-color: #1ebd5d;
}
