/* Reset basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: "Poppins", sans-serif;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  min-height: fit-content;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Navbar styles */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background-color: transparent;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.85); /* saat scroll bukan di hero */
}

.logo-container {
  height: auto;
}

.logo {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.nav-right {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin: 0 15px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
}

.nav-links a:hover {
  color: #f7921e;
}

.navbar-extra {
  margin-left: 15px;
}

.btn-quote {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.btn-quote.orange {
  background-color: #f7921e;
  color: white;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-quote.orange:hover,
.btn-quote.white:hover {
  background-color: #d35400; /* warna saat hover */
}

.btn-quote.white {
  background-color: #f7921e;
  color: #fff;
  margin-top: 30px;
  padding: 20px 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-quote.black {
  display: inline-block;
  margin-top: 20px;
  padding: 20px 30px;
  background-color: #0a1f44;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-quote.black:hover {
  background-color: #061633;
}

.navbar .navbar-extra a {
  color: #fff;
  margin: 0 0.5rem;
}

.navbar .navbar-extra svg:hover {
  color: #f7921e;
}

#hamburger-menu {
  display: none;
}

.side-menu {
  display: none;
}

/* Hero section */
.hero {
  min-height: 100vh;
  background-image: url(gambarweb/hero\ bg.webp);
  position: relative;
  display: flex;
  background-size: cover;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: relative;
  text-align: left;
  color: white;
  max-width: 800px;
  padding: 0 50px;
}

.overlay h1 {
  font-size: 5rem;
  line-height: 1.2;
  font-weight: 400;
}

.overlay p {
  font-size: 20px;
  margin-top: 20px;
  line-height: 1.7;
}

/* About section */
.about {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-top: 1px solid #0a1f44;
  border-bottom: 1px solid #0a1f44;
  margin: 0 auto;
}

.about-left {
  flex: 1;
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-text {
  padding: 50px;
  padding-bottom: 20px;
}

.about-text h3 {
  letter-spacing: 2px;
  font-weight: 550;
  padding-bottom: 1rem;
  font-size: 1rem;
  color: #0a1f44;
}

.about-text h2 {
  padding-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 3.5rem;
  color: #0a1f44;
}

.about .fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.about .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-text p {
  padding-bottom: 1.5rem;
  line-height: 1.7;
  color: #0a1f44;
}

.about-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #0a1f44;
  border-bottom: none;
}

.img {
  max-width: 100%;
  border-left: none;
  border-bottom: 0px solid #0a1f44;
  padding-left: 50px;
  padding-bottom: 50px;
  padding-top: 50px;
  padding-right: 50px;
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Stats styling */
.stats-box {
  display: flex;
  align-items: stretch;
  border-top: 1px solid #0a1f44;
  border-bottom: 0px solid #0a1f44;
}

.stat {
  flex: 1;
  text-align: center;
  border-right: 1px solid #0a1f44;
  padding: 30px 10px;
}

.stat:last-child {
  border-right: none;
}

.stat h2 {
  font-size: 3.5rem;
  font-weight: 550;
  color: #0a1f44;
}

.stat p {
  font-size: 16px;
  color: #0a1f44;
}

.about-heading {
  display: flex;
  align-items: center;
  gap: 10px; /* Jarak antara logo dan teks */
  font-weight: 550;
  font-size: 1rem;
  color: #0a1f44;
  letter-spacing: 2px;
  padding-bottom: 1rem;
}

.logo-icon {
  height: 1rem; /* Sesuaikan dengan ukuran teks */
  width: auto;
  display: inline-block;
}

/*produk section*/

.product-section {
  background-color: #f4f4f4;
}

.container {
  margin: 0 auto;
  padding: 50px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px; /* Jarak antara logo dan teks */
  font-weight: 550;
  font-size: 1rem;
  color: #0a1f44;
  letter-spacing: 2px;
  padding-bottom: 1rem;
}

.section-title .logo-icon {
  height: 1em; /* Sesuaikan dengan ukuran teks */
  width: auto;
  display: inline-block;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 30px;
  padding-top: 3rem;
}

.product-grid2 {
  display: none;
}

.product-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-card img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-name {
  font-weight: 550;
  font-size: 18px;
  margin: 10px 0;
  color: #0a1f44;
}

.product-grid .fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.product-grid .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.container .btn-quote {
  display: inline-block;
  padding: 20px 30px;
  background-color: #0a1f44;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.container .btn-quote:hover {
  background-color: #061633;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-header .section-title {
  padding-bottom: 0;
}
.product-header h2 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 3.5rem;
  color: #0a1f44;
}

.responsive-br {
  display: none;
}
/* Client Section */
.client-section {
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 3fr; /* Kolom kiri lebih kecil */
  gap: 0;
}

.container-client {
  display: contents; /* Agar grid langsung diterapkan pada .client-left dan .client-right */
}

.client-left {
  color: #0a1f44;
  display: flex;
  flex-direction: column;
  padding: 50px;
  box-sizing: border-box;
  border-top: 1px solid #0a1f44;
  border-bottom: 1px solid #0a1f44;
}

.client-left .client-heading {
  letter-spacing: 2px;
  font-weight: 550;
  padding-bottom: 1rem;
  font-size: 1rem;
  color: #0a1f44;
  padding-top: 3rem;
  gap: 10px;
  display: flex;
  align-items: center;
}

.client-heading .logo-icon {
  height: 1em; /* Sesuaikan dengan ukuran teks */
  width: auto;
  display: inline-block;
}

.client-left h2 {
  padding-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 3.5rem;
  color: #0a1f44;
}

.client-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr; /* Sama tinggi */
  gap: 0;
  box-sizing: border-box;
}

.client-card {
  background-color: #fff;
  padding: 50px;
  border: 1px solid #0a1f44;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card img {
  width: 100px;
  height: 100px;
}

.client-card h3 {
  font-size: 1.2rem;
  color: #0a1f44;
  margin-bottom: 10px;
  font-weight: 550;
}

.client-card p {
  font-size: 16px;
  color: #0a1f44;
  line-height: 1.5;
}

.client-card:nth-child(1) {
  border-bottom: none;
  border-right: none;
}

.client-card:nth-child(4) {
  border-top: none;
  border-left: none;
}

.client-left .btn-quote-client {
  display: inline-block;
  padding: 20px 30px;
  background-color: #0a1f44;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  width: auto;
  max-width: fit-content;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.client-left .btn-quote-client:hover {
  background-color: #061633;
}

.client-left .fade-up,
.client-card .fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.client-left .fade-up.visible,
.client-card .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/*cta section*/

.cta-section .fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.cta-section .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-section {
  background-color: #0a1f44;
  color: #fff;
  text-align: center;
  padding: 50px;
}

.cta-text h2 {
  font-size: 2.5rem;
  font-weight: 500;
  padding-bottom: 1.5rem;
}

.cta-section .btn-quote-cta {
  display: inline-block;
  padding: 20px 30px;
  background-color: #f7921e;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  width: auto;
  max-width: fit-content;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-quote-cta:hover {
  background-color: #d35400;
}

/*footer section*/
.footer {
  background-color: #f4f4f4;
  color: #0a1f44;
  padding: 50px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  gap: 40px;
  align-items: flex-start;
}

.footer-logo,
.footer-links,
.footer-contact {
  flex: 1 1 200px;
}

.footer-logo {
  height: auto;
}

.logo-footer {
  max-height: 100px;
  width: auto;
  object-fit: contain;
}

.footer-logo p {
  font-size: 1.2rem;
  color: #0a1f44;
  padding-top: 1rem;
  font-weight: bold;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 10px;
  color: #0a1f44;
  font-size: 1.2rem;
  font-weight: 550;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #0a1f44;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #f7921e;
}

.footer-contact p {
  font-size: 16px;
  color: #0a1f44;
  margin: 6px 0;
}

.footer-social {
  color: #0a1f44;
  margin-top: 10px;
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  filter: none; /* putih */
  transition: 0.3s ease;
  filter: brightness(0) saturate(100%) invert(13%) sepia(24%) saturate(2292%)
    hue-rotate(195deg) brightness(93%) contrast(97%);
}

.footer-social a img:hover {
  filter: brightness(0) saturate(100%) invert(38%) sepia(92%) saturate(745%)
    hue-rotate(1deg) brightness(98%) contrast(93%);
}

.footer-map {
  padding-top: 1rem;
  flex: 1 1 auto;
  min-height: 200px;
  display: flex;
  justify-content: flex-end;
}

.footer-map iframe {
  width: 100%;
  height: 200px;
  border: 0;
}

.footer2 {
  background-color: #0a1f44;
}

.footer-bottom {
  text-align: center;
  padding: 2rem;
  font-size: 13px;
  color: #fff;
}

/* mobile */
@media (max-width: 767.98px) {
  /*navbar section*/

  html.noscroll,
  body.noscroll {
    overflow: hidden !important;
    height: 100%;
    width: 100%;
  }

  .navbar {
    padding: 20px 20px;
  }

  #hamburger-menu {
    display: inline-block;
    z-index: 2001;
  }

  #hamburger-menu svg {
    width: auto;
    height: 25px;
  }

  .logo {
    height: 25px;
    width: auto;
  }

  .nav-links {
    display: none;
  }

  .navbar-extra {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1000;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  body.noscroll {
    overflow: hidden;
  }

  .navbar.remove-bg {
    background-color: transparent !important;
    transition: background-color 0.3s ease;
  }

  .side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #0a1f44;
    padding: 60px 30px;
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
  }

  .side-menu.active {
    right: 0;
  }

  .side-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 60px;
    width: 100%;
  }

  .side-nav a {
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    text-decoration: none;
    width: 100%;
    transition: color 0.3s ease;
  }

  .side-nav a:hover,
  .side-nav a.active {
    color: #f7921e;
  }

  .btn-quote {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
  }

  .btn-quote.orange {
    background-color: #f7921e;
    color: white;
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 10px;
    display: none;
  }

  .close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 55px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .close-btn:hover {
    transform: rotate(90deg);
  }

  .close-btn.leave {
    transform: rotate(0deg);
  }

  /*hero section*/
  .hero {
    min-height: 100vh;
    background-size: cover;
    background-image: url(img/hero-bg4.png);
    position: relative;
    display: flex;
    background-size: cover;
    align-items: center;
    background-position: 75% center;
    background-repeat: no-repeat;
  }

  .btn-quote.white {
    font-size: 15px;
    padding: 10px 20px;
  }

  .overlay {
    position: relative;
    text-align: left;
    color: white;
    max-width: 800px;
    padding: 0px 20px;
    margin-top: 50px;
  }

  .overlay h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 400;
  }

  .overlay p {
    font-size: 15px;
    margin-top: 20px;
    line-height: 1.7;
  }

  /*about section*/
  .about {
    flex-direction: column;
  }

  .about-left,
  .about-img {
    width: 100%;
  }

  .about-img {
    display: block;
  }

  .img img {
    padding: 0;
    border: none;
    height: 450px;
  }
  .about-img img {
    object-fit: cover;
    padding-top: 15px;
  }

  .img {
    padding: 0;
    border-left: none;
    border-bottom: none;
  }

  .stats-box {
    flex-direction: column;
    border-top: 1px solid #0a1f44;
    border-bottom: none;
    margin-top: 30px;
  }

  .stat {
    border: none;
    padding: 15px 0;
    text-align: left;
    padding-left: 20px;
  }

  .stat:not(:last-child) {
    border-bottom: 1px solid #0a1f44;
  }

  .stat h2 {
    font-size: 2.5rem;
  }

  .about-text {
    padding: 30px 20px 15px 20px;
  }

  .about-text h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .about-text h3 {
    font-size: 0.8rem;
  }

  .logo-icon {
    height: 0.8rem;
  }

  .btn-quote.black {
    font-size: 15px;
    padding: 10px 20px;
    margin: 0;
  }

  /*product section*/
  .responsive-br {
    display: block;
  }

  .container h3 {
    font-size: 0.8rem;
  }

  .container .logo-icon {
    height: 0.8rem;
  }

  .product-header .btn-quote {
    font-size: 15px;
    padding: 10px 20px;
    margin: 0px;
  }

  .product-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .product-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .container {
    padding: 30px 20px 30px 20px;
  }

  .product-header h2 {
    padding-bottom: 1.5rem;
    font-size: 2rem;
    line-height: 2.5rem;
  }

  /*client section*/
  .client-section {
    display: block;
    height: auto;
    padding: 0;
  }

  .container-client {
    display: block;
  }

  .client-left {
    width: 100%;
    padding: 30px 20px;
    margin: 0px;
    border-bottom: none;
  }

  .client-left .logo-icon {
    height: 0.8rem;
  }

  .client-left h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .client-left .client-heading {
    padding-top: 0;
    font-size: 0.8rem;
  }

  .client-right {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }

  .client-card {
    padding: 20px;
    border: 1px solid #0a1f44;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .client-card img {
    margin-bottom: 15px;
    width: 64px;
    height: 64px;
    object-fit: contain;
  }

  .client-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .client-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .client-card:nth-child(1) {
    border-right: none;
    border-bottom: none;
  }

  .client-card:nth-child(2) {
    border-left: 1px solid #0a1f44;
    border-bottom: none;
  }

  .client-card:nth-child(3) {
    border-top: 1px solid #0a1f44;
    border-right: none;
  }

  .client-card:nth-child(4) {
    border-top: 1px solid #0a1f44;
    border-left: 1px solid #0a1f44;
  }

  .client-left .btn-quote-client {
    margin-top: 0;
    font-size: 15px;
    padding: 10px 20px;
  }

  .cta-text h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .cta-section {
    padding: 30px 20px;
  }

  .cta-section .btn-quote-cta {
    font-size: 15px;
    padding: 10px 20px;
  }

  /*footer section*/
  .logo-footer {
    max-width: 50px;
  }

  .footer {
    padding: 30px 20px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
  /*navbar section*/

  html.noscroll,
  body.noscroll {
    overflow: hidden !important;
    height: 100%;
    width: 100%;
  }

  .navbar {
    padding: 30px 30px;
  }

  #hamburger-menu {
    display: inline-block;
    z-index: 2001;
  }

  #hamburger-menu svg {
    width: auto;
    height: 30px;
  }

  .logo {
    height: 30px;
    width: auto;
  }

  .nav-links {
    display: none;
  }

  .navbar-extra {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1000;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  body.noscroll {
    overflow: hidden;
  }

  .navbar.remove-bg {
    background-color: transparent !important;
    transition: background-color 0.3s ease;
  }

  .side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: #0a1f44;
    padding: 60px 30px;
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
  }

  .side-menu.active {
    right: 0;
  }

  .side-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 60px;
    width: 100%;
  }

  .side-nav a {
    font-size: 2rem;
    font-weight: 500;
    color: white;
    text-decoration: none;
    width: 100%;
    transition: color 0.3s ease;
  }

  .side-nav a:hover,
  .side-nav a.active {
    color: #f7921e;
  }

  .btn-quote {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
  }

  .btn-quote.orange {
    background-color: #f7921e;
    color: white;
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    border-radius: 50px;
  }

  .close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 60px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .close-btn:hover {
    transform: rotate(90deg);
  }

  .close-btn.leave {
    transform: rotate(0deg);
  }

  /*hero section*/
  .hero {
    min-height: 60vh;
    background-size: cover;
    background-image: url(img/hero-bg4.png);
    position: relative;
    display: flex;
    background-size: cover;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
  }

  .overlay {
    position: relative;
    text-align: left;
    color: white;
    max-width: 800px;
    padding: 0px 30px;
    margin-top: 150px;
  }

  .overlay h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 400;
  }

  .overlay p {
    font-size: 20px;
    margin-top: 20px;
    line-height: 1.7;
  }

  /*about section*/
  .about {
    flex-direction: column;
  }

  .about-left,
  .about-img {
    width: 100%;
  }

  .about-img {
    display: block;
  }

  .img img {
    padding: 0;
    border: none;
    height: 450px;
  }
  .about-img img {
    object-fit: cover;
    padding-top: 15px;
  }

  .img {
    padding: 0;
    border-left: none;
    border-bottom: none;
  }

  .stats-box {
    flex-direction: column;
    border-top: 1px solid #0a1f44;
    border-bottom: none;
    margin-top: 30px;
  }

  .stat {
    border: none;
    padding: 15px 0;
    text-align: left;
    padding-left: 30px;
  }

  .stat:not(:last-child) {
    border-bottom: 1px solid #0a1f44;
  }

  .stat h2 {
    font-size: 2.5rem;
  }

  .about-text {
    padding: 50px 30px 15px 30px;
  }

  .about-text h2 {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }

  /*product section*/
  .responsive-br {
    display: block;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .container {
    padding: 50px 30px 50px 30px;
  }

  /*client section*/
  .client-section {
    display: block;
    height: auto;
    padding: 0;
  }

  .container-client {
    display: block;
  }

  .client-left {
    width: 100%;
    padding: 50px 30px 50px 30px;
    margin: 0px;
    border-bottom: none;
  }

  .client-left h2 {
    font-size: 2.5rem;
  }

  .client-left .client-heading {
    padding-top: 0;
  }

  .client-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .client-card {
    padding: 30px;
    border: 1px solid #0a1f44;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .client-card img {
    margin-bottom: 15px;
    width: 64px;
    height: 64px;
    object-fit: contain;
  }

  .client-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .client-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .client-card:nth-child(1) {
    border-right: none;
    border-bottom: none;
  }

  .client-card:nth-child(2) {
    border-left: 1px solid #0a1f44;
    border-bottom: none;
  }

  .client-card:nth-child(3) {
    border-top: 1px solid #0a1f44;
    border-right: none;
  }

  .client-card:nth-child(4) {
    border-top: 1px solid #0a1f44;
    border-left: 1px solid #0a1f44;
  }

  .client-left .btn-quote-client {
    margin-top: 20px;
  }

  /*footer section*/
  .logo-footer {
    max-width: 70px;
  }

  .footer {
    padding: 50px 30px;
  }
}
