/* General Fonts and Colors */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
  }
  
  /* Navbar */
  #mainNavbar {
    transition: top 0.4s ease-in-out;
    position: fixed;
    width: 100%;
    z-index: 999;
  }
  
  .navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    color: #ffffff !important;
  }
  
  .navbar-nav .nav-link {
    font-weight: 500;
    color: #ffffff !important;
    position: relative;
    transition: color 0.3s, border-bottom 0.3s;
    padding-bottom: 5px;
  }
  
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    color: #ffc107 !important;
    font-weight: 600;
  }
  
  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffc107;
    transition: width 0.3s;
  }
  
  .navbar-nav .nav-link:hover::after {
    width: 100%;
  }
  
  
  
  /* About Section */
  .about-heading,
  .contact-heading {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 36px;
    color: #333;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    margin-bottom: 20px;
  }
  
  .about-text,
  .contact-subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
  }
  
  /* Product Cards */
  .card img {
    height: 300px;
    object-fit: cover;
  }
  
  .card .btn {
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 16px;
    transition: all 0.3s ease;
  }
  
  .card .btn:hover {
    background-color: #0d6efd;
    color: #fff;
  }
  
  .product-title {
    font-weight: 700;
    font-size: 1.2rem;
    color: #b30000;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    margin-bottom: 10px;
  }
  
  /* Gallery Heading */
  .gallery-heading {
    font-size: 2.8rem;
    font-weight: 600;
    color: #222;
    letter-spacing: 1px;
    position: relative;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .gallery-heading::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #dc3545;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
  }
  
  .gallery-container {
    padding-top: 100px;
  }
  
  /* Contact Section */
  .btn-contact {
    background-color: #dc3545;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
  }
  
  .btn-contact:hover {
    background-color: #a52837;
    color: #fff;
  }
  
  .contact-box {
    transition: transform 0.3s ease;
    border-left: 4px solid #dc3545;
  }
  
  .contact-box:hover {
    transform: scale(1.02);
  }
  
  .contact-link {
    color: #dc3545;
    font-weight: bold;
    text-decoration: none;
  }
  
  .contact-link:hover {
    text-decoration: underline;
  }
  
  /* Logo Hover Effect */
  .logo-img {
    height: 50px;
    transition: transform 0.3s ease;
  }
  
  .logo-img:hover {
    transform: scale(1.1);
  }
  
  /* Home Button */
  .btn-home {
    background-color: #dc3545;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    transition: background-color 0.3s;
  }
  
  .btn-home:hover {
    background-color: #a52837;
    color: #fff;
  }
  .map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}
.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border: 0;
}
.get-in-touch-heading {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #b30000;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.btn-danger {
    background-color: #dc3545;
    border: none;
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 24px;
    font-size: 18px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
}

.btn-danger:hover {
    background-color: #a52837;
    color: #fff;
}
.connect-route-button {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.get-in-touch-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: #181616;
    margin-top: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.map-frame {
    height: 520px !important;
  }
  .connect-route-button {
    margin-top: 0px;
  }
  .text-highlight {
    font-weight: 600;
    font-style: bold;
    font-size: 1.2rem;
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-left: 4px solid #007bff;
    display: inline-block;
    border-radius: 4px;
    color: #333;
  }
  .hero-text h1 {
    font-size: 3.2rem;
    font-weight: 600;
  }
  
/* Hero Section */
.hero-section {
  position: relative;
  background: url('images/hero.jpg') no-repeat center center/cover;
   display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
  padding-top: 120px;
  height: 60vh;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.hero-content {
  z-index: 1;
  max-width: 90%;
  padding: 20px;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(114, 112, 112, 0.4); /* dark overlay for better text visibility */
  z-index: 0;
}



.sub-tagline {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 10px;
  color: #ffffff;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

/* Hero Section */


.hero-section h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 56px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  color: rgb(161, 6, 6);
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.gallery-img {
  width: 100%;
  height: 250px; /* Same height for all images */
  object-fit: cover; /* Crop to fit the box */
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}