:root {
  --primary: #014d5b;     /* Main Teal */
  --primary-light: #026f85;
  --primary-dark: #013842;
  --secondary: #fe9d0e;   /* Main Orange */
  --secondary-light: #ffb84d;
  --secondary-dark: #cc7c0b;
  --text-light: #ffffff; /* White */ 
  --text-dark: #111111; /* Black/Dark */ 
  --shadow-primary: 0 4px 8px rgba(236, 0, 0, 0.3);
}

/* Global */
body {
  font-family: 'Poppins', 'Sans-Serif';
  background-color: #ccccd2;
}

.bg-light {
  background-color: #f0f0f0 !important;
}

/* Buttons */
.btn {
  font-weight: 500;
  transition: .5s;
}
.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--text-light) !important;
}
.btn-primary:hover {
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  box-shadow: var(--shadow-primary); /* ✅ red shadow remove, root shadow use */
}

.btn-sm-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-weight: normal;
  border-radius: 0;
}
 
.navbar .nav-item .dropdown-menu .dropdown-item{
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  padding: 8px 16px;
}

/* Navbar */
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar-light .navbar-brand h2 {
  color: var(--primary) !important; /* LOGO color */
}

.navbar-light .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: var(--text-dark) !important;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link  {
      margin-right: 0;
      padding: 10px 0;
  }

  .navbar-light .navbar-nav {
      border-top: 1px solid #EEEEEE;
  }
}

.navbar-light,
.navbar-light .navbar-brand {
 height: 75px;
}

.navbar-light.sticky-top {
  top: -100px;
  transition: .5s;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
      display: block;
      border: none;
      margin-top: 0;
      top: 150%;
      opacity: 0;
      visibility: hidden;
      transition: .5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
      top: 100%;
      visibility: visible;
      transition: .5s;
      opacity: 1;
  }
}

/* Icons (topbar + social) */
.text-primary {
  color: var(--primary) !important;
}
.bg-white.text-primary:hover {
  background-color: var(--primary) !important;
  color: var(--text-light) !important;
}
.navbar .dropdown-menu {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* ✅ neutral shadow */
  background:;
}

/*navbr*/
/* 🌐 Mobile Navbar Fix - Premium Hover */
@media (max-width: 991.98px) {
  .navbar-nav {
    background: #f6f6f6;
    border-top: 2px solid var(--primary)!important;
    border-bottom: 2px solid var(--primary)!important;
  }

  .navbar-nav .nav-link {
    padding: 12px 0;
    margin: 0;
    color: var(--text-dark) !important;
    font-size: 16px;
    border-bottom: 1px solid #000;
    position: relative;
    transition: all 0.3s ease;
  }

  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }

  /* ✨ Premium Hover Effect */
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: linear-gradient(
      135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%
    );
    color: var(--text-light) !important;
    padding-left: 14px;
  }

  /* 🔽 Dropdown Menu */
  .navbar .dropdown-menu {
    text-align: center;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* ✅ no red shadow */
    background: #fff;
  }

  .navbar .dropdown-menu .dropdown-item {
    padding: 12px 0;
    margin: 0;
    color: var(--text-dark) !important;
    font-size: 16px;
    border-bottom: 1px solid #000;
    position: relative;
    transition: all 0.3s ease;
  }

  .navbar .dropdown-menu .dropdown-item:hover {
    background: var(--primary-light);
    color: var(--text-light);
  }

  .navbar-toggler {
    outline: none !important;
    box-shadow: none !important;
  }
}

/*SLIDER*/
/* Slider Buttons */
.slider-btn {
  background-color: var(--primary);
  color: var(--text-light);
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
}

/*about us*/


/*about us*/


/*why choose us */
.why-choose-us {
  background: var(--text-light);
}

.section-header {
  animation: fadeUp 1s ease-in-out;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  position: relative;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 992px) {
  .section-title { font-size: 2rem; }
  .section-subtitle { font-size: 1rem; }
}
@media (max-width: 768px) {
  .section-title { font-size: 1.7rem; }
  .section-subtitle { font-size: 0.95rem; }
}
@media (max-width: 480px) {
  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: 0.9rem; }
  .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link.active{
      color: #000!important;
  }
}

.section-divider {
  width: 80px;
  height: 4px;
  background: var(--secondary);
  margin: 0 auto;
  border-radius: 2px;
  animation: grow 1.2s ease-in-out;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes grow {
  from { width: 0; opacity: 0; }
  to { width: 80px; opacity: 1; }
}

/* Card Styling */
.choose-card {
  background: #fff;
  padding: 25px 20px;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  border-radius: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(30px);
}

.choose-card .icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  background: var(--secondary-light);
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}

.choose-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.choose-card p {
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* Hover Effect */
.choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.choose-card:hover .icon-box {
  background: var(--primary);
  color: var(--text-light);
  transform: scale(1.1);
}

/* Animation */
.fade-in {
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* 🌟 FAQ Section */
.faq-section {
  background: var(--secondary-light); /* हल्का orange background */
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 400;
}

/* Wrapper Flex */
.faq-wrapper {
  gap: 30px;
}

/* FAQ Cards */
.faq-card {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  margin-bottom: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.faq-question {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-dark);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-light);
  color: var(--text-light);
}

.arrow {
  transition: transform 0.4s ease;
  color: var(--primary);
}

.faq-card.active .arrow {
  transform: rotate(90deg);
  color: var(--text-light);
}

.faq-answer {
  padding: 0 20px 20px 20px;
  display: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  padding-top: 20px;
}

.faq-card.active .faq-answer {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Help Card */
.help-section {
  background: var(--text-light);
  border-radius: 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.help-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
  text-align: center;
}

.help-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.help-item:hover {
  transform: translateX(5px);
}

.help-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: transform 0.3s ease;
  color: inherit;
}

.help-link:hover {
  transform: translateX(5px);
}

.help-link .help-icon {
  background: var(--primary-light);
  color: var(--text-light);
}

.help-icon {
  width: 45px;
  height: 45px;
  background: var(--primary-light);
  color: var(--text-light);
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.help-text {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}


/* Responsive */
@media(max-width: 992px){
  .faq-wrapper {
    flex-direction: column;
  }
  .faq-left, .faq-right {
    max-width: 100%;
  }
}

