/* Theme Colors */
.bg-theme-primary{
  background-color:#440244 !important;
}
.bg-theme-secondary{
  background-color:#021ba0 !important;
}
.text-theme-primary{
  color:#440244 !important;
}
.text-theme-secondary{
  color:#021ba0 !important;
}

/* Mobile dropdown fix */
@media (max-width:1199px){

  .navbar-nav .nav-item{
    display:block !important;
  }

  .navbar-nav .nav-item span{
    display:none !important;
  }

  .navbar-nav .dropdown-menu{
    text-align:left;
  }

}


/* Hide desktop header below 1200px */
@media (max-width:1199px){
  .desktop-only{
    display:none !important;
  }
}


/* Desktop menu spacing fix */
@media (min-width:1200px){
  .navbar-nav .nav-link{
    padding-left:70px !important;
    padding-right:70px !important;
  }
}

.about-img-wrapper{
    width:100%;
    height:450px;
    overflow:hidden;
    border-radius:15px;
}

.about-img{
    width:100%;
    height:100%;
    object-fit:cover;
}


/* ================= SECTION ================= */
.eye-review-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #450245, #6a0a6a);
  color: #fff;
  overflow: hidden;
}

.eye-review-section .section-tag {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  color: #f4d9f4;
  margin-bottom: 10px;
  display: inline-block;
}

.eye-review-section .section-title {
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.eye-review-section .section-desc {
  opacity: 0.95;
  max-width: 420px;
}

/* ================= CARD ================= */
.review-card {
  background: #ffffff;
  color: #333;
  padding: 28px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  max-width: 450px;
  margin: 0 auto;
  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.review-no {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #450245, #6a0a6a);
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.review-card h5 {
  color: #450245;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.review-card p {
  font-size: 15px;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .eye-review-section {
    text-align: center;
  }

  .eye-review-section .section-desc {
    margin: auto;
  }
}

@media (max-width: 412px) {
  .eye-review-section {
    padding: 50px 15px;
  }

  .eye-review-section .section-title {
    font-size: 22px;
  }

  .review-card {
    padding: 22px;
  }
}

.service-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* Image safe */
.service-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Content area */
.service-content {
  position: relative;
  padding: 20px;
  overflow: hidden;
}

/* Overlay ONLY inside content */
.service-content::before {
  content: "";
  position: absolute;
  inset: 0;   /* top:0 left:0 right:0 bottom:0 */
  background: #450245;
  transform: translateY(100%);
  transition: 0.4s ease;
  z-index: 1;
}

.service-card:hover .service-content::before {
  transform: translateY(0);
}

/* Text above overlay */
.service-content h5,
.service-content p {
  position: relative;
  z-index: 2;
  transition: 0.3s;
}

.service-card:hover h5,
.service-card:hover p {
  color: #fff;
}

.service-card:hover {
  transform: translateY(-5px);
}
.faq-tabs .list-group-item {
  border: 0;
  margin-bottom: 6px;
  border-radius: 8px;
  font-weight: 500;
  background-color: #450245;
  color: #fff;
  cursor: pointer;
}

.faq-tabs .list-group-item.active {
  background-color: #6a0d6a;
  color: #fff;
}

.faq-content p {
  color: #333;
}

@media (max-width: 412px) {
  .faq-content {
    font-size: 14px;
  }
}

.text-theme {
  color: #450245;
}

.bg-theme {
  background-color: #450245;
}

.btn-theme {
  background-color: #450245;
  color: #fff;
  font-weight: 500;
}

.btn-theme:hover {
  background-color: #320132;
}