body {
  background: radial-gradient( rgb(19, 30, 37) 24%, rgb(19, 30, 37) 66%) ; /* Ensure the path is correct */
  background-size: cover; /* Ensures the image covers the entire background */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  font-family: 'Amiri', serif;
  line-height: 1.6; /* Good for readability */
  color: white;
}

.hero {
  background-image: url('img/back.jpeg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero h1 {
  font-size: 3rem;
}
.hero .btn {
  margin-top: 1rem;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  z-index: 2;
}

h1, h2, h3, h4, h5, h6 {
  color: #ddd;
  font-family: 'Amiri', serif;
  font-weight: 600;  /* Semi-bold for headings */
}
.btn-gold {
  background-color: rgb(222, 236, 15);
  border: none;
  color: rgb(255, 255, 255);
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.5s;
}

.btn-gold:hover::after {
  left: 100%;
}

.btn-gold:active {
  transform: scale(0.95);
}

.btn-primary, .btn-primary:hover, .contact .contact-info i, .footer-top h4 {
  font-family: 'Amiri', serif;
  font-weight: 500;  /* Medium weight for buttons and icons */
}
.form-control:disabled, .form-control[readonly] {
  background-color: #fff;
  opacity: 1;
}

.form-control, .contact .contact-info address, .contact .contact-info p, #footer {
  font-family: 'Amiri', serif;
  font-weight: 400;  /* Regular weight for form inputs and footer text */
}
.position{
  margin-top: -30px;
}
.carousel-inner {
  width: 100%;
  height: 550px; /* Fixed height for larger screens */
}

.carousel-inner img {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  max-height: 100%; /* Ensure the image doesn't exceed the container height */
  object-fit: cover; /* Ensure images cover the area well */
}

/* Animation for carousel images */
.carousel-item img {
  transition: transform 2s ease; /* Smooth transformation */
}

/* Zoom effect on hover */
.carousel-item img:hover {
  transform: scale(1.05); /* Slightly larger on hover */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 992px) {
  .carousel-inner {
    height: 320px; /* Smaller height for tablets */
  }
}

@media (max-width: 768px) {
  .carousel-inner {
    height: 250px; /* Smaller height for smartphones */
  }
}

@media (max-width: 576px) {
  .carousel-inner {
    height: 200px; /* Smaller height for very small devices */
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  height: 100%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 100% 100%;
}

@media (max-width: 992px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 7%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-size: 80% 80%;
  }
}

@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 10%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-size: 60% 60%;
  }
}

@media (max-width: 576px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 15%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-size: 50% 50%;
  }
}



.form-control:invalid {
    border-color: #dc3545;
}
.form-control:invalid:focus {
    box-shadow: none;
}
.form-control:invalid ~ .invalid-feedback {
    display: block;
}
.invalid-feedback {
    display: none;
    color: #dc3545;
}


.free-delivery {
    width: 100%;
    display: block; /* better for full width */
    background: linear-gradient(135deg, #0a2a5a, #000000); /* dark blue to black */
    color: #e0f7ff; /* light icy blue text */
    font-weight: bold;
    font-size: 2rem;
    padding: 15px 0;
    border-radius: 0; /* no rounding for full width bar */
    box-shadow: 0 0 15px #0a84ff, 0 0 40px #0a84ff;
    text-align: center;
    font-family: 'Arial', sans-serif;
    animation: glowDelivery 2.5s ease-in-out infinite alternate;
    user-select: none;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .contact-info {
    margin-bottom: 20px;
    text-align: center;
  }
  
  .contact .contact-info i {
    font-size: 48px;
    display: inline-block;
    margin-bottom: 10px;
    color: rgb(255, 255, 255);
  }
  
  .contact .contact-info address,
  .contact .contact-info p {
    margin-bottom: 0;
    color: #fcfcfc;
  }
  
  .contact .contact-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff;
  }
  
  .contact .contact-info a {
    color: #ffffff;
  }
  
  .contact .contact-info a:hover {
    color: gold;
  }
  
  .contact .contact-address,
  .contact .contact-phone,
  .contact .contact-email {
    margin-bottom: 20px;
  }
  
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  @media (min-width: 768px) {
    .contact .contact-phone {
      border-left: 1px solid #ddd;
      border-right: 1px solid #ddd;
    }
  
    .contact .contact-address,
    .contact .contact-phone,
    .contact .contact-email {
      padding: 20px 0;
    }
  }
  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
  #footer {
    background: #111111;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
  }
  
  #footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
  }
  #footer .copyright {
    text-align: center;
    padding-top: 30px;
  }
  .jumbotron {
    background-color: #ffffff;
    color: #333;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: right;
}
.jumbotron h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.jumbotron .lead {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.jumbotron p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.btn-custom {
    background-color: black;
    color: #fff;
    border: none;
    font-size: 1.2rem;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.btn-custom:hover {
    background-color: #f5f5f5;
    color: #000;
}

.logo {
    max-width: 200px;
    margin-top: -75px;
    height: 200px;
}
.bg-image {
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media (max-width: 992px) {
  .logo {
    max-width: 150px;
    margin-top: -75px;
    height: 150px;
}
  .bg-image {
      height: 500px;
  }
}

@media (max-width: 768px) {
  .bg-image {
      height: 350px;
  }
}

@media (max-width: 576px) {
  .bg-image {
      height: 250px;
  }
}