/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
.contact-text {
  margin-left: 8px;
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .contact-text {
    font-size: 14px;
  }
}
/* Contact icons styles */
.contact-icons-list {
  display: flex;
  gap: 18px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-icon-link {
  color: #333;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.contact-icon-link:hover {
  color: #3498db;
}

.social-text {
  color: #fff;
  font-size: 20px;
  margin-right: 8px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .contact-icons-list {
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    gap: 24px;
  }
  .contact-icons-list i {
    font-size: 16px;
  }
}
/* Sidebar menu for mobile */
@media (max-width: 991px) {
  .main-menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0,0,0,0.08);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 2000;
    padding: 40px 20px 20px 20px;
    overflow-y: auto;
  }
  .main-menu.show {
    transform: translateX(0);
  }
  .navbar-toggler {
    display: block !important;
    z-index: 2100;
    position: relative;
  }
  .navbar-toggler.close-icon {
    position: absolute;
    top: 12px;
    left: 12px;
    right: auto;
    font-size: 1.5rem;
    line-height: 1;
    padding: 2px 8px;
    z-index: 2101;
    background: none;
    border: none;
    color: #333;
  }
  .menu-overlay {
    display: none;
  }
  .menu-overlay.active {
    display: block;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1999;
  }
  .nav-link-active,
  .nav-link:active {
    background: #3498db !important;
    color: #fff !important;
    border-radius: 4px;
    transition: background 0.2s;
  }
}
@media (min-width: 992px) {
  .main-menu {
    display: block !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    box-shadow: none !important;
    transform: none !important;
    padding: 0 !important;
  }
  .navbar-toggler {
    display: none !important;
  }
  .menu-overlay {
    display: none !important;
  }
}

.nav-link-active,
.nav-link:active {
    background: #f0f4ff;
    color: #1a237e !important;
    border-radius: 4px;
    transition: background 0.2s;
}

.testimonial-slider .swiper-slide {
  height: 100%;
  display: flex;
}

.testimonial-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 10px;
  height: 100%;
  background: #fff;
}

.testimonial-body {
  margin-top: 15px;
}

.testimonial-rating i {
  color: #fbc02d;
  margin-right: 4px;
}

.branch-address-box:hover .branch-connect-row a i {
  color: #fff !important;
  transition: color 0.2s;
}
.branch-address-box {
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
}

.branch-address-box:hover {
  background-color: var(--accent-color);
  color: #ffffff;
}

.branch-address-box:hover h5,
.branch-address-box:hover p,
.branch-address-box:hover strong {
  color: #ffffff;
}

.coaching_single-content {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s, transform 0.3s;
    min-width: 0;
}

.coaching_single-content:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-4px) scale(1.02);
}

.landingLogo {
  width: 100px;
}

@media screen and (max-width: 767px) {
  .landingLogo {
    width: 80px;
  }
}
