@import url("https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i");
@import url("https://fonts.googleapis.com/css?family=Raleway:100,400,600,700,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Baloo+Chettan&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box !important;
}

body {
  font-family: Poppins, sans-serif;
  background: url("images/banner3.jpg") no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  overflow-x: hidden;
}
.loader_bg {
  position: fixed;
  z-index: 9999999;
  background: #fff;
  width: 100%;
  height: 100%;
}
.loader {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader img {
  width: 280px;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 13px;
}
p {
  margin: 0px;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
}

.container {
  display: flex;
}

.sidebar {
  background: #000000c7;
  color: #fff;
  padding: 30px 35px;

  position: relative;
  height: 130%;
  width: 30%;

  border-left: #ff0909 solid 5px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 90%, 0 100%);
}

.logo img {
  width: 200px;
}

.nav-links {
  list-style: none;
  width: 100%;
}

.nav-links li {
  padding: 5px 0;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 30px;
  line-height: 30px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  display: block;
  font-size: 18px;
}
.nav-links a:hover {
  color: #fe0000;
  transition: ease-in 0.5s;
}

.content {
  flex: 1;
  background: rgba(0, 0, 0, 0.8);
  padding: 30px;
  margin: 0 50px;
}
.product-section {
  text-align: center;
  padding-bottom: 40px;
}

.product-section h1 {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 45px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
}
.product-section h1::before {
  position: absolute;
  content: "";
  background-color: #1dff09;
  width: 20px;
  height: 4px;
  transform: rotate(-36deg);
}

.product {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin: 20px auto;
  padding: 20px;
  width: 90%; /* Responsive width that scales down on smaller screens */
  max-width: 800px;
}

.product-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image img {
  width: 100px;
  height: auto;
  border-radius: 5px;
  transition: all 0.5s;
}

.product-content {
  flex: 3;
  padding-left: 20px;
  color: #fff;
  text-align: left;
}

.product-content h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.product-content p {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  margin-top: 10px;
}

.concentration {
  font-style: Poppins;
  margin-top: 10px;
  font-size: 12px;
  color: #ccc;
}

.footer {
  display: flex;
  justify-content: space-around;
  margin-top: 60px;
  padding: 40px 20px;
  color: #fff;
  text-align: left;
}

.footer-column {
  flex: 1;
  padding: 0 20px;
}

.footer-column h3 {
  font-size: 25px;
  font-weight: 600;
  line-height: 24px;
  border-bottom: #ff0909 solid 3px;
  padding-bottom: 3px;
  margin-bottom: 15px;
  color: #ddd;
}

.footer-column a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 16px;
}

.footer-column a:hover {
  color: #ff0909;
}

.footer-column p {
  margin: 5px 0;
  font-size: 12px;
}

.footer-column .contacts p {
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  /* Sidebar adjustments */
  .sidebar {
    width: 30vw; /* Scale down based on viewport width */
    padding: 4vw;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 90%, 0 100%);
    max-width: 70vw; /* Prevent overflow */
  }
  .nav-links li a {
    font-size: 3vw;
  }

  /* Logo */
  .logo img {
    width: 20vw;
    max-width: 60%; /* Ensure logo doesn’t exceed container width */
  }

  /* Content adjustments */
  .content {
    padding: 2vw;
    margin: 0 3vw;
    max-width: 100vw; /* Prevent overflow */
  }

  /* Product section */
  .product-section h1 {
    font-size: 5vw;
    margin-bottom: 2vw;
  }

  .product {
    padding: 3vw;
    margin: 2vw auto;
    width: 85vw;
    max-width: 60vw; /* Ensure it fits within the viewport */
  }

  .product-image img {
    width: 15vw;
    max-width: 100%; /* Prevent overflow */
  }

  .product-content h2 {
    font-size: 4vw;
  }

  .product-content p {
    font-size: 2vw;
    line-height: 4vw;
  }

  /* Footer adjustments */
  .footer {
    flex-direction: column;
    padding: 5vw 2vw;
    max-width: 60vw;
  }

  .footer-column h3 {
    font-size: 4vw;
  }

  .footer-column a,
  .footer-column p {
    font-size: 3vw;
  }
}
