@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
  background-color: #F7F7F7;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  header .dekstop-header {
    display: none;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  header .dekstop-header {
    display: none;
  }
}
header .dekstop-header .marque {
  background-color: #1B5394;
  color: white;
}
header .dekstop-header .container {
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
header .dekstop-header .container .left {
  flex: 2;
  display: flex;
  align-items: center;
  gap: 100px;
}
header .dekstop-header .container .left .logo-container {
  width: 120px;
}
header .dekstop-header .container .left .logo-container img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
header .dekstop-header .container .left nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
}
header .dekstop-header .container .left nav ul a {
  text-decoration: none;
  /* Dropdown Styling */
}
header .dekstop-header .container .left nav ul a li {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
header .dekstop-header .container .left nav ul a li .icon-container {
  height: 20px;
  width: 20px;
}
header .dekstop-header .container .left nav ul a li .icon-container svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
}
header .dekstop-header .container .left nav ul a li:hover {
  color: #1B5394;
}
header .dekstop-header .container .left nav ul a li:hover .icon-container svg {
  stroke: #1B5394;
}
header .dekstop-header .container .right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .dekstop-header .container .right nav {
  width: 100%;
}
header .dekstop-header .container .right nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}
header .dekstop-header .container .right nav ul form {
  width: 100%;
}
header .dekstop-header .container .right nav ul .form-group-container {
  width: 100%;
}
header .dekstop-header .container .right nav ul .form-group {
  flex-direction: row;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
header .dekstop-header .container .right nav ul .form-group input {
  flex: 1;
  border: 1px solid #1B5394;
  border-bottom-left-radius: 100px;
  border-top-left-radius: 100px;
  padding: 5px 15px;
  color: #292929;
}
header .dekstop-header .container .right nav ul .form-group button {
  border: none;
  border-radius: 0;
  border-bottom-right-radius: 100px;
  border-top-right-radius: 100px;
  display: grid;
  place-items: center;
  background-color: #1B5394;
  cursor: pointer;
}
header .dekstop-header .container .right nav ul .form-group button .icon-container {
  height: 20px;
  width: 20px;
}
header .dekstop-header .container .right nav ul .form-group button .icon-container svg {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: contain;
}
header .dekstop-header .container .right nav ul a {
  text-decoration: none;
  /* Dropdown Styling */
}
header .dekstop-header .container .right nav ul a li {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  text-wrap: nowrap;
}
header .dekstop-header .container .right nav ul a li .icon-container {
  height: 20px;
  width: 20px;
}
header .dekstop-header .container .right nav ul a li .icon-container svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
}
header .mobile-banner {
  display: none;
}
header .mobile-banner .marque {
  background-color: #1B5394;
  color: white;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  header .mobile-banner {
    display: block;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  header .mobile-banner {
    display: block;
  }
}
header .mobile-banner .mobile-container {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  justify-content: space-between;
}
header .mobile-banner .mobile-container .left .logo-container {
  width: 80px;
}
header .mobile-banner .mobile-container .left .logo-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
}
header .mobile-banner .mobile-container .right {
  display: flex;
  justify-content: end;
}
header .mobile-banner .mobile-container .right .hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
header .mobile-banner .mobile-container .right .hamburger span {
  width: 20px;
  height: 3px;
  background-color: #0B5394;
}

.side-menu {
  position: fixed;
  height: 100%;
  width: 80%;
  background-color: white;
  top: 0;
  z-index: 1002;
  right: -100%;
  transition: all 0.5s ease;
}
.side-menu .flex-container {
  padding: 20px 30px 0;
  align-items: center;
}
.side-menu .flex-container .logo-container {
  width: 100px;
}
.side-menu .flex-container .logo-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
}
.side-menu nav ul {
  list-style: none;
  padding-left: 20px;
}
.side-menu nav ul a li {
  padding-bottom: 20px;
  font-size: 16px;
}
.side-menu nav ul a .btn {
  padding: 10px 20px;
}
.side-menu nav ul .mobile-dropdown details {
  width: 100%;
}
.side-menu nav ul .mobile-dropdown details summary {
  list-style: none;
  font-size: 16px;
  padding: 0 10px 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.side-menu nav ul .mobile-dropdown details summary .toggle-icon {
  margin-left: auto;
  padding-left: 10px;
}
.side-menu nav ul .mobile-dropdown details[open] summary .toggle-icon {
  content: "-";
}
.side-menu nav ul .mobile-dropdown .category {
  padding: 10px 0 10px 0;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.side-menu nav ul .mobile-dropdown .mobile-categories,
.side-menu nav ul .mobile-dropdown .mobile-subcategories,
.side-menu nav ul .mobile-dropdown .mobile-subsubcategories {
  padding: 0 10px;
  margin-bottom: 20px;
  list-style: none;
  max-height: 500px;
  overflow-y: auto;
}
.side-menu nav ul .mobile-dropdown a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  color: inherit;
}
.side-menu nav ul .mobile-dropdown a:hover {
  background-color: #f5f5f5;
}

.backdrop {
  background-color: rgba(0, 0, 0, 0.226);
  position: fixed;
  top: 0;
  z-index: 1001;
  height: 100%;
  width: 100%;
  display: none;
}

.active {
  transition: all 0.5s ease;
  right: 0%;
}

.banner-section {
  min-height: 100vh;
  display: flex;
  /* Flex container */
  align-items: center;
  /* Align items vertically center */
  justify-content: space-between;
  /* Ensure space between left and right sections */
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .banner-section {
    flex-direction: column-reverse;
    margin-top: 100px !important;
    min-height: 80vh;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .banner-section {
    flex-direction: column-reverse;
    margin-top: 100px !important;
    min-height: 80vh;
  }
}
.banner-section .left {
  flex: 2;
  /* Takes up equal space */
}
.banner-section .left .subtitle {
  font-size: 20px;
  /* Font size for subtitle */
  color: #333;
  /* Optional color for the subtitle */
  margin-bottom: 10px;
  /* Optional margin for spacing */
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .banner-section .left .subtitle {
    font-size: 14px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .banner-section .left .subtitle {
    font-size: 14px;
  }
}
.banner-section .left .title h1 {
  font-size: 40px;
  line-height: 40px;
  margin-top: 10px;
  /* Font size for the title */
  color: #1B5394;
  /* Use your variable for blue color */
  margin-bottom: 20px;
  /* Optional margin for spacing */
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .banner-section .left .title h1 {
    font-size: 32px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .banner-section .left .title h1 {
    font-size: 32px;
  }
}
.banner-section .left .description p {
  font-size: 14px;
  /* Font size for the description */
  color: #505050;
  /* Color for description text */
  line-height: 1.6;
  /* Optional line-height for better readability */
  margin-bottom: 20px;
  /* Optional margin */
}
.banner-section .left .button-container {
  display: flex;
  /* Flex container for buttons */
  gap: 16px;
  /* Space between buttons */
}
.banner-section .left .button-container a {
  text-decoration: none;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
}
.banner-section .right {
  flex: 2;
  /* Takes up equal space */
}
.banner-section .right .img-container {
  width: 100%;
  /* Full width */
  height: 400px;
  /* Fixed height for the image container */
  max-width: 800px;
  /* Optional: limit the max width */
  animation: float 5s ease-in-out infinite;
  /* Apply the float animation */
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .banner-section .right .img-container {
    height: 200px;
    max-width: 300px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .banner-section .right .img-container {
    height: 200px;
    max-width: 300px;
  }
}
.banner-section .right .img-container img {
  width: 100%;
  /* Make the image fill the width of the container */
  height: 100%;
  /* Make the image fill the height of the container */
  object-fit: cover;
  /* Maintain aspect ratio */
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .about-us-section {
    display: none;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .about-us-section {
    display: none;
  }
}
.about-us-section .about-us {
  margin-top: 30px;
}
.about-us-section .about-us .about-us-img {
  padding: 40px;
  width: fit-content;
  border-radius: 500px;
  border: 1px solid #1B5394;
  margin: auto;
  position: relative;
}
.about-us-section .about-us .about-us-img:after {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 50px;
  width: 100%;
  background-color: #F7F7F7;
}
.about-us-section .about-us .about-us-img:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 50px;
  width: 100%;
  background-color: #F7F7F7;
}
.about-us-section .about-us .about-us-img .img-container {
  height: 500px;
  width: 500px;
}
.about-us-section .about-us .about-us-img .img-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.about-us-section .about-us .about-us-img .details {
  position: absolute;
  max-width: 300px;
}
.about-us-section .about-us .about-us-img .details .heading {
  font-size: 20px;
  font-weight: 400px;
  position: relative;
  border-bottom: 1px solid #1B5394;
  padding-bottom: 10px;
}
.about-us-section .about-us .about-us-img .details .heading:after {
  content: "";
  position: absolute;
  background-color: #1B5394;
  right: 0;
  border-radius: 50px;
  bottom: -5px;
}
.about-us-section .about-us .about-us-img .details p {
  margin-top: 10px;
  font-size: 14px;
}
.about-us-section .about-us .about-us-img .who-are-we {
  left: -50%;
  top: 10%;
}
.about-us-section .about-us .about-us-img .our-exp {
  left: -50%;
  bottom: 10%;
}
.about-us-section .about-us .about-us-img .mission {
  right: -50%;
  top: 10%;
}
.about-us-section .about-us .about-us-img .mission * {
  text-align: right;
}
.about-us-section .about-us .about-us-img .qa {
  right: -50%;
  bottom: 10%;
}
.about-us-section .about-us .about-us-img .qa * {
  text-align: right;
}

.mobile-about-us {
  display: none;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .mobile-about-us {
    display: block;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .mobile-about-us {
    display: block;
  }
}
.mobile-about-us .title-container {
  display: grid;
  place-items: center;
}
.mobile-about-us .title-container h3 {
  margin-top: 0px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
}
.mobile-about-us .img-container {
  height: 300px;
  width: 100%;
}
.mobile-about-us .img-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.mobile-about-us .content-container {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-about-us .content-container .content .head {
  color: #1B5394;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .new-section .flex-container h2 {
    font-size: 24px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .new-section .flex-container h2 {
    font-size: 24px;
  }
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .new-section .flex-container a {
    display: none;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .new-section .flex-container a {
    display: none;
  }
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .new-section .news-grid {
    display: flex;
    overflow: auto;
  }
  .new-section .news-grid .news-card {
    flex: 1;
    min-width: 250px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .new-section .news-grid {
    display: flex;
  }
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .ad-banner {
    display: none;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .ad-banner {
    display: none;
  }
}
.ad-banner .img-container {
  height: 500px;
  width: 100%;
}
.ad-banner .img-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.contact-section .content {
  padding: 30px 70px;
  background-color: #1B5394;
  border-radius: 10px;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .contact-section .content {
    padding: 30px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .contact-section .content {
    padding: 30px;
  }
}
.contact-section .content .logo-container {
  height: 60px;
  width: 150px;
}
.contact-section .content .logo-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.contact-section .content .contact-form-container {
  margin-top: 100px;
  display: flex;
  gap: 100px;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .contact-section .content .contact-form-container {
    flex-direction: column;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .contact-section .content .contact-form-container {
    flex-direction: column;
  }
}
.contact-section .content .contact-form-container .left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-section .content .contact-form-container .left h2 {
  font-size: 40px;
  font-weight: bold;
  margin: 0;
  color: white;
}
.contact-section .content .contact-form-container .left p {
  margin-top: 16px;
  color: white;
  font-size: 14px;
}
.contact-section .content .contact-form-container .left .link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  margin-bottom: 20px;
}
.contact-section .content .contact-form-container .left .link .icon-container {
  height: 20px;
  width: 20px;
}
.contact-section .content .contact-form-container .left .link .icon-container svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
}
.contact-section .content .contact-form-container .right {
  flex: 1;
}
.contact-section .content .contact-form-container .right form {
  width: 100%;
}

.product-store {
  display: flex;
  gap: 20px;
  margin-top: 150px;
  position: relative;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .product-store {
    margin-top: 50px;
    flex-direction: column;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .product-store {
    margin-top: 50px;
    flex-direction: column;
  }
}
.product-store .left {
  flex: 1;
  height: fit-content;
  position: sticky;
  top: 130px;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .product-store .left {
    position: static;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .product-store .left {
    position: static;
  }
}
.product-store .left .filter {
  padding: 20px;
  border-radius: 10px;
  background-color: white;
  /* Rotate the icon when the dropdown is toggled */
}
.product-store .left .filter .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D9D9D9;
}
.product-store .left .filter .title .btn {
  font-size: 14px;
  cursor: pointer;
}
.product-store .left .filter .accordian {
  border-bottom: 1px solid #e0e0e0;
  /* Optional border between accordions */
  padding: 10px 0;
  /* Optional styling for when the dropdown is open */
}
.product-store .left .filter .accordian .head {
  display: flex;
  /* Flexbox for aligning categories and icon */
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  /* Adjust font size as needed */
  cursor: pointer;
  padding: 10px 0;
  color: #9A9FA5;
  /* Text color for head */
}
.product-store .left .filter .accordian .head .icon-container {
  display: flex;
  align-items: center;
}
.product-store .left .filter .accordian .head .icon-container svg {
  transition: transform 0.3s ease;
  /* Smooth transition for arrow rotation */
}
.product-store .left .filter .accordian .dropdown {
  display: none;
  /* Hidden by default, shown when toggled */
}
.product-store .left .filter .accordian .dropdown .menu {
  display: flex;
  /* Flexbox for checkboxes and text */
  align-items: center;
  margin-bottom: 10px;
  color: #686868;
  font-size: 14px;
}
.product-store .left .filter .accordian .dropdown-open {
  display: block;
  /* Make the dropdown visible when open */
}
.product-store .left .filter .rotate-icon {
  transform: rotate(180deg);
  /* Rotate the arrow 180 degrees */
}
.product-store .left .filter .apply-filter-container {
  margin-top: 20px;
}
.product-store .right {
  flex: 3;
}

.product-detail-section {
  display: flex;
  margin-top: 150px;
  gap: 40px;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .product-detail-section {
    margin-top: 100px;
    flex-direction: column;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .product-detail-section {
    margin-top: 50px;
    flex-direction: column;
  }
}
.product-detail-section .left {
  flex: 1;
  position: sticky;
  top: 100px;
  height: fit-content;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .product-detail-section .left {
    position: static;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .product-detail-section .left {
    position: static;
  }
}
.product-detail-section .left .product-hero-banner {
  padding: 20px;
  height: fit-content;
  width: fit-content;
  background-color: white;
  background-color: white;
  border-radius: 10px;
}
.product-detail-section .left .product-hero-banner .img-container {
  height: 450px;
  width: 450px;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .product-detail-section .left .product-hero-banner .img-container {
    width: 100%;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .product-detail-section .left .product-hero-banner .img-container {
    width: 100%;
  }
}
.product-detail-section .left .product-hero-banner .img-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.product-detail-section .right {
  flex: 3;
}
.product-detail-section .right .content {
  padding: 40px;
  background-color: white;
  border-radius: 10px;
}
.product-detail-section .right .content .title-container .subtitle {
  font-size: 16px;
  font-weight: 500;
}
.product-detail-section .right .content .title-container .title {
  font-size: 32px;
  font-weight: 600;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .product-detail-section .right .content .title-container .title {
    font-size: 24px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .product-detail-section .right .content .title-container .title {
    font-size: 24px;
  }
}
.product-detail-section .right .content .description {
  font-size: 14px;
  color: #8A8A8A;
}
.product-detail-section .right .content .certificates {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 40px;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .product-detail-section .right .content .certificates {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .product-detail-section .right .content .certificates {
    align-items: flex-start;
    flex-direction: column;
  }
}
.product-detail-section .right .content .certificates .certificate {
  display: flex;
  align-items: center;
  color: #0B5394;
  gap: 10px;
}
.product-detail-section .right .content .certificates .certificate .icon-container {
  height: 30px;
  width: 30px;
}
.product-detail-section .right .content .certificates .certificate .icon-container svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
}
.product-detail-section .right .content .checkmark {
  margin-top: 80px;
}
.product-detail-section .right .content .checkmark .check {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-detail-section .right .content .checkmark .check .icon-container {
  height: 30px;
  width: 30px;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .product-detail-section .right .content .checkmark .check .icon-container {
    display: none;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .product-detail-section .right .content .checkmark .check .icon-container {
    display: none;
  }
}
.product-detail-section .right .content .checkmark .check .icon-container svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
}
.product-detail-section .right .content .button-container {
  margin-top: 40px;
  display: flex;
  gap: 10px;
}
.product-detail-section .right .content .button-container * {
  cursor: pointer;
}

.product-detail .tags-container {
  display: flex;
  gap: 25px;
  margin-top: 50px;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .product-detail .tags-container {
    overflow: auto;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .product-detail .tags-container {
    overflow: auto;
  }
}
.product-detail .tags-container .tag {
  padding: 15px 22px;
  border: 1px solid #D3D3D3;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 15px;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .product-detail .tags-container .tag {
    flex-direction: column;
    text-align: center;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .product-detail .tags-container .tag {
    text-align: center;
    flex-direction: column;
  }
}
.product-detail .tags-container .tag .icon-container {
  height: 24px;
  width: 24px;
}
.product-detail .tags-container .tag .icon-container svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
}
.product-detail .flex-container {
  display: flex;
  align-items: flex-start;
  margin-top: 80px;
  gap: 40px;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .product-detail .flex-container {
    flex-direction: column;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .product-detail .flex-container {
    text-align: center;
  }
}
.product-detail .flex-container .title {
  color: #1B5394;
}
.product-detail .flex-container .content {
  padding: 40px;
  background-color: white;
  border-radius: 10px;
  margin-top: 10px;
}
.product-detail .flex-container .left {
  flex: 2;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .product-detail .flex-container .left {
    width: 100%;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .product-detail .flex-container .left {
    width: 100%;
  }
}
.product-detail .flex-container .left ul {
  padding: 0;
  margin: 0;
}
.product-detail .flex-container .left ul li {
  margin-bottom: 30px;
}
.product-detail .flex-container .right {
  flex: 3;
}
.product-detail .flex-container .right head {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 20px;
}
.product-detail .flex-container .right .description {
  color: #717171;
  margin-bottom: 60px;
}
.product-detail .flex-container .product-info {
  margin-bottom: 20px;
}

.news-page-section {
  margin-top: 150px;
}

.about-banner-container {
  position: relative;
  margin-top: 80px;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .about-banner-container {
    margin-top: 65px !important;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .about-banner-container {
    margin-top: 65px !important;
  }
}
.about-banner-container .img-container {
  height: 400px;
  width: 100%;
}
.about-banner-container .img-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.about-banner-container .content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: fit-content;
  width: fit-content;
  display: grid;
  place-items: center;
  text-align: center;
}
.about-banner-container .content p {
  color: white;
}
.about-banner-container .content h1 {
  margin: 10px 0;
  color: white;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .about-banner-container .content h1 {
    font-size: 32px;
    line-height: 32px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .about-banner-container .content h1 {
    line-height: 32px;
    font-size: 32px;
  }
}
.about-banner-container .content .btn {
  width: fit-content;
  cursor: pointer;
}

.who-are-we-container {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .who-are-we-container {
    flex-direction: column;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .who-are-we-container {
    flex-direction: column;
  }
}
.who-are-we-container .left {
  flex: 1;
}
.who-are-we-container .left p {
  margin-top: 20px;
}
.who-are-we-container .right {
  flex: 1;
}
.who-are-we-container .right .img-container {
  height: 400px;
  width: 100%;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .who-are-we-container .right .img-container {
    height: 300px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .who-are-we-container .right .img-container {
    height: 300px;
  }
}
.who-are-we-container .right .img-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.our-mission .our-mission-container {
  display: flex;
  margin-top: 60px;
  gap: 50px;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .our-mission .our-mission-container {
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .our-mission .our-mission-container {
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
  }
}
.our-mission .our-mission-container .left {
  flex: 1;
}
.our-mission .our-mission-container .left .img-container {
  height: 300px;
  width: 100%;
}
.our-mission .our-mission-container .left .img-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.our-mission .our-mission-container .right {
  flex: 1;
}
.our-mission .our-mission-container .right h3 {
  color: #1B5394;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 40px;
  gap: 20px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  margin-top: 40px;
  gap: 20px;
}

.product-card {
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  max-width: 250px;
}
.product-card .img-container {
  height: 200px;
  width: 200px;
  margin: auto;
  margin-bottom: 30px;
}
.product-card .img-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.product-card .name-container {
  margin-bottom: 30px;
}
.product-card .name {
  font-size: 16px;
  font-weight: 500;
}
.product-card .category {
  font-size: 12px;
  color: #1B5394;
}
.product-card .cta {
  width: 100%;
  text-align: center;
  border-radius: 10px;
}

.news-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
}
.news-card .img-container {
  height: 200px;
  width: 100%;
}
.news-card .img-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.news-card .content {
  padding: 20px;
  padding-top: 0px;
  margin-top: 14px;
}
.news-card .content .date {
  font-size: 12px;
  color: #888888;
}
.news-card .content .name {
  font-size: 18px;
  margin-top: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card .content .feature-text {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #888888;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card .content .cta {
  color: #1B5394;
  font-size: 14px;
  text-decoration: underline !important;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.quality-grid .quality-card {
  padding: 20px;
  border: 1px solid #D3D3D3;
  border-radius: 10px;
  width: fit-content;
}
.quality-grid .quality-card .icon-container {
  padding: 10px;
  background-color: #EDEDED;
  width: fit-content;
  border-radius: 10px;
}
.quality-grid .quality-card .icon-container .icon {
  height: 30px;
  width: 30px;
}
.quality-grid .quality-card .icon-container .icon svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
}
.quality-grid .quality-card .head {
  margin-top: 90px;
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 30px;
  border-bottom: 1px solid #DCDCDC;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .quality-grid .quality-card .head {
    font-size: 16px;
    padding-bottom: 10px;
    margin-top: 50px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .quality-grid .quality-card .head {
    font-size: 16px;
    padding-bottom: 10px;
    margin-top: 50px;
  }
}
.quality-grid .quality-card .text {
  margin-top: 30px;
  font-size: 14px;
}

.dropdown {
  cursor: pointer;
  position: relative;
  /* Update your CSS to include: */
}
.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  margin: auto;
  width: 100%;
  width: 800px;
  background-color: transparent;
  z-index: 100;
  gap: 0px;
  top: -10px;
  padding: 20px 0;
}
.dropdown .dropdown-menu .category {
  flex: 1;
  border-right: 1px solid rgb(221, 221, 221);
  background-color: #f5f5f5;
  max-height: 500px;
  overflow: auto;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  max-width: 300px;
}
.dropdown .dropdown-menu .category ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  gap: 0px !important;
}
.dropdown .dropdown-menu .category ul li {
  padding: 10px;
  width: 100%;
  transition: 0.3s all ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dropdown .dropdown-menu .category ul li:hover {
  background-color: #FFF;
  color: #1B5394;
}
.dropdown .dropdown-menu .sub-category {
  flex: 1;
  background-color: #f5f5f5;
  max-height: 400px;
  overflow: auto;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  max-width: 220px;
  margin-top: 20px;
}
.dropdown .dropdown-menu .sub-category .sub-sub-cat {
  display: none;
  width: 100%;
}
.dropdown .dropdown-menu .sub-category .sub-sub-cat ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  gap: 0px !important;
  width: 100%;
}
.dropdown .dropdown-menu .sub-category .sub-sub-cat ul li {
  padding: 10px;
  width: 100%;
  transition: 0.3s all ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dropdown .dropdown-menu .sub-category .sub-sub-cat ul li:hover {
  background-color: #FFF;
  color: #1B5394;
}
.dropdown .dropdown-menu .sub-category .no-data {
  height: 100%;
  padding: 20px;
  text-align: center;
}
.dropdown .dropdown-menu .sub-category .active-sub-dropdown {
  display: flex;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  gap: 20px;
}
.dropdown .dropdown-menu .sub-sub-category {
  flex: 1;
  background-color: #f5f5f5;
  max-height: 300px;
  overflow: auto;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  max-width: 220px;
  margin-top: 40px;
}
.dropdown .dropdown-menu .sub-sub-category .sub-sub-cat {
  display: none;
  width: 100%;
}
.dropdown .dropdown-menu .sub-sub-category .sub-sub-cat ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  gap: 0px !important;
  width: 100%;
}
.dropdown .dropdown-menu .sub-sub-category .sub-sub-cat ul li {
  padding: 10px;
  width: 100%;
  transition: 0.3s all ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dropdown .dropdown-menu .sub-sub-category .sub-sub-cat ul li:hover {
  background-color: #FFF;
  color: #1B5394;
}
.dropdown .dropdown-menu .sub-sub-category .no-data {
  height: 100%;
  padding: 20px;
  text-align: center;
}
.dropdown .dropdown-menu .sub-sub-category .active-sub-sub-dropdown {
  display: flex;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  gap: 20px;
}
.dropdown:hover .dropdown-menu {
  display: flex;
}
.dropdown .dropdown-menu:hover {
  display: flex;
}
.dropdown .category,
.dropdown .sub-category,
.dropdown .sub-sub-category {
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.2s ease;
}
.dropdown .dropdown:hover .category,
.dropdown .sub-category.show,
.dropdown .sub-sub-category.show {
  opacity: 1;
  transform: translateY(0);
}
.dropdown .dropdown-trigger {
  display: block;
  padding: 10px 15px;
  /* Ensure proper clickable area */
}
.dropdown .dropdown:hover .dropdown-menu,
.dropdown .dropdown-trigger:hover + .dropdown-menu,
.dropdown .dropdown-menu:hover {
  display: flex;
}

/* .dropdown is the container for your entire 2-column dropdown structure */
.btn {
  background-color: #1B5394;
  color: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  transition: background-color 0.3s ease;
  width: fit-content;
}
.btn:hover {
  background-color: #1273b8;
  color: white;
}

.border-btn {
  color: #1B5394;
  padding: 10px 20px;
  border-radius: 100px;
  transition: background-color 0.3s ease;
  width: fit-content;
  border: 1px solid #1B5394;
}
.border-btn:hover {
  background-color: #1B5394;
  color: white;
}

.btn-2 {
  background-color: #004678;
  color: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  transition: background-color 0.3s ease;
  width: fit-content;
}
.btn-2:hover {
  background-color: #033253;
  color: white;
}

.title .sub-title h3,
.title-center .sub-title h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .title .sub-title h3,
  .title-center .sub-title h3 {
    font-size: 14px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .title .sub-title h3,
  .title-center .sub-title h3 {
    font-size: 14px;
  }
}
.title h2,
.title-center h2 {
  margin: 0;
  margin-top: 20px;
  font-size: 36px;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .title h2,
  .title-center h2 {
    font-size: 24px;
    margin-top: 0px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .title h2,
  .title-center h2 {
    font-size: 24px;
    margin-top: 0px;
  }
}

.title-center {
  display: grid;
  place-items: center;
}
.title-center h3 {
  text-align: center;
}
.title-center h2 {
  text-align: center;
  max-width: 600px;
}
.title-center p {
  text-align: center;
  max-width: 600px;
  font-size: 14px;
}

.flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title-container p {
  max-width: 600px;
  font-size: 14px;
}
.title-container .description {
  margin-top: 20px;
  font-size: 14px;
  max-width: 800px;
}

@media screen and (min-width: 300px) and (max-width: 480px) {
  .feature-product-section .flex-container h2 {
    font-size: 24px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .feature-product-section .flex-container h2 {
    font-size: 24px;
  }
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .feature-product-section .flex-container a {
    display: none;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .feature-product-section .flex-container a {
    display: none;
  }
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .feature-product-section .product-grid {
    display: flex;
    overflow: auto;
  }
  .feature-product-section .product-grid .product-card {
    flex: 1;
    min-width: 250px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .feature-product-section .product-grid {
    display: flex;
  }
}
.feature-product-section .mobile-cta {
  display: none;
  margin-top: 30px;
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .feature-product-section .mobile-cta {
    display: block;
  }
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  .feature-product-section .mobile-cta {
    display: block;
  }
}

section {
  margin-top: 100px;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  section {
    margin-top: 50px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  section {
    margin-top: 50px;
  }
}

form .form-group-container {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
form .form-group-container .form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}
form .form-group-container .form-group label {
  text-transform: uppercase;
  margin: 0;
  color: white;
  font-size: 14px;
  font-weight: 300;
}
form .form-group-container .form-group input,
form .form-group-container .form-group textarea {
  padding-bottom: 10px;
  border: none;
  background-color: transparent;
  outline: none;
  border-bottom: 1px solid white;
  color: white;
  width: 100%;
}
form .form-group-container .form-group input::placeholder,
form .form-group-container .form-group textarea::placeholder {
  color: #ddf1ff;
  opacity: 0.5;
  font-weight: 400;
}
form button {
  border: 1px solid white;
  background-color: transparent;
  color: white;
  padding: 8px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.5s ease;
}
form button:hover {
  background-color: white;
  color: #1B5394;
}
form button:hover svg path {
  stroke: #1B5394;
}
form button .icon-container {
  height: 22px;
  width: 22px;
}
form button .icon-container svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}

footer {
  background-color: white;
  margin-top: 120px;
}
footer .footer-flex {
  display: flex;
  padding: 80px 0;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  footer .footer-flex {
    flex-direction: column;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  footer .footer-flex {
    flex-direction: column;
  }
}
footer .footer-flex .left {
  flex: 1;
}
footer .footer-flex .left .logo-container {
  height: 100px;
  width: fit-content;
}
footer .footer-flex .left .logo-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
footer .footer-flex .left .tagline {
  font-size: 14px;
}
footer .footer-flex .right {
  flex: 2;
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  footer .footer-flex .right {
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 50px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  footer .footer-flex .right {
    margin-top: 50px;
    justify-content: flex-start;
    flex-direction: column;
  }
}
footer .footer-flex .right ul {
  list-style: none;
  max-width: 400px;
}
@media screen and (min-width: 300px) and (max-width: 480px) {
  footer .footer-flex .right ul {
    padding: 0;
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  footer .footer-flex .right ul {
    padding: 0;
  }
}
footer .footer-flex .right ul .title {
  color: #0B5394;
  font-weight: 500;
  margin-bottom: 10px;
}
footer .footer-flex .right ul a li {
  color: #686868;
  margin-bottom: 5px;
}
footer .footer-flex .right ul .icon-list {
  margin-top: 10px;
  display: flex;
  gap: 20px;
}
footer .copy-right {
  text-align: center;
  color: #999999;
  font-size: 12px;
}
footer .designed-by {
  padding: 10px;
  background-color: #1B5394;
  text-align: center;
  color: white;
  margin-top: 20px;
  font-size: 12px;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
    /* Adjust to control float distance */
  }
  100% {
    transform: translateY(0);
  }
}
.blog-details-container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.blog-details-container .blog-banner {
  width: 100%;
  max-height: 600px;
}
@media screen and (max-width: 768px) {
  .blog-details-container .blog-banner {
    max-height: 400px;
  }
}
.blog-details-container .blog-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .blog-details-container .blog-banner img {
    object-fit: contain;
  }
}
.blog-details-container .content-container {
  position: relative;
  top: -100px;
  max-width: 780px;
  padding: 40px 50px;
  background-color: #ffffff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
@media screen and (max-width: 768px) {
  .blog-details-container .content-container {
    top: unset;
    padding: 10px;
    max-width: 100%;
  }
}
.blog-details-container .content-container span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .blog-details-container .content-container span {
    font-size: 10px;
    letter-spacing: 1px;
  }
}
.blog-details-container .content-container h4 {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .blog-details-container .content-container h4 {
    font-size: 24px;
    margin: 15px 0;
  }
}
.blog-details-container .content-container h6 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  .blog-details-container .content-container h6 {
    font-size: 16px;
    margin: 0;
  }
}
.blog-details-container .content-container .text img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}