/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  background-color: #ffffff;
  color: #fff;
  transition: background-color 0.3s ease;
}

a,
a:focus,
a:active {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-drag: none;
  text-decoration: none;
}

/* Fonts */
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Arial";
  src: url("/assets/fonts/arial.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* Loader Styles */
#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s;
}

.loader-spinner {
  border: 6px solid #e6eefa;
  border-top: 6px solid #8dc63f;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Navbar Styles */
.navbar {
  background: transparent;
  padding: 1vh 0;
  border-radius: 2.5rem;
  width: calc(100% - 20vw);
  z-index: 1000;
  box-shadow: none !important;
  position: sticky;
  top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
  margin: 0 auto;
}

.navbar.navbar-scrolled {
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 2.5rem;
}

.navbar .container {
  height: 34px;
  width: 100%;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

.navbar-brand img {
  display: block;
  height: 22px;
  width: auto;
  max-width: 100%;
  margin-bottom: 0.25vh;
}

.navbar-toggler-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  font-weight: 600;
  color: #284d7f;
  transition: color 0.2s;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

.navbar-toggler-text:hover {
  color: #3250a0;
}

.navbar-toggler {
  display: none;
  align-items: center;
  justify-content: center;
  border: none !important;
  padding: 0.5rem 1rem;
  background: transparent;
}

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

.navbar-nav {
  display: flex;
  justify-content: space-around;
  list-style: none;
  padding-left: 0;
  margin: 0;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-item {
  margin: 0;
}

.nav-menu-link {
  font-size: 1rem;
  color: #284d7f;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  background: none;
  border: none;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-menu-link:hover,
.nav-menu-link:focus {
  color: #284d7f;
  text-decoration: none;
}

/* Mobile Menu Backdrop Styles */
body.no-scroll {
  overflow: hidden !important;
  touch-action: none;
  overscroll-behavior: none;
}

.mobile-menu-backdrop {
  opacity: 0;
  pointer-events: none;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: calc(var(--h, 1vh) * 100);
  z-index: 1999;
  background: rgba(24, 61, 120, 0.12);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  max-width: 400px;
  height: 100dvh;
  background: #fff;
  z-index: 2000;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.08);
  justify-content: space-between;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu-list {
  width: 100%;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 0 5vw;
}

.mobile-menu-list li {
  width: 100%;
  list-style: none;
}

.mobile-menu-list .nav-menu-link {
  display: block;
  width: 100%;
  background: #fafbfc;
  border-radius: 18px;
  text-decoration: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #284d7f !important;
  padding: 0.2rem 1rem;
  letter-spacing: 0.1em;
  margin: 0 auto;
  transition: background 0.2s, color 0.2s;
  font-family: "Poppins", sans-serif;
}

.mobile-menu-list .nav-menu-link:hover,
.mobile-menu-list .nav-menu-link:focus {
  background: #e6eefa;
  color: #3250a0 !important;
}

.mobile-menu-social {
  width: 100%;
  padding-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.mobile-menu-social-label {
  padding: 0 5vw;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.5rem, 2vw, 1rem);
  color: #222;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.mobile-menu-social-icons {
  width: 100%;
  padding: 0 5vw;
  display: flex;
  flex-direction: row;
  gap: 1vw;
  justify-content: space-between;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  transition: box-shadow 0.2s, transform 0.2s;
  outline: none;
}

.social-icon img {
  width: clamp(6vw, 5vw, 8vw);
  height: clamp(6vw, 5vw, 8vw);
  object-fit: contain;
}

.social-icon:focus,
.social-icon:hover {
  box-shadow: 0 0 0 3px #e6eefa;
  transform: scale(1.08);
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  margin: 0 10vw;
  height: 85dvh;
}

.hero-container {
  position: relative;
  width: 99.9%;
  height: 99.9%;
  background: url("/assets/img/gedung.webp") center/cover no-repeat;
  background-size: 100vw 110vh;
  border-radius: 74px 74px 1.25rem 74px;
  overflow: hidden;
  margin: 4rem auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: rgba(22, 78, 127, 0.78);
  z-index: 1;
}

.hero-content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  width: 65%;
  z-index: 3;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 3.5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 2vh;
  text-shadow: 0 0 9px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.01em;
}

.typed-cursor.typed-cursor--blink {
  animation: none !important;
}

.typed-cursor {
  background: url("/assets/img/logo.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: clamp(0.5rem, 1.5vw, 2rem);
  height: clamp(0.5rem, 1.5vw, 2rem);
  display: inline-block;
  margin-left: 1rem;
  transition: 0.8s all;
  transition-delay: 0.1s;
  border-radius: 50%;
}

.hero-desc-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-desc {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.55rem, 1.5vw, 1.5rem);
  font-weight: 500;
  color: #fff;
  text-shadow: 2.7px 2.7px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.01em;
  text-align: left;
  margin-bottom: 1.25rem !important;
}

.hero-desc-color {
  color: #8dc63f;
}

.hero-btn {
  display: inline-block;
  background: #8dc63f;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(0.5rem, 1.2vw, 2rem);
  padding: clamp(0.1rem, 1.5vw, 0.3rem) clamp(1rem, 1.5vw, 2rem);
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 2.7px 2.7px 10px rgba(0, 0, 0, 0.4);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  align-self: flex-start;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  margin-top: 0.5rem;
}

.hero-btn:hover,
.hero-btn:active {
  background: #6fa82d;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13);
}

.hero-logo-box-container {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #fff !important;
  z-index: 3;
  display: flex;
  align-items: center;
  border-radius: 1.25rem 0 1.25rem 0;
}

.hero-logo-box-container::before,
.hero-logo-box-container::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  background-image: radial-gradient(
    circle at 100% 100%,
    transparent 2rem,
    white 2rem
  );
  rotate: 180deg;
}

.hero-logo-box-container::before {
  left: calc(-2rem + 1px);
  bottom: -1px;
}

.hero-logo-box-container::after {
  top: calc(-2rem + 1px);
  right: -1px;
}

.hero-logo-box {
  margin: 1rem 0 0 1rem;
  padding: 0.5rem 1.5rem;
  align-self: flex-end;
  background: #82b741;
  border-radius: 1.2rem;
  width: 28rem;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.15s;
}

.hero-logo-img {
  width: 100%;
  height: auto;
}

/* About Section Styles */
.about-section {
  width: 90%;
  max-width: 1100px;
  margin: 8rem auto 2.5rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-desc {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.about-desc p {
  text-align: center;
  font-size: 1.1rem;
  color: #3a3a3a;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.accordion-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.accordion-item {
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3) !important;
  overflow: hidden;
  transition: box-shadow 0.2s;
  margin-bottom: 1.5rem;
  border-radius: 1.5rem;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-item:first-child {
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}

.accordion-item:last-child {
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: clamp(1rem, 2vw, 2rem);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #284d7f;
  padding: clamp(0.5rem, 1vw, 1.5rem) clamp(1.25rem, 4vw, 3rem);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

.accordion-header:hover,
.accordion-header:focus {
  background: #f3f6fa;
}

.accordion-item:hover .accordion-content {
  padding: 1.2rem 2rem 2.5rem 2rem;
  max-height: 1600px;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s,
    opacity 0.4s;
  opacity: 1;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.25s,
    opacity 0.4s;
  background: #fff;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.accordion-content p {
  text-align: center;
  font-size: 1.15rem;
  color: #444444;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.accordion-content h3 {
  font-family: "Poppins", sans-serif;
  color: #8dc63f;
  font-size: 1.45rem;
  font-weight: 700;
}

.team-management-grid {
  flex-direction: column;
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  top: -1.2rem;
  position: relative;
}

.team-photo {
  display: flex;
  justify-content: center;
  border-radius: 2rem;
}

.team-photo img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: 2rem;
}

.ceo-card {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  position: relative;
  margin-top: 0.5rem;
}

.ceo-img-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 2rem;
  overflow: hidden;
  background: #284d7f;
}

.img-group {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
}

.ceo-img {
  height: auto;
  display: block;
  position: absolute;
}

.ceo-img-center {
  top: -2rem;
  width: 350px;
}

.ceo-img-left {
  top: -1.5rem;
  width: 360px;
  right: 57%;
}

.ceo-img-right {
  top: -3rem;
  width: 370px;
  left: 57%;
}

.ceo-info-overlay {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 2.7rem 0.5rem 0 0.5rem;
  background: linear-gradient(
    to bottom,
    rgba(22, 78, 127, 0) 13.3333%,
    rgba(22, 78, 127, 0.58) 100%
  );
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.info-overlay-left {
  left: 0;
  width: 30%;
}

.info-overlay-center {
  left: 40%;
  right: 40%;
  width: 35%;
}

.info-overlay-right {
  right: 0;
  width: 30%;
}

.ceo-name {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 1.7px 1.7px 5px rgba(0, 0, 0, 0.5);
}

.ceo-title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.95;
  text-shadow: 1.7px 1.7px 5px rgba(0, 0, 0, 0.5);
  padding-bottom: 1rem;
}

/* Solutions Section Styles */
.solutions-section {
  width: 90%;
  max-width: 1100px;
  min-height: 50vh;
  margin: 2.8rem auto 2.5rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.solution-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
  gap: 3vw;
}

.solutions-cards {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.solution-card-1 {
  height: 60vh;
  background: #222;
  border-radius: 2.5rem 2.5rem 0.7rem 2.5rem;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background: url("/assets/img/ASSET-02.webp") center/cover no-repeat;
  background-size: 85rem auto;
  background-position: clamp(-12rem, 10vw, -19rem);
}

.solution-card-2 {
  height: 60vh;
  background: #222;
  border-radius: 2rem 2rem 0.7rem 2rem;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background: url("/assets/img/ASSET-03.webp") center/cover no-repeat;
  background-size: 70rem;
  background-position: -17rem;
}

.solution-img {
  width: 100%;
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  z-index: 1;
  background: rgba(22, 78, 127, 0.78);
}

.solution-items {
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
}

.solution-title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 4vw, 1.75rem);
  text-shadow: 2.7px 2.7px 10px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  margin-left: 0.5rem;
}

.container-solution-btn {
  position: absolute;
  right: -1px;
  bottom: -1px;
  background: #fff !important;
  z-index: 3;
  display: flex;
  align-items: center;
  border-top-left-radius: 1.25rem;
}

.container-solution-btn::before,
.container-solution-btn::after {
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  background-image: radial-gradient(
    circle at 100% 100%,
    transparent 1.2rem,
    white 1.2rem
  );
  rotate: 180deg;
}

.container-solution-btn::before {
  left: calc(-1.2rem + 1px);
  bottom: -1px;
}

.container-solution-btn::after {
  top: calc(-1.2rem + 1px);
  right: -1px;
}

.container-solution-btn a {
  margin: 0.45rem 0 0 0.45rem;
  align-self: flex-end;
  background: #82b741;
  border-radius: 1.2rem;
  width: clamp(4.5rem, 10vw, 6.5rem);
  height: clamp(4.5rem, 10vw, 6.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.15s;
}

.container-solution-btn a img {
  width: 100%;
  height: 100%;
  rotate: 180deg;
}

.solution-desc {
  text-align: center;
  font-size: 1.5rem;
  color: #3a3a3a;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin-top: 5rem;
  line-height: 1.2;
}

/* Brands Section Styles */
.brands-section {
  margin: 5rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brands-section-mobile {
  display: none;
}

.brands-marquee {
  width: 100%;
  overflow: hidden;
  height: 150px;
  position: relative;
  background: transparent;
  margin: 0 auto;
}

.brands-marquee-inner {
  display: flex;
  align-items: center;
  height: 100%;
  width: max-content;
  animation: marquee-left 30s linear infinite;
}

.brands-marquee-right .brands-marquee-inner {
  animation: marquee-right 30s linear infinite;
}

.brands-marquee-left .brands-marquee-inner {
  animation: marquee-left 30s linear infinite;
}

.brands-marquee img {
  height: 10rem;
  width: 10rem;
  object-fit: contain;
  margin-right: 6rem;
  user-drag: none;
  user-select: none;
  pointer-events: none;
  flex-shrink: 0;
}

@keyframes marquee-right {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-left {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* Article Section */
.article-section {
  width: 100%;
  padding: 4rem 0;
  background: linear-gradient(to bottom, #fafbfc 75%, #284d7f 60% 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  flex: 1 0 auto;
  min-height: unset;
}

.article-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.article-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.7rem;
  gap: 2rem;
}

.article-title {
  color: #284d7f;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: left;
}

.article-title-right {
  color: #8dc63f;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: right;
}

.article-desc {
  color: #284d7f;
  font-size: 1.05rem;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 400;
  text-align: left;
  margin-bottom: 2.2rem;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.article-cards {
  width: 100%;
  max-width: clamp(1200px, 95vw, 1600px);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.article-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3) !important;
  width: 100%;
  max-width: 310px;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.5rem 0.5rem 2rem 0.5rem;
  position: relative;
  overflow: hidden;
}

.article-card-img-1 {
  width: 100%;
  height: 13rem;
  background: #dbe6ef;
  border-radius: 1.2rem;
  margin-bottom: 0.5rem;
  background: url("/assets/img/article-1.webp") center center/cover no-repeat;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3) !important;
}

.article-card-img-2 {
  width: 100%;
  height: 13rem;
  background: #dbe6ef;
  border-radius: 1.2rem;
  margin-bottom: 0.5rem;
  background: url("/assets/img/article-2.webp") center center/cover no-repeat;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3) !important;
}

.article-card-img-3 {
  width: 100%;
  height: 13rem;
  background: #dbe6ef;
  border-radius: 1.2rem;
  margin-bottom: 0.5rem;
  background: url("/assets/img/article-3.webp") center center/cover no-repeat;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3) !important;
}

.article-card-img-4 {
  width: 100%;
  height: 13rem;
  background: #dbe6ef;
  border-radius: 1.2rem;
  margin-bottom: 0.5rem;
  background: url("/assets/img/article-4.webp") center center/cover no-repeat;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3) !important;
}

.article-card-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: #9e9e9f;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1;
  text-align: left;
  margin: 0.7rem 0 0.2rem 1.2rem;
}

.article-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #284d7f;
  font-family: "Poppins", Arial, sans-serif;
  margin: 0.7rem auto 0 auto;
  text-align: left;
  line-height: 1.3;
  width: 100%;
  display: block;
  padding: 0 1rem;
}

/* Video Section */
.video-section {
  width: 100%;
  height: 90vh;
  background: #fafbfc;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

.video-embed {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background: #222;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Footer Section Styles*/
.footer-section {
  width: 100%;
  background: #284d7f;
  color: #fff;
  padding: 5rem 2.5rem 1.5rem 2.5rem;
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  flex-shrink: 0;
}

.footer-hr {
  border: none;
  border-top: 1.5px solid #000;
  opacity: 0.18;
  margin: 0;
  width: 100%;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2.5rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}

.footer-copyright {
  font-size: 20px;
  color: #fff;
  opacity: 0.85;
}

.footer-center {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  justify-content: flex-end;
}

.footer-link {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.95;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #82b741;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 160px;
}

.footer-social-label {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.1rem;
  opacity: 0.85;
}

.footer-social-icons {
  display: flex;
  flex-direction: row;
  gap: 0.7rem;
  justify-content: flex-end;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(20px, 4vw, 48px);
  height: clamp(20px, 4vw, 48px);
  border-radius: 50%;
  background: transparent;
  transition: box-shadow 0.2s, transform 0.2s;
  outline: none;
}

.footer-social-icon:focus,
.footer-social-icon:hover {
  box-shadow: 0 0 0 3px #e6eefa;
  transform: scale(1.08);
}

.footer-social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Modal Footer Styles */
.modal-footer {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.modal-footer-container {
  color: #000;
  font-family: "Poppins", Arial, sans-serif;
  text-align: justify;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  width: 50%;
  max-width: 1200px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-footer-content {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 2rem 3rem 2rem;
}

.modal-footer-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.modal-footer-content h3 {
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.modal-footer-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.modal-footer-content ul li {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.close-footer-modal {
  position: absolute;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  z-index: 1100;
}

.close-footer-modal img {
  width: 4rem;
  height: 4rem;
}

/* Tablet view (max-width: 1024px) */
@media (max-width: 1024px) {
  /* Hero Section Styles */
  .hero-logo-box-container::before,
  .hero-logo-box-container::after {
    width: 1rem;
    height: 1rem;
    background-image: radial-gradient(
      circle at 100% 100%,
      transparent 1rem,
      white 1rem
    );
  }

  .hero-logo-box-container::before {
    left: calc(-1rem + 1px);
    bottom: -1px;
  }

  .hero-logo-box-container::after {
    top: calc(-1rem + 1px);
    right: -1px;
  }

  .hero-logo-box {
    margin: 0.75rem 0 0 0.75rem;
    width: 25rem;
    height: 8rem;
    border-radius: 1rem;
  }

  /* About Section Styles */
  .about-section {
    margin: 7rem auto 2.5rem auto;
  }

  .about-desc p {
    font-size: 1.2rem;
  }

  .accordion-item {
    border-radius: 1rem;
  }

  .accordion-item:first-child {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }

  .accordion-item:last-child {
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }

  .accordion-content p {
    font-size: 1rem;
  }

  .accordion-content h3 {
    font-size: 1.3rem;
  }

  .ceo-img-wrap,
  .ceo-img {
    min-height: none;
  }

  /* Solutions Section Styles */
  .solution-desc {
    font-size: 1.25rem;
  }

  /* Brands Section Styles */
  .brands-marquee img {
    height: 7rem;
    width: 7rem;
    margin-right: 4rem;
  }

  /* Article Section */
  .article-section {
    padding: 2rem 0 4rem 0;
  }

  .article-header {
    margin-bottom: 2rem;
  }

  .article-title {
    font-size: 1.75rem;
  }

  .article-title-right {
    font-size: 1.35rem;
  }

  .article-desc {
    font-size: 0.9rem;
  }

  .article-cards {
    gap: 1.5rem;
  }

  .article-card {
    min-height: 300px;
    padding-bottom: 0.5rem;
  }

  .article-card-img-1,
  .article-card-img-2,
  .article-card-img-3,
  .article-card-img-4 {
    height: 10rem;
  }

  .article-card-title {
    margin: 0.5rem auto 0 auto;
    font-size: 0.8rem;
  }

  /* Modal Footer Styles */
  .modal-footer-container {
    max-width: 500px;
    max-height: 500px;
  }

  .modal-footer-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0.5rem 3rem 0.5rem;
  }

  .modal-footer-content h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: bold;
  }

  .modal-footer-content h3 {
    font-size: 1.25rem;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .modal-footer-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .modal-footer-content ul li {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .close-footer-modal img {
    width: 3.5rem;
    height: 3.5rem;
  }
}

@media (max-width: 992px) {
  /* Navbar Syules */
  .navbar {
    top: 1.5rem;
    background: #fff;
    width: calc(100% - 10vw);
    margin: 0 auto;
    box-shadow: -1px 0 10px rgba(0, 0, 0, 0.3) !important;
  }

  .navbar-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
    gap: 1rem;
  }

  .navbar-brand img {
    height: 16px;
  }

  .navbar-toggler-text {
    font-size: 0.8rem;
  }

  .navbar-nav.show {
    display: flex;
  }

  .navbar-toggler {
    display: block;
  }

  /* Hero Section Styles */
  .hero-section {
    margin: 0 5vw;
  }

  .hero-container {
    margin: 3rem auto;
    border-radius: 44px 44px 1.25rem 44px;
  }

  .hero-main {
    width: 80%;
  }

  .hero-title {
    margin-bottom: 0.75rem;
    font-size: 2.5rem;
  }

  .typed-cursor {
    width: 1.5rem;
    height: 1.5rem;
  }

  .hero-desc {
    margin-bottom: 1.5rem !important;
    font-size: 0.9rem;
  }

  .hero-btn {
    font-size: 0.8rem;
  }

  /* About Section Styles */
  .about-section {
    margin: 5rem auto 2.5rem auto;
  }

  .about-desc {
    margin-bottom: 1rem;
  }

  .about-desc p {
    font-size: 1rem;
  }

  .accordion-item {
    border-radius: 1rem;
    margin-bottom: 1rem;
  }

  .accordion-item:first-child {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }

  .accordion-item:last-child {
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }

  .accordion-content {
    padding: 0 1rem;
  }

  .accordion-item:hover .accordion-content {
    padding: 2vh 2vw;
  }

  .accordion-content p {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .accordion-content h3 {
    font-size: 1.15rem;
  }

  .team-photo img,
  .ceo-img-wrap {
    border-radius: 1.75rem;
  }

  .img-group {
    height: 270px;
  }

  .ceo-img-center {
    top: -1.5rem;
    width: 280px;
  }

  .ceo-img-left {
    top: -1.1rem;
    width: 290px;
    right: 57%;
  }

  .ceo-img-right {
    top: -2.5rem;
    width: 300px;
    left: 56%;
  }

  .info-overlay-left {
    width: 25%;
  }

  .info-overlay-center {
    width: 35%;
  }

  .info-overlay-right {
    width: 25%;
  }

  .ceo-name {
    font-size: 1rem;
  }

  .ceo-title {
    font-size: 0.8rem;
    padding-bottom: 0.75rem;
  }

  /* Solutions Section Styles */
  .solution-container {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 2rem;
  }

  .solution-title {
    margin-bottom: 0.5rem;
  }

  .solution-card-1,
  .solution-card-2 {
    width: 100%;
    max-height: 32vh;
    margin-bottom: 0;
  }

  .solution-desc {
    margin-top: 4.5rem;
    font-size: 1.15rem;
  }

  /* Brands Section Styles */
  .brands-section {
    display: none;
  }

  .brands-section-mobile {
    display: block;
  }

  .brands-marquee {
    height: 130px;
  }

  .brands-marquee img {
    height: 5.5rem;
    width: 5.5rem;
    margin-right: 4rem;
  }

  /* Article Section */
  .article-header {
    margin-bottom: 1.75rem;
  }

  .article-title {
    font-size: 1.5rem;
  }

  .article-title-right {
    font-size: 1rem;
  }

  .article-desc {
    font-size: 0.85rem;
  }

  .article-cards {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }

  .article-card {
    min-height: 160px;
    min-width: 100%;
    flex-direction: row;
  }

  .article-card-img-1,
  .article-card-img-2,
  .article-card-img-3,
  .article-card-img-4 {
    width: 50%;
    height: 160px;
    margin-bottom: 0;
  }

  .article-card-title {
    padding-top: 1rem;
    margin-top: 0;
    height: 160px;
    font-size: 1.3rem;
  }
}

/* Tablet View (600px - 768px) */
@media (max-width: 768px) {
  /* Navbar Syules */
  .navbar {
    top: 1.5rem;
    background: #fff;
    width: calc(100% - 10vw);
    margin: 0 auto;
  }

  .navbar-brand img {
    height: 16px;
  }

  /* Hero Section Styles */
  .hero-logo-box {
    width: 20rem;
    height: 7rem;
  }

  .hero-title {
    margin-bottom: 0.75rem;
    font-size: 2.25rem;
  }

  .typed-cursor {
    width: 1.25rem;
    height: 1.25rem;
  }

  .hero-desc {
    margin-bottom: 1.5rem !important;
    font-size: 0.8rem;
  }

  .hero-btn {
    font-size: 0.7rem;
  }

  /* About Section Styles */
  .about-section {
    margin: 6rem auto 2.5rem auto;
  }

  .about-desc {
    margin-bottom: 0.75rem;
  }

  .about-desc p {
    font-size: 0.8rem;
  }

  .accordion-content p {
    font-size: 0.8rem;
  }

  .accordion-content h3 {
    font-size: 1rem;
  }

  .team-photo img,
  .ceo-img-wrap {
    border-radius: 1.5rem;
  }

  .img-group {
    height: 220px;
  }

  .ceo-img-center {
    top: -0.8rem;
    width: 220px;
  }

  .ceo-img-left {
    top: -0.6rem;
    width: 230px;
    right: 57%;
  }

  .ceo-img-right {
    top: -1.7rem;
    width: 240px;
    left: 56%;
  }

  .info-overlay-left {
    width: 25%;
  }

  .info-overlay-center {
    width: 38%;
  }

  .info-overlay-right {
    width: 25%;
  }

  .ceo-name {
    font-size: 0.85rem;
  }

  .ceo-title {
    font-size: 0.7rem;
    padding-bottom: 0.5rem;
  }

  /* Solutions Section Styles */
  .solution-desc {
    margin-top: 4rem;
    font-size: 1rem;
  }

  /* Brands Section Styles */
  .brands-section {
    margin: 4rem auto;
  }

  .brands-marquee {
    height: 130px;
  }

  .brands-marquee img {
    height: 5rem;
    width: 5rem;
    margin-right: 4rem;
  }

  /* Article Section */
  .article-card-title {
    font-size: 1rem;
  }

  /* Footer Section */
  .footer-section {
    padding: 5rem 2rem 1.5rem 2rem;
  }

  .footer-container {
    gap: 1rem;
  }

  .footer-link {
    font-size: 0.55rem;
    margin-bottom: 0.2rem;
  }

  .footer-left {
    max-width: 35%;
  }

  .footer-logo {
    height: 20px;
    margin-bottom: 0.25rem;
  }

  .footer-center {
    max-width: 30%;
  }

  .footer-right {
    min-width: 0;
    max-width: 35%;
  }

  /* Modal Footer Styles */
  .modal-footer-content h2 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .modal-footer-content h3 {
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 7px;
    font-weight: bold;
  }

  .modal-footer-content p {
    font-size: 0.8rem;
    margin-bottom: 7px;
  }

  .modal-footer-content ul li {
    font-size: 0.8rem;
    margin-bottom: 5px;
  }

  .close-footer-modal img {
    width: 3rem;
    height: 3rem;
  }
}

/* Mobile view (max-width: 600px) */
@media (max-width: 600px) {
  /* Navbar Syules */
  .navbar {
    top: 1.5rem;
    background: #fff;
    width: calc(100% - 10vw);
    margin: 0 auto;
  }

  .navbar .container {
    height: 22px;
  }

  .navbar-brand img {
    height: 14px;
  }

  .navbar-toggler-text {
    font-size: 0.8rem;
  }

  /* Hero Section Styles */
  .hero-main {
    width: 85;
  }

  .hero-logo-box {
    margin: 0.5rem 0 0 0.5rem;
    width: 16rem;
    height: 5rem;
  }

  .hero-title {
    margin-bottom: 0.75rem;
    font-size: 1.65rem;
  }

  .typed-cursor {
    width: 1rem;
    height: 1rem;
  }

  .hero-desc {
    margin-bottom: 1.25rem !important;
    font-size: 0.8rem;
  }

  .hero-btn {
    font-size: 0.65rem;
  }

  /* About Section Styles */
  .about-section {
    margin: 5rem auto 2.5rem auto;
  }

  .about-desc {
    margin-bottom: 0.5rem;
  }

  .about-desc p {
    font-size: 0.8rem;
  }

  .accordion-content p {
    font-size: 0.65rem;
  }

  .accordion-content h3 {
    font-size: 0.85rem;
  }

  .team-photo img,
  .ceo-img-wrap {
    border-radius: 1.25rem;
  }

  .img-group {
    height: 150px;
  }

  .ceo-img-center {
    top: -0.6rem;
    width: 150px;
  }

  .ceo-img-left {
    top: -0.4rem;
    width: 160px;
    right: 57%;
  }

  .ceo-img-right {
    top: -1rem;
    width: 160px;
    left: 56%;
  }

  .info-overlay-left {
    width: 25%;
  }

  .info-overlay-center {
    width: 35%;
  }

  .info-overlay-right {
    width: 25%;
  }

  .ceo-name {
    font-size: 0.65rem;
  }

  .ceo-title {
    font-size: 0.5rem;
    padding-bottom: 0.25rem;
  }

  /* Solutions Section Styles */
  .solution-desc {
    margin-top: 3rem;
    font-size: 0.74rem;
  }

  .solution-card-1,
  .solution-card-2 {
    max-height: 28vh;
  }

  /* Brands Section Styles */
  .brands-section {
    margin: 2rem auto;
  }

  .brands-marquee {
    height: 120px;
  }

  .brands-marquee img {
    height: 5rem;
    width: 5rem;
    margin-right: 2rem;
  }

  /* Article Section */
  .article-header {
    margin-bottom: 1.5rem;
  }

  .article-title {
    font-size: 1.25rem;
  }

  .article-title-right {
    font-size: 0.85rem;
  }

  .article-desc {
    font-size: 0.75rem;
  }

  .article-card {
    min-height: 140px;
  }

  .article-card-img-1,
  .article-card-img-2,
  .article-card-img-3,
  .article-card-img-4 {
    width: 50%;
    height: 140px;
    margin-bottom: 0;
  }

  .article-card-title {
    padding-top: 0.5rem;
    height: 140px;
    font-size: 1rem;
  }

  /* Footer Section Styles */
  .footer-section {
    padding: 5rem 1rem 1.5rem 1rem;
  }

  .footer-container {
    padding-top: 1rem;
    gap: 0.5rem;
  }

  .footer-logo {
    height: 14px;
    margin-bottom: 0;
  }

  .footer-copyright {
    font-size: 0.5rem;
  }

  .footer-center {
    gap: 0.2rem;
  }

  .footer-link {
    font-size: 0.5rem;
  }

  .footer-social-label {
    font-size: 0.45rem;
  }

  .footer-social-icons {
    gap: 0.5rem;
  }

  .footer-social-icon {
    width: 16px;
    height: 16px;
  }

  /* Modal Footer Styles */
  .modal-footer-container {
    max-width: 500px;
    max-height: 400px;
  }

  .modal-footer-content {
    padding: 1rem 0.2rem 2.5rem 0.2rem;
  }

  .modal-footer-content h2 {
    font-size: 1rem;
  }

  .modal-footer-content h3 {
    font-size: 0.85rem;
  }

  .modal-footer-content p {
    font-size: 0.7rem;
  }

  .modal-footer-content ul {
    padding-left: 1.2rem;
  }

  .modal-footer-content ul li {
    font-size: 0.7rem;
  }

  .close-footer-modal img {
    width: 2.5rem;
    height: 2.5rem;
  }
}

/* Mobile Small view (max-width: 435px) */
@media (max-width: 435px) {
  /* Navbar Syules */
  .navbar {
    background: #fff;
    margin: 0 auto;
    width: calc(100% - 10vw);
  }

  .navbar .container {
    padding: 0 1rem;
  }

  /* Hero Section Styles */
  .hero-logo-box {
    margin: 0.25rem 0 0 0.25rem;
    width: 13rem;
    height: 4.5rem;
  }

  .hero-title {
    font-size: 1.4rem;
  }

  .typed-cursor {
    width: 0.8rem;
    height: 0.8rem;
  }

  .hero-desc {
    font-size: 0.7rem;
  }

  /* About Section Styles */
  .about-section {
    margin: 5rem auto 2.5rem auto;
  }

  .about-desc p {
    margin-bottom: 0.5rem;
    font-size: 0.6rem;
  }

  .accordion-header {
    font-size: 0.8rem;
  }

  .accordion-item {
    margin-bottom: 0.75rem;
    border-radius: 0.7rem;
  }

  .accordion-item:first-child {
    border-top-left-radius: 0.7rem;
    border-top-right-radius: 0.7rem;
  }

  .accordion-item:last-child {
    border-bottom-left-radius: 0.7rem;
    border-bottom-right-radius: 0.7rem;
  }

  .accordion-content p {
    font-size: 0.45rem;
    margin-bottom: 0.5rem;
  }

  .accordion-content h3 {
    font-size: 0.65rem;
  }

  .solution-card-1,
  .solution-card-2 {
    max-height: 24vh;
  }

  .team-photo img,
  .ceo-img-wrap {
    border-radius: 1rem;
  }

  .img-group {
    height: 110px;
  }

  .ceo-img-center {
    top: -0.6rem;
    width: 110px;
  }

  .ceo-img-left {
    top: -0.2rem;
    width: 110px;
    right: 56%;
  }

  .ceo-img-right {
    top: -0.7rem;
    width: 110px;
    left: 56%;
  }

  .info-overlay-left {
    width: 25%;
  }

  .info-overlay-center {
    width: 30%;
  }

  .info-overlay-right {
    width: 25%;
  }

  .ceo-name {
    font-size: 0.5rem;
  }

  .ceo-title {
    font-size: 0.4rem;
    padding-bottom: 0.25rem;
  }

  /* Solutions Section Styles */
  .solution-desc {
    font-size: 0.55rem;
  }

  /* Brands Section Styles */
  .brands-section {
    margin: 1rem auto;
  }

  .brands-marquee {
    height: 80px;
  }

  .brands-marquee img {
    height: 3rem;
    width: 3rem;
    margin-right: 1rem;
  }

  /* Article Section */
  .article-header {
    margin-bottom: 1rem;
  }

  .article-title {
    font-size: 1rem;
  }

  .article-title-right {
    font-size: 0.75rem;
  }

  .article-desc {
    font-size: 0.65rem;
  }

  .article-card {
    min-height: 120px;
  }

  .article-card-img-1,
  .article-card-img-2,
  .article-card-img-3,
  .article-card-img-4 {
    width: 50%;
    min-height: 120px;
    margin-bottom: 0;
  }

  .article-card-title {
    padding-top: 0.5rem;
    min-height: 120px;
    font-size: 0.8rem;
  }

  /* Modal Footer Styles */
  .modal-footer-container {
    max-width: 400px;
    max-height: 350px;
  }

  .modal-footer-content {
    padding: 0.2rem 0 2rem 0;
  }

  .modal-footer-content h2 {
    font-size: 0.85rem;
  }

  .modal-footer-content h3 {
    font-size: 0.75rem;
  }

  .modal-footer-content p {
    font-size: 0.55rem;
  }

  .modal-footer-content ul {
    padding-left: 1rem;
  }

  .modal-footer-content ul li {
    font-size: 0.55rem;
  }

  .close-footer-modal img {
    width: 2rem;
    height: 2rem;
  }
}
