/* NAVBAR */
.navbar {
  padding: 0px 0;
}

.navbar-brand {
  font-size: 22px;
}

.nav-link {
  margin-left: 15px;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--primary);
}

/* NAV BUTTON */
.nav-btn {
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 500;
}

/* BETTER ALIGNMENT */
.navbar-nav .nav-link {
  margin-right: 10px;
}


.site-logo{
   width: 85px;
   height: 85px;
   object-fit: contain;
}



/* FOOTER */
.footer {
  background: #111827;
  color: #ccc;
  padding: 50px 0 20px;
}

.footer-title {
  color: #fff;
  margin-bottom: 15px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 20px;
  padding-top: 15px;
  font-size: 14px;
}




/* HERO */
/* .hero {
  background: linear-gradient(135deg, #6C63FF, #4F46E5);
  color: white;
  padding: 80px 0;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero-search {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.hero-search input {
  width: 300px;
  padding: 10px;
  border-radius: 30px 0 0 30px;
  border: none;
}

.hero-search button {
  padding: 10px 20px;
  border: none;
  background: white;
  color: #333;
  border-radius: 0 30px 30px 0;
} */

/* HERO IMAGE BACKGROUND */
.hero {
  position: relative;
  height: 90vh;
  background: url('../../website/assets/images/hero11.jpg ') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 40px;
  font-weight: 600;
  margin-top:170px;
}

.hero p {
  margin-top: 10px;
  font-size: 18px;
}

/* SEARCH */
/* .hero-search {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

.hero-search input {
  width: 320px;
  padding: 12px;
  border: none;
  border-radius: 30px 0 0 30px;
}

.hero-search button {
  padding: 12px 20px;
  border: none;
  background: var(--primary);
  color: white;
  border-radius: 0 30px 30px 0;
} */
 /* SEARCH WRAPPER */
.search-wrapper {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 50px;
  padding: 5px;
  width: 100%;
  max-width: 500px;
  margin: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ICON */
.search-icon {
  margin-left: 15px;
  color: #999;
  font-size: 16px;
}

/* INPUT */
.search-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px;
  font-size: 14px;
  border-radius: 50px;
}

/* BUTTON */
.search-wrapper button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 500;
  transition: 0.3s;
}

/* HOVER EFFECT */
.search-wrapper button:hover {
  background: #574bdb;
}

/* FOCUS EFFECT */
.search-wrapper:focus-within {
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}












/* FILTER */
/* .quick-filter {
  background: #fff;
  padding: 20px 0;
  margin-top: -30px;
  border-radius: 10px;
} */

/* QUICK FILTER SECTION */
.quick-filter {
  margin-top: -20px; /* 🔥 overlaps hero */
  position: relative;
  z-index: 0;
  /*20*/
}

/* FILTER CARD */
.filter-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* INPUTS */
.filter-card .form-control {
  height: 50px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

/* BUTTON */
.filter-card .btn {
  height: 50px;
  border-radius: 10px;
  font-weight: 500;
}

.quick-filter::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #f5f7fb);
  top: -60px;
  left: 0;
  z-index: -1;
}



/* PROFILE CARD */
.profile-card {
  background: white;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.profile-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 10px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.swiper-slide {
  height: auto;
}

/* FIX SWIPER HEIGHT ISSUE */
.profileSwiper .swiper-wrapper {
  align-items: stretch;
}

/* MAKE SLIDES FULL HEIGHT */
.profileSwiper .swiper-slide {
  height: auto;
  display: flex;
}

/* CARD FULL HEIGHT */
.profileSwiper .profile-card {
  width: 100%;
  height: 100%;
}

.profileSwiper {
  padding-bottom: 0px;
  border-radius: 15px;
}

/* PROFILE CARD */


/* ABOUT */
.about-home {
  padding: 60px 0;
}

/* CTA */
/* .cta {
  background: var(--primary);
  color: white;
  padding: 60px 0;
} */





/* profile page */
/* FILTER */
/* .filter-box {
  background: white;
  padding: 15px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
} */

/* FILTER BOX */
.filter-box {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 25px;
}

/* INPUTS */
.filter-box .form-control {
  border-radius: 8px;
  height: 45px;
}

/* SELECT2 HEIGHT FIX */
.select2-container .select2-selection--single {
  height: 45px !important;
  display: flex !important;
  align-items: center !important;
  border-radius: 8px;
}

/* TEXT CENTER ALIGN */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: normal !important;
  padding-left: 12px !important;
  display: flex;
  align-items: center;
  height: 100%;
}

/* DROPDOWN ARROW ALIGN */
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100% !important;
  right: 10px;
}

.form-control {
  height: 45px;
}



/* BUTTON */
.filter-box .btn {
  height: 45px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.select2-container .select2-selection--single {
  /* height: 45px; */
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 5px;
}

/* BUTTON ALIGN FIX */
.filter-box .btn {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}




/* PROFILE CARD (MODERN) */
.profile-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.profile-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.profile-card img {
  width: 100%;
  /*height: auto !important;*/
  height: 420px;
  object-fit: cover;
  object-position: top;
}

/* CONTENT */
.profile-content {
  padding: 15px;
  text-align: left;
}

.profile-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.profile-info {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

/* TAGS */
.profile-tags {
  font-size: 13px;
  margin-bottom: 10px;
}

.profile-tags span {
  background: #f3f4f6;
  padding: 5px 10px;
  border-radius: 8px;
  margin-right: 5px;
}

/* BUTTON */
.profile-btn {
  width: 100%;
  border-radius: 8px;
  padding:10px 10px;
  margin-top: 20px;
}

/* PAGINATION */
.pagination .page-link {
  color: var(--primary);
}

.pagination .active .page-link {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}








/* HERO */
.about-hero {
  background: linear-gradient(135deg, #6C63FF, #4F46E5);
  color: white;
  padding: 80px 0;
}

/* ABOUT */
.about-section {
  padding: 60px 0;
}

/* MISSION */
.mission-section {
  background: #f9fafb;
  padding: 60px 0;
}

.mission-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* WHY */
.why-section {
  padding: 60px 0;
}

.why-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.why-card i {
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 10px;
}

/* CTA */
.about-cta {
  background: var(--primary);
  color: white;
  padding: 60px 0;
}









/* HERO */
.contact-hero {
  background: linear-gradient(135deg, #6C63FF, #4F46E5);
  color: white;
  padding: 70px 0;
}

/* SECTION */
.contact-section {
  padding: 60px 0;
}

/* FORM BOX */
.contact-form-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* INFO BOX */
.contact-info-box {
  background: var(--primary);
  color: white;
  padding: 30px;
  border-radius: 12px;
}

.contact-info-box i {
  margin-right: 10px;
}

/* SOCIAL */
.social-icons i {
  font-size: 20px;
  margin-right: 15px;
  cursor: pointer;
}

/* MAP */
.map-section iframe {
  display: block;
}








/* CARD */
.profile-details-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* IMAGE */
.profile-details-image img {
  width: 100%;
  border-radius: 12px;
}

/* TEXT */
.profile-details-card h2 {
  font-weight: 600;
}


.profile-details-card h5 {
  margin-top: 20px;
  font-weight: 600;
  color: var(--primary);
}

.profile-details-card .row div {
  margin-bottom: 10px;
}





/* SECTION */
.why-choose {
  padding: 70px 0;
  background: #f9fafb;
}

/* SUBTITLE */
.section-subtitle {
  color: #666;
  max-width: 600px;
  margin: auto;
}

/* CARD */
.why-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* HOVER EFFECT */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* ICON */
/* ICON CIRCLE */
.why-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #6C63FF, #4F46E5);
  color: white;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 15px;

  /* IMPORTANT FIX */
  line-height: 1;
}

/* ICON */
.why-icon i {
  font-size: 26px;
  color: white;
}

/* .why-icon {
  box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
} */

/* TITLE */
.why-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.why-card p {
  font-size: 14px;
  color: #666;
}





/* SECTION */
.how-it-works {
  padding: 80px 0;
  background: #fff;
}

/* WRAPPER */
.how-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 20px;
}

/* LINE (DESKTOP) */
.how-wrapper::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 3px;
  background: #e5e7eb;
  z-index: 0;
}

/* STEP */
.how-step {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 20px;
}

/* STEP NUMBER */
.step-circle {
  width: 35px;
  height: 35px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  margin: 0 auto 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 600;
}

/* ICON */
.step-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #6C63FF, #4F46E5);
  border-radius: 50%;
  margin: 0 auto 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 26px;
}

/* TEXT */
.how-step h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.how-step p {
  font-size: 14px;
  color: #666;
}

/* MOBILE */
@media (max-width: 768px) {

  .how-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .how-wrapper::before {
    display: none;
  }

  .how-step {
    margin-bottom: 30px;
  }

}

.how-step:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}







/* SECTION */
.testimonials {
  padding: 80px 0;
  background: #f9fafb;
}

/* CARD */
.testimonial-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  height: 100%;
}

/* IMAGE */
.testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

/* NAME */
.testimonial-card h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

/* STARS */
.stars {
  color: #fbbf24;
  margin-bottom: 10px;
}

/* TEXT */
.testimonial-card p {
  font-size: 14px;
  color: #666;
}







/* FAQ SECTION */
.faq-section {
  padding: 80px 0;
  background: #f9fafb;
}

/* ACCORDION STYLE */
.accordion-item {
  border: none;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* HEADER BUTTON */
.accordion-button {
  font-weight: 500;
  padding: 18px;
  background: white;
}

/* ACTIVE BUTTON */
.accordion-button:not(.collapsed) {
  background: var(--primary);
  color: white;
}

/* BODY */
.accordion-body {
  font-size: 14px;
  color: #555;
  background: white;
}






/* CTA SECTION */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #6C63FF, #4F46E5);
}

/* BOX */
.cta-box {
  background: rgba(255,255,255,0.08);
  padding: 50px 20px;
  border-radius: 20px;
  color: white;
  backdrop-filter: blur(10px);
}

/* TITLE */
.cta-box h2 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.cta-box p {
  max-width: 600px;
  margin: auto;
  color: #e0e0e0;
}

/* BUTTONS */
.cta-buttons .btn {
  padding: 12px 25px;
  border-radius: 30px;
  margin: 5px;
  font-weight: 500;
}

/* OUTLINE BUTTON */
.btn-outline-light {
  border: 1px solid white;
  color: white;
}

.btn-outline-light:hover {
  background: white;
  color: var(--primary);
}


/* .emoji-box {
  background: #6761de;
  padding: 8px 10px;
  border-radius: 50%;
  font-size: 18px;
  margin-right: 6px;
} */








/* MAIN IMAGE */
/*.main-img {*/
/*  width: 100%;*/
/*  height: 350px;*/
/*  object-fit: contain;*/
/*  border-radius: 12px;*/
/*}*/

/* THUMBNAILS */
.thumb-images {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.thumb-img {
  width: 70px !important;
  height: 70px !important;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.2s;
}

.thumb-img:hover {
  transform: scale(1.05);
}

.thumb-img.active {
  border: 2px solid var(--primary);
}





/* PROMOTION SECTION */
.promo-section{
  padding: 60px 0 10px;
}

/* CARD */
.promo-card{
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  background: #fff;
}

.promo-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* HOVER */
.promo-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* REMOVE LINK STYLE */
.promo-link{
  text-decoration: none;
  display: block;
}

/* MOBILE */
@media(max-width:768px){

  .promo-card img{
    height: 100%;
  }

}










.whatsapp-pulse{
  background:#25D366;
  color:#fff;
  border:none;
  padding:8px 14px;
  border-radius:8px;
  text-decoration:none;
  animation:pulseWhatsapp 1.8s infinite;
}

.whatsapp-pulse:hover{
  color:#fff;
}

@keyframes pulseWhatsapp{
  0%{
    transform:scale(1);
    box-shadow:0 0 0 0 rgba(37,211,102,0.7);
  }

  70%{
    transform:scale(1.05);
    box-shadow:0 0 0 12px rgba(37,211,102,0);
  }

  100%{
    transform:scale(1);
    box-shadow:0 0 0 0 rgba(37,211,102,0);
  }
}

