/* ----------------------- */
/*   🔸 GLOBAL THEME       */
/* ----------------------- */
:root {
  --primary: #f0650b;
  --primary-dark: #f0650b;
  --text-dark: #222;
  --light-bg: #fff;
  --transition: all 0.3s ease;
}

/* ----------------------- */
/*   🔹 TOPBAR             */
/* ----------------------- */
.topbar {
  background: var(--primary);
  color: #fff;
  font-size: 14px;
}
.topbar i {
  color: #c22025;
}
.topbar a {
  transition: var(--transition);
}
.topbar a:hover {
  opacity: 0.9;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .topbar {
    display: none !important;
  }
}

/* ----------------------- */
/*   🔹 NAVBAR             */
/* ----------------------- */
.main-header {
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}
.main-header.sticky {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.logo {
  height: 80px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
}

@media only screen and (max-width: 767px) {
  .logo {
    height: 55px;
  }
  .video-all img {
    height: 390px;
  }
}

.navbar-nav .nav-link {
  color: #222;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
  color: var(--primary);
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--primary);
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
  color: var(--primary);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
  width: 50%;
}

/* Contact Button */
.contact-btn {
  background: var(--primary);
  color: #fff !important;
  border-radius: 30px;
  font-weight: 500;
  padding: 8px 20px;
  transition: var(--transition);
}
.contact-btn:hover {
  background: #0b2553 !important;
  color: #ffff !important;
  border: 2px solid var(--primary);
  transform: translateY(-2px);
}

/* Mobile */
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23f0650b' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(229,82,19,0.9)' stroke-width='3' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Heading Area */
.main-nav {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  background: #fff;
}
.main-nav .navbar {
  padding-left: 0;
  padding-right: 0;
}
.main-nav nav .navbar-nav .nav-item {
  padding-top: 20px;
  padding-bottom: 20px;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu {
  top: 68px !important;
  background: #ffffff !important;
  padding: 0 !important;
  border: 2px solid #f5f5f5 !important;
  border-radius: 0 !important;
  width: 200px !important;
  z-index: 999999 !important;
}
.main-nav nav .navbar-nav .nav-item a {
  color: #333;
  font-weight: 500;
  text-transform: none !important;
  font-size: 15px !important;
  position: relative;
}
.main-nav nav .navbar-nav .nav-item.active a {
  color: #f0650b;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
  color: #444;
  border-bottom: 1px solid #dbdbdb;
}
.mobile-nav.mean-container .mean-nav ul li a.active,
.main-nav nav .navbar-nav .nav-item a:hover,
.main-nav nav .navbar-nav .nav-item a:focus,
.main-nav nav .navbar-nav .nav-item a.active,
.main-nav nav .navbar-nav .nav-item:hover a,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus,
.main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  a.active,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover a {
  color: #f0650b;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover {
  color: #f0650b !important;
}
.main-nav img {
  height: 50px;
}
.mobile-nav img {
  height: 40px;
}
.mean-container .mean-bar {
  background-color: #fff;
  height: 60px;
  z-index: 999999 !important;
}
.mean-container .logo {
  top: 5px;
}
.mean-container img {
  height: 50px;
}
.mean-container a.meanmenu-reveal span {
  background: #f0650b;
}
.mean-container a.meanmenu-reveal {
  color: #f0650b;
}

/* Scroll to Top */
.scroll-top {
  cursor: pointer;
  text-align: center;
  font-size: 22px;
  position: fixed;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  bottom: 20px;
  right: 20px;
  background: #f0650b;
  color: #fff;
  opacity: 0.7;
  z-index: 999999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.scroll-top:hover {
  opacity: 1;
  color: #fff;
  background: #313131;
}

/* ============================== */
/* 🌄 HERO SECTION (FIXED)        */
/* ============================== */

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 0; /* IMPORTANT */
}

/* Background Slide */
.hero-slide {
  position: relative;
  min-height: 85vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.35)
  );
  z-index: 1;
}

/* Container on top */
.hero-slide .container {
  position: relative;
  z-index: 2;
}

/* ---------------- TEXT ---------------- */

.hero-text h1 {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  color: #e5e5e5;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 620px;
}

/* ---------------- BUTTON ---------------- */

.hero-btn {
  background: #f0650b;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.hero-btn i {
  margin-left: 8px;
}

.hero-btn:hover {
  background: #0b2553 !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* ---------------- OWL NAV ---------------- */

.hero-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 25px;
  pointer-events: none;
  z-index: 5;
}

.hero-carousel .owl-nav button {
  pointer-events: all;
  background: linear-gradient(135deg, #f0650b, #c22025);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(194, 32, 37, 0.3);
}

.hero-carousel .owl-nav button:hover {
  transform: scale(1.1);
}

/* ============================== */
/* 📱 RESPONSIVE FIXES            */
/* ============================== */

@media (max-width: 991px) {
  .hero-slide {
    min-height: 70vh;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text p {
    margin: 0 auto 25px;
  }
}

@media (max-width: 575px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }
}

/* 🌟 Modern Special Section */
.special-section {
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.special-heading {
  color: var(--primary);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.special-desc {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
}

/* CTA Button */
.special-btn {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  border: none;
}

.special-btn:hover {
  background: #0b2553 !important;
  color: #fff !important;
  border: 2px solid var(--primary);
  transform: translateY(-2px);
}

/* Image Wrapper */
.special-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.special-image {
  width: 100%;
  border-radius: inherit;
  transition: transform 0.4s ease;
}

.special-image:hover {
  transform: scale(1.05);
}

/* Play Button */
.special-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(194, 32, 37, 0.4);
  transition: all 0.3s ease;
  z-index: 2;
}

.special-video-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  animation: pulsePlay 1.8s ease-out infinite;
}

.special-video-btn:hover {
  background: #fff;
  color: var(--primary);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Play Pulse Animation */
@keyframes pulsePlay {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .special-heading {
    font-size: 30px;
    text-align: center;
  }
  .special-desc {
    text-align: center;
  }
  .special-btn {
    display: block;
    margin: 0 auto;
  }
  .special-image-wrapper {
    text-align: center;
  }
}

/* 🌍 Modern Destination Section */
.destination-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-subtitle {
  color: #555;
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto;
}

/* Destination Cards */
.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Image Wrapper */
.destination-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
}

.destination-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.4s ease;
}

.destination-card:hover .destination-img {
  transform: scale(1.08);
}

/* Overlay + Text */
.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 15%,
    rgba(0, 0, 0, 0.1) 80%
  );
  border-radius: inherit;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 1;
  transition: all 0.3s ease;
  padding-bottom: 20px;
}

.destination-name {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin: 0;
  text-transform: capitalize;
}

/* Button */
.destination-btn {
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.destination-btn:hover {
  background: #0b2553 !important;
  color: #fff !important;
  border: 2px solid var(--primary);
  transform: translateY(-3px);
}

/* Responsive Fixes */
@media (max-width: 991px) {
  .destination-img {
    height: 240px;
  }
  .section-title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .destination-img {
    height: 200px;
  }
  .destination-name {
    font-size: 18px;
  }
}
.destination-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✨ Features (Why Choose Us) Section */
.features-section {
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.features-section .section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
}

.features-section .section-subtitle {
  color: #555;
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto;
}

/* Feature Card */
.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Animated gradient highlight on hover */
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(194, 32, 37, 0.15),
    rgba(255, 255, 255, 0)
  );
  transition: all 0.6s ease;
}
.feature-card:hover::before {
  left: 100%;
}

/* Icon Style */
.feature-icon {
  background: rgba(194, 32, 37, 0.1);
  color: var(--primary);
  font-size: 42px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: #fff;
  transform: rotateY(360deg);
}

/* Text */
.feature-title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.feature-desc {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

/* Responsive Fixes */
@media (max-width: 991px) {
  .feature-card {
    padding: 30px 20px;
  }
  .feature-title {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 36px;
  }
  .feature-title {
    font-size: 18px;
  }
}

.feature-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🎒 Packages Section */
.packages-section {
  background: #fff;
  position: relative;
}

.packages-section .section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
}

.packages-section .section-subtitle {
  color: #555;
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto;
}

/* Package Card */
.package-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Image Section */
.package-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.package-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.package-card:hover .package-img {
  transform: scale(1.07);
}

/* Price Tag */
.package-price {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
}

.package-price del {
  font-size: 13px;
  color: #ffeb99;
  margin-left: 4px;
}

/* Wishlist Button */
.wishlist-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
}

.wishlist-btn a {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.wishlist-btn a:hover {
  background: var(--primary);
  color: #fff;
}

/* Card Content */
.package-content {
  padding: 20px 25px 30px;
}

.package-title a {
  color: #222;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s;
}

.package-title a:hover {
  color: var(--primary);
}

/* Reviews */
.package-rating {
  margin-top: 10px;
  color: #f4c150;
  font-size: 15px;
}

.package-rating span {
  color: #666;
  margin-left: 5px;
  font-size: 14px;
}

/* Meta Info */
.package-meta li {
  color: #555;
  font-size: 15px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.package-meta i {
  color: var(--primary);
  width: 18px;
}

/* Button */
.package-btn {
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  padding: 10px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.package-btn:hover {
  background: #0b2553 !important;
  color: #fff !important;
  border: 2px solid var(--primary);
}

/* View All Button */
.view-all-btn {
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: #0b2553 !important;
  color: #fff !important;
  border: 2px solid var(--primary);
  transform: translateY(-3px);
}

/* Responsive Fixes */
@media (max-width: 991px) {
  .package-img {
    height: 220px;
  }
  .package-title a {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .package-img {
    height: 200px;
  }
  .package-price {
    font-size: 14px;
    padding: 6px 12px;
  }
}

.photo-all .item {
  position: relative;
  margin-bottom: 25px;
}

.photo-all .item-delete {
  margin-bottom: 0px;
}

.photo-all img {
  width: 100%;
  height: auto;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}
.video-all .item {
  position: relative;
  margin-bottom: 25px;
}
.video-all .item-delete {
  margin-bottom: 0px;
}
.video-all img {
  width: 100%;
  height: auto;
  height: 350px;
  object-fit: cover;
  border-radius: 6px;
}
.video-all .item .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
}
.video-all .item .icon {
  font-size: 70px;
}
.video-all .item .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  opacity: 0.3;
  border-radius: 6px;
}
@media only screen and (max-width: 1199px) {
  .photo-all img,
  .video-all img {
    height: 120px;
  }
}
@media only screen and (max-width: 991px) {
  .photo-all img,
  .video-all img {
    height: 260px;
  }
}
@media only screen and (max-width: 767px) {
  .photo-all img,
  .video-all img {
    height: 390px;
  }
}
@media only screen and (max-width: 575px) {
  .photo-all img,
  .video-all img {
    height: 320px;
  }
}
@media only screen and (max-width: 475px) {
  .photo-all img,
  .video-all img {
    height: 280px;
  }
}
@media only screen and (max-width: 400px) {
  .photo-all img,
  .video-all img {
    height: 220px;
  }
}

.review-package {
  margin-top: 40px;
}
.review-package h2 {
  font-size: 18px;
  font-weight: 700;
  color: #f0650b;
  margin-bottom: 20px;
}
.review-package .review-package-section {
  margin-bottom: 20px;
}
.review-package .review-package-box {
  background: #eeeeee;
  padding: 15px;
}
.review-package .review-package-box .left img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #b6b6b6;
  margin-right: 10px;
}
.review-package .review-package-box .right .name {
  font-size: 18px;
  font-weight: 600;
}
.review-package .review-package-box .right .date {
  font-size: 14px;
  color: #515151;
  margin-bottom: 0px;
}
.review-package .review-package-box .right .text {
  font-size: 16px;
}
.review-package input,
.review-package textarea,
.review-package button {
  font-size: 14px;
}
.review-package textarea {
  height: 200px;
}
.review-package button {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  background: #f0650b;
  color: #fff;
  text-decoration: none;
  border: 0;
  border-radius: 6px;
  padding: 8px 35px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.review-package button:hover {
  transition: all 0.3s;
  background: #0b2553;
  color: #fff;
}
.review-package button:hover {
  background: #0b2553 !important;
}
@media only screen and (max-width: 767px) {
  .review-package button {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 450px) {
  .review-package .reply-box {
    padding-left: 40px;
  }
}

.give-review-auto-select {
  display: flex;
  flex-direction: row-reverse;
  justify-content: left;
}

.give-review-auto-select input {
  display: none;
}

.give-review-auto-select label {
  font-size: 30px;
  color: #ccc;
  cursor: pointer;
}

.give-review-auto-select input:checked ~ label {
  color: #c22025;
}

.give-review-auto-select label:hover,
.give-review-auto-select label:hover ~ label {
  color: #c22025;
}
/* 🌄 Banner Section */
.page-top {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  color: #fff;
  text-align: center;
}

.page-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.page-top .container {
  position: relative;
  z-index: 2;
}

.page-top h2 {
  font-weight: 700;
  font-size: 2.5rem;
  color: #fff;
}

.breadcrumb {
  background: transparent;
  justify-content: center;
  margin-top: 10px;
}

.breadcrumb-item a {
  color: #f0650b;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #fff;
}

/* 🌄 Banner */
.page-top {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  color: #fff;
  text-align: center;
}

.page-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.page-top .container {
  position: relative;
  z-index: 2;
}

.page-top h2 {
  font-weight: 700;
  font-size: 2.4rem;
}

.breadcrumb {
  background: transparent;
  justify-content: center;
}

.breadcrumb-item a {
  color: #f0650b;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #fff;
}

/* 🔐 Forget Password Form */
.page-content {
  background: #f9f9ff;
}

.login-form {
  background: #fff;
  border-radius: 16px;
  padding: 40px 35px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.login-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.login-form label {
  font-weight: 600;
  color: #502780;
}

.login-form .form-control {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.login-form .form-control:focus {
  border-color: #f0650b;
  box-shadow: 0 0 0 3px rgba(228, 83, 36, 0.15);
}

.login-form button {
  background: linear-gradient(90deg, #502780, #6c3cc8);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1rem;
}

.login-form button:hover {
  background: linear-gradient(90deg, #f0650b, #ff6b3d);
  transform: scale(1.05);
}

.login-form a.primary-color {
  display: inline-block;
  margin-top: 10px;
  color: #502780;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.login-form a.primary-color:hover {
  color: #f0650b;
}

/* 📱 Responsive */
@media (max-width: 767px) {
  .page-top {
    padding: 90px 0 60px;
  }

  .login-form {
    padding: 30px 25px;
  }
}

/* <!-- 🎨 Custom Styles -- >  */

.blog-section {
  background: #f9f9ff;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  color: #6c6c6c;
}

/* 🧱 Blog Card */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* 🖼️ Blog Image */
.blog-img-wrapper {
  position: relative;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.08);
}

/* 🏷️ Blog Date */
.blog-date {
  background: linear-gradient(90deg, #502780, #6c3cc8);
  color: #fff;
  font-size: 0.85rem;
  border-radius: 30px;
}

/* ✏️ Blog Content */
.blog-title a {
  color: #333;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: #502780;
}

/* 🧡 Blog Button */
.blog-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, #f0650b, #ff6b3d);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-btn:hover {
  background: #0b2553 !important;
  transform: scale(1.05);
  color: #fff !important;
}

/* 📱 Responsive */
@media (max-width: 767px) {
  .blog-img {
    height: 200px;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* 📰 Blog Grid */
.blog {
  background: #f9f9ff;
}

.blog .item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.blog .item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.blog .photo {
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.blog .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog .item:hover .photo img {
  transform: scale(1.07);
}

.blog .text {
  padding: 20px;
}

.blog .text h2 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}

.blog .text h2 a {
  color: #502780;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog .text h2 a:hover {
  color: #f0650b;
}

.blog .short-des p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.blog .button-style-2 a {
  background: linear-gradient(90deg, #502780, #6c3cc8);
  color: #fff;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.blog .button-style-2 a:hover {
  background: linear-gradient(90deg, #f0650b, #ff6b3d);
  transform: scale(1.05);
}

/* 📱 Responsive */
@media (max-width: 767px) {
  .page-top {
    padding: 90px 0 60px;
  }

  .blog .photo {
    height: 200px;
  }
}
/* 🌄 Banner Section */
.page-top {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  color: #fff;
  text-align: center;
}

.page-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.page-top .container {
  position: relative;
  z-index: 2;
}

.page-top h2 {
  font-weight: 700;
  font-size: 2.4rem;
  color: #fff;
}

.breadcrumb {
  background: transparent;
  justify-content: center;
}

.breadcrumb-item a {
  color: #f0650b;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #fff;
}

/* 💌 Contact Section */
.contact {
  background: #f9f9ff;
}

.contact-form {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.contact-form .form-label {
  font-weight: 600;
  color: #502780;
}

.contact-form .form-control {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 12px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #f0650b;
  box-shadow: none;
}

.contact-form button {
  background: linear-gradient(90deg, #502780, #6c3cc8);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.contact-form button:hover {
  background: linear-gradient(90deg, #f0650b, #ff6b3d);
  transform: scale(1.05);
}

/* 🗺️ Map Section */
.map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.map iframe {
  border: none;
  width: 100%;
  height: 400px;
}

/* 📱 Responsive */
@media (max-width: 767px) {
  .page-top {
    padding: 90px 0 60px;
  }

  .contact-form {
    padding: 25px;
  }

  .map iframe {
    height: 300px;
  }
}

/* ----------------------- */
/*   🌍 MODERN FOOTER UI   */
/* ----------------------- */
.footer-modern {
  background: #1f1f1f;
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.8;
}

.footer-modern .footer-heading {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  position: relative;
}
.footer-modern .footer-heading::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin-top: 8px;
}

/* Footer Links */
.footer-modern .footer-links li {
  margin-bottom: 10px;
}
.footer-modern .footer-links li a {
  color: #cfcfcf;
  text-decoration: none;
  transition: var(--transition);
}
.footer-modern .footer-links li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

/* Contact */
.footer-modern .footer-contact li {
  margin-bottom: 10px;
}
.footer-modern .footer-contact i {
  color: var(--primary);
}

/* Social Icons */
.footer-modern .footer-social a {
  background: var(--primary);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  text-align: center;
  line-height: 34px;
  display: inline-block;
  transition: var(--transition);
}
.footer-modern .footer-social a:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-3px);
}

/* Newsletter */
.footer-modern .footer-newsletter .form-control {
  background: #2c2c2c;
  border: none;
  color: #fff;
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 30px 0 0 30px;
}
.footer-modern .footer-newsletter .form-control::placeholder {
  color: #999;
}
.footer-modern .btn-subscribe {
  background: var(--primary);
  color: #fff;
  border-radius: 0 30px 30px 0;
  border: none;
  padding: 0 16px;
  transition: var(--transition);
}
.footer-modern .btn-subscribe:hover {
  background: var(--primary-dark);
}

/* Divider */
.footer-divider {
  border-color: #333;
  opacity: 0.4;
}

.page-top {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
}
.page-top:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #222;
  color: #fff;
  opacity: 0.5;
  z-index: 9;
}
.page-top h2 {
  font-weight: 700;
  font-size: 40px;
  position: relative;
  z-index: 99;
  color: #fff;
  opacity: 1;
  text-align: center;
}
.page-top .button {
  position: relative;
  z-index: 99;
  text-align: center;
}
.page-top .button a {
  background: #f0650b;
  border: 0;
}
.page-top .button a:hover {
  background: #f0650b;
  opacity: 0.8;
}
.page-top .breadcrumb-container {
  position: relative;
  z-index: 99;
  opacity: 1;
}
.page-top .breadcrumb {
  margin-bottom: 0;
  justify-content: center;
}
.page-top .breadcrumb-item.active {
  color: #ffffff;
}
.page-top .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: #ffffff;
}
.page-top .breadcrumb a {
  color: #ffffff;
}
.page-top .breadcrumb a:hover {
  color: #f0650b;
}

@media (max-width: 991px) {
  .page-top {
    margin-top: 60px;
  }
}

.page-top-package {
  padding-top: 100px;
  padding-bottom: 100px;
}
.page-top-package h3 {
  font-size: 20px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 99;
  opacity: 1;
}
.page-top-package .review {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 18px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
  z-index: 99;
  opacity: 1;
}
.page-top-package .review i {
  color: #f4c150;
}
.page-top-package .review span {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.page-top-package .price {
  font-size: 32px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 99;
  opacity: 1;
  font-weight: 700;
}
.page-top-package .price del {
  color: #e9fca8;
}
.page-top-package .person {
  font-size: 16px;
  text-align: center;
  color: #fff;
  font-weight: 400;
  position: relative;
  z-index: 99;
  opacity: 1;
}

/* 💬 Testimonials Section */
.testimonials-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  overflow: hidden;
}

.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.testimonials-section .container {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
}

.section-subtitle {
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto;
  color: #ccc;
}

/* Testimonial Card */
.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.15);
}

/* Photo */
.testimonial-photo {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  box-shadow: 0 0 10px rgba(194, 32, 37, 0.5);
}

/* Quote Icon */
.testimonial-quote {
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 15px;
}

/* Text */
.testimonial-text {
  font-size: 17px;
  line-height: 1.7;
  color: #eee;
  margin-bottom: 25px;
  font-style: italic;
}

/* Name and Role */
.testimonial-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.testimonial-role {
  color: #ccc;
  font-size: 15px;
}

/* Owl Carousel Customization */
.testimonial-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.testimonial-carousel .owl-nav button {
  pointer-events: all;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
}

.testimonial-carousel .owl-nav button:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.testimonial-carousel .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.testimonial-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
  background: #fff;
  transition: 0.3s;
}

.testimonial-carousel .owl-dots .owl-dot.active span {
  background: var(--primary);
}

/* Responsive Fixes */
@media (max-width: 991px) {
  .testimonial-card {
    padding: 30px 20px;
  }
  .testimonial-text {
    font-size: 16px;
  }
  .testimonial-photo {
    width: 80px;
    height: 80px;
  }
}

/* 🌄 Banner Section */
.page-top {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  color: #fff;
  text-align: center;
}

.page-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.page-top .container {
  position: relative;
  z-index: 2;
}

.page-top h2 {
  font-weight: 700;
  font-size: 2.5rem;
  color: #fff;
}

.breadcrumb-container {
  margin-top: 15px;
}

.breadcrumb {
  background: transparent;
  justify-content: center;
}

.breadcrumb-item a {
  color: #f0650b;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #fff;
}

/* 👥 Team Section */
.team {
  background: #f8f9ff;
}

.team .item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.team .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.team .photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-bottom: 4px solid #f0650b;
}

.team .text {
  padding: 20px;
}

.team .text h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 10px;
}

.team .text h2 a {
  color: #502780;
  text-decoration: none;
  transition: 0.3s;
}

.team .text h2 a:hover {
  color: #f0650b;
}

.team .designation {
  color: #666;
  font-size: 0.95rem;
  margin-top: 5px;
  font-style: italic;
}

/* 🌐 Social Links */
.team .social ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin-top: 15px;
}

.team .social ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #502780;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 15px;
}

.team .social ul li a:hover {
  background: #f0650b;
  transform: scale(1.1);
}

/* 📱 Responsive */
@media (max-width: 767px) {
  .team .photo img {
    height: 260px;
  }

  .page-top {
    padding: 100px 0 60px;
  }
}
/* 🌄 Banner */
.page-top {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  color: #fff;
  text-align: center;
}

.page-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.page-top .container {
  position: relative;
  z-index: 2;
}

.page-top h2 {
  font-weight: 700;
  font-size: 2.5rem;
}

.breadcrumb {
  background: transparent;
  justify-content: center;
  margin-top: 15px;
}

.breadcrumb-item a {
  color: #f0650b;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #fff;
}

/* 👤 Team Member Details */
.team-single {
  background: #f9f9ff;
}

.team-single .photo img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.team-single .table {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.team-single .table td {
  padding: 15px 20px;
  vertical-align: middle;
}

.team-single .table td:first-child {
  background: #502780;
  color: #fff;
  font-weight: 600;
  width: 25%;
  border-right: 1px solid #fff;
}

.team-single .table td:last-child {
  color: #333;
  background: #fff;
}

/* 🌐 Social Links */
.team-single .table td ul {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.team-single .table td ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #502780;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 15px;
  transition: all 0.3s ease;
}

.team-single .table td ul li a:hover {
  background: #f0650b;
  transform: scale(1.1);
}

/* 📝 Biography */
.team-single .description {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  color: #444;
  line-height: 1.7;
}

.team-single h4 {
  color: #502780;
  font-weight: 700;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .page-top {
    padding: 90px 0 60px;
  }

  .team-single .table td:first-child {
    width: 35%;
  }
}

.page-content .sub {
  overflow: hidden;
  border-top: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.page-content .sub .item {
  float: left;
  margin-right: 15px;
  color: #969696;
}
.page-content .sub .item a {
  color: #969696;
  text-decoration: underline;
}
.page-content .main-text {
  margin-bottom: 25px;
}
.page-content h2 {
  font-weight: 700;
}
.page-content h3 {
  font-weight: 700;
}
.page-content h4 {
  font-weight: 700;
}
.page-content h5 {
  font-weight: 700;
}
.page-content h6 {
  font-weight: 700;
}

.contact-form label {
  font-weight: 600;
}
.contact-form textarea {
  height: 200px;
}
.contact-form button {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  background: #f0650b;
  color: #fff;
  text-decoration: none;
  border: 1px solid #f0650b;
  border-radius: 6px;
  padding: 8px 35px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.contact-form button:hover {
  transition: all 0.3s;
  background: transparent;
  border: 1px solid #f0650b;
  color: #f0650b;
}
.map iframe {
  width: 100%;
  height: 450px;
}
@media (max-width: 1199px) {
  .map iframe {
    height: 400px;
  }
}

.faq .accordion {
  width: 70%;
}
.faq .accordion-button {
  color: #f0650b;
  font-weight: 700;
  background: #ebebeb;
  font-size: 18px;
}
.faq .accordion-button.collapsed {
  background: none;
}
.faq .accordion-button:focus {
  box-shadow: none !important;
}
.faq .accordion-item {
  margin-bottom: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.125) !important;
}
.faq .accordion-button::after {
  font-family: "Poppins", sans-serif;
  content: "\f107";
  font-weight: 700;
  background-image: none;
  transform: none;
  color: #f0650b;
}
.faq .accordion-button.collapsed::after {
  font-family: "Poppins", sans-serif;
  content: "\f105";
  font-weight: 700;
  background-image: none;
}
.faq .accordion-item .accordion-button {
  border-radius: 0 !important;
}
.faq .accordion-body {
  font-weight: 400;
}
.faq .accordion-item:first-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.faq .accordion-item:last-of-type {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
@media (max-width: 991px) {
  .faq .accordion {
    width: 100% !important;
  }
}

.faq-package .accordion-header {
  border-bottom: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.faq-package .accordion-button {
  color: #242424;
  font-weight: 600;
  background: #ebebeb;
  font-size: 16px;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.faq-package .accordion-button.collapsed {
  background: none;
}
.faq-package .accordion-button:focus {
  box-shadow: none !important;
}
.faq-package .accordion-item {
  margin-bottom: 8px !important;
  border-top: 1px solid rgba(0, 0, 0, 0.125) !important;
}
.faq-package .accordion-button::after {
  font-family: "Poppins", sans-serif;
  content: "\f107";
  font-weight: 700;
  background-image: none;
  transform: none;
  color: #f0650b;
}
.faq-package .accordion-button.collapsed::after {
  font-family: "Poppins", sans-serif;
  content: "\f105";
  font-weight: 700;
  background-image: none;
}
.faq-package .accordion-item .accordion-button {
  border-radius: 0 !important;
}
.faq-package .accordion-body {
  font-weight: 400;
}
.faq-package .accordion-item:first-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.faq-package .accordion-item:last-of-type {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
@media (max-width: 991px) {
  .faq-package .accordion {
    width: 100% !important;
  }
}

.counter-section {
  padding-top: 70px;
  padding-bottom: 70px;
  background: #f2f2f2;
}
.counter-section .counter-items {
  text-align: center;
}
.counter-section .counter-item {
  text-align: center;
  color: #f0650b;
}
.counter-section .counter-item .counter {
  font-size: 50px;
  font-weight: 700;
  color: #f0650b;
}
.counter-section .counter-item .text {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .counter-section .counter-item {
    margin-bottom: 30px;
  }
}

/* 🌄 Banner Section */
.page-top {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  color: #fff;
  text-align: center;
}

.page-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.page-top .container {
  position: relative;
  z-index: 2;
}

.page-top h2 {
  font-weight: 700;
  font-size: 2.2rem;
  color: #fff;
}

.breadcrumb {
  background: transparent;
  justify-content: center;
  margin-top: 10px;
}

.breadcrumb-item a {
  color: #f0650b;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #fff;
}

/* 📰 Post Section */
.post {
  background: #f9f9ff;
}

.post .left-item {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.post .main-photo {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 25px;
}

.post .main-photo img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.post .main-photo img:hover {
  transform: scale(1.05);
}

.post .sub ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  color: #777;
  font-size: 0.9rem;
}

.post .sub ul li i {
  color: #f0650b;
  margin-right: 6px;
}

.post .sub a {
  color: #502780;
  text-decoration: none;
  font-weight: 500;
}

.post .description {
  color: #444;
  line-height: 1.8;
  font-size: 1rem;
}

.post .description p {
  margin-bottom: 1rem;
}

/* 🧭 Sidebar */
.right-item {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.right-item h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #502780;
  border-bottom: 2px solid #f0650b;
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 5px;
}

.right-item ul {
  list-style: none;
  padding: 0;
}

.right-item ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.right-item ul li:last-child {
  border-bottom: none;
}

.right-item ul li a {
  color: #444;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.right-item ul li a i {
  color: #f0650b;
  margin-right: 8px;
}

.right-item ul li a:hover {
  color: #502780;
  padding-left: 5px;
}

/* 📱 Responsive */
@media (max-width: 767px) {
  .page-top {
    padding: 90px 0 60px;
  }

  .post .left-item,
  .right-item {
    padding: 20px;
  }
}

/* 🌄 Banner */
.page-top {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  color: #fff;
  text-align: center;
}

.page-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.page-top .container {
  position: relative;
  z-index: 2;
}

.page-top h2 {
  font-weight: 700;
  font-size: 2.5rem;
  color: #fff;
}

.breadcrumb {
  background: transparent;
  justify-content: center;
}

.breadcrumb-item a {
  color: #f0650b;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #fff;
}

/* 💫 Welcome Section */
.special {
  background: #f9f9ff;
}

.full-section .inner h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #502780;
  margin-bottom: 20px;
}

.full-section .inner p {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
}

.full-section .button-style-1 a {
  background: linear-gradient(90deg, #502780, #6c3cc8);
  color: #fff;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.full-section .button-style-1 a:hover {
  background: linear-gradient(90deg, #f0650b, #ff6b3d);
  transform: scale(1.05);
}

.right-side {
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  height: 350px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-button {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(80, 39, 128, 0.9);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-button span {
  position: relative;
  display: block;
  width: 0;
  height: 0;
  border-left: 15px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.video-button::after {
  content: "";
  position: absolute;
  border: 2px solid #fff;
  border-radius: 50%;
  inset: -10px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* 🌟 Why Choose Section */
.why-choose {
  background: #fff;
}

.why-choose .inner {
  text-align: center;
  background: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.why-choose .inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.why-choose .icon {
  font-size: 2.5rem;
  color: #f0650b;
  margin-bottom: 15px;
}

.why-choose h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #502780;
  margin-bottom: 10px;
}

.why-choose p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* 🔢 Counter Section */
.counter-section {
  background: linear-gradient(90deg, #242324, #aa9bc4);
  color: #fff;
  text-align: center;
}

.counter-section .counter-item {
  padding: 30px 10px;
}

.counter {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.counter-section .text {
  font-size: 1rem;
  font-weight: 500;
}

/* 📱 Responsive */
@media (max-width: 767px) {
  .page-top {
    padding: 90px 0 60px;
  }

  .right-side {
    height: 250px;
    margin-top: 20px;
  }

  .full-section .inner h3 {
    font-size: 1.6rem;
  }
}

/* 🌄 Banner */
.page-top {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  color: #fff;
  text-align: center;
}

.page-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.page-top .container {
  position: relative;
  z-index: 2;
}

.page-top h2 {
  font-weight: 700;
  font-size: 2.4rem;
}

.breadcrumb {
  background: transparent;
  justify-content: center;
}

.breadcrumb-item a {
  color: #f0650b;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #fff;
}

/* 🔐 Login Form */
.page-content {
  background: #f9f9ff;
}

.login-form {
  background: #fff;
  border-radius: 16px;
  padding: 40px 35px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.login-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.login-form label {
  font-weight: 600;
  color: #502780;
}

.login-form .form-control {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.login-form .form-control:focus {
  border-color: #f0650b;
  box-shadow: 0 0 0 3px rgba(228, 83, 36, 0.15);
}

.login-form button {
  background: linear-gradient(90deg, #502780, #6c3cc8);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1rem;
}

.login-form button:hover {
  background: linear-gradient(90deg, #f0650b, #ff6b3d);
  transform: scale(1.05);
}

.login-form a.primary-color {
  display: inline-block;
  margin-top: 10px;
  color: #502780;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.login-form a.primary-color:hover {
  color: #f0650b;
}

/* 🧠 Additional spacing */
.login-form .mb-3:last-child {
  margin-bottom: 0;
}

/* 📱 Responsive */
@media (max-width: 767px) {
  .page-top {
    padding: 90px 0 60px;
  }

  .login-form {
    padding: 30px 25px;
  }
}

.user-panel {
  padding-bottom: 50px;
}

.user-panel h3 {
  font-size: 18px;
  font-weight: 600;
}

.user-panel h4 {
  font-size: 16px;
  font-weight: 600;
}

.user-panel .card {
  width: 100% !important;
  padding: 0;
  border-radius: 0;
}

.user-panel .list-group-item {
  padding: 0;
  width: 100%;
}

.user-panel .list-group-item a {
  display: block;
  color: #f0650b;
  font-weight: 600;
  transition: 0.4s;
  padding: 8px 15px;
}

.user-panel .list-group-item a:hover {
  background: #f0650b;
  color: #fff;
}

.user-panel .list-group .active {
  border-color: #f0650b !important;
}

.user-panel .list-group .active a {
  background: #f0650b !important;
  color: #fff !important;
}

.user-panel .box1,
.user-panel .box2,
.user-panel .box3 {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

.user-panel .box1 h4,
.user-panel .box2 h4,
.user-panel .box3 h4 {
  font-weight: 700;
  font-size: 28px;
}

.user-panel .box1 {
  background: #c0d5ff;
}

.user-panel .box2 {
  background: #ffc3c8;
}

.user-panel .box3 {
  background: #dcffe2;
}

.user-panel input[type="submit"] {
  background: #f0650b;
  border: 0;
}

.user-panel .logo {
  height: 80px;
}

.user-panel .user-photo {
  width: 150px;
}

.user-panel label {
  font-weight: 600;
}

.user-panel table.upgrade-plan-table tr td:first-child {
  width: 250px;
}

.user-panel table.upgrade-plan-table .select2-selection--single {
  width: 100%;
}

.user-panel table.upgrade-plan-table .buy-button {
  width: 200px;
}
.user-panel .modal-header {
  border-bottom-color: #b9b9b9;
}
.user-panel .modal-seperator {
  border-bottom: #b9b9b9 1px solid;
  padding-bottom: 10px;
  margin-top: -5px;
}
.user-panel .message-item {
  margin-bottom: 30px;
  background: #fff;
  border: 1px solid #cecece;
}
.user-panel .message-item .message-top {
  background: #f2f2f2;
  padding: 15px;
}
.user-panel .message-item .message-top .left {
  display: inline-block;
}
.user-panel .message-item .message-top .left img {
  width: 80px;
  height: 80px;
  border: 1px solid #cecece;
  border-radius: 50%;
  margin-right: 5px;
}
.user-panel .message-item .message-top .right {
  display: inline-block;
  vertical-align: middle;
}
.user-panel .message-item .message-top .right h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
}
.user-panel .message-item .message-top .right h5 {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 20px;
  font-size: 15px;
  font-weight: 400;
}
.user-panel .message-item .message-top .right .date-time {
  font-size: 14px;
  color: #9e9e9e;
}
.user-panel .message-item .message-bottom {
  padding: 15px;
}
.user-panel .message-item-admin-border {
  border-left-color: #f0650b;
  border-left-width: 5px;
}

.invoice-container {
  border: 1px solid #d5d5d5;
  border-radius: 10px;
  padding: 25px;
}

.invoice-top-right {
  text-align: right;
}
.invoice-top-right h4 {
  font-size: 26px;
  text-transform: uppercase;
}
.invoice-top-right h5 {
  font-size: 16px;
  color: #757575;
}

.invoice-middle {
  margin-top: 40px;
  margin-bottom: 40px;
}
.invoice-middle-left p,
.invoice-middle-right p {
  color: #757575;
  font-size: 16px;
}
.invoice-middle-left h4,
.invoice-middle-right h4 {
  font-size: 20px;
}
.invoice-middle-right {
  text-align: right !important;
}

.invoice-item-table,
.invoice-item-table tr td,
.invoice-item-table tr th {
  border-color: #b9b9b9;
}

.invoice-bottom {
  margin-top: 40px;
}
.invoice-bottom-payment h4 {
  font-size: 18px;
  font-weight: 700;
}
.invoice-bottom-total-box p {
  margin-bottom: 0;
  font-size: 16px;
}
.invoice-bottom-total-box span {
  width: 70px;
  display: inline-block;
}

@media (max-width: 991px) {
  .user-panel .card {
    margin-bottom: 30px;
  }
}

.select2-container {
  z-index: 99999 !important;
}
.select2-container--bootstrap .select2-selection--single {
  height: 36px !important;
  line-height: 36px !important;
  padding-top: 0 !important;
  font-size: 15px !important;
}

/* 🌄 Page Banner */
.page-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 140px 0 90px;
  text-align: center;
  color: #fff;
}
.page-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.page-banner .breadcrumb-item a {
  color: #fff;
}
.page-banner .breadcrumb-item.active {
  color: #ddd;
}

/* Tables */
.table-hover tbody tr:hover {
  background-color: #fafafa;
}
.table thead th {
  color: #555;
  font-weight: 600;
}

/* Buttons */
.btn-outline-primary {
  border-color: #f0650b;
  color: #f0650b;
}
.btn-outline-primary:hover {
  background-color: #f0650b;
  color: #fff;
}

/* Modal */
.modal-content {
  border-radius: 10px;
}
.modal-header {
  border-bottom: 0;
}
.page-banner .container {
  position: relative;
  z-index: 2;
}
.page-title {
  font-size: 46px;
  font-weight: 800;
}
.breadcrumb a {
  color: #fff;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--primary);
}
.breadcrumb-item.active {
  color: #eee;
}

/* ✨ Content Sections */
.content-section {
  margin-bottom: 60px;
}
.section-heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}
.section-text {
  color: #444;
  line-height: 1.8;
}

/* 📦 Info Table */
.info-table {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.info-table th {
  background: #f8f8f8;
  color: #333;
  width: 220px;
  font-weight: 600;
  border-right: 1px solid #eee;
}
.info-table td {
  color: #555;
  background: #fff;
}
/* 📱 Mobile Friendly Info Table */
@media (max-width: 768px) {
  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table tr {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }

  .info-table th {
    background: var(--primary);
    color: #fff;
    padding: 12px 15px;
    font-size: 15px;
    border: none;
  }

  .info-table td {
    padding: 12px 15px;
    background: #fff;
    font-size: 14px;
    color: #444;
    position: relative;
  }

  .info-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: #888;
    font-size: 12px;
    margin-bottom: 4px;
  }
}

/* 🖼️ Photo Grid */
.photo-item img {
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.photo-item:hover img {
  transform: scale(1.05);
}

/* 🎥 Video Grid */
.video-item {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}
.video-item img {
  width: 100%;
  transition: transform 0.4s ease;
}
.video-item:hover img {
  transform: scale(1.05);
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  border-radius: inherit;
}
.video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary);
  font-size: 50px;
  z-index: 2;
  transition: all 0.3s;
}
.video-item:hover .video-icon {
  transform: translate(-50%, -50%) scale(1.2);
}

/* 🗺️ Map */
.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Responsive */
@media (max-width: 991px) {
  .page-title {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .page-title {
    font-size: 30px;
  }
}

/* ==== Packages Page ==== */
.page-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: #fff;
}
.page-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.page-banner .page-title {
  font-size: 48px;
  font-weight: 700;
  z-index: 2;
  position: relative;
}

/* Sidebar */
.sidebar {
  border: 1px solid #f0f0f0;
}
.filter-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}
.filter-widget {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}
.filter-widget:last-child {
  border: none;
}

/* Packages Grid */
.package-card {
  transition: all 0.3s ease;
}
.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.package-img img {
  height: 220px;
  object-fit: cover;
}
.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f0650b;
  font-size: 18px;
  transition: 0.3s;
}
.wishlist-btn:hover {
  background: #f0650b;
  color: #fff;
}

.package-title a:hover {
  color: #f0650b;
}
.package-body .price {
  font-size: 18px;
}
.btn-outline-primary {
  border-color: #f0650b;
  color: #f0650b;
}
.btn-outline-primary:hover {
  background-color: #f0650b;
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .page-banner .page-title {
    font-size: 36px;
  }
}

.page-banner {
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  position: relative;
  color: #fff;
}
.page-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.nav-tabs .nav-link {
  border: none;
  color: #555;
  font-weight: 500;
}
.nav-tabs .nav-link.active {
  border-bottom: 3px solid #f0650b;
  color: #f0650b;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
}
.video-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 42px;
}
.btn-primary {
  background-color: #f0650b;
  border: none;
}
.btn-primary:hover {
  background-color: #c22025;
}
