/* NAVBAR */
.navbar .nav-link {
  font-weight: 500;
  color: #1f2d3d;
  position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #0d6efd;
}

/* Dropdown styling */
.dropdown-menu {
  border-radius: 12px;
  padding: 10px;
  min-width: 240px;
}

.dropdown-item {
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: #f1f7ff;
  color: #0d6efd;
}

/* Buttons */
.navbar .btn {
  border-radius: 30px;
  font-weight: 600;
}

/* Mobile spacing fix */
@media (max-width: 991px) {
  .navbar-nav {
    gap: 0;
  }
}
.page-header {
  min-height: 280px;
  display: flex;
  align-items: center;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  z-index: 2;
}

.page-header .container {
  z-index: 3;
}

.page-header h1 {
  font-weight: 700;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
}

/* HERO SLIDER */
.hero-slider {
  margin: 20px;
  border-radius: 24px;
  overflow: hidden;
}

.hero-slider .carousel-item {
  height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 38, 60, 0.9) 0%, rgba(5, 38, 60, 0.7) 40%, rgba(5, 38, 60, 0.2) 70%, rgba(5, 38, 60, 0) 100%);
  z-index: 1;
}

/* Content */
.hero-slider .container {
  position: relative;
  z-index: 2;
}

.hero-tag {
  color: #cce7ff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
  display: inline-block;
}

.hero-title {
  color: #fff;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

/* Buttons */
.hero-buttons .btn {
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 8px;
}

/* Controls styling */
.carousel-control-prev,
.carousel-control-next {
  width: 6%;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 44px;
  }
}
@media (max-width: 576px) {
  .hero-slider .carousel-item {
    height: auto;
    padding: 100px 0;
  }
  .hero-title {
    font-size: 32px;
  }
}
.package-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Image */
.package-img {
  position: relative;
  overflow: hidden;
}

.package-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* Badge */
.badge-sale {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff3b30;
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  z-index: 1;
}

/* Body */
.package-body {
  padding: 20px;
}

.package-body h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

/* Meta */
.package-meta {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

/* CTA */
.package-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.package-cta .btn {
  border-radius: 30px;
  padding: 8px 18px;
  font-weight: 600;
}

/* Price */
.price small {
  color: #777;
}

.price .amount {
  font-size: 26px;
  font-weight: 800;
}

/* Footer */
.package-footer {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666;
}

.package-footer i {
  margin-right: 6px;
  color: #0d6efd;
}

.hero-cta {
  position: relative;
  padding: 120px 0;
  background: url("../images/hero-bg.jpg") no-repeat center center/cover;
  color: #fff;
}

/* Overlay */
.hero-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55));
  z-index: 1;
}

.hero-cta .container {
  position: relative;
  z-index: 2;
}

/* Subtitle */
.cta-subtitle {
  font-family: "Georgia", serif;
  font-style: italic;
  font-size: 18px;
  opacity: 0.9;
  display: inline-block;
  margin-bottom: 20px;
}

/* Title */
.cta-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

/* Author */
.cta-author {
  font-size: 16px;
  opacity: 0.9;
}

/* Button */
.cta-btn {
  border-radius: 40px;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
  .cta-title {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .hero-cta {
    padding: 80px 20px;
  }
  .cta-title {
    font-size: 30px;
  }
}
.testimonials-section {
  background: #f6f7fc;
}

/* Card */
.testimonial-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Header */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-header h5 {
  margin: 0;
  font-weight: 700;
}

.testimonial-header small {
  color: #777;
}

/* Avatar */
.avatar {
  position: relative;
  width: 56px;
  height: 56px;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Play icon */
.play-icon {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  background: #0d6efd;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* Title */
.testimonial-title {
  font-weight: 700;
  margin-bottom: 12px;
}

/* Text */
.testimonial-text {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

.faq-section {
  background: #fff;
}

.faq-wrapper {
  max-width: 900px;
}

/* Item */
.faq-item {
  background: #f2f2f2;
  border-radius: 14px;
  margin-bottom: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Active */
.faq-item.active {
  background: #fff;
  border: 2px solid #2f7cff;
}

/* Question */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 26px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* Icon */
.faq-question .icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-question .icon::before,
.faq-question .icon::after {
  content: "";
  position: absolute;
  background: #333;
}

.faq-question .icon::before {
  width: 12px;
  height: 2px;
  top: 9px;
  left: 4px;
}

.faq-question .icon::after {
  width: 2px;
  height: 12px;
  top: 4px;
  left: 9px;
}

/* Minus icon when open */
.faq-question:not(.collapsed) .icon::after {
  display: none;
}

/* Answer */
.faq-answer {
  padding: 0 26px 24px;
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

/* STATS BAR */
.stats-bar {
  background: #f4f6fb;
}

.stat-item i {
  font-size: 28px;
  color: #2f7cff;
}

.stat-item h3 {
  font-weight: 700;
  margin: 5px 0;
}

/* CONTACT STRIP */
.footer-contact {
  background: #0b0b0b;
  color: #fff;
}

.contact-items {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-box i {
  font-size: 26px;
  color: #2f7cff;
}

/* MAIN FOOTER */
.main-footer {
  background: #050505;
  color: #bbb;
}

.main-footer h5,
.footer-logo {
  color: #fff;
  font-weight: 600;
}

.footer-logo small {
  font-size: 14px;
  color: #2f7cff;
}

.main-footer ul {
  list-style: none;
  padding: 0;
}

.main-footer ul li {
  margin-bottom: 10px;
}

.main-footer ul li a {
  color: #bbb;
  text-decoration: none;
}

.main-footer ul li a:hover {
  color: #2f7cff;
}

/* Social */
.social-icons a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  margin-right: 8px;
}

/* COPYRIGHT */
.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding: 18px 0;
  color: #888;
  font-size: 14px;
}

.home-about {
  background: #fff;
}

.section-subtitle {
  color: #2f7cff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  margin-top: 10px;
}

.home-about p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

/* Button */
.about-btn {
  border-radius: 30px;
  padding: 12px 32px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.35);
}

/* Image */
.about-image img {
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 992px) {
  .section-title {
    font-size: 30px;
  }
}

/*# sourceMappingURL=style.css.map */
