body[dir="rtl"] .navbar-nav {
  background-color: #1d1e20;
  height: 1000vh;
  text-align: right;
}

body {
  background-color: #1d1e20;
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

h1{
  color: #ffffff;
}
h2, h3{
  color: #a88949;
}
p{
  cursor: pointer;
}

.navbar {
  background-color: #1d1e20 !important;
  transition: background-color 0.5s ease, box-shadow 0.5s ease;
  position: sticky;
  top: 0;
  z-index: 1020;
}

/* Solid background on scroll */
.navbar.scrolled {
  background-color: #1d1e20;
  /* Light background */
}

.nav-link {
  color: #ffffffd3 !important;
}

/* Text shadow on nav link hover */
.navbar .nav-link:hover {
  text-shadow: 1px 1px 25px rgba(255, 255, 255, 0.495);
  transition: text-shadow 0.3s ease;
  text-decoration: underline;
}

/* Optional: active link styling */
.navbar .nav-link.active {
  font-weight: 600;
}
.navbar-toggler-icon{
  background-color: #ffffff;
  filter: invert(100%);
}
/* Nav bar End */


/* Home Section ############# */
.carousel-caption h1 {
  font-size: 100px;
  margin-bottom: 25%;
}

.carousel-item {
  transition: transform 2s ease-in-out !important;
}

/* Contact Form */
form .form-control,
form .form-check-input {
  border-radius: 0.5rem;
}

.p-4 {
  background-color: #1d1e20;
  box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.381);
}

form .form-control:focus {
  box-shadow: 0 0 5px rgba(13, 109, 253, 0.543);
  border-color: #0d6efd;
}

form button:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.527);
  transition: all 0.3s ease;
}

/* ABOUT US ############### */
/* ABOUT US PAGE */
  .about-us {
    display: flex;
    gap: 2rem;
    padding: 40px 20px;
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    font-family: 'Segoe UI', sans-serif;
    color: #333;
  }

  .about-text {
    background: #fff;
    width: 800px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    cursor: pointer;
  }

  .about-text h2 {
    font-size: 28px;
    color: #a88949;
    margin-bottom: 20px;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.7;
  }

  .features {
    cursor: pointer;
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .feature {
    background: #f5f0e6;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  }

  .feature i {
    font-size: 24px;
    color: #a88949;
    margin-top: 4px;
  }

  .feature h4 {
    margin: 0 0 5px;
    font-size: 18px;
    color: #4b3e2d;
  }

  .feature p {
    margin: 0;
    font-size: 14px;
    color: #555;
  }


/* Review */
.customer-review {
  background-image: url(Resources/darkbg2.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 20px;
  text-align: center;
  color: #1d1e20;
  padding: 10px 0;
}

.review {
  margin: 10px 80px;
  text-align: center;
  width: 350px;
  height: 200px;
  background-color: #c3c3c3;
  border: solid 0px rgb(255, 255, 255);
  box-shadow: 1px 1px 5px rgba(255, 255, 255, 0.381);
  border-radius: 2px;
  transition: transform 0.3s ease-in-out;
}

.review:hover {
  box-shadow: 0px 0px 6px rgba(255, 255, 255, 0.863);
  transform: translateY(-10px);
}


/* Serice */
.mission {
  padding-top: 70px;
  text-align: center;
  align-items: center;
  margin-bottom: 50px;
}

.missionimg {
  padding-top: 30px;
  align-items: center;
}

.mission img {
  width: 200px;
  height: 200px;
  margin-bottom: 50px;
}

.servicess {
  background-image: url(Resources/darkbg2.jpg);
  background-attachment: fixed;
  /* This keeps the background in place */
  background-size: cover;
  /* This makes the image cover the entire area */
  background-position: center;
  /* This centers the image */
  background-repeat: no-repeat;
  /* Optional: prevents repeating */
}

.services i {
  align-items: center;
  font-size: 96px;
  color: white;
  padding-bottom: 20px;
}

.icons {
  align-items: center;
  text-align: center;
}

/* Service Offer 2 */
.continer.service2 {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

#whychooseus {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    padding-bottom: 20px;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 15px 0 10px 0;
}

.service-card p {
    font-size: 0.95rem;
    padding: 0 15px;
    color: #555;
    line-height: 1.5;
}



/* Packages */
.package {
  /* background-image: url(Resources/darkbg2.jpg); */
  background-attachment: fixed;
  /* This keeps the background in place */
  background-size: cover;
  /* This makes the image cover the entire area */
  background-position: center;
  /* This centers the image */
  background-repeat: no-repeat;
  /* Optional: prevents repeating */
}

.package h2 {
  margin-top: 100px;
  padding-top: 50px;
  text-align: center;
}
.cart {
  transition: transform 0.4s ease-in-out;
  cursor: pointer;
  margin-top: 50px;
  width: 300px;
  height: 400px;
}
.cart:hover {
  transform: scale(110%);
}
.cart img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 3px;
}
.button-wrap {
  margin-top: -10px;
  text-align: right;
}
.price {
  align-items: right;
  background: none;
  border: 2px solid #3f3f3f;
  color: #f7db4d;
  padding: 8px 16px;
  font-size: 16px;
  font-family: sans-serif;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
/* New Package */
.card-img-top {
  height: 300px;
}

/* Design */
.designed-by {
    text-align: right;
    padding: 5px 0;
    font-size: 18px;
    font-weight: 400;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #d4af37; /* Luxurious gold */
    margin: 0;
}

.designed-by a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.3s, border-bottom 0.3s;
    font-weight: bold;
}

.designed-by a:hover {
    color: #d4af37; /* Gold on hover */
    border-bottom: 1px solid #d4af37;
}



/* Media Query  */
@media (max-width: 768px) {
  .navbar-nav{ padding-left: 10px;}
  .about-text, .features, .service2, .umrah-desc p{
    text-align: justify;
  }
  .package h2 {
    padding-bottom: 50px;
  }
  .review {
  margin-top: 10px;
  margin-left: 150px;
  }
  .about-us {
  flex-wrap: wrap;
  text-align: justify;
  }
  .features{
    width: 100%;
  }
  .icons{
    margin-top: 50px;
    border-bottom: solid 1px white;
    padding-bottom: 10px;
  }
  #whychooseus {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }
  .cart {
    margin: 0 60px;
  }
  .about-us {
    grid-template-columns: 1fr 1fr;
  }
  .carousel-item {
  height: 600px;
  }
  .carousel-item img{
    align-items: center;
    justify-content: center;
    height: 100vh;        /* Full viewport height */
    width: auto;          /* Adjust width */
    object-fit: cover;    /* Ensures it covers area without distortion */
  }
  .designed-by{
    margin-top: 20px;
    text-align: center;
  }
}

/* MOBILE SIZE */
@media (max-width: 480px) {
  .review {
    margin-top: 10px;
    margin-left: 50px;
  }
}

