/* Style the logo */
.logo img {
  max-width: 150px;
  /* Adjust as needed */
  height: auto;
  filter: invert(1) sepia(1) saturate(5) hue-rotate(180deg);
}

/* Site Header */
/* Initial state (before scrolling) */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  /* Initially transparent */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-link {
  color: #fff;
  /* White color initially */
  transition: color 0.3s ease;
}

.underline {
  width: 50px;
  height: 5px;
  margin: 10px 0;
}

/* Scrolled state (after scrolling) */
.scrolled .site-header {
  background-color: rgb(1, 1, 1);
  box-shadow: 0 4px 8px rgba(227, 227, 227, 0.3);
  color: #000;
  height: 12%;
}

.scrolled .site-title h1,
.scrolled .site-title h2 {
  font-weight: lighter;
  color: #fff;
  margin: 0;
  font-size: 24px !important;
}

.scrolled .site-header .navbar-nav .nav-link {
  color: #fff !important;
}

.nav-link.active {
  color: rgb(249, 0, 2) !important;
}

.logo-section {
  width: 15%;
  padding: 5px 10px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}


.site-title {
  text-align: right;
  margin-right: 12px;
}

.site-title h1,
.site-title h2 {
  font-weight: lighter;
  color: #ffffff;
  margin: 0;
  font-size: 24px !important;
}

.site-title h1 {
  font-size: 1.25rem;
}

.site-title h2 {
  font-size: 1rem;
  margin-top: 3px;
}

@media (max-width: 992px) {

  .site-title h1,
  .site-title h2 {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .site-header .row:first-child {
    padding: 10px 15px;
  }

  .site-title {
    text-align: center;
  }
}

/* Navbar */
/* Initial transparent header */
.site-header {
  position: fixed;
  width: 100%;
  z-index: 10;
  background-color: transparent;
  transition: background-color 0.3s ease-in-out;
}

.site-header.scrolled {
  background-color: black;
}

.site-header.scrolled .nav-link {
  color: rgb(14, 14, 14);
  /* White text color on scroll */
}

/* Ensure that the navbar-toggler icon is visible on dark background */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' linecap='round' linejoin='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
  color: rgb(0, 0, 0);
  /* White text initially */
  transition: color 0.3s ease-in-out;
}

/* Adjust the navbar's padding to account for fixed positioning */
.nav-section .navbar {
  padding: 20px 0;
  min-height: 80px;
}

.carousel-image-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  /* Full-screen background images */
  background-size: cover;
  background-position: center;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Dark overlay */
  z-index: 10;
}



@media (max-width: 768px) {
  .navbar-toggler {
    margin-left: auto;
  }
}

/* General Styles */
body {
  background-color: #ffffff;
  color: #333333;
  font-family: Arial, sans-serif;
}

.carousel-caption-slides {
  position: absolute;
  bottom: 10%;
  right: 5%;
  color: #fff;
  text-align: left;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}

.carousel-caption h2 {
  font-size: 1.5rem;
  font-weight: 300;
}

.carousel-button {
  color: rgb(255, 255, 255);
  background-color: #333333;
  border-color: #afafaf;
  max-width: 100%;
}

.carousel-button:hover {
  color: #0b0b0b;
  background-color: rgba(255, 255, 255);
  border-color: rgba(4, 4, 4, 0.763);
}

.carousel-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
}

.carousel-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* Wrapper for the image and overlay */
.carousel-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Image settings for the carousel */
.carousel-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  /* Full height */
  width: 100%;
  /* Full width */
}

/* Overlay to darken the image */
.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* 50% opacity black overlay */
  z-index: 1;
  /* Ensure it's above the image but below the text */
}

/* Centered captions for the main carousel text */
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  /* Ensure text is above the overlay */
}

/* Styling for the main heading in the carousel */
.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
}

/* Styling for the subheading in the carousel */
.carousel-caption h2 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 0.5rem;
}

/* Button styling within the carousel */
.carousel-button {
  color: rgb(255, 255, 255);
  background-color: #333333;
  border-color: #afafaf;
  max-width: 100%;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover effect for buttons */
.carousel-button:hover {
  color: #0b0b0b;
  background-color: rgba(255, 255, 255);
  border-color: rgba(4, 4, 4, 0.763);
}

@media (max-width: 1200px) {
  .carousel-image {
    height: 100vh;
    /* Adjust height for large tablets and small desktops */
  }
}

@media (max-width: 992px) {
  .carousel-image {
    height: 100vh;
    /* Adjust height for tablets */
  }
}

@media (max-width: 768px) {
  .carousel-image {
    height: 100vh;
    /* Adjust height for mobile devices */
  }
}

@media (max-width: 576px) {
  .carousel-image {
    height: 100vh;
    /* Adjust height for small mobile devices */
  }
}

.dark-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  /* Dark overlay */
  padding: 50px;
  border-radius: 5px;
  width: 80%;
  display: inline-block;
  box-sizing: border-box;
  margin-left: auto;
  /* Align to the right */
}

@media (max-width: 1200px) {
  .dark-overlay {
    padding: 40px;
    width: 80%;
    transform: translateX(5%);
    /* Shift more to the right */
  }
}

@media (max-width: 992px) {
  .dark-overlay {
    padding: 30px;
    width: 80%;
    transform: translateX(10%);
    /* Shift more to the right */
  }
}

@media (max-width: 768px) {
  .dark-overlay {
    padding: 20px;
    width: 80%;
    transform: translateX(15%);
    /* Shift more to the right */
  }
}

@media (max-width: 576px) {
  .dark-overlay {
    padding: 15px;
    width: 80%;
    transform: translateX(20%);
    /* Shift more to the right */
  }
}

/* Hero Section */
#hero {
  position: relative;
  /* background-image: url('/assets/images/waterjetcleaner5.jpeg');  */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 1;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,
      0,
      0,
      0.5);
  /* This color and opacity create the fade effect */
  z-index: -1;
  /* Ensure the overlay is behind the content */
  opacity: 1;
  /* Adjust the opacity to control the fade level */
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
  white-space: nowrap;
  /* Prevents text from wrapping onto a new line */
  justify-content: center;
  display: flex;
  align-items: center;
}

.carousel-caption h2 {
  font-size: 1.5rem;
  font-weight: 300;
  white-space: nowrap;
  /* Prevents text from wrapping onto a new line */
  justify-content: center;
  display: flex;
  align-items: center;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: transparent;
  /* Remove the default background */
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
  font-size: 1.5rem;
  /* Adjust the size of the arrows */
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  /* Adjust the size as needed */
  height: 50px;
  border-radius: 50%;
  /* Makes the buttons round */
  background-color: rgb(34 34 34 / 76%);
  /* Yellow background color */
  display: flex;
  align-items: center;
  justify-content: center;
  top: 45%;
  margin-left: 5%;
  margin-right: 5%;
  opacity: 1;
  /* Make sure the buttons are fully visible */
}

@media (max-width: 768px) {
  .carousel-caption h2 {
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .carousel-button {
    color: rgb(255, 255, 255);
    background-color: #333333;
    border-color: #afafaf;
    font-size: 14px;
    max-width: 100%;
  }
}

/* About Section */
#about {
  padding: 60px 0;
}

#about h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

#about p.lead {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

/* Features Section */
#features i {
  color: #ffffff;
}

#features h4 {
  margin-top: 10px;
  font-size: 1.25rem;
  font-weight: 600;
}

/* Products Section */
#products .card {
  transition: all 0.3s ease-in-out;
}

#products .card:hover {
  transform: translateY(-10px);
}

/* Ensure all product cards have the same height */
#products .card {
  height: 100%;
}

#products .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Gallery Section */
#gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Footer Section */
.footer-title {
  font-weight: 300;
  margin-bottom: 8px;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer p {
  margin-bottom: 10px;
}

.footer .img-fluid {
  max-width: 150px;
}

.footer p,
.footer ul {
  margin-bottom: 0;
}

.footer ul {
  padding-left: 0;
  list-style-type: none;
}

.footer-unstyled li {
  padding-left: 0;
  list-style: none;
  line-height: 44px;
  font-family: system-ui;
}

.footer-unstyled ol,
ul {
  padding-left: 0;
}

.footer-style p {
  line-height: 44px;
  font-family: system-ui;
}

/* Footer Unstyled Class */
.footer-unstyled .ms-3 p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.footer-unstyled .ms-3 strong {
  min-width: 70px;
  /* Adjust the width to align the text */
}

.footer-unstyled .ms-3 span {
  margin-left: 10px;
  display: block;
}


@media (max-width: 768px) {
  .footer .text-md-right {
    text-align: left;
    margin-top: 20px;
  }
}

.text-center {
  text-align: center !important;
}

.text-light {
  color: rgb(255, 255, 255) !important;
}

.bg-light {
  background-color: #ffffff !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.container {
  max-width: 1140px;
}

@media (max-width: 767.98px) {
  .footer-title {
    text-align: center;
  }

  .col-md-2,
  .col-md-3,
  .col-md-4 {
    margin-bottom: 1rem;
  }
}

.carousel-item {
  height: 100vh;
  min-height: 300px;
  background-size: cover;
  background-position: center;
}

.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.carousel-container h1,
.carousel-container h2 {
  color: #fff;
  animation-duration: 1.5s;
  animation-fill-mode: both;
}

/* .carousel-image {
  position: relative;
  background-size: cover;
  background-position: center;
}

.carousel-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
} */

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated {
  animation-duration: 1.5s;
  animation-fill-mode: both;
}

.fadeInDown {
  animation-name: fadeInDown;
}

.fadeInUp {
  animation-name: fadeInUp;
}

/* Background color for the features section */
#features {
  background-color: #000000;
  padding: 40px 0;
}

.feature-icon .circle {
  background-color: transparent;
  border: 2px solid #ffffff;
  /* Dark blue color */
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.feature-icon i {
  color: #ffffff;
  /* Dark blue color */
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
  .feature-icon .circle {
    width: 60px;
    height: 60px;
  }

  .feature-icon h5 {
    font-size: 16px;
  }
}

i {
  color: #ffffff !important;
  /* Change this to your desired icon color */
  font-size: 40px;
  /* Adjust icon size as needed */
}

/* .card {
  border: gray;
  background-color: #f8f9fa;
} */

.card .card-title {
  font-weight: bold;
}

.card .btn-light {
  background-color: #0789d4;
  border-color: #5bc0de;
}

.card .card-body i {
  color: #54595a !important;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.card .btn-light:hover {
  background-color: #0789d4;
  border-color: #5bc0de;
}

.bg-footer {
  background-color: #000000;
}


.nav-link.active {
  background-color: rgba(255, 235, 12, 0.763);
  /* Example background color */
  color: #f5f0f0;
  /* Text color */
  border-radius: 5px;
  /* Optional: Add a slight border radius */
}



/* Styling for the ABOUT section */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-top: 8%;
}

.gallery-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-top: 0%;
}

.underline {
  width: 50px;
  height: 5px;
  background-color: rgb(249 0 2);
  margin: 10px 0;
}

.gallery-underline {
  width: 50px;
  height: 5px;
  background-color: rgb(249 0 2);
  margin: 10px 44%;
}

.footer-underline {
  width: 80%;
  height: 1px;
  background-color: rgb(249 0 2);
  margin: 10px 0;
}

#about img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.carousel-button {
  color: rgb(255, 255, 255);
  background-color: #333333;
  border-color: #afafaf;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.carousel-button:hover {
  color: #0b0b0b;
  background-color: rgba(255, 255, 255);
  border-color: rgba(4, 4, 4, 0.763);
}

/* Gallery carousel image styling */
.carousel-item .row {
  display: flex;
  overflow: hidden;
  /* Ensures that only the visible images are shown */
}

.custom-gallery-carousel-control-prev,
.custom-gallery-carousel-control-next {
  width: 5%;
  /* Adjust the width as needed */
  top: 34%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 10;
}

.custom-gallery-carousel-control-prev {
  left: 10px;
}

.custom-gallery-carousel-control-next {
  right: 10px;
}

.custom-gallery-carousel-control-prev-icon,
.custom-gallery-carousel-control-next-icon {
  background-color: rgb(34 34 34 / 76%);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.gallery-image {
  width: 100%;
  height: 200px;
  /* Adjust the height as needed */
  object-fit: cover;
  /* Ensures the image covers the entire area without stretching */
  border-radius: 5px;
}

.d-none {
  display: none !important;
}

.carousel-items {
  min-height: 300px;
  background-size: cover;
  background-position: center;
}



/* Products */
.list-unstyled p {
  font-family: system-ui;
}

.product-detail {
  max-width: 1100px;
}

.font-style {
  font-size: 12px;
  font-family: system-ui;
}

.custom-link {
  color: black;
  text-decoration: none;
}

.custom-link:hover {
  color: rgb(249 0 2) !important;
  text-decoration: underline;
}

/* External CSS for site styles */

.site-header .navbar-nav .nav-link {
  color: rgb(255, 255, 255) !important;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.site-header .navbar-nav .nav-link.active {
  font-weight: 600;
  color: rgb(249 0 2) !important;
  text-decoration: none;
}

.logo-section img {
  max-width: 178px;
}

.site-title {
  margin-left: 10px;
}

.site-title h1 {
  margin-bottom: 0;
}

.product-deatils {
  margin-top: 13%;
}

.navbar-nav .nav-link.active {
  color: #fff;
  margin-top: auto;
  text-decoration: underline;
  background-color: transparent;
}

.sticky-top {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* Optional shadow for sticky header */
  background-color: white;
  /* Ensure the background is visible if content scrolls below */
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0;
  max-width: 100%;
}

/* Styles when the menu is expanded */
.navbar-collapse.show {
  background-color: #0000008a;
  border-radius: 4px;
  padding: 1px 0px 1px 9px;
  margin: 1px 3px 0px 1px;
  max-width: 89%;
}

/* Add any additional custom styles below */
@media (max-width: 375px) {
  .logo img {
    max-width: 100px;
  }

  .navbar-toggler {
    margin-left: auto;
  }

  .carousel-caption h1 {
    font-size: 10px;
  }

  .carousel-caption h2 {
    font-size: 0.75rem;
  }

  .carousel-button {
    font-size: 12px;
  }

  .dark-overlay {
    padding: 10px;
    width: 80%;
    transform: translateX(25%);
  }

  .footer-title {
    text-align: start;
    padding: inherit;
  }

  .footer-unstyled ol,
  ul {
    padding: inherit;
  }

  .footer-contact {
    margin-top: 0;
    margin-bottom: 1rem;
    padding: inherit;
  }

  #features {
    background-color: #000000;
    padding: 12px 12px 12px;
    margin: 12px;
  }

  .footer-unstyled li {
    line-height: 34px;
  }

  .product-deatils .spares {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-deatils .spares img {
    width: 80% !important;
    margin-bottom: 10px;
  }

  .product-deatils .spares p {
    text-align: left;
    margin-top: 10px;
    width: 100%;
  }

  .logo-section img {
    max-width: 85px !important;
    margin-top: 5px;
  }

  .navbar-collapse {
    background-color: #0000008a;
    transition: max-height 0.3s ease;
    overflow: hidden;
  }

  .scrolled .site-header {
    background-color: rgb(1, 1, 1);
    box-shadow: 0 4px 8px rgba(227, 227, 227, 0.3);
    color: #000;
    height: 10%!important;
  }

  .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 20%!important;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait),
/* iPhone X, 11 Pro, and other similar-sized devices in portrait mode */
only screen and (max-width: 736px) and (orientation: portrait),
/* iPhone 6/7/8 Plus in portrait mode */
only screen and (max-width: 667px) and (orientation: portrait)
/* iPhone 6/7/8 in portrait mode */
  {
  .logo-section img {
    max-width: 85px !important;
    margin-top: 5px;
  }

  .name-style {
    font-size: 16px !important;
  }

  .site-title h1,
  .site-title h2 {
    font-weight: lighter;
    color: #ffffff;
    margin: 0;
    font-size: 12px !important;
  }

  .site-header {
    right: 0;
    left: 0;
    z-index: 1030;
    height: 7% !important;
    position: fixed;
    width: 100%;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 19px;
    height: 19px;
    top: 53%;
  }

  .carousel-button {
    font-size: 10px;
  }

  #about img {
    margin-top: 5%;
  }

  .carousel-image::before {
    height: 100% !important;
  }

  .carousel-caption {
    top: 49% !important;
  }

  .product-button .carousel-button:hover {
    width: 100%;
    height: 25%;
  }

  .carousel-image {
    height: 34vh;
  }

  .carousel-control-prev,
  .carousel-control-next {
    top: 44% !important;
  }

  .navbar-toggler-icon {
    display: inherit;
    width: 12px;
    height: 12px;
    background-size: 131%;
  }

  .logo-section img {
    max-width: 85px !important;
  }

  .navbar-brand {
    width: 57%;
  }

  .navbar-toggler {
    right: auto;
    line-height: 1;
    color: rgb(255 255 255);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
    margin-right: 16px;
    border: none;
    outline: none;
    box-shadow: none;
  }

  .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }

  .carousel-caption h1 {
    font-size: 10px !important;
  }

  .carousel-item {
    height: 22vh !important;

  }

  .carousel-items .row {
    display: flex;
    flex-wrap: wrap;
  }

  .carousel-items .col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 10px;
    box-sizing: border-box;
  }

  .carousel-items .mb-4 {
    margin-bottom: 16px;
  }

  .carousel-items .img-fluid {
    width: 90%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
  }

  .custom-gallery-carousel-control-prev-icon,
  .custom-gallery-carousel-control-next-icon {
    background-color: rgb(34 34 34 / 76%);
    border-radius: 50%;
    width: 23px;
    height: 23px;
  }

  .custom-gallery-carousel-control-prev,
  .custom-gallery-carousel-control-next {
    position: static;
  }

  #galleryCarousel a {
    color: transparent;
  }

  #about {
    padding: 0;
  }

  .product-deatils {
    margin-top: 24%;
  }

  .tools .img-fluid {
    height: 135px !important;
  }

  .footer-title {
    text-align: start;
    padding: inherit;
  }

  .footer-unstyled ol,
  ul {
    padding: inherit;
  }

  .footer-contact {
    margin-top: 0;
    margin-bottom: 1rem;
    padding: inherit;
  }

  #features {
    background-color: #000000;
    padding: 12px 12px 12px;
    margin: 12px;
  }

  .footer-unstyled li {
    line-height: 34px;
  }

  .scrolled .site-title h1,
  .scrolled .site-title h2 {
    font-weight: lighter;
    color: #fff;
    margin: 0;
    font-size: 12px !important;
  }

  .product-deatils .spares {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-deatils .spares img {
    width: 80% !important;
    margin-bottom: 10px;
  }

  .product-deatils .spares p {
    text-align: left;
    margin-top: 10px;
    width: 100%;
  }

  .navbar-collapse {
    background-color: #0000008a;
    transition: max-height 0.3s ease;
    overflow: hidden;
  }

  .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 20%!important;
  }
}

/* Media query for iPhone XR in portrait mode */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  .carousel-overlay {
    height: 100% !important;
  }

  .carousel-image::before {
    height: 100% !important;
  }

  .footer-title {
    text-align: start;
    padding: inherit;
  }

  .footer-unstyled ol,
  ul {
    padding: inherit;
  }

  .footer-contact {
    margin-top: 0;
    margin-bottom: 1rem;
    padding: inherit;
  }

  #features {
    background-color: #000000;
    padding: 12px 12px 12px;
    margin: 12px;
  }

  .footer-unstyled li {
    line-height: 34px;
  }

  .scrolled .site-title h1,
  .scrolled .site-title h2 {
    font-weight: lighter;
    color: #fff;
    margin: 0;
    font-size: 12px !important;
  }

  .product-deatils .spares {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-deatils .spares img {
    width: 80% !important;
    margin-bottom: 10px;
  }

  .product-deatils .spares p {
    text-align: left;
    margin-top: 10px;
    width: 100%;
  }

  .logo-section img {
    max-width: 85px !important;
    margin-top: 5px;
  }

  .navbar-collapse {
    background-color: #0000008a;
    transition: max-height 0.3s ease;
    overflow: hidden;
  }

  .scrolled .site-header {
    background-color: rgb(1, 1, 1);
    box-shadow: 0 4px 8px rgba(227, 227, 227, 0.3);
    color: #000;
    height: 10%!important;
  }
}

/* Media query for iPhone SE */
@media only screen and (max-device-width: 375px) {
  .carousel-image::before {
    height: 76% !important;
  }

  .carousel-overlay {
    height: 76% !important;
  }

  .footer-title {
    text-align: start;
    padding: inherit;
  }

  .footer-unstyled ol,
  ul {
    padding: inherit;
  }

  .footer-contact {
    margin-top: 0;
    margin-bottom: 1rem;
    padding: inherit;
  }

  #features {
    background-color: #000000;
    padding: 12px 12px 12px;
    margin: 12px;
  }

  .footer-unstyled li {
    line-height: 34px;
  }

  .scrolled .site-title h1,
  .scrolled .site-title h2 {
    font-weight: lighter;
    color: #fff;
    margin: 0;
    font-size: 12px !important;
  }

  .product-deatils .spares {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-deatils .spares img {
    width: 80%80% !important;
    margin-bottom: 10px;
  }

  .product-deatils .spares p {
    text-align: left;
    margin-top: 10px;
    width: 100%;
  }

  .logo-section img {
    max-width: 85px !important;
    margin-top: 5px;
  }

  .navbar-collapse {
    background-color: #0000008a;
    transition: max-height 0.3s ease;
    overflow: hidden;
  }

  .scrolled .site-header {
    background-color: rgb(1, 1, 1);
    box-shadow: 0 4px 8px rgba(227, 227, 227, 0.3);
    color: #000;
    height: 10%!important;
  }

  .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 20%!important;
  }
}

/* Media query for iPhone 12 pro in portrait mode */
@media only screen and (min-device-width: 390px) and (max-device-width: 390px) and (min-device-height: 844px) and (max-device-height: 844px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
  .carousel-overlay {
    height: 96% !important;
  }

  .carousel-image::before {
    height: 96% !important;
  }

  .site-header .navbar-nav .nav-link.active {
    font-weight: 600;
    color: rgb(249 0 2) !important;
    text-decoration: none;
    font-size: 14px;
  }

  .footer-title {
    text-align: start;
    padding: inherit;
  }

  .footer-unstyled ol,
  ul {
    padding: inherit;
  }

  .footer-contact {
    margin-top: 0;
    margin-bottom: 1rem;
    padding: inherit;
  }

  #features {
    background-color: #000000;
    padding: 12px 12px 12px;
    margin: 12px;
  }

  .footer-unstyled li {
    line-height: 34px;
  }

  .scrolled .site-title h1,
  .scrolled .site-title h2 {
    font-weight: lighter;
    color: #fff;
    margin: 0;
    font-size: 12px !important;
  }

  .product-deatils .spares {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-deatils .spares img {
    width: 80% !important;
    margin-bottom: 10px;
  }

  .product-deatils .spares p {
    text-align: left;
    margin-top: 10px;
    width: 100%;
  }

  .logo-section img {
    max-width: 85px !important;
    margin-top: 5px;
  }

  .navbar-collapse {
    background-color: #0000008a;
    transition: max-height 0.3s ease;
    overflow: hidden;
  }

  .scrolled .site-header {
    background-color: rgb(1, 1, 1);
    box-shadow: 0 4px 8px rgba(227, 227, 227, 0.3);
    color: #000;
    height: 10%;
  }

  .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 20%!important;
  }
}

@media (min-width: 768px) {
  .carousel-image::before {
    height: 100% !important;
  }

  .carousel-overlay {
    height: 100% !important;
  }

  .scrolled .site-title h1 {
    font-size: 24px !important;
  }
}

/* Pixel 7 - Adjust font size and weight */
@media only screen and (min-device-width: 360px) and (max-device-width: 1440px) and (orientation: portrait) {
  .lead {
    font-size: 16px;
    font-weight: 300;
  }
}

/* Samsung Galaxy S3 and Galaxy S20 - Adjust navbar-toggler margin */
@media only screen and (min-device-width: 360px) and (max-device-width: 1080px) and (orientation: portrait) {
  .navbar-toggler {
    margin-right: 87px;
  }
}

/* Media query for devices with a width between 374px and 415px */
@media only screen and (min-width: 374px) and (max-width: 415px) {
  .site-header {
    height: 13% !important;
}
.navbar-toggler {
  margin-right: 41px;
}
}


::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
  border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}