* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  background-color: #FFEFE1;
  font-family: poppins, sans-serif;
}

.container {
  /* max-width: 1200px; */
  width: 100%;
}

/* Default floating navbar (centered over banner) */
.header .navbar {
  position: absolute;
  top: 30px;
  /* floating gap */
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  background: #fdf7f1 !important;
  font-size: 22px;
  border-radius: 10px;
  transition: all 0.1s ease-in-out;
  z-index: 1100;
}

/* Scrolled state: stick to top full width */
.header .navbar.scrolled {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  transform: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0.5rem 1rem !important;
  /* keep a little padding for links */
  z-index: 1200;
}


.navbar-nav .nav-link {
  position: relative;
  color: #000;
  /* default text color */
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

/* Underline effect */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  /* adjust spacing below text */
  width: 0;
  height: 2px;
  background-color: #e67e22;
  /* highlight color */
  transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
  color: #e67e22;
  /* text color on hover */
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
  /* expands underline smoothly */
}

/* Banner container */
.banner {
  position: relative;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Text inside banner */
/* Make banner full height */
#bannerCarousel .carousel-item img {
  height: 100vh;
  object-fit: cover;
}

/* Center text */
.carousel-caption.custom-caption {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: unset;
  /* remove default bottom positioning */
  text-align: center;
}

/* Style text */
.carousel-caption.custom-caption h2 {
  font-size: 40px;
  /* adjust size */
  font-weight: normal;
  color: #fff;
  /* white text */
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
  /* readability */
}


.navbar {
  background-color: #fdf7f1;
  border-radius: 20px;
  padding: 10px 30px;
}


.navbar-nav .nav-link {
  color: #000;
  font-weight: 600;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #6b3f2a;
  /* brown hover */
}

.navbar-brand img {
  height: 50px;
  margin-right: -2px;
}

.navbar-brand {
  font-size: 20px;
  font-weight: bold;
  color: #3b2416;
}

.brand-sub {
  font-size: 12px;
  display: block;
  font-weight: 600;
  letter-spacing: 2px;
  color: #3b2416;
}

.btn-pdf {
  background-color: #c21b29;
  /* Red shade for PDF */
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  border: none;
  padding: 5px 10px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* space between icon and text */
  transition: all 0.3s ease;
  margin-left: 15px;
}

.btn-pdf i {
  font-size: 18px;
}

.btn-pdf:hover {
  background-color: #e21a2b;
  /* Darker red on hover */
  /* transform: translateY(-2px); */
  /* box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); */
}

.btn-pdf:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Responsive between 300px and 425px */
@media (max-width: 425px) and (min-width: 300px) {
  .navbar {
    border-radius: 0;
    /* flat look on mobile */
    padding: 8px 15px;
  }

  .navbar-brand img {
    height: 40px;
  }

  .navbar-nav {
    text-align: center;
    margin-top: 10px;
  }

  .navbar-nav .nav-link {
    display: block;
    margin: 8px 0;
    font-size: 15px;
  }

  .btn-pdf {
    width: 100%;
    justify-content: center;
    margin: 10px 0 0 0;
    font-size: 17px;
    padding: 7px 12px;
  }

  .btn-pdf i {
    font-size: 15px;
  }
}



/* just for demo content height */
.filler {
  height: 2000px;
  background: linear-gradient(#fff, #eee);
}

.navbar.scrolled {
  padding: 0.2rem 1rem !important;
  transition: all 0.3s ease-in-out;
}



/* About Section */
.content {
  padding-top: 50px;
  margin-bottom: 30px;
}

.about img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000003;
  text-align: center;
}

.about p {
  font-size: 20px;
  font-weight: normal;
  /* line-height: 1.7; */
  color: #000000;
  margin-bottom: 15px;
  text-align: justify;
}

.about a {
  display: inline-block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #007bff;
  /* Bootstrap primary color */
  text-decoration: none;
  transition: color 0.3s;
}

.about a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .about {
    text-align: center;
    margin-top: 20px;
  }

  .about h4 {
    font-size: 24px;
  }

  .about p {
    font-size: 15px;
  }
}

.review {}

.review h5 {
  font-size: 28px;
  color: #000003;
  margin-bottom: 5px;
}

.review p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
}

.review img {
  width: 100%;
  max-width: 100%;
  /* controls image max size */
  border-radius: 10px;
}

.counter {
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

/* Responsive text scaling */
@media (max-width: 768px) {
  .review h5 {
    font-size: 22px;
  }

  .review p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
}





.promise {
  padding: 60px 0;

}

.promise h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #000003;
}

.promise-card {
  width: 375px;
  height: 500px;
  padding: 10px;
  background-color: #FFF8F2;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); */
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.promise-card:hover {
  /* transform: translateY(-8px); */
  /* box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15); */
}

.promise-card img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  border-radius: 10px;
  border-radius: 10px;

}

.promise-card .card-body {
  padding: 10px;
}

.promise-card h5 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222;
}

.promise-card p {
  font-size: 20px;
  color: #000000;
}



.products h4 {
  font-size: 30px;
  color: #000000;
}

.gallery {
  background: #FFF8F2;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gallery img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-body {
  padding: 15px;
}

.gallery-title {
  font-size: 30px;
  font-weight: 600;
  color: #222;
}

.gallery:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}



.features-section {}

.feature-box {
  border: none;
  padding: 15px 15px 0px;
  border-radius: 15px;
  margin-bottom: 25px;
  overflow: hidden;
  background: #FFF8F2;
  /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 5px;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}



.feature-heading {
  font-size: 20px;
  color: #000000;
  margin-bottom: 5px;
  margin-top: 10px;
}

.feature-text {
  font-size: 16px;
  color: #000000;
  margin-bottom: 0px !important;
}

.mission {
  margin-top: 30px;
}

.mission-img img {
  width: 150px;
  height: 150px;
  border-radius: 50% !important;
  /* makes it a circle */
  object-fit: cover;
  /* crops nicely inside circle */
}


.mission-box {
  background: #FFF8F2;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.mission-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000003;

}

.mission p {
  font-size: 20px;
  color: #000000;
  line-height: 1.6;
}

.mission-list {
  font-size: 20px;
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.mission-list li {
  font-size: 17px;
  color: #000000;
}

.vision-box {
  height: auto;
  background: #FFF8F2;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


.dealership {}

.dealership-img {

  border-radius: 10px;
  width: auto;

}

.dealership-img img {

  border-radius: 10px;
  width: 100%;
  object-fit: fill;
  /* maintains aspect ratio */
}


.dealership h4 {
  font-size: 25px;
  font-weight: 600;
}

.dealership-form .form-control {
  border-radius: 8px;
  padding: 12px;
  transition: all 0.3s ease;
}

.dealership-form .form-control:focus {
  border-color: #171717;
  box-shadow: 0 0 6px rgba(255, 115, 0, 0.3);
}

.dealership-form button {
  border-radius: 8px;
  font-weight: 500;
}

.submit {
  background-color: #6F4E37;
  color: #ffffff;
  border: none;
  padding: 5px 10px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.submit:hover {
  border: 2px solid #6F4E37;
  background-color: transparent;
  color: #6F4E37;
  /* transform: scale(1.05); */
}


.footer {
  background: none;
  /* remove bg */
  color: #111;
  padding: 30px 0 15px;
  font-family: Arial, sans-serif;
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #111;
}

.footer p {
  margin: 6px 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer p:hover {
  color: #ff6600;
}

.footer p a:link,
.footer p a:visited {
  color: #000003;
}

.footer p a:hover,
.footer p a:focus {
  color: #ff6600;
}

.footer p a:active {
  color: #d95300;
}


/* Images */
.footer img {
  max-width: 100%;
}

.footer .icons {
  margin-top: 15px;
}

.footer .icons img {
  width: 28px;
  height: 28px;
  margin: 0 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.footer .icons img:hover {
  transform: scale(1.2);
}

/* Layout */
.footer .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  text-align: left;
  /* default desktop = left */
}

.footer .col-4 {
  flex: 1 1 30%;
  /* min-width: 250px; */
  padding: 10px 20px;
  text-align: center;
  /* default desktop = left */
}

/* Contact info styling */
.footer .col-4.contact p,
.footer .col-4.contact .address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 10px 0;
}

.footer .col-4.contact img {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

/* Bottom text */
.footer>.container>p {
  margin-top: 25px;
  font-size: 14px;
  text-align: center;
  color: #000000;
}

.footer .row a {
  text-decoration: none !important;
  color: #000;
}

/* ✅ Responsive: center text on tablet & mobile */
@media (max-width: 768px) {
  .footer .row {
    justify-content: center;
    text-align: center;
    /* center whole row */
  }

  .footer .col-4 {
    flex: 1 1 100%;
    margin-bottom: 20px;
    text-align: center;
    /* center per column */
  }

  .footer .col-4.contact p,
  .footer .col-4.contact .address {
    justify-content: center;
    /* center icons + text */
  }
}


.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.phone-btn {
  background-color: #28a745;
  /* Green */
}

.whatsapp-btn {
  background-color: #28a745;
  /* WhatsApp Green */
}


/* about page */

.about-banner {
  position: relative;
  height: 500px;
  /* adjust height */
  background: url("images/about\ banner.jpg") no-repeat center center/cover;
  justify-content: center;
}



/* Overview Section */
.overview {
  background: #f8f9fa;
  /* Light background */
  padding: 50px 0;
  text-align: center;
}

.overview h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #0B493A;
  /* Dark green (matches your theme) */
  margin-bottom: 10px;
}

.overview p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #000000;
  margin: 0;
}

/* Add hover effect */
.overview .col-3:hover h3 {
  color: #198754;
  /* Bootstrap success green */
  transform: scale(1.1);
  transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .overview .col-3 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .overview .col-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


/* About Us Section */
.about-us {
  padding: 80px 0;
  background: #4A2D29;
  /* light grey background */
}

.about-us h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  /* deep green (matches your theme) */
  margin-bottom: 20px;
}

.about-us p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
}

.about-us .image-container img {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.about-us .image-container img:hover {
  transform: scale(1.05);
  /* subtle zoom effect */
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .about-us {
    text-align: center;
  }

  .about-us h3 {
    margin-top: 20px;
  }
}



/* ---------- Offer Section ---------- */
.Offer {

  --offer-card-bg: #ffffff;
  --offer-text: #1b2430;
  --offer-muted: #5b6472;
  --offer-accent: #0B493A;
  /* your brand green */
  --offer-accent-soft: rgba(11, 73, 58, 0.08);

  padding: 64px 0;
  background: linear-gradient(180deg, var(--offer-bg), #fff);
  color: var(--offer-text);
}

.Offer h3 {
  /* font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem); */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--offer-accent);
}

.Offer p {
  color: black;
  margin-bottom: 14px;
  font-size: 20px;
}

/* Give the right-side text area a light card feel on larger screens */
@media (min-width: 768px) {
  .Offer .col-md-6:last-child {
    background: var(--offer-card-bg);
    border-radius: 1rem;
    box-shadow: 0 8px 24px var(--offer-accent-soft);
    padding: 28px;
  }
}

/* Image styles */
.Offer .image-container {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 30px var(--offer-accent-soft);
}

.Offer .image-container img {
  display: block;
  width: 100%;
  height: 504px;
  /* max-height: 520px; */
  /* prevents super-tall images */
  object-fit: cover;
  transform: scale(1);
  transition: transform 500ms ease;
}

.Offer .image-container:hover img {
  transform: scale(1.025);
}

/* List: custom check bullets */
.Offer ul {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 12px;
}

.Offer li {
  position: relative;
  padding-left: 45px;
  line-height: 1.55;
  background: #fff;
  border-radius: 12px;
  /* box-shadow: 0 4px 14px var(--offer-accent-soft); */
  padding-block: 14px;
  padding-right: 14px;
  font-size: 18px;
}

.Offer li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 6px, transparent 7px),
    var(--offer-accent);
  box-shadow: 0 0 0 4px rgba(11, 73, 58, 0.12);
}

/* Emphasize the feature titles */
.Offer li strong {
  color: var(--offer-text);
  font-weight: 700;
}

/* Spacing + alignment tweaks */
.Offer .row {
  row-gap: 28px;
  /* space between columns on mobile */
}

@media (min-width: 992px) {
  .Offer .row {
    /* column-gap: 20px; */
  }
}

/* Subtle entrance animation */
.Offer [class*="col-"] {
  opacity: 0;
  transform: translateY(12px);
  animation: offer-fade-up 700ms ease forwards;
}

.Offer .col-md-6:nth-child(1) {
  animation-delay: 100ms;
}

.Offer .col-md-6:nth-child(2) {
  animation-delay: 220ms;
}

@keyframes offer-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

  .Offer .image-container img,
  .Offer [class*="col-"] {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Optional: Dark mode */
@media (prefers-color-scheme: dark) {
  .Offer {
    --offer-bg: #0f141a;
    --offer-card-bg: #121821;
    --offer-text: #e6edf3;
    --offer-muted: #a6b0bf;
    --offer-accent-soft: rgba(11, 73, 58, 0.25);
    background: linear-gradient(180deg, var(--offer-bg), #0b1118);
  }

  .Offer li {
    background: var(--offer-card-bg);
  }
}

/* End of Offer Section */

.journey {
  /* padding: 60px 0; */
  /* top & bottom spacing */
}

.journey h3 {
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #0B493A;
  /* deep green highlight */
}

.journey p {
  font-size: 20px;
  line-height: 1.7;
  color: #000000;
  margin: 0 auto;
  /* keeps text readable */
}

.journey img {
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.journey img:hover {
  transform: scale(1.05);
  /* subtle zoom on hover */
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .journey p {
    max-width: 100%;
    /* full width on small screens */
  }

  .journey h3 {
    font-size: 1.5rem;
  }
}

/* End of About Page */



/* products page */



.products-banner {
  position: relative;
  height: 500px;
  /* adjust height */
  background: url("images/products\ banner.jpg") no-repeat center center/cover;
  justify-content: center;
}


/* Products Section */
.products h3 {
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  margin: 20px 0px 20px 0px;
  position: relative;
  display: inline-block;
}

.products h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0B493A;
  /* brand color */
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.products h6 {
  font-size: 20px;
  text-align: center;
  margin: 20px 0px 20px 0px;
  position: relative;
  display: inline-block;
}

/* Product Card */
.card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); */

}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Product Image */
.card-img img {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  transition: transform 0.4s ease;
}

.card:hover .card-img img {
  /* transform: scale(1.05); */
}

.cards-body {
  /* padding: 15px; */
  /* background: #4A2D29; */
  color: #000000;
}


.enquiry-btn {
  padding: 10px 25px;
  background: #198754;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  margin-bottom: 15px;
}

.enquiry-btn:hover {
  background: #198754;
  transform: translateY(-2px);
  /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4); */
}

.enquiry-btn:active {
  transform: scale(0.95);
}


/* Card Content */
.card-title {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 10px;
  text-decoration: none !important;
}

.card-text {
  font-size: 0.95rem;
  color: #000000 !important;
  text-decoration: none !important;
}


/* gallerey page */




.gallerey-banner {
  position: relative;
  height: 500px;
  /* adjust height */
  background: url("images/gallery\ banner.jpg") no-repeat center center/cover;
  justify-content: center;
}


.gallery-section h3 {
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  margin: 20px 0px 20px 0px;
  position: relative;
  display: inline-block;
}

.gallery-section h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0B493A;
  /* brand color */
  margin: 0.5rem auto 0;
  border-radius: 2px;
}


/* Lightbox background */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1050;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

/* Lightbox image */
.lightbox-content {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* Navigation arrows */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: white;
  padding: 10px;
  user-select: none;
  transform: translateY(-50%);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* Animation */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}



/* contact page */


.contact-banner {
  position: relative;
  height: 500px;
  /* adjust height */
  background: url("images/contact\ banner.jpg") no-repeat center center/cover;
  justify-content: center;
}

.get h3 {
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  margin: 20px 0px 20px 0px;
  position: relative;
  display: inline-block;
}

.get h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0B493A;
  /* brand color */
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

section.contact {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
}

.contact-title {
  text-align: center;
  /* Centers the text */
  font-size: 2rem;
  /* Adjust size */
  font-weight: bold;
  /* Make it bold */
  margin-top: 30px;
  color: #22376C;
}

.contact-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left form */
.contact-form {
  flex: 1;
  min-width: 320px;
  /* background: #fff; */
  padding: 20px;
  border-radius: 10px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
}

.contact-form h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-form p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: #666;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
  font-size: 0.95rem;
  background: transparent;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-bottom: 2px solid #000;
}

.contact-form button {
  background: #22376C;
  color: #fff;
  padding: 12px 25px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1rem;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #fff;
  color: #22376C !important;
}

/* Right info */
.contact-info {
  flex: 1;
  min-width: 250px;
}

.info-box {
  margin-bottom: 25px;
}

.info-box h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.info-box p {
  font-size: 15px;
  margin: 0;
  color: #666;
}

.info-box a {
  color: #22376C;
  text-decoration: none;
}

.info-box a:hover {
  text-decoration: underline;
}

/* Map */
.map {
  width: 100%;
  max-width: 1200px;
  /* control max size */
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.map iframe {
  width: 100%;
  height: 450px;
  display: block;
}




/* produc details page */


.product-details h3 {
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  margin: 20px 0px 20px 0px;
  position: relative;
  display: inline-block;
}

.product-details h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0B493A;
  /* brand color */
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* Product Details Section */
.product-details {
  /* background: #f9f9f9; */
}

.product-details h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
}

.product-details p {
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
}

.product-details ul {
  padding-left: 18px;
  color: #000000;
}

.product-details li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* Main Image */
.main-image {
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out;
  display: block;
  margin: 0 auto;
  /* centers horizontally */
}

.main-image:hover {
  transform: scale(1.02);
}

/* Sub Images (Thumbnails) */
.sub-images img {
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}

.sub-images img:hover {
  border: 2px solid #FFEFE1;
  /* Green border */
  transform: scale(1.05);
}

/* Navigation Buttons */
#prevBtn,
#nextBtn {
  display: flex;
  /* enable flexbox */
  justify-content: center;
  /* center horizontally */
  align-items: center;
  /* center vertically */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: #fff;
  font-size: 1.5rem;
  color: #000000;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  /* makes it feel like a button */
}

#prevBtn:hover,
#nextBtn:hover {
  background: #000000;
  /* Green background on hover */
  color: #fff;
  /* White icon on hover */
  transform: scale(1.1);
  /* Slightly enlarge */
}

/* WhatsApp Button */
.btn-success {
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.btn-success:hover {
  background: #1ebc5b;
  transform: scale(1.05);
}




/* product-category page */

.section-title {
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  margin: 20px 0;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  /* width: 100px; */
  height: 3px;
  background: #0B493A;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}


.gallery-a {
  background: #FFF8F2;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gallery-a img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-body {
  padding: 15px 15px 0px 15px;
}

.gallery-title {
  font-size: 24px;
  font-weight: 600;
  color: #222;
}

.gallery-a a {
  text-decoration: none;
  color: inherit;
  /* Keeps text same color as parent */
  display: block;
  /* Makes the whole image + body clickable */
}


.gallery-a:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* tab section  */



/* Product Tabs */
.product-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.product-tabs .nav-link {
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid #4d2b29;
  color: #4d2b29;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-tabs .nav-link:hover {
  background-color: #4d2b29;
  color: #fff;
}

.product-tabs .nav-link.active {
  background-color: #4d2b29;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

/* 2️⃣ Product Grid Styles */
/* Product Cards */


.product-item {
  width: 250px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-item .gallery-body {
  padding: 15px;
}

.product-item .gallery-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000003;
}

/* Responsive */

@media (max-width: 768px) {
  .product-item {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .product-item {
    width: 100%;
  }
}

/* .fade-in {
  animation: fadeIn 0.5s ease;
} */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade:not(.show) {
  opacity: 1 !important;
}