* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* hero section start */

.hero_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90vh;
  background-color: #1e3c5d;
  color: white;
}

.hero_img {
  width: 33.33%;
}

.hero_img img {
  width: 100%;
  opacity: 50%;
}

.hero_text {
  display: flex;
  flex-direction: column;
  max-width: 33.33%;
  text-align: center;
  align-items: center;
}

.hero_text h1 {
  font-size: 4.5rem;
  line-height: 1.3;
  margin-bottom: 5px;
}

.hero_text span {
  font-size: 1.125rem;
  width: 70%;
  margin-bottom: 30px;
}

.action_btn {
  width: 175px;
  color: white;
  background-color: #951c2d;
  padding: 12px;
  border-radius: 12px;
  font-size: 1.125rem;
}

/* hero section end */

/* who are we section start */

.who_are_we_container {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  height: fit-content;
  padding: 15px 20px;
  background-image: url(../image/bg_2.png);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.who_are_we_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../image/bg_2.png);
  background-size: cover;
  background-position: center;
  filter: saturate(140%) brightness(0.5);
  z-index: 0;
}

.who_are_we {
  z-index: 2;
}

.txt_sdw {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.title {
  text-align: center;
  font-size: 2.5rem;
  color: rgb(247 35 65);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.125rem;
  color: white;
}

.trust_reason {
  margin-top: 4%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.line_hgt {
  line-height: 2;
}

.reasons {
  background: transparent;
  border-radius: 10px;
  flex: 1 1 300px;
  max-width: 30%;
  min-width: 280px;
  height: 55vh;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  color: white;
  backdrop-filter: blur(5px);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.089);
}

.reasons img {
  height: 25%;
}

.reasons h4 {
  font-size: 1.3rem;
}

.reasons p {
  font-size: 1.125rem;
}

/* who are we section end */

/* Our Products section start */

.products_container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap; /* allow wrap */
  gap: 20px; /* spacing between rows on wrap */
}

.products {
  width: fit-content; /* maintain size based on viewport width */
  display: flex;
  flex-direction: column;
  background-color: white;
  padding: 10px;
  box-shadow: 9px 20px 8px #8f8d8d;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products_section {
  height: fit-content;
  padding: 10px 50px 50px 50px;
}

.product_img img {
  width: auto;
  max-height: 42vh;
  border-radius: 10px;
}

.product_des_container img {
  width: auto;
  height: 45px;
}

.product_des_container {
  display: flex;
  justify-content: space-between;
}

/* Our Products section end */

/* Our Brands section start */
.brands_section {
  background-color: #1e3c5d;
  height: fit-content;
  padding: 20px 20px 50px 20px;
  text-align: center;
  overflow: hidden;
}

.brand_slider {
  overflow: hidden;
  margin-top: 3%;
  position: relative;
}

.logo_track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: none;
}

/* All logos */
.logo_track img {
  width: 12%;
  max-width: 120px;
  min-width: 80px;
  flex-shrink: 0;
  transition: width 0.3s ease;
}

/* Hide duplicates by default */
.duplicate-logos {
  display: none;
  display: contents; /* Makes child images behave as siblings */
}

/* Enable carousel and show duplicates on smaller screens */
@media (max-width: 900px) {
  .logo_track {
    width: max-content;
    animation: scroll 20s linear infinite;
  }

  .duplicate-logos {
    display: contents;
  }

  .logo_track img {
    width: 10vw;
    max-width: 90px;
  }
}

@media (max-width: 600px) {
  .logo_track img {
    width: 12vw;
    max-width: 70px;
  }
}

/* Carousel animation */
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Our Brands section end */

/* Choose us section start */

.choose_us {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8%;
  height: 100vh;
  padding: 15px 25px;
  overflow: hidden;
  color: white;
  z-index: 1;
}

.choose_us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../image/bg_4.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  z-index: -1;
}

.choose_us_text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-self: flex-start;
}

.choose_us_text h3 {
  font-size: 4rem;
}

.choose_us_text p {
  font-size: 1.125rem;
  line-height: 2;
}

.btn {
  font-size: 1.5rem;
  background: #951c2d;
  border-radius: 15px;
  width: max-content;
  padding: 10px 25px;
}

.choose_us_img {
  box-shadow: 8px 11px 35px #f8e7e759;
}

.choose_us_img img {
  width: 30vw;
  border-radius: 10px;
}

.read-wrapper {
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-right: 5px; /* gives breathing room for inner content */
}

.read-wrapper.collapsed {
  overflow: hidden;
}

.read-toggle {
  color: #f72341;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
  font-size: 1rem;
}

/* Choose us section end */

.contact_section {
  background-color: #1e3c5d;
  padding: 20px;
}

.form_container {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #d9d9d9;
  border-radius: 15px;
  padding: 15px 30px;
}

.message_form_1 {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 5%;
  margin-bottom: 10px;
}

.message_form_1 input,
.message_form_2 input {
  font-size: 1.1rem;
  font-family: "Poppins", sans-serif;
  border-radius: 10px;
  padding: 15px;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.15);
  border: 1px solid #a5a0a0;
}

.message_form_2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

.message_form_1 input {
  width: 47.5%;
  height: 4vh;
}

.message_form_2 input:first-child {
  height: 4vh;
}

.message_form_2 input:nth-child(2) {
  height: 20vh;
}

.contact_title {
  text-align: center;
  font-size: 2rem;
  color: rgb(247 35 65);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

.message_btn {
  color: white;
  margin-top: 20px;
  background: #951c2d;
  width: 100%;
  text-align: center;
  font-size: 1.125rem;
  padding: 5px;
  border-radius: 10px;
}

.location {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.text_location {
  background-color: white;
  border-radius: 15px;
  padding: 20px;
  height: fit-content;
  flex: 1 1 300px;
  min-width: 280px;
  max-width: 400px;
}

.text_location li {
  list-style: none;
  font-size: 1.125rem;
  text-align: center;
}

.map_location {
  flex: 1 1 auto;
  min-width: 300px;
}

.map_wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
}

.map_wrapper iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 15px;
}

/* Responsive Adjustments */
@media screen and (max-width: 900px) {
  .message_form_1 {
    flex-direction: column;
    gap: 10px;
  }

  .message_form_1 input {
    width: 100%;
  }

  .message_form_2 input:first-child,
  .message_form_2 input:nth-child(2) {
    width: 100%;
  }

  .message_form_2 input:nth-child(2) {
    height: 150px;
  }

  .location {
    flex-direction: column;
    align-items: center;
  }

  .map_wrapper iframe {
    height: 300px;
  }
}

@media screen and (max-width: 500px) {
  .contact_title {
    font-size: 1.5rem;
  }

  .text_location li {
    font-size: 1rem;
  }

  .message_btn {
    font-size: 1rem;
  }
}
