  /* Fixed navbar height */
    .navbar {
      min-height: 80px; /* Set a fixed navbar height */
      padding: 0 1rem;   /* Reduce extra padding */
    }

    /* Logo styling */
    .navbar-brand img {
      max-height: 100px; /* Logo fits inside navbar */
      width: 150px;
    }

    /* Menu links size and hover effect */
    .navbar-nav .nav-link {
      color: #333;
      font-size: 1.2rem;
      transition: color 0.3s, transform 0.3s;
    }

    .navbar-nav .nav-link:hover {
      color: orange;
      transform: scale(1.05);
    }

    /* Remove focus border/outline on toggler */
    .navbar-toggler:focus {
      box-shadow: none;
      outline: none;
    }

    /* Remove border on toggler */
    .navbar-toggler {
      border: none;
    }

    /* Dropdown design */
    .dropdown-menu {
      background: rgba(0, 0, 0, 0.7);  /* black transparent */
      backdrop-filter: blur(8px);       /* blur effect */
      border-radius: 12px;
      border: none;
      padding: 0.5rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
    .dropdown-item {
      font-size: 1rem;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s ease;
      border-radius: 8px;
      padding: 0.6rem 1rem;
    }
    .dropdown-item i {
      font-size: 1.2rem;
      color: orange;
    }
    .dropdown-item:hover {
      background: orange;
      color: #fff;
    }
    .dropdown-item:hover i {
      color: #fff;
    }

   

    /* Add padding-top to body so content isn't hidden behind navbar */
    body {
      padding-top: 110px; /* Adjust to match navbar height */
    }

    /* Responsive adjustments */
    @media (max-width: 767px) {
      .navbar-nav .nav-link {
        font-size: 1rem; /* smaller menu links for mobile */
      }
      .navbar-brand img {
        height: 70px;
        width:100px /* smaller logo on mobile */
      }
    }


    /* hero section */

     .hero-carousel img {
      width: 100%;
      height: 70vh;
      object-fit: cover;
    }

    @media (max-width: 992px) {
      .hero-carousel img {
        height: 80vh;
    
      }
      
    }


    /* Indicator style */
    .carousel-indicators [data-bs-target] {
      width: 40px;
      height: 4px;
      border-radius: 2px;
      background-color: #fff;
      opacity: 0.5;
      transition: all 0.3s ease;
    }
    .carousel-indicators .active {
      opacity: 1;
      background-color: #ff6600;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      filter: invert(1);
    }

    /* about */
        /* Title */
    .experience-section-title {
      font-weight: 700;
    }
    .experience-section-title span {
      color: #ff6600; /* orange */
    }

    /* Carousel */
    .experience-carousel img {
      max-height: 350px;
      object-fit: contain;
      border-radius: 0;
    }
    .experience-carousel .carousel-control-prev,
    .experience-carousel .carousel-control-next {
      width: 5%;
    }
    .experience-carousel .carousel-control-prev {
      left: -50px;
    }
    .experience-carousel .carousel-control-next {
      right: -50px;
    }

    /* Text content */
    .experience-text p {
      margin-bottom: 1.5rem;
    }


    /*gallery section*/
      .gallery-section { background: #f9f9f9; padding: 60px 0; }
    .gallery img {
  border-radius: 10px;
  cursor: pointer;
  transition: transform .25s;
  width: 100%;
  height: 240px;          /* fixed thumbnail height */
  object-fit: cover;      /* crop instead of stretch */
  display: block;
  margin: 0 auto;
}

    .gallery img:hover { transform: scale(1.04); }

    /* Modal / carousel visuals */
    #galleryModal .modal-content {
      background: transparent;
      border: none;
      overflow: visible;
    }
    #galleryModal .modal-dialog { max-width: 900px; }

    /* Carousel image sizing inside modal */
    #galleryCarousel .carousel-item img {
      width: 100%;
      max-height: 75vh;
      object-fit: contain;
      border-radius: 6px;
    }

    /* Make prev/next large and visible outside the image */
    #galleryModal .carousel-control-prev,
    #galleryModal .carousel-control-next {
      width: 76px;
      top: 50%;
      transform: translateY(-50%);
      color: #fff;
      opacity: 1;
    }
    #galleryModal .carousel-control-prev-icon,
    #galleryModal .carousel-control-next-icon {
      width: 56px;
      height: 56px;
      background-size: 100% 100%;
      filter: drop-shadow(0 4px 12px rgba(0,0,0,.45));
    }

    /* Close button top-right (round) */
    .modal-close-custom {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 1100;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: none;
      background: rgba(0,0,0,0.65);
      color: #fff;
      font-size: 22px;
      display:flex;
      align-items:center;
      justify-content:center;
    }

    /* Make the backdrop darker a little */
    .modal-backdrop.show { background-color: rgba(0,0,0,0.75); }


    /* contact section */
      /* Contact section without background card */
    .contact-section {
      padding: 60px 0;
      background-color: transparent; /* no card background */
      color: #333;
      position: relative;

    }
/* Media query for screens smaller than 992px */
@media (max-width: 991.98px) {
  .contact-section {
    padding: 40px 20px; /* example: reduce padding on smaller screens */
    /* You can add more responsive styles here */
  }
}
    .contact-title {
      font-weight: bold;
      font-size: 2.2rem;
      text-transform: uppercase;
      color: #333;
    }

    .contact-subtitle {
      color: #666;
      margin-bottom: 40px;
    }

    /* Form styling */
    .form-control, textarea {
      background-color: #fff;
      border: 2px solid rgb(12, 11, 11);
      border-radius: 0;
      color: #333;
      
    }

    .form-control::placeholder {
      color: #202020;
      opacity: 1;
    }

    .form-control:focus {
      border-color: #1f1e1d;
      background-color: #fff;
      box-shadow: none;
      color: #333;
    }

    /* Submit button */
    .btn-submit {
      background-color:#ff6600;
      border: none;
      padding: 10px 30px;
      text-transform: uppercase;
      font-weight: bold;
      border-radius: 0;
      color: #fff;
      transition: all 0.3s;
    }

    .btn-submit:hover {
      background-color: #c97741;
      color: #fff;
    }

    /* Address styling */
    .address {
      margin-top: 30px;
      font-size: 0.95rem;
      text-transform: uppercase;
      color: #555;
    }

    /* Map styling */
    .contact-map iframe {
      width: 100%;
      height: 300px;
      border: none;
      margin-top: 20px;
      border-radius: 4px;
    }

    /* footer */
     .footer {
      background-color: #111;
      color: #ddd;
      padding: 60px 0 25px;
      text-align: center;
      font-size: 1.1rem; /* Increased base font size */
    }
    .footer h5 {
      color: #fff;
      font-weight: bold;
      margin-bottom: 18px;
      font-size: 1.4rem; /* Bigger heading */
    }
    .footer p {
      margin: 0;
      color: #ccc;
      font-size: 1.1rem; /* Bigger paragraph */
      line-height: 1.6;
    }
    .footer .footer-bottom {
      border-top: 1px solid #444;
      margin-top: 35px;
      padding-top: 20px;
      font-size: 1rem; /* Slightly bigger bottom text */
      color: #aaa;
    }
    .footer .social-icons a {
      color: #fff;
      margin: 0 12px;
      font-size: 1.5rem; /* Bigger social icons */
      transition: color 0.3s;
    }
    .footer .social-icons a:hover {
      color: #c3a35c;
    }

    /* menu section */
      /* menu section */
       .menu-item img {
      border-radius: 20px;
      width: 80%;
      height: auto;
    }
    .menu-item { text-align: center; padding: 15px; }

    /* Desktop navigation buttons outside */
    .carousel-control-prev, .carousel-control-next {
      width: 5%;
      top: 50%;
      transform: translateY(-50%);
      display: none; /* Hidden by default */
    }
    .carousel-control-prev { left: -70px; }
    .carousel-control-next { right: -70px; }
    .carousel-control-prev-icon,
    .carousel-control-next-icon { filter: invert(1); }

    /* Show buttons only on desktop */
    @media (min-width: 992px) {
      .carousel-control-prev,
      .carousel-control-next {
        display: flex;
      }
    }

   /* Mobile view: show arrows INSIDE */
@media (max-width: 992px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: flex;
    width: auto;
  }
  .carousel-control-prev { left: 15px; }
  .carousel-control-next { right: 15px; }

  /* Close button always visible */
  .modal-content .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1055; /* keep above carousel */

    border-radius: 50%;
    opacity: 1;
    filter: invert(1); /* makes the "X" icon black */
  }
}


/*resturent */
    .card-custom {

      padding: 20px;
      text-align: center;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      color: #222;
    }
    .card-pink {
      background-color: #ffe6e6; /* light pink */
    }
    .card-green {
      background-color: #e6ffe6; /* light green */
    }
    .card-custom h6 {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #6c757d;
    }
    .card-custom h3 {
      font-weight: 700;
      margin-bottom: 15px;
    }
    .card-custom img {
      width: 100%;
      max-height: 250px;
      object-fit: contain;
      border-radius: 10px;
    }
    /***************/