 .nav {
        padding: 0!important;
        background-color: #fff!important;
        border-bottom: 1px solid #c2b9b9!important;
        box-shadow: 1px 1px 8px grey!important;
        }
     video {
            max-width: 100%;
            height: auto;
            width: 100%;
        }
  /* Styles for the popup container */
  .popup {
    display: none; /* Hide the popup by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7); /* Semi-transparent background */
    z-index: 9999; /* Higher z-index to ensure it's on top */
    overflow: auto; /* Enable scrolling if needed */
  }
  /* Style for the popup content */
  .popup-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 640px;
    position: relative;
    border-radius: 8px;
  }
  /* Style for the close button */
  .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
  }

/* Header */
.site-header {
  font-family: 'Inter', sans-serif;
      margin-top: -1.5% !important;
}

.navbar-custom {
  background: #ffffff;
  padding: 12px 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.logo {
  height: 95px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #1f2937;
  margin: 0 8px;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: #2563eb;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #2563eb;
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.phone-link {
  font-weight: 600;
  color: #2563eb;
}

.btn-outline-primary {
  border-radius: 20px;
  padding: 6px 16px;
}

/* Navbar shrink on scroll */
.navbar-scrolled {
  padding: 6px 0;
}

.navbar-scrolled .logo {
  height: 55px;
}
.site-footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 60px 0 30px;
  font-family: 'Inter', sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 16px;
}

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

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

.footer-col ul li a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #60a5fa;
}

.footer-col p a {
  color: #cbd5f5;
  text-decoration: none;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #1e293b;
  border-radius: 50%;
  margin-right: 8px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #2563eb;
}

.footer-bottom {
  border-top:
}
.hero {
  position: relative;
  height: 100px;
  min-height: 650px;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.overlay {
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.55);
  z-index:1;
}

.hero-content {
  position: relative;
  z-index:2;
  margin-top:-14%;
}

.hero-title {
  color: #09941e !important;
  font-weight:300;
  line-height:1.2;
  font-size: 40px !important;
}

.hero-titles {
  font-family: "Volkhov", "DM Serif Display", cursive;
  color: #c7cec9;
  font-weight:700;
  line-height:1.2;
 font-size: 56px; 
}

.text-gold {
  color: #FFD700 !important; /* Muslim pilgrim theme accent */
}

.sub-text {
  color: #f0f0f0;
}

.search-card {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-radius: 12px;
}

.btn-gold {
  background-color: #FFD700;
  color: #000;
  font-weight:600;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: #e6c200;
  color: #000;
}

.nav-tabs .nav-link.active {
  background-color: #FFD700;
  color: #000 !important;
}

.nav-tabs .nav-link {
  color: #1f2937;
}

.form-control.text-dark,
.form-select.text-dark {
  color:#1f2937;
}
.subscribe-section {
    background: linear-gradient(135deg, #0f6b53 0%, #c79a3d 100%);

    padding: 60px 30px;
    margin: 40px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.subscribe-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    z-index: 1;
}

.subscribe-section h4 {
    font-size: 2rem;
    color: #fff;
    z-index: 2;
    position: relative;
}

.subscribe-section p {
    font-size: 1rem;
    color: #f3f3f3;
    z-index: 2;
    position: relative;
}

.subscribe-form {
    z-index: 2;
    position: relative;
}

.subscribe-form input {
    padding-left: 40px;
    transition: all 0.3s;
}

.subscribe-form input:focus {
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
    border-color: #fff;
}

.subscribe-form button {
    transition: all 0.3s;
}

.subscribe-form button:hover {
    background: #f3c74f;
    color: #0f6b53;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.fa-envelope {
    font-size: 1rem;
}

  .dest-img-wrapper {
    height: 220px; /* Adjust height as needed */
    overflow: hidden;
  }
  .dest-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images scale and crop correctly */
  }
  .btn-gold {
  background: linear-gradient(90deg, #cf9a3d, #f0c36f);
  color: #fff;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-gold:hover {
  background: linear-gradient(90deg, #b3862f, #e6b84f);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(199, 154, 61, 0.4);
}

/* Form Inputs with Icon */
.form-control {
  border-radius: 10px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #c79a3d;
  box-shadow: 0 0 8px rgba(199, 154, 61, 0.3);
}

/* Card Shadow */
.login-box .card {
  border: none;
}

/* Responsive */
@media (max-width: 767px) {
  .login-box {
    margin-top: 20px !important;
  }
}
.package-hero {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    position: relative;
}
.package-hero .overlay {
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}
.price-card {
    background:#fff;
    padding:20px;
    border-radius:14px;
}
.btn-primary-gold {
    background:linear-gradient(135deg,#c79a3d,#f3c969);
    border:none;
    color:#000;
}
.styled-list {
    list-style:none;
    padding-left:0;
}
.styled-list.check li::before {
    content:"✔ ";
    color:green;
    font-weight:bold;
}
.styled-list.cross li::before {
    content:"✖ ";
    color:red;
    font-weight:bold;
}
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    background: #25D366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    color: #fff;
}

@media (max-width: 576px) {
    .whatsapp-float span {
        display: none;
    }
    .whatsapp-float {
        padding: 14px;
        border-radius: 50%;
    }
}
.login-box {
    max-width: 900px;
    margin: auto;
}

.form-control, .form-select, textarea {
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus, textarea:focus {
    border-color: #ffd700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.position-relative i {
    color: #aaa;
}

.btn-primary-gold {
    background: #ffd700;
    color: #000;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-gold:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .login-box .row {
        flex-direction: column;
    }
}
.thank-you-wrapper {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0f6b53, #c79a3d);
}

.thank-you-card {
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    text-align: center;
    max-width: 420px;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.thank-you-card h2 {
    margin-top: 15px;
    font-weight: 700;
    color: #0f6b53;
}

.thank-you-card p {
    color: #555;
    margin-bottom: 8px;
}

.checkmark {
    width: 70px;
    height: 70px;
    margin: auto;
    background: hsl(133, 89%, 43%) !important;
    color: #fff;
    font-size: 36px;
    border-radius: 50%;
    line-height: 70px;
}

.fancy-marquee {
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    color: #ffffff;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 20px;
    padding: 12px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  .highlight {
    color: #ffd700;
    margin: 0 15px;
  }

  .hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 32, 26, 0.45), rgba(6, 32, 26, 0.6));
    z-index: 1;
}