/* Asian Holidays - Main Stylesheet */
:root {
  --primary-color: #2E8BC0;
  --secondary-color: #004E89;
  --accent-color: #FFB627;
  --text-dark: #2C3E50;
  --text-light: #6C757D;
  --bg-light: #F8F9FA;
  --white: #FFFFFF;
  --gradient-primary: linear-gradient(135deg, #2E8BC0 0%, #2E8BC0 100%);
  --gradient-secondary: linear-gradient(135deg, #004E89 0%, #1A73E8 100%);
  --whatsapp-color: #25D366;
  --call-color: #2196F3;
  --facebook-color: #1877F2;
  --instagram-gradient: linear-gradient(45deg, #F56040, #FD1D1D, #C13584);
  --logo-bg-color: #FFF3E6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

section.stats-section.py-5 {
  background-color: #212a54;
  color: #fff;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Top Bar */
.top-bar {
  background: var(--gradient-primary);
  color: white;
  padding: 8px 0;
  font-size: 14px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.contact-info span {
  display: inline-block;
  white-space: nowrap;
}

.contact-info i {
  margin-right: 5px;
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.social-links a {
  color: white;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s, opacity 0.3s;
}

.social-links a:hover {
  color: var(--accent-color);
  opacity: 0.8;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 15px 0;
  z-index: 1050;
  position: relative;
  display: flex;
  align-items: stretch;
}

.navbar::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: #fc7941;
  clip-path: polygon(
    0 0,
    100% 0%,
    80% 20%,
    85% 15%,
    90% 30%,
    80% 45%,
    85% 60%,
    90% 75%,
    80% 85%,
    85% 95%,
    100% 100%,
    0 100%
  );
  z-index: -1;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--primary-color) !important;
  padding: 5px 0px;
  position: relative;
  z-index: 1;
}

.navbar-brand .brand-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.navbar-brand:hover .brand-text {
  transform: scale(1.05);
}

.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-link, .navbar-nav .menu-toggle {
  white-space: nowrap;
  font-weight: 500;
  margin: 0 10px;
  color: var(--text-dark) !important;
  transition: color 0.3s, transform 0.3s;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .menu-toggle:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link::after,
.navbar-nav .menu-toggle::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after,
.navbar-nav .menu-toggle:hover::after {
  width: 100%;
}

/* Dropdown Styles */
.menu-item {
  position: relative;
}

.menu-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 180px;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.menu-dropdown.show {
  display: block;
}

.submenu-item {
  position: relative;
}

.submenu-toggle {
  display: block;
  padding: 8px 15px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1rem;
}

.submenu-toggle::after {
  content: " »";
  float: right;
}

.submenu-toggle:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

.submenu-dropdown {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: var(--white);
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 180px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.submenu-dropdown.show {
  display: block;
}

.menu-dropdown li a,
.submenu-dropdown li a {
  display: block;
  padding: 8px 15px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1rem;
}

.menu-dropdown li a:hover,
.submenu-dropdown li a:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

@media (min-width: 992px) {
  .menu-item:hover > .menu-dropdown,
  .submenu-item:hover > .submenu-dropdown {
    display: block;
  }
}

@media (max-width: 991px) {
  .menu-dropdown,
  .submenu-dropdown {
    position: static;
    background: var(--white);
    padding: 0 0 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    box-shadow: none;
    border-radius: 0;
  }

  .menu-dropdown.show,
  .submenu-dropdown.show {
    max-height: 500px;
    padding: 5px 0 5px 15px;
  }

  .menu-toggle,
  .submenu-toggle,
  .menu-dropdown li a,
  .submenu-dropdown li a {
    text-align: left;
    padding: 10px 15px;
    font-size: 0.95rem;
    touch-action: manipulation;
  }

  .menu-toggle::after,
  .submenu-toggle::after {
    content: " ▼";
    font-size: 0.8rem;
    margin-left: 5px;
    float: right;
  }

  .menu-toggle.show::after,
  .submenu-toggle.show::after {
    content: " ▲";
  }

  .navbar-nav .nav-item.menu-item {
    width: 100%;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    font-size: 1.1rem;
  }
}

/* Radial Floating Buttons */
.radial {
  position: fixed;
  z-index: 9999;
  bottom: -14px;
  right: -40px;
  width: 200px;
  height: 200px;
}

.triggerButton {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border: none;
  color: var(--white);
  font-size: 24px;
  border-radius: 50%;
  text-decoration: none;
  background: #0021ba;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}

.triggerButton:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.triggerButton .faOpen {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: all 0.3s ease;
}

.triggerButton .faClose {
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  transition: all 0.3s ease;
  display: none;
}

.radial.active .triggerButton .faOpen {
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
}

.radial.active .triggerButton .faClose {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.radialMenu {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.radialItem {
  list-style: none;
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  --radius: 80px;
  --point-size: 50px;
}

.radial.active .radialItem {
  opacity: 1;
  visibility: visible;
}

.radialItem a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.radialItem a:hover {
  transform: scale(1.1);
}

.radialItem a:hover span {
  opacity: 1;
  visibility: visible;
  right: calc(100% + 10px);
}

.radialItem span {
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  background: inherit;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.radialItem.whatsapp a {
  background: var(--whatsapp-color);
}

.radialItem.call a {
  background: var(--call-color);
}

.radialItem.facebook a {
  background: var(--facebook-color);
}

.radialItem.instagram a {
  background: linear-gradient(#f9ce34, #ee2a7b, #6228d7);
}

.radial.active .radialItem:nth-child(1) {
  --angle: 145deg;
  top: calc(50% + (var(--radius) * sin(var(--angle))));
  left: calc(50% + (var(--radius) * cos(var(--angle))));
}

.radial.active .radialItem:nth-child(2) {
  --angle: 193deg;
  top: calc(50% + (var(--radius) * sin(var(--angle))));
  left: calc(50% + (var(--radius) * cos(var(--angle))));
}

.radial.active .radialItem:nth-child(3) {
  --angle: 240deg;
  top: calc(50% + (var(--radius) * sin(var(--angle))));
  left: calc(50% + (var(--radius) * cos(var(--angle))));
}

.radial.active .radialItem:nth-child(4) {
  --angle: 290deg;
  top: calc(50% + (var(--radius) * sin(var(--angle))));
  left: calc(50% + (var(--radius) * cos(var(--angle))));
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 9%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 1;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
  animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.btn-outline-light {
  border: 2px solid white;
  padding: 9px 20px;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Quick Search */
.quick-search {
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.search-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Page-specific styles */
.page-header {
  background: var(--gradient-secondary);
  color: white;
  padding: 100px 0 60px;
  text-align: center;
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.content-section {
  padding: 80px 0;
}

.section-padding {
  padding: 80px 0;
}

.card-custom {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.card-custom:hover {
  transform: translateY(-5px);
}

.form-control, .form-select {
  border-radius: 10px;
  border: 2px solid #E9ECEF;
  padding: 12px 15px;
  transition: border-color 0.3s;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

/* Package Card */
.package-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.package-card:hover {
  transform: translateY(-10px);
}

.package-card .card-img-left {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.package-card .carousel {
  width: 100%;
  height: 400px;
}

.package-card .carousel-inner {
  height: 100%;
}

.package-card .carousel-item img {
  height: 400px;
  object-fit: cover;
}

.package-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-card .card-title {
  font-family: 'calibri';
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
  text-transform: none;
}

.package-card .destination-name {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.package-card .card-text {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
  flex-grow: 1;
}

.package-card .btn-primary {
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Sticky Sidebar */
.sticky-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
  z-index: 100;
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.shadow-custom {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Modal */
.modal-content {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
  border-bottom: none;
  background: var(--gradient-primary);
  color: white;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.modal-title {
  font-family: 'Playfair Display', serif;
}

/* Footer */
.footer {
  background: #2c3e50 !important;
  padding: 60px 0 20px;
}

.footer h5 {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer h6 {
  color: white;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #CCCCCC;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #0021ba;
  color: white;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  transition: transform 0.3s;
}

.footer-social a:hover {
  transform: translateY(-3px);
}

.contact-info p {
  margin-bottom: 10px;
  color: #CCCCCC;
}

.contact-info i {
  margin-right: 10px;
  color: #0021ba;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .sticky-sidebar {
    position: static;
  }

  .package-card .carousel {
    height: 250px;
  }

  .package-card .carousel-item img {
    height: 250px;
  }

  .package-card .card-title {
    font-size: 1.3rem;
  }

  .package-card .destination-name {
    font-size: 1.1rem;
  }

  .package-card .card-text {
    font-size: 0.85rem;
  }

  .navbar::before {
    width: 100%;
    clip-path: none;
  }

  .navbar-brand {
    background: none;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .package-card {
    flex-direction: column;
  }

  .package-card .carousel {
    height: 200px;
  }

  .package-card .carousel-item img {
    height: 200px;
  }

  .package-card .card-body {
    padding: 15px;
  }

  .package-card .card-title {
    font-size: 1.2rem;
  }

  .package-card .destination-name {
    font-size: 1rem;
  }

  .package-card .card-text {
    font-size: 0.8rem;
  }

  .radial {
    bottom: -15px;
    right: -30px;
    width: 150px;
    height: 150px;
  }

  .triggerButton {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .radialItem {
    width: 40px;
    height: 40px;
  }

  .radialItem a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .radial.active .radialItem {
    --radius: 60px;
    --point-size: 40px;
  }

  .radialItem span {
    font-size: 12px;
    padding: 3px 8px;
  }
}

.bg-bluecolor {
  background-color: #2e8bc0!important;
}

/* Car Rental Cards */
.car-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  min-height: 280px;
}

.car-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.car-image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.car-card .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.car-card:hover .card-img-top {
  transform: scale(1.05);
}

.price-badge {
  position: absolute;
  top: 7px;
  right: 6px;
  background: var(--primary-color);
  color: #fff;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.car-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.car-card .card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.car-card .card-text {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.5;
}

.car-features {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-right: 15px;
  margin-bottom: 8px;
}

.feature-item i {
  margin-right: 8px;
  color: var(--primary-color);
}

.car-card .btn-primary {
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 25px;
  background: var(--gradient-primary);
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.car-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

/* Filter Button Group */
.btn-group {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-light);
  padding: 8px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #E9ECEF;
  flex-wrap: wrap;
  gap: 10px;
}

/* Filter Buttons */
.btn-outline-primary.filter-btn {
  border: 2px solid var(--primary-color);
  color: var(--text-dark);
  background: var(--white);
  padding: 10px 20px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline-primary.filter-btn:hover {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-outline-primary.filter-btn.active {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-outline-primary.filter-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: -1;
}

.btn-outline-primary.filter-btn:active::before {
  width: 200px;
  height: 200px;
}

/* Region Filter Button Group */
#region-filters.btn-group {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-light);
  padding: 8px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #E9ECEF;
  flex-wrap: wrap;
  gap: 10px;
}

#region-filters .btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--text-dark);
  background: var(--white);
  padding: 10px 20px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#region-filters .btn-outline-primary:hover {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

#region-filters .btn-check:checked + .btn-outline-primary {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 5px 15px rgb(30 127 183);
}

#region-filters .btn-outline-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: -1;
}

#region-filters .btn-outline-primary:active::before {
  width: 200px;
  height: 200px;
}

/* Hamburger Menu Styles */
.navbar-toggler {
  border: none;
  padding: 10px;
  background: transparent;
  cursor: pointer;
  z-index: 1100;
  display: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKMAAACUCAMAAADIzWmnAAAAY1BMVEX///8AGnIAFXEAAGHv8PTa2+UADG7IzNtESYg2N3sAAGoAGHKLja4ABm0ACG0AAF3T1eIPFWwAAGZiZJW+wtUXHG8AAFlYXJCXmrh8faFRVI06PH75+vx3eZ+3u88fI3Gfo77jwZPuAAABNUlEQVR4nO3ba47CMAxG0aTPmZCGlra0lPLY/yoHzQ7MDweLe1bwyZETyXKcAwAAAAAAAAAYVbeaannAfT0dS03H07oLM8ay8LqKMsoi3sNBOaL3h3CXRNwvQT2i9+EiOe1qSRkypqWSZBy7DBm7UZLRxSxnLWuaftBu61djD70oo5vmkBpNKTwmWcRXJeP2o2mLwir+q3S9kRAAAAAA8O1qXW8kbMfrr6br2EojrudU6ErnVVjFIsMct5BV0sBsz8Qc10BGC2ft2iFDzwzC28fA3ePcpH6Hi0fNzsJbCAAAAAD4dp+/g9THRXWXa5Hvck1z6FR34rowCwcVFnYLDcz28sxIZbuu1dZkyNhskoz7LctZ30Sb9gZ22E38BXD7U/1PxVP6p8IZ+JsCAAAAAAAAAPgMfzbZOVI6flj3AAAAAElFTkSuQmCC");
  width: 30px;
  height: 30px;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.navbar-collapse {
  transition: transform 0.3s ease-in-out;
}

.navbar-collapse.collapsing {
  height: auto !important;
  transition: transform 0.3s ease-in-out;
}

.navbar-collapse.show {
  transform: translateX(0);
  display: block;
}

@media (max-width: 991px) {
  .navbar-toggler {
    display: block;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 295px;
    background: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    padding: 20px;
    z-index: 1000;
    overflow-y: auto;
    display: none;
  }

  .navbar-collapse.show {
    display: block;
    background-color: #ffffffed;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    margin-top: 90px;
  }

  .navbar-nav .nav-item {
    width: 100%;
    margin: 5px 0;
  }

  .navbar-nav .nav-link,
  .navbar-nav .menu-toggle {
    font-size: 1.1rem;
    padding: 10px 0;
  }
}

@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }

  .navbar-collapse {
    transform: none !important;
    display: flex !important;
  }
}

@media (max-width: 450px) {
  .navbar-collapse {
    width: 200px !important;
  }

  .navbar-nav .nav-link, .navbar-nav .menu-toggle {
    font-size: 0.9rem;
    padding: 10px 0;
  }
}

/* Page Header Styling with Fixed Background */
.page-header {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  overflow: hidden;
}

.page-header .container {
  position: relative;
  z-index: 2;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 1);
  animation: subtleMove 5s ease-in-out infinite;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 70%
  );
  opacity: 0.7;
  animation: glowPulse 3s ease-in-out infinite;
}

.page-header .page-title {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.page-header .page-subtitle {
  color: #fff;
  font-size: 1.25rem;
  opacity: 0.9;
}

/* About Section Image Styles */
.about-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

@media (max-width: 991px) {
  .about-image {
    max-height: 300px;
    margin-bottom: 20px;
  }

  .content-section .row.align-items-center {
    flex-direction: column;
    text-align: center;
  }

  .content-section .row.align-items-center .col-lg-6 {
    order: 0 !important;
  }
}

.carousel-control-prev, .carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff500;
  text-align: center;
  background: none;
  border: 0;
  opacity: .5;
  transition: opacity .15s ease;
}
.carousel-control-prev:hover, .carousel-control-prev:focus, .carousel-control-next:hover, .carousel-control-next:focus {
  color: #baac00;
  text-decoration: none;
  outline: 0;
  opacity: .9;
}

/* Festival-specific Styles */


.festival-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.festival-image {
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid var(--bg-light);
  padding: 15px 0;
}

.faq-question {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-question.active {
  color: var(--primary-color);
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--text-light);
  display: none;
  margin-top: 10px;
}

.visit-info {
  list-style: none;
  padding: 0;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.visit-info li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.visit-info li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 2px;
}

.page-header {
  position: relative;
  background-attachment: fixed;
  padding: 100px 0;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

@media (max-width: 767px) {
  .festival-image {
      height: 250px;
  }

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

  .faq-question {
      font-size: 1rem;
  }

  .faq-answer,
  .visit-info li {
      font-size: 0.85rem;
  }

  .page-title {
      font-size: 2rem;
  }

  .page-subtitle {
      font-size: 1rem;
  }
}
@media (max-width: 1200px) {
    .btn-primary.btn-sm.ms-3 {
        display: none;
    }
}



.festival-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.festival-image {
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid var(--bg-light);
  padding: 15px 0;
}

.faq-question {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-question.active {
  color: var(--primary-color);
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--text-light);
  display: none;
  margin-top: 10px;
}

.visit-info {
  list-style: none;
  padding: 0;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.visit-info li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.visit-info li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 2px;
}

.page-header {
  position: relative;
  background-attachment: fixed;
  padding: 100px 0;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

@media (max-width: 767px) {
  .festival-image {
      height: 250px;
  }

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

  .faq-question {
      font-size: 1rem;
  }

  .faq-answer,
  .visit-info li {
      font-size: 0.85rem;
  }

  .page-title {
      font-size: 2rem;
  }

  .page-subtitle {
      font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
      padding-right: 0px;
      padding-left: 0px;
  }
}
@media (max-width: 1200) {
  .navbar-expand-lg .navbar-nav .nav-link {
      padding-right: 0px;
      padding-left: 0px;
  }
}
/* Testimonials Section */
.testimonials-section {
  background-color: var(--bg-bluecolor);
  padding: 80px 0;
  display: flex;
  justify-content: center; /* Center section content horizontally */
  align-items: center; /* Center section content vertically */
  min-height: 600px; /* Ensure enough height for vertical centering */
}

.testimonials-section .container-fluid {
  max-width: 1600px; /* Wide container */
  margin: 0 auto; /* Center container horizontally */
  padding-left: 32px;
  padding-right: 15px;
}

.testimonials-section .row.text-center.mb-5 {
  display: flex;
  justify-content: center; /* Center title and subtitle */
  align-items: center;
}

.testimonial-row {
  display: grid;
  gap: 30px;
  justify-content: center; /* Center grid items horizontally */
  align-items: center; /* Center grid items vertically */
  width: 100%;
}

.testimonial-card {
  background: var(--white);
  border: none;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 auto; /* Center individual cards */
  height: 525px;
}

.testimonial-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card i {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 25px;
  flex-grow: 1;
  font-size: 1.1rem;
  line-height: 1.5;
}

.testimonial-author h5 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.testimonial-author p {
  color: var(--text-light);
  font-size: 1rem;
}

/* Responsive Grid for Testimonials */
@media (min-width: 1200px) {
  .testimonial-row {
    grid-template-columns: repeat(3, 1fr); /* 3 testimonials on large PC */
  }
  .testimonial-col {
    max-width: 480px; /* Wide cards */
    margin: 0 auto; /* Center each column */
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .testimonial-row {
    grid-template-columns: repeat(3, 1fr); /* 3 testimonials on smaller PC */
  }
  .testimonial-col {
    max-width: 400px; /* Slightly smaller cards */
    margin: 0 auto;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .testimonial-row {
    grid-template-columns: repeat(2, 1fr); /* 2 testimonials on tablets */
  }
  .testimonial-col {
    max-width: 420px;
    margin: 0 auto;
  }
  .testimonial-col:nth-child(n+3) {
    display: none; /* Hide 3rd testimonial on tablets */
  }
}

@media (max-width: 767.98px) {
  .testimonial-row {
    grid-template-columns: 1fr; /* 1 testimonial on mobile */
  }
  .testimonial-col {
    max-width: 100%; /* Full width for mobile */
    margin: 0 auto;
  }
  .testimonial-col:nth-child(n+2) {
    display: none; /* Hide 2nd and 3rd testimonials on mobile */
  }
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 8%;
  background: rgb(0 0 0 / 0%);
  opacity: 0.7;
  transition: opacity 0.3s ease;
  z-index: 1; /* Ensure controls are above content */
}

.carousel-control-prev {
  left: -2%; /* Adjusted to align with centered content */
}

.carousel-control-next {
  right: 0%; /* Adjusted to align with centered content */
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  width: 2rem;
  height: 2rem;
}

/* Ensure carousel container is centered */
#testimonialsCarousel {
  width: 100%;
  max-width: 1600px; /* Match container-fluid max-width */
  margin: 0 auto; /* Center carousel */
}


.btn-yellow {
  background: yellow;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-yellow:hover {
  background: rgb(174, 174, 1);
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 25px;
  color:#fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footerlogo {
  margin-left: 30%;
}
@media (max-width: 1199px) {
  .nav-item-enquire {
      display: none;
  }
}
.card-title {
    text-align: justify !important;
    text-justify: inter-word !important;
    word-spacing: -0.5px;
    hyphens: auto;
    line-height: 1.5;
    margin-bottom: 1rem;
}