 body {
   margin: 0;
   padding: 0;
 }

 /* Navbar Base */
 .navbar {
   background: #ffffff;
   color: #000000;
   transition: background-color 0.3s ease, box-shadow 0.3s ease;
   position: fixed;
   width: 100%;
   z-index: 1000;
 }

 .navbar-brand img {
   /* margin-right: 40px; */
   height: 75px;
   /* filter: brightness(0) invert(1); */
   /* white logo */
   transition: filter 0.3s ease;
 }

 .nav-link {
   /* color: #ffffff !important; */
   font-size: 16px;
   font-weight: 500;
   margin-left: 20px;
   position: relative;
   padding-bottom: 4px;
   transition: color 0.3s ease;
 }

 .nav-link:hover {
   color: #22376C !important;
 }

 /* Hover underline */
 .nav-link {
   position: relative;
   color: #000000;
   text-decoration: none;
   padding: 8px 12px;
 }

 .nav-link::after {
   content: "";
   position: absolute;
   left: 50%;
   bottom: 0;
   transform: translateX(-50%);
   width: 0;
   height: 2px;
   background-color: #fff;
   transition: width 0.3s ease;
 }

 /* Show underline only when hovering */
 .nav-link:hover::after {
   width: 100%;
 }


 /* Scrolled Navbar */
 .navbar.scrolled {
   background-color: #ffffff;
   box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
 }

 .navbar.scrolled .nav-link {
   color: #000 !important;
 }

 .navbar.scrolled .nav-link::after {
   background-color: #000;
 }

 .navbar.scrolled .navbar-brand img {
   filter: none;
   /* show original colored logo */
 }

 /* Dropdown */
 /* Show dropdown on hover */
 .nav-item.dropdown:hover .dropdown-menu {
   display: block;
   margin-top: 0;
 }

 /* Dropdown menu style */
 /* Dropdown menu */
 .dropdown-menu {
   border: none;
   border-radius: 5px;
   padding: 12px 0;
   background: rgba(255, 255, 255, 0.95);
   backdrop-filter: blur(8px);
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
   transition: all 0.35s ease;
   overflow: hidden;
 }

 /* Dropdown item */
 .dropdown-item {
   border: 2px solid #22376C;
   color: #22376C;
   font-weight: 500;
   padding: 12px 22px;
   border-radius: 0;
   position: relative;
   transition: all 0.3s ease;
 }

 /* Hover effect */
 .dropdown-item:hover {
   background: linear-gradient(90deg, #22376C, #2a4a8a);
   color: #fff;
   padding-left: 26px;
   /* smooth slide */
 }

 /* Optional underline animation */
 .dropdown-item::after {
   content: "";
   position: absolute;
   left: 20px;
   bottom: 8px;
   width: 0;
   height: 2px;
   background: #fff;
   transition: width 0.3s ease;
 }

 .dropdown-item:hover::after {
   width: 40%;
 }


 /* Toggler (hamburger) */
 .navbar-toggler {
   border: none;
 }

 .navbar-toggler-icon {
   background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'><path stroke='rgba(0,0,0,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/></svg>");
 }

 .navbar.scrolled .navbar-toggler-icon {
   background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'><path stroke='rgba(0,0,0,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/></svg>");
 }

 /* Custom PDF button style */
 .btn-pdf {
   background-color: #c21b29;
   color: #fff;
   font-weight: 500;
   border: none;
   padding: 10px 18px;
   border-radius: 8px;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   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;
 }




/* Base styles (mobile first) */
#hero h1 {
  font-size: 40px; /* smaller for mobile */
  font-weight: normal;
}

#hero p {
  font-size: 25px;
}

.text-container {
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
}

/* Medium devices (tablets ≥ 768px) */
@media (min-width: 768px) {
  #hero h1 {
    font-size: 2.5rem;
  }

  #hero p {
    font-size: 1.2rem;
  }

  .text-container {
    text-align: left;
    max-width: 70%;
    margin: 0;
  }
}

/* Large devices (desktops ≥ 1200px) */
@media (min-width: 1200px) {
  #hero h1 {
    font-size: 40px;
  }

  #hero p {
    font-size: 1.3rem;
  }

  .text-container {
    text-align: left;
    max-width: 60%;
  }
}



 /* Base (mobile-first) */
 .about {
   text-align: center;
   margin: 30px 0px;
   /* background-color: #22376C; */
   color: #22376C;
   padding: 50px;
   border-radius: 20px;
   /* center on small screens */
 }

 .about h1 {
   font-size: 35px;
   margin-bottom: 20px;
   text-align: left !important;
 }

 .about p {
   font-size: 25px ;
   font-style: normal;
   color: #000;
   margin: 0 auto;
   text-align: center !important;
 }

 /* Tablet screens */
@media (min-width: 768px) {
  .about {
    padding: 60px 40px;
    text-align: left;
  }

  .about h1 {
    font-size: 36px;
  }

  .about p {
    font-size: 18px;
  }
}

/* Desktop screens */
@media (min-width: 1200px) {
  .about {
    padding: 80px 100px;
  }

  .about h1 {
    font-size: 42px;
  }

  .about p {
    font-size: 20px;
  }
}
 /* Optional: style the "read more" as a link if you turn it into one */
 .about p a {
   text-decoration: none;
   border-bottom: 1px solid currentColor;
 }

 .about p a:hover {
   opacity: 0.8;
 }
/* Enquiry Button */
.enquiry-btn {
  background-color: #203464;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 35px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.enquiry-btn:hover {
  background-color: #203464;
}

/* Popup overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(253, 252, 252, 0.918);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup content */
.popup-content {
  background: #203464 ;
  padding: 15px 20px;
  border-radius: 12px;
  width: 700px;            
  max-width: 45%;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  font-size: 12px;
  transition: all 0.3s ease;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px; 
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #fdf9f9;
}

.close-btn:hover {
  color: #faf5f5;
}

/* Form styling */
.form-group {
  margin-bottom: 10px;
}

.form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
  color: #f5f4f4;
}

.form-group input,
.form-group textarea {
  width: 90%;
  padding: 6px 8px;
  font-size: 13px;
  border-radius: 6px;
  border: 1px solid #fffbfb;
  transition: 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #43daa0;
  outline: none;
  box-shadow: 0 0 5px rgba(67,218,160,0.3);
}

/* Submit button */
.submit-btn {
  background: #8a9189;
  color: #e9f3ea;
  border: none;
  padding: 8px 12px;
  border-radius: 25px;
  cursor: pointer;
  width: 50%;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: block;
  margin: 10px auto 0;
  text-align: center;
}

.submit-btn:hover {
  background: #3c3786;
  color: #e9f3e7;
  transform: scale(1.03);
}











 /*
 /* about section 
 .about {
   text-align: center;
   margin: 30px 0px;
   /* background-color: #22376C; *
   color: #22376C;
   padding: 50px;
   border-radius: 20px;

 }

 .about h1 {
   font-size: 40px;
   margin-bottom: 20px;
 }

 .about p {
   font-size: 25px;
   font-style: normal;
 } */

 /* General product section */

 /* .product {
   padding: 50px 0;
 } */

 /* Content blocks */
 .classic-content,
 .premium-content {
   padding: 30px;
   background-color: #22376C;
   border-radius: 12px;
   margin: 0 auto 30px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   text-align: center;

   /* Remove fixed height for responsiveness */
   min-height: 280px;
   /* fallback for balance */
   height: auto;
 }

 .classic-content h1,
 .premium-content h1 {
   font-size: 28px;
   color: #fff;
   margin-bottom: 15px;
 }

 .classic-content p,
 .premium-content p {
   font-size: 16px;
   line-height: 1.6;
   color: #fff;
   margin-bottom: 20px;
 }

 /* Button */
 .classic-content .btn,
 .premium-content .btn {
   border-radius: 10px;
   padding: 10px 25px;
   background-color: #fff;
   color: #22376C;
   border: 2px solid #22376C;
   font-weight: 500;
   transition: 0.3s ease;
 }

 .classic-content .btn:hover,
 .premium-content .btn:hover {
   background-color: #22376C;
   color: #fff;
 }

 /* Images */
 .classic-image,
 .premium-image {
   text-align: center;
   margin-bottom: 20px;
   border-radius: 20px;
 }

 .classic-image img,
 .premium-image img {
   width: 100%;
   height: auto;
   border-radius: 15px !important;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .classic-image img:hover,
 .premium-image img:hover {
   transform: scale(1.03);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
 }

 /* Responsive tweaks */
 @media (min-width: 768px) {

   .classic-content,
   .premium-content {
     text-align: center;
     margin: 0 auto;
     min-height: 350px;
     /* balanced layout on larger screens */
   }

   .classic-content h1,
   .premium-content h1 {
     font-size: 32px;
   }

   .classic-content p,
   .premium-content p {
     font-size: 18px;
   }
 }

 @media (max-width: 767px) {

   .classic-content,
   .premium-content {
     padding: 20px;
     min-height: unset;
     /* let content define height */
   }

   .classic-content h1,
   .premium-content h1 {
     font-size: 24px;
   }

   .classic-content p,
   .premium-content p {
     font-size: 15px;
   }
 }


 .gallery {
   padding: 50px 0;
 }

 .gallery-image {
   position: relative;
   overflow: hidden;
   border-radius: 10px;
 }

 .gallery-image img {
   width: 100%;
   display: block;
   border-radius: 10px;
 }

 .gallery-image .name {
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   background: rgba(0, 0, 0, 0.6);
   /* semi-transparent background */
   color: #fff;
   text-align: center;
   padding: 10px;
 }

 .gallery-image .name h5 {
   margin: 0;
   font-size: 16px;
 }


 /* Zoom effect on hover */
 .gallery-image img {
   transition: transform 0.4s ease-in-out;
   /* smooth zoom */
 }

 .gallery-image:hover img {
   transform: scale(1.1);
 }

 /* Name styling + animation */
 /* .name {
  width: 100%;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 8px 15px;
  border-radius: 6px;
  opacity: 0;
  transition: all 0.4s ease;
  text-align: center;
} */

 /* Show name on hover
.gallery-image:hover .name {
  bottom: 15px;
  opacity: 1;
} */



 .product-list {
   height: 465px;
   background-color: #22376C;
   border-radius: 20px;
   padding: 30px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
 }

 .product-list h1 {
   font-size: 30px;
   color: #ffffff;
   margin-bottom: 30px;
 }

 .product-columns {
   display: flex;
   justify-content: center;
   gap: 80px;
   /* space between two columns */
   text-align: left;
 }

 .product-columns ul {
   list-style: disc;
   padding-left: 20px;
   /* better indentation */
   margin: 0;
 }

 .product-columns ul li {
   font-size: 25px;
   color: #ffffff;
   margin-bottom: 12px;
 }

 /* image styling */
 .product-image {
   width: 100%;
   border-radius: 20px;
   display: block;
 }

 /* Base styles are fine as you wrote */

 /* ✅ Make section responsive */
 .our-products .row {
   align-items: center;
 }

 /* Tablet & below */
 @media (max-width: 992px) {

   .our-products .col-8,
   .our-products .col-4 {
     flex: 0 0 100%;
     max-width: 100%;
   }

   .product-list {
     height: auto;
     /* remove fixed height */
     text-align: center;
     padding: 20px;
   }

   .product-columns {
     flex-direction: column;
     gap: 30px;
     text-align: center;
   }

   .product-columns ul {
     list-style: none;
     /* cleaner on small screens */
     padding: 0;
   }

   .product-columns ul li {
     font-size: 20px;
   }

   .product-image {
     margin-top: 20px;
   }
 }

 /* Mobile */
 @media (max-width: 576px) {
   .product-list h1 {
     font-size: 22px;
     margin-bottom: 20px;
   }

   .product-columns ul li {
     font-size: 18px;
     margin-bottom: 10px;
   }
 }


 .adv-box {
   background: #22376C;
   /* default bg */
   padding: 20px;
   border-radius: 12px;
   height: 200px;
   /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
 }

 .adv-icon {
   width: 75px;
   flex-shrink: 0;
   color: #fff;
 }

 .adv-box h3 {
   font-size: 25px;
   font-weight: 600;
   color: #ffffff;
   margin-bottom: 5px;
 }

 .adv-box p {
   font-size: 16px;
   color: #ffffff;
   margin: 0;
 }

 .adv-box {

   padding: 20px;
   border-radius: 12px;
   transition: all 0.3s ease;
   /* box-shadow: 0 2px 6px rgba(0,0,0,0.1); */
   cursor: pointer;
 }

 .adv-box:hover {
   transform: translateY(-8px);
   /* box-shadow: 0 8px 20px rgba(0,0,0,0.2); */
   background: #f8f9fa;

 }

 .adv-box h3 {
   font-size: 1.2rem;
   font-weight: 600;
   text-transform: capitalize;
   transition: color 0.3s ease;
 }

 .adv-box:hover h3 {
   color: #22376C;
   /* your brand color */
 }

 .adv-box:hover p {
   color: #22376C;
   /* your brand color */
 }

 .adv-icon {
   width: 60px;
   height: 60px;
   transition: transform 0.3s ease;
 }

 .adv-box:hover .adv-icon {
   transform: scale(1.1) rotate(5deg);
 }



 /* FAQ Section Styling */
 .faq-section {
   padding: 60px 20px;
   font-family: 'Arial', sans-serif;
 }

 .faq-container {
   display: flex;
   flex-wrap: wrap;
   gap: 30px;
   justify-content: center;
   align-items: flex-start;
 }

 /* Left side */
 .faq-left {
   flex: 1;
   min-width: 280px;
   max-width: 400px;
   text-align: center;
 }

 .faq-left h2 {
   /* background: #1e3360; */
   color: #22376C;
   padding: 20px;
   border-radius: 12px;
   font-size: 1.8rem;
   margin-bottom: 20px;
   line-height: 1.3;
 }

 .faq-left img {
   height: 196px;
   width: 100%;
   border-radius: 12px;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
 }

 /* Right side */
 .faq-right {
   flex: 2;
   min-width: 300px;
   background: #1e3360;
   color: #fff;
   padding: 30px;
   border-radius: 12px;
 }

 .faq-item {
   margin-bottom: 25px;
 }

 .faq-item h3 {
   font-size: 22px;
   margin-bottom: 10px;
   font-weight: 500;
   display: flex;
   align-items: center;
   gap: 10px;
   color: #ffffff;
   /* gold for questions */
 }

 .faq-item h3 i {
   font-size: 22px;
 }

 .faq-item p {
   font-size: 18px;
   line-height: 1.6;
   color: #e0e6f0;
 }

 /* Responsive */
 @media (max-width: 992px) {
   .faq-container {
     flex-direction: column;
     align-items: center;
   }

   .faq-right {
     width: 100%;
     margin-top: 20px;
   }
 }

 @media (max-width: 600px) {
   .faq-left h2 {
     font-size: 1.5rem;
     padding: 15px;
   }

   .faq-item h3 {
     font-size: 20px;
   }

   .faq-item p {
     font-size: 16px;
   }

   .faq-right {
     padding: 20px;
   }
 }



 .video {
   position: relative;
   margin: auto;
 }

 .video-container {
   position: relative;
   display: inline-block;
   width: 100%;
 }

 .video-container img {
   width: 100%;
   height: auto;
   display: block;
   border-radius: 8px;
   /* optional rounded corners */
 }

 .play-icon {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   background: rgba(0, 0, 0, 0.6);
   /* dark background */
   color: white;
   /* play icon color */
   border-radius: 50%;
   padding: 10px 20px;
   font-size: 35px;
   cursor: pointer;
   transition: 0.3s ease;
 }

 /* .play-icon:hover {
  background: #000000; /* red on hover 
  color: #fff;
} */


 /* News Section */
 .news-title {
   text-align: center;
   /* Centers the text */
   font-size: 2rem;
   /* Adjust size */
   font-weight: bold;
   /* Make it bold */
   margin-top: 30px;
   /* Add spacing */
   color: #22376C;
 }

 .news {
   text-align: center;
   /* light background */
   margin: 50px 0px;
   border-radius: 20px;
   padding: 20px 14px;
 }

 .news h1 {
   font-size: 25px;
 }

 .news-card {
   background: #1e3360;
   border-radius: 12px;
   text-align: left;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   padding: 10px;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   height: 100%;
 }

 .news-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
 }

 .news-card img {
   width: 100%;
   height: 378px;
   /* keeps images same height */
   object-fit: cover;
   border-radius: 10px;
 }

 .news-card p {
   margin: 8px 10px;
   font-size: 14px;
   color: #ffffff;
 }

 .news-card p img {
   width: 100%;
   margin-right: 6px;
 }

 .news-card h3 {
   font-size: 20px;
   margin: 8px 10px;
   color: #ffffff;
 }

 .news-card .location {
   font-weight: 500;
   color: #007bff;
   /* Bootstrap primary color */
 }




 /* Footer Base */
 .footer {
   color: #000;
   padding: 50px 20px;
   background: #f8f9fa;
   /* optional light background */
 }

 .footer-logo {
   width: 180px;
   height: auto;
 }

 /* Contact + Quick Links + Showroom Text */
 .footer p,
 .footer li {
   margin: 8px 0;
   font-size: 14px;
   display: flex;
   align-items: center;
   justify-content: flex-start;
 }

 .footer p img {
   margin-right: 10px;
   width: 18px;
   height: auto;
 }

 /* Titles */
 .footer h5 {
   font-size: 18px;
   margin-bottom: 15px;
   color: #000;
 }

 /* Links */
 .footer a {
   color: #000;
   text-decoration: none;
   transition: color 0.3s ease;
 }

 .footer a:hover {
   color: #1e3360;
 }

 /* Social icons */
 .footer a img {
   width: 28px;
   height: 28px;
   transition: transform 0.3s ease;
 }

 .footer a img:hover {
   transform: scale(1.2);
 }

 /* Responsive */
 @media (max-width: 768px) {
   .footer .row>div {
     text-align: center;
   }

   .footer p,
   .footer li {
     justify-content: center;
   }

   .footer .d-flex {
     justify-content: center !important;
   }
 }

 .view-all-btn {

   background-color: #22376C;
   /* Dark blue */
   color: #ffffff;
   /* White text */
   padding: 10px 20px;

   border-radius: 10px;
   /* Rounded corners */
   font-size: 16px;
   text-decoration: none;
   transition: all 0.3s ease;
 }

 .view-all-btn:hover {
   border: 1px solid #22376C !important;
   color: #ffffff;
   /* Change color on hover */
   transform: translateY(-2px);
   /* Lift effect */
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
 }




 /* about page start */



 .about-banner {
   position: relative;
   width: 100%;
   /* insigh */
   /* Adjust height */
   overflow: hidden;
 }

 .about-banner img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   /* Ensures full coverage */
 }


 .about-content {
   max-width: 900px;
   margin: 20px auto;
   padding: 20px;
   text-align: center;
   background: #f9f9f9;
   border-radius: 12px;
 }

 /* Heading */
 .about-content h1 {
   font-size: 35px;
   font-weight: bold;
   margin-bottom: 20px;
   color: #2c2c2c;
   line-height: 1.2;
 }

 /* Paragraph */
 .about-content p {
   font-size: 20px;
   line-height: 1.8;
   color: #000000;
   margin-bottom: 10px;
 }

 .about-content p:last-child {
   margin-bottom: 0;
 }

 /* ---------------- */
 /* Responsive styles*/
 /* ---------------- */

 /* Tablets */
 @media (max-width: 992px) {
   .about-content {
     padding: 15px;
     margin: 40px auto;
   }

   .about-content h1 {
     font-size: 28px;
   }

   .about-content p {
     font-size: 18px;
   }
 }

 /* Mobile */
 @media (max-width: 600px) {
   .about-content {
     padding: 12px;
     margin: 30px 15px;
     /* keep spacing on sides */
   }

   .about-content h1 {
     font-size: 24px;
   }

   .about-content p {
     font-size: 16px;
     line-height: 1.6;
   }
 }


 .mission {
   background: #f9f9f9;
   /* light background */

 }


 .mission h1 {
   font-size: 35px;
   font-weight: normal;
   margin-bottom: 15px;
   color: #222;
 }

 .mission p {
   font-size: 20px;
   color: #555;
   line-height: 1.7;
 }

 .mission .row {
   display: flex;
   flex-wrap: wrap;
   text-align: center;
   gap: 25px;
   /* works for both row + column spacing */
   margin-top: 40px;
 }

 .mission .col-md-4 {
   text-align: center;
   padding: 20px;
 }

 .mission .col-md-4 img {
   width: 120px;
   height: 120px;
   object-fit: cover;
   /* keeps image proportion */
   border-radius: 50%;
   /* makes it circular */
   margin-bottom: 20px;
   transition: transform 0.3s ease;
   border: 4px solid #22376C;
   /* optional brand-colored border */
 }

 .mission .col-md-4:hover img {
   transform: scale(1.1);
 }


 .mission .col-md-4 h4 {
   font-size: 1.4rem;
   font-weight: 600;
   margin-bottom: 15px;
   color: #22376C;
   /* matches your brand color */
 }

 .mission .col-md-4 p {
   color: #000;
   font-size: 15px;
   margin: 0 auto;
   max-width: 300px;
 }

 /* Card-style effect */
 .mission .col-md-4 {
   width: 400px;
   height: auto;
   border: 1px solid #22376C;
   border-radius: 12px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
 }

 .mission .col-md-4:hover {
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
   transform: translateY(-5px);
 }



 /* product page start */



 /* Tab Navigation Wrapper */
 .product-tabs {
   display: flex;
   list-style: none;
   padding: 0;
   margin: 0;
   border-bottom: 2px solid #ddd;
 }

 /* Each Tab */
 .product-tabs .tab-item {
   margin-right: 10px;
 }

 /* Tab Button */
 .product-tabs .tab-btn {
   background: none;
   border: none;
   outline: none;
   padding: 10px 20px;
   font-size: 16px;
   font-weight: 600;
   cursor: pointer;
   color: #000;
   /* black text */
   border-radius: 6px 6px 0 0;
   transition: all 0.3s ease;
 }

 /* Hover effect */
 .product-tabs .tab-btn:hover {
   background: #f5f5f5;
 }

 /* Active Tab */
 .product-tabs .tab-btn.active,
 .product-tabs .tab-btn:focus,
 .product-tabs .tab-btn[aria-selected="true"] {
   background: #22376C;
   /* brand color */
   color: #ffffff;
   /* keep text black */
   border-bottom: 2px solid #22376C;
 }

 /* Section Styling */
 #productTabsContent {
   padding: 20px 0;
 }

 #productTabsContent h2 {
   font-size: 30px;
   font-weight: 600;
   margin-bottom: 20px;
   text-align: center;
 }

 #productTabsContent p {
   text-align: center;
   color: #666;
   margin-bottom: 10px;
   margin-top: 10px;
 }

 /* Product Box */
 .product-item {
   border: 1px solid #ddd;
   border-radius: 10px;
   text-align: center;
   padding: 20px 15px !;
   transition: all 0.3s ease;
   background: #fff;
 }

 .product-item:hover {
   transform: translateY(-6px);
   border-color: #333;
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
 }

 /* Product Image */
 .product-item img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 8px;
   margin-bottom: 15px;
   transition: transform 0.3s ease;
 }

 .product-item:hover img {
   transform: scale(1.05);
 }

 /* Product Text */
 .product-item h3 {
   font-size: 1.2rem;
   font-weight: 600;
   margin-bottom: 10px;
   margin-top: 10px;
 }

 .product-item p {
   font-size: 0.95rem;
   color: #888;
   margin: 0;
 }

 .product-title {
   text-align: center;
   /* Centers the text */
   font-size: 2rem;
   /* Adjust size */
   font-weight: bold;
   /* Make it bold */
   margin-top: 30px;
   /* Add spacing */
   color: #22376C;
 }



 /* product details page */



 /* Product Details Section */
 .product-details {
   background: #f9f9f9;
   border-radius: 12px;
   padding: 40px 20px;
 }

 .product-details h1 {
   font-size: 2rem;
   font-weight: 700;
   margin-bottom: 15px;
   color: #222;
 }

 .product-details p {
   font-size: 1rem;
   line-height: 1.6;
   color: #555;
 }

 .product-details ul {
   padding-left: 20px;
 }

 .product-details ul li {
   margin-bottom: 8px;
   font-size: 0.95rem;
   color: #333;
 }

 /* Main Image */
 .product-details .main-image {
   border-radius: 10px;
   box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
 }

 /* Sub Images */
 .product-details .sub-images img {
   cursor: pointer;
   border-radius: 8px;
   transition: transform 0.3s, box-shadow 0.3s;
 }

 .product-details .sub-images img:hover {
   transform: scale(1.05);
   box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
 }

 /* WhatsApp Button */
 .product-details .btn-success {
   background-color: #25d366;
   border: none;
   font-size: 1rem;
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   border-radius: 50px;
   transition: all 0.3s ease-in-out;
 }

 .product-details .btn-success:hover {
   background-color: #1ebc57;
   transform: translateY(-2px);
   box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
 }

 .product-details .btn-success i {
   font-size: 1.2rem;
 }



 /* contact page */

 section.contact {
   max-width: 1200px;
   margin: 0 auto;
   padding: 50px 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 {
   border-bottom: 2px solid #22376C;
   color: #22376C;

 }

 /* 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;
 }


 /* warrnty page */

 .warrnty-title {
   text-align: center;
   /* Centers the text */
   font-size: 2rem;
   /* Adjust size */
   font-weight: bold;
   /* Make it bold */
   margin-top: 30px;
   /* Add spacing */
   color: #22376C;
 }

 .product-tabs {
   border-bottom: none;
   /* Remove default Bootstrap border */
   justify-content: center;
   /* Center tabs */
   margin-bottom: 20px;
 }

 /* Tab Buttons */
 .product-tabs .nav-link {
   background: #22376C;
   border: none;
   margin: 0 8px;
   padding: 12px 24px;
   border-radius: 25px;
   font-weight: 600;
   font-size: 15px;
   color: #ffffff;
   transition: all 0.3s ease;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
 }

 /* Active Tab */
 .product-tabs .nav-link.active {
   background: #22376C;
   /* Change to your brand color */
   color: #000000;
   box-shadow: 0 4px 10px rgba(4, 4, 4, 0.4);
   transform: translateY(-2px);
 }

 /* Hover */
 .product-tabs .nav-link:hover {
   background: #3c2c2c;
   color: #ffffff;
 }

 .all-products {
   /* max-width: 1000px; */
   margin: auto;
   padding: 20px;
 }

 .product-tabs .nav-link {
   color: #555;
   font-weight: 500;
   border: none;
 }

 .product-tabs .nav-link.active {
   color: #000000;
   border-bottom: 2px solid #000000;
 }

 .form-container {
   /* max-width: 1000px; */
   margin: auto;
   /* background: #fff; */
   padding: 25px;
   border-radius: 10px;
   /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
 }



 .row {
   display: flex;
   margin-bottom: 15px;
 }

 .row .col {
   flex: 1;
 }

 label {
   display: block;
   margin-bottom: 6px;
   font-weight: bold;
 }

 input,
 textarea {
   width: 100%;
   height: 50px;
   padding: 10px;
   font-size: 14px;
   background-color: #ededed;
   border: none;
 }

 textarea {
   resize: none;
   height: 80px;
 }

 .btn-container {
   text-align: center;
   margin-top: 20px;
 }

 .warrnty-btn {
   background-color: #22376C;
   padding: 10px 20px;
   color: white;
   border: none !important;
   cursor: pointer;
   border-radius: 5px;
   /* good for buttons */
   transition: background-color 0.3s ease;
   /* smooth effect */
 }

 .warrnty-btn:hover {
   background-color: #7a2f21;
   /* darker shade for hover */
 }

 /* button {
   border: 2px solid #22376C !important;
   color: #22376C;
   background-color:white;
   border: none;
   padding: 12px 25px;
   margin: 10px;
   border-radius: 6px;
   font-size: 16px;
   cursor: pointer;
   transition: 0.3s;
 }

 button:hover {
   background: #22376C;
   color: white;
   border: none !important;
 } */

 /* Warranty Section Styling */
 .warranty-details {

   margin: 40px auto;
   padding: 30px;
   background: #fff;
   border: 1px solid #ddd;
   border-radius: 12px;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   font-family: Arial, sans-serif;
   color: #333;
   line-height: 1.6;
 }

 .warranty-details h2 {
   font-size: 24px;
   font-weight: 700;
   margin-bottom: 20px;
   text-align: center;
   color: #22376C;
   /* Highlight color */
 }

 .warranty-details h3 {
   font-size: 18px;
   font-weight: 600;
   margin-top: 25px;
   margin-bottom: 10px;
   color: #444;
   border-left: 4px solid #22376C;
   padding-left: 10px;
 }

 .warranty-details h4 {
   font-size: 16px;
   font-weight: 600;
   margin-top: 20px;
   margin-bottom: 8px;
   color: #555;
 }

 .warranty-details p {
   margin-bottom: 12px;
   font-size: 15px;
 }

 .warranty-details ul {
   margin: 0 0 15px 20px;
   padding: 0;
 }

 .warranty-details ul li {
   margin-bottom: 8px;
   font-size: 14.5px;
   list-style-type: disc;
 }

 /* Row & Column Fix (if using Bootstrap-like classes) */
 .warranty-details .row {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }

 .warranty-details .col-md-6 {
   flex: 0 0 48%;
 }

 .warranty-details .col-12 {
   flex: 0 0 100%;
 }

 /* Responsive */
 @media (max-width: 768px) {
   .warranty-details {
     padding: 20px;
   }

   .warranty-details .col-md-6 {
     flex: 0 0 100%;
   }

   .warranty-details h2 {
     font-size: 20px;
   }
 }



 /* galley page */





 .journy {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 20px;
   padding: 20px 0;
 }

 .journy img {
   width: 100%;
   height: 270px;
   object-fit: cover;
   border-radius: 10px;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   cursor: pointer;
 }

 .journy img:hover {
   transform: scale(1.05);
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
 }

 /* Popup (lightbox) */
 .lightbox {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.85);
   justify-content: center;
   align-items: center;
   z-index: 1000;
 }

 .lightbox img {
   max-width: 90%;
   max-height: 80%;
   border-radius: 10px;
   box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
 }

 /* Controls */
 .lightbox .close,
 .lightbox .prev,
 .lightbox .next {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   color: white;
   font-size: 40px;
   background: rgba(0, 0, 0, 0.5);
   border: none;
   padding: 7px 15px;
   cursor: pointer;
   border-radius: 50%;
 }

 .lightbox .close {
   top: 30px;
   right: 30px;
   transform: none;
   font-size: 30px;
 }

 .lightbox .prev {
   left: 5%;
 }

 .lightbox .next {
   right: 5%;
 }

 .journy-title {
   text-align: center;
   /* Centers the text */
   font-size: 2rem;
   /* Adjust size */
   font-weight: bold;
   /* Make it bold */
   margin-top: 30px;
   /* Add spacing */
   color: #22376C;

 }

 .video-box {
   height: 300px;
   position: relative;
   overflow: hidden;
   border-radius: 12px;
   cursor: pointer;
   object-fit: fill;
 }

 .video-box img {
   width: 100%;
   display: block;
   border-radius: 12px;
   transition: transform 0.3s ease;

 }

 .video-box:hover img {
   transform: scale(1.05);
 }

 .play-btn {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   font-size: 20px;
   color: white;
   background: rgba(0, 0, 0, 0.6);
   border-radius: 50%;
   padding: 15px 20px;
   transition: background 0.3s ease;
 }

 .video-box:hover .play-btn {
   background: rgba(0, 0, 0, 0.8);
 }
 .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 */
}