/* Top Contact Info Bar */
.contact-info {
    font-size: 0.9rem;
  }

  /* Navbar Customization */
  .navbar-brand {
    font-weight: bold;
    color: orange;
  }
  .navbar-brand img {
    max-height: 40px;
  }

  /* Active Nav Link */
  .nav-link.active {
    color: orange;
    font-weight: bold;
  }

  /* Header Background Section */
  .main-header {
    position: relative;
  }

    #header {
    	padding: 30px 0;
    	height: 82px;
    	position: fixed;
    	left: 0;
    
    	right: 0;
    	transition: all 0.5s;
    	z-index: 997;
      }
    #header.header-scrolled {
    	background: rgba(0, 0, 0, 0.9);
    	padding: 20px 0;
    	height: 72px;
    	top: 0;
    	transition: all 0.5s;
      }
  .header-content {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }

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

  .header-content h1 {
    font-size: 2rem;
    font-weight: bold;
    z-index: 999;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .header-content {
      height: 200px;
    }
    .header-content h1 {
      font-size: 1.5rem;
    }
  }

  .carousel-item {
    height: 80vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}
.carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0.50;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    left: 5%;
    right: 5%;

}
.carousel-caption h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);

}
.carousel-caption p {
    font-size: 1.1rem;
    line-height: 1.5;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);

}
/* Mobile Styling */
@media (max-width: 768px) {
    .carousel-item {
        height: 60vh;
    }
    .carousel-caption h1 {
        font-size: 1.8rem;
    }
    .carousel-caption p {
        font-size: 0.9rem;
    }
}
@media (max-width: 576px) {
    .carousel-caption h1 {
        font-size: 1.5rem;
        text-align: center;
    }
    .carousel-caption p {
        font-size: 0.8rem;
        text-align: center;
    }
    .carousel-caption {
        left: 2%;
        right: 2%;
    }
}



/* Footer Styles */
.footer-section {
    background-color: #202020;
    font-size: 0.9rem;
    color: #ffffff;
  }

  /* Title and Text Styling */
  .footer-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff6600;
  }

  .footer-text {
    margin-bottom: 8px;
    color: #dddddd;
    line-height: 1.6;
  }

  .footer-text i {
    color: #ff6600;
    margin-right: 5px;
  }

  /* Links */
  .footer-links {
    padding: 0;
  }

  .footer-link {
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
  }

  .footer-link:hover {
    color: #ff6600;
    text-decoration: underline;
  }

  /* Social Icons */
  .social-icons {
    display: flex;
    gap: 10px;
  }

  .social-link {
    color: #ff6600;
    font-size: 1.5rem;
    transition: color 0.3s;
  }

  .social-link:hover {
    color: #ffffff;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .footer-title {
      font-size: 1.1rem;
    }
    .footer-text, .footer-link {
      font-size: 0.85rem;
    }
  }

/* home */
.header-text {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
}
.business-section, .projects-section {
    padding: 40px 0;
}
.section-title {
    font-weight: 600;
    color: #ff6600;
}
.business-wing, .project-item {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.business-wing:hover, .project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.business-image-wrapper {
  width: 110px;
  height: 110px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 15px;
}

/* Product Image */
.business-image-wrapper img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  size: cover;
  transition: transform 0.3s ease-in-out;
}
.business-image-wrapper:hover img {
  transform: scale(1.1);
}


.business-wing p {
    font-weight: 500;
    color: #444;
}
.project-item img {
    width: 100%;
    height: 190px;
    border-radius: 8px;
}
  /*About*/



  /* Message Director Section */
  img.rounded-circle {
    width: 150px;
    height: 150px;
    object-fit: cover;
  }

  h3.fw-bold {
    color: #333;
  }

  /* Mission & Vision */
  h4.fw-bold {
    color: #ff6600;
  }

  /* Client Slider */
  .client-slider img {
    max-width: 100px;
    margin: 0 auto;
  }

  /* Center Slider Arrows */
  .slick-prev, .slick-next {
    color: #ff6600;
    font-size: 1.5rem;
  }

  .slick-prev:hover, .slick-next:hover {
    color: #333;
  }


  /* Contact */
    /* Custom Styles */
    .office-section {
        text-align: center;
        padding: 50px 0;
    }

    .office-box {
        background-color: #e9ecef;
        padding: 30px;
        margin: 10px;
        border-radius: 5px;
    }

    .contact-form-section {
        text-align: center;
        padding: 50px 0;
    }

    .contact-form-section h4 {
        font-weight: bold;
        font-size: 24px;
        position: relative;
    }

    .contact-form-section h4::after {
        content: ".";
        color: orange;
        font-size: 40px;
        position: absolute;
        top: -10px;
    }

    .btn-custom {
        background-color: #ffb400;
        border: none;
        color: white;
        padding: 10px 20px;
        font-weight: bold;
        font-size: 16px;
        border-radius: 5px;
        box-shadow: 0 4px #dba300;
    }

    .btn-custom:hover {
        background-color: #e6a000;
    }

    .contact-form input, .contact-form textarea {
        background-color: #f8f9fa;
    }

    .food-section {
      text-align: center;
      padding: 20px;
      max-width: 800px;
      margin: auto;
  }
  .food-section p {
      font-size: 1.1em;
      color: #666;
  }
  .food-gallery img {
      width: 100%;
      height: auto;
      border-radius: 8px;
  }
  .branch-card {
      text-align: left;

      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      background-color: #f9f9f9;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .branch-card:hover {
      transform: translateY(-5px);
      box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
  }
  .branch-card .image-wrapper {
      width: 100%;
      height: 280px; /* Fixed height */
      margin-bottom: 15px;
  }
  .branch-card .image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: center;
      size: cover;
  }
  .branch-card h5 {
      font-weight: bold;
      margin-bottom: 10px;
  }


  .products-section {
    background-color: #f9f9f9;
  }

  .product-image-wrapper {
    width: 190px; /* Set a fixed width */
    height: 190px; /* Set a fixed height */
    overflow: hidden; /* Hide overflow */
    margin: 0 auto; /* Center the image container */
    border-radius: 8px; /* Optional: Add rounded corners */
  }

  /* Product Image */
  .product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out; /* Smooth transition for hover effect */
  }

  /* Hover Effect */
  .product-image-wrapper:hover img {
    transform: scale(1.1); /* Scale up the image slightly */
  }

  .product-card {
    background-color: #fff;
    border-radius: 8px;
    transition: transform 0.2s ease-in-out;
  }

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

  .products-section h2 {
    font-weight: bold;
  }

  /* Button Styling */
  .btn-custom {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
  }

  .btn-custom:hover {
    background-color: #e65500;
  }

  .testimonial {
   background-color: #202020;
  }
  .testimonial .title{
   color: #ff6600;
  }
  .testimonial .client-massege{
   color: #fff;
  }
