/* =========================================================
   SITE HEADER
========================================================= */

/* TOP BAR */

.top-bar {
  background-color: #0e0e1a;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.top-bar a:hover {
  color: #ffb400;
}

.top-bar-divider {
  margin: 10px 15px;
  color: #555;
}

/* MAIN NAV BAR */

.main-navbar {
  background-color: #2447a5;
  padding: 10px 0;
}

.navbar-brand {
  font-size: 24px;
  color: #fff !important;
}

.nav-link {
  color: #fff !important;
  font-weight: 400;
  position: relative;
  transition: 0.3s;
}

.nav-link:hover {
  color: #ffb400 !important;
}

/* MANAGED FOR MOBILE */

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .navbar .dropdown:hover .dropdown-toggle::after {
    transition: 2s ease;
  }
}

/* DROPDOWN */

.custom-dropdown {
  background-color: #151521;
  border-radius: 12px;
  padding: 15px 0;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  min-width: 230px;
}

.dropdown-item {
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  transition: 0.3s;
}

.dropdown-item:hover {
  background-color: transparent;
  color: #ffb400;
}

/* Dropdown arrow color */
.dropdown-toggle::after {
  margin-left: 6px;
}

/* =========================================================
   SITE FOOTER
========================================================= */

.site-footer {
  background-color: #151521;
  color: #dcdcdc;
}

.footer-heading {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-subheading {
  color: #d6d6d6;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 18px;
}

.footer-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #d6d6d6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #bcbcbc;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #ffb400;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #fff;
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: #ffb400;
  border-color: #ffb400;
  color: #000;
}

.footer-bottom {
  border-top: #a7a7a7 1px solid;
  background-color: #151521;
  font-size: 13px;
  color: #aaa;
}

/* =========================================================
       HERO SECTION
    ========================================================= */

.hero-slider {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 560px;
  max-height: 780px;
  overflow: hidden;
  background: #102e59;
}

@media (max-width: 991.98px) {
  .hero-slider {
    height: 68vh;
    min-height: 500px;
  }
}
@media (max-width: 767.98px) {
  .hero-slider {
    height: 70vh;
    min-height: 520px;
    max-height: none;
  }
}
@media (max-width: 575.98px) {
  .hero-slider {
    min-height: 500px;
  }
}

/* SLIDES*/

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  background-image: var(--desktop-bg);
  background-size: cover;
  background-position: center;

  opacity: 0;
  visibility: hidden;

  transition: opacity 0.8s ease-in-out;
}

@media (max-width: 991.98px) {
  .slide {
    background-image: var(--tablet-bg);
  }
}
@media (max-width: 767.98px) {
  .slide {
    background-image: var(--mobile-bg);
  }
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* OVERLAY*/

.slide-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.42) 45%,
    rgba(0, 0, 0, 0.28) 100%
  );

  z-index: 1;
}

/*SLIDE CONTENT*/

.slide .container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

@media (max-width: 991.98px) {
  .slide .container {
    align-items: start;
    padding-top: 80px;
  }
}

.slide-content {
  width: 100%;
  max-width: 850px;
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .slide-content {
    max-width: 700px;
  }
}
@media (max-width: 767.98px) {
  .slide-content {
    max-width: 100%;
  }
}

.slide-content h1 {
  margin: 0 0 25px;
  color: #ffffff;
  font-size: 64px;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -2.5px;
  text-shadow:
    0 3px 8px rgba(0, 0, 0, 0.45),
    0 8px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 991.98px) {
  .slide-content h1 {
    font-size: 56px;
    letter-spacing: -1.8px;
  }
}
@media (max-width: 767.98px) {
  .slide-content h1 {
    font-size: 56px;
    line-height: 1.12;
    letter-spacing: -1.2px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  .slide-content h1 {
    font-size: 40px;
  }
}

.slide-content p {
  max-width: 600px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.65;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
}

@media (max-width: 767.98px) {
  .slide-content p {
    max-width: 100%;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
  }
}
@media (max-width: 575.98px) {
  .slide-content p {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .slide-content {
    text-align: center;
    margin: 0 auto;
  }

  .slide-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .slide-buttons {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* SLIDE BUTTONS*/

.slide-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 575.98px) {
  .slide-buttons {
    width: 140px;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .slider-cta-button,
  .slider-cta-button-outlined {
    width: auto;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

.slider-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 12px 25px;

  border-radius: 50px;
  border: 1px solid #ffffff;

  background: #ffffff;
  color: #172b3a;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

@media (max-width: 767.98px) {
  .slider-cta-button {
    min-height: 45px;
    padding: 10px 20px;
    font-size: 13px;
  }
}
@media (max-width: 575.98px) {
  .slider-cta-button {
    width: 100%;
  }
}

/* Filled button hover */
.slider-cta-button:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* =========================================
       OUTLINED BUTTON
    ========================================= */

.slider-cta-button-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 12px 25px;

  border-radius: 50px;
  border: 1px solid #ffffff;

  background: transparent;
  color: #ffffff;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

@media (max-width: 767.98px) {
  .slider-cta-button-outlined {
    min-height: 45px;
    padding: 10px 20px;
    font-size: 13px;
  }
}
@media (max-width: 575.98px) {
  .slider-cta-button-outlined {
    width: 100%;
  }
}

/* Outlined button hover */
.slider-cta-button-outlined:hover {
  transform: translateY(-6px);

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/*SLIDER DOTS*/

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 767.98px) {
  .slider-dots {
    bottom: 20px;
  }
}

.slider-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.slider-dot.active {
  width: 28px;
  border-radius: 10px;
  background: #2f7df4;
}

/*STATS */

.stats-section {
  position: relative;
  background: #ffffff;
  padding: 0;
}

.stats-container {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

@media (max-width: 767.98px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}

.stats-container .stat-item {
  padding: 36px 35px 30px;
}

@media (max-width: 991.98px) {
  .stats-container .stat-item {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767.98px) {
  .stats-container .stat-item {
    padding: 25px 20px;
    text-align: center;
  }
}

.stats-container .stat-item + .stat-item {
  border-left: 1px solid #eaeaea;
}

@media (max-width: 767.98px) {
  .stats-container .stat-item + .stat-item {
    border-left: 0;
    border-top: 1px solid #eaeaea;
  }
}

.stats-container .stat-item:first-child {
  padding-left: 0;
}

@media (max-width: 991.98px) {
  .stats-container .stat-item:first-child {
    padding-left: 24px;
  }
}
@media (max-width: 767.98px) {
  .stats-container .stat-item:first-child {
    padding: 25px 20px;
  }
}

.stats-container .stat-item:last-child {
  padding-right: 0;
}

@media (max-width: 991.98px) {
  .stats-container .stat-item:last-child {
    padding-right: 24px;
  }
}
@media (max-width: 767.98px) {
  .stats-container .stat-item:last-child {
    padding: 25px 20px;
  }
}

.stats-container .stat-item h3 {
  margin: 0 0 12px;
  color: #192f5a;
  font-size: 32px !important;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1.5px;
}

@media (max-width: 767.98px) {
  .stats-container .stat-item h3 {
    font-size: 26px !important;
  }
}
@media (max-width: 575.98px) {
  .stats-container .stat-item h3 {
    font-size: 24px !important;
  }
}

.stats-container .stat-item p {
  margin: 0;
  color: #5f6267;
  font-size: 16px !important;
  line-height: 1.4;
}

@media (max-width: 575.98px) {
  .stats-container .stat-item p {
    font-size: 14px !important;
  }
}

/* =========================================================
       CLIENT LOGOS MARQUE
    ========================================================= */

/* CLIENT SECTION */

.our-clients-section {
  background: #ffffff;
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (max-width: 767.98px) {
  .our-clients-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.our-clients-section .section-title {
  font-size: 40px;
  color: #012138 !important;
}

@media (max-width: 991.98px) {
  .our-clients-section .section-title {
    font-size: 36px;
  }
}
@media (max-width: 767.98px) {
  .our-clients-section .section-title {
    font-size: 30px;
    line-height: 1.2;
  }
}

.our-clients-section .section-desc {
  font-size: 15px;
  color: #012138 !important;
}

@media (max-width: 767.98px) {
  .our-clients-section .section-desc {
    font-size: 14px;
  }
}

.logo-slider {
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

@media (max-width: 767.98px) {
  .logo-slider {
    margin-top: 25px;
  }
}

/* Track */
.logo-track {
  display: flex;
  gap: 30px;
  animation: scroll 25s linear infinite;
  align-items: center;
}

@media (max-width: 767.98px) {
  .logo-track {
    gap: 20px;
  }
}

/* Each logo box */
.logo-item {
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* Logo image */
.logo-item img {
  max-width: 260px;
  max-height: 160px;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.2s ease;
}

@media (max-width: 767.98px) {
  .logo-item img {
    max-width: 170px;
    max-height: 100px;
  }
}
@media (max-width: 575.98px) {
  .logo-item img {
    max-width: 140px;
    max-height: 85px;
  }
}

/* Hover effect */
.logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* ANIMATION */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =========================================================
       ABOUT US SECTION
    ========================================================= */

/* ABOUT US SECTION */

.about-us-section {
  background: #ffffff;
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (max-width: 767.98px) {
  .about-us-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.about-us-section .section-title {
  font-size: 40px;
  color: #012138 !important;
}

@media (max-width: 991.98px) {
  .about-us-section .section-title {
    font-size: 36px;
  }
}
@media (max-width: 767.98px) {
  .about-us-section .section-title {
    font-size: 28px;
    line-height: 1.2;
  }
}

.about-us-section .section-desc {
  font-size: 15px;
  color: #012138 !important;
}

@media (max-width: 767.98px) {
  .about-us-section .section-desc {
    font-size: 14px;
  }
}

/* =========================================================
       PRODUCT SECTION
    ========================================================= */

/* PRODUCT GRID */

.products-grid {
  padding: 50px 0 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

@media (max-width: 991.98px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767.98px) {
  .products-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    padding: 25px 0 0px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
}

@media (max-width: 575.98px) {
  .products-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
  }
}

/* PRODUCT CARD */

.product-card {
  position: relative;
  background: #fff;
  border: 1px solid #eaeaea;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  margin-left: 20px;
}

@media (max-width: 991.98px) {
  .product-card {
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .product-card {
    flex: 0 0 70%;
    width: 100%;
    margin-left: 0;
    scroll-snap-align: start;
  }
}

@media (max-width: 575.98px) {
  .product-card {
    width: 100%;
  }
}

.product-card:first-child {
  margin-left: 0;
}

.product-card:hover {
  position: relative;
  z-index: 3;
  transform: translateY(-6px);
  border: 1px solid #eaeaea;
}

/* PRODUCT IMAGE */

.product-image {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

/* PRODUCT CONTENT */

.product-card-content {
  position: relative;
  min-height: 165px;
  padding: 27px 25px 25px;
}

@media (max-width: 767.98px) {
  .product-card-content {
    min-height: 175px;
    padding: 20px 16px 18px;
  }
}

@media (max-width: 575.98px) {
  .product-card-content {
    min-height: auto;
  }
}

/* NUMBER */

.product-number {
  margin-bottom: 15px;
  color: #3280ee;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

@media (max-width: 767.98px) {
  .product-number {
    margin-bottom: 10px;
    font-size: 11px;
  }
}

/* PRODUCT INFO */

.product-card-info {
  padding-right: 22px;
}

@media (max-width: 767.98px) {
  .product-card-info {
    padding-right: 0;
  }
}

.product-card-info h3 {
  margin: 0 0 8px;
  color: #19366a;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .product-card-info h3 {
    font-size: 20px;
  }
}

.product-card-info p {
  margin: 0;
  color: #73777c;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .product-card-info p {
    font-size: 13px;
    line-height: 1.45;
  }
}

/* ROUND ARROW BUTTON */

.product-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: 22px;
  border-radius: 50%;
  background: #286bc8;
  color: #ffffff;
  text-decoration: none;
  font-size: 21px;
  font-weight: 300;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

@media (max-width: 767.98px) {
  .product-arrow {
    width: 38px;
    height: 38px;
    margin-top: 16px;
    font-size: 18px;
  }
}

.product-arrow:hover {
  background: #1559b3;
  color: #ffffff;
  transform: translate(2px, -2px);
}

/* =========================================================
       CHOOSE US SECTION
    ========================================================= */

/* CHOOSE US SECTION */

.choose-us-section {
  background: #ffffff;
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (max-width: 767.98px) {
  .choose-us-section {
    padding-top: 30px;
    padding-bottom: 20px;
  }
}

.choose-us-section .section-title {
  font-size: 28px;
  color: #012138 !important;
}

@media (max-width: 991.98px) {
  .choose-us-section .section-title {
    font-size: 36px;
  }
}
@media (max-width: 767.98px) {
  .choose-us-section .section-title {
    font-size: 28px;
    line-height: 1.2;
  }
}

.choose-us-section .section-desc {
  font-size: 15px;
  color: #012138 !important;
}

@media (max-width: 767.98px) {
  .choose-us-section .section-desc {
    font-size: 14px;
  }
}

.choose-us-section-img {
  width: 90%;
  display: block;
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 991.98px) {
  .choose-us-section-img {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================================================
       UPDATES SECTION
    ========================================================= */

.updates-section {
  background: #ffffff;
  padding-top: 50px;
  padding-bottom: 50px;
}

.updates-section p {
  font-size: 15px;
  color: #636363;
}

@media (max-width: 767.98px) {
  .updates-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* UPDATES CARDS */

.updates-section .row {
  display: flex;
}

@media (max-width: 767.98px) {
  .updates-section .row {
    flex-wrap: nowrap;
    gap: 15px;
    margin-right: -12px;
    margin-left: -12px;
    padding: 0 12px 20px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
}

.updates-section .row > [class*="col-"] {
  min-width: 0;
}

@media (max-width: 767.98px) {
  .updates-section .row > [class*="col-"] {
    flex: 0 0 82%;
    width: 82%;
    max-width: 82%;
    scroll-snap-align: start;
  }
}

@media (max-width: 575.98px) {
  .updates-section .row > [class*="col-"] {
    flex: 0 0 88%;
    width: 88%;
    max-width: 88%;
  }
}

/* NEWS CARD */

.updates-section .news-card {
  height: 100%;
}

/* FORM CONTROL */

.form-label {
  font-weight: 400;
  font-size: 14px;
  color: #002139;
}

.form-control {
  color: #acacac;
}

.form-control::placeholder {
  color: #b6b6b6;
  font-weight: 400;
  font-size: 15px;
  opacity: 1;
}
/* ================= CHOOSE US SECTION ================= */

.quality-highlights {
  width: 100%;
}

.quality-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 5px 0;
}

@media (max-width: 767.98px) {
  .quality-item {
    gap: 15px;
  }
}
@media (max-width: 575.98px) {
  .quality-item {
    gap: 12px;
  }
}

.quality-item:last-child {
  border-bottom: none;
}

.quality-icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  border-radius: 50%;
  background: #286bc8;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
}

.quality-item p {
  color: #60707b;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 767.98px) {
  .quality-item p {
    font-size: 15px;
    line-height: 1.55;
  }
}
@media (max-width: 575.98px) {
  .quality-item p {
    font-size: 15px;
  }
}

.quality-item strong {
  color: #102b3a;
  font-weight: 700;
}

/* =========================================================
       RESPONSIVE LAYOUT
       Desktop styles above remain unchanged.
    ========================================================= */

/* ENQUIRY SECTION */
@media (max-width: 991.98px) {
  section > .bg-light.p-5 {
    padding: 35px 20px !important;
  }
  section > .bg-light.p-5 .row > .col-5,
  section > .bg-light.p-5 .row > .col-7 {
    width: 100%;
  }
  section > .bg-light.p-5 .row > .col-7 {
    margin-top: 35px;
  }
  section > .bg-light.p-5 .row > .col-7 > .px-5 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 767.98px) {
  section > .bg-light.p-5 .row > .col-7 {
    margin-top: 30px;
  }
}
@media (max-width: 575.98px) {
  section > .bg-light.p-5 {
    padding: 30px 15px !important;
  }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
  .slide,
  .slider-cta-button,
  .slider-cta-button-outlined,
  .product-card,
  .product-image img,
  .product-arrow,
  .logo-item img {
    transition: none;
  }

  .logo-track {
    animation: none;
  }
}
/* =========================================================
   INNER PAGE HERO BANNER
========================================================= */

.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .hero-banner {
    position: relative;
    height: 300px;
    overflow: hidden;
  }
}

/* =========================================================
   HERO IMAGE
========================================================= */

.hero-banner-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

/* =========================================================
   HERO CONTENT
========================================================= */

.hero-banner-content {
  position: absolute;
  inset: 0;
  z-index: 2;

  width: 100%;
  max-width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding-left: 30px;
  padding-right: 30px;
}

/* =========================================================
   TABLET / MOBILE HERO CONTENT
========================================================= */

@media (max-width: 991.98px) {
  .hero-banner-content {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 30px;
    padding-right: 30px;

    align-items: center;
    justify-content: center;

    text-align: center;
  }
}

/* =========================================================
   HERO TITLE
========================================================= */

.hero-banner-content h1 {
  margin: 0;

  color: #ffffff;
  max-width: 600px;
  font-size: 60px;
  line-height: 1.15;
  font-weight: 500;

  letter-spacing: -1px;

  text-align: center;

  text-shadow:
    0 3px 8px rgba(0, 0, 0, 0.45),
    0 6px 15px rgba(0, 0, 0, 0.25);
}

/* =========================================================
   MOBILE HERO TITLE
========================================================= */

@media (max-width: 767.98px) {
  .hero-banner-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-banner-content h1 {
    margin: 0;
    font-size: 42px;
    line-height: 1.1;
    text-align: center;
  }
}

/* =========================================================
   BREADCRUMB
========================================================= */

#breadcrumb {
  position: relative;
  z-index: 2;
  margin-bottom: 20px !important;
  text-align: center;
}

@media (max-width: 767.98px) {
  #breadcrumb {
    margin-bottom: 12px !important;
  }
}

/* =========================================================
   BREADCRUMB
========================================================= */

#breadcrumb {
  position: relative;
  z-index: 2;
}

@media (max-width: 767.98px) {
  #breadcrumb {
    margin-bottom: 20px !important;
  }
}
/* =========================================================
   MINI CARD — USED ON THIS PAGE
========================================================= */

.mini-card-no-border {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
}

/* =========================================================
   EXPERTISE CARD TEXT AREA
========================================================= */

.mini-card-no-border .p-4 {
  padding: 16px 18px 18px !important;
}

/* =========================================================
   ICON
========================================================= */

.icon-60 {
  width: 60px;
  height: 60px;
}

@media (max-width: 575.98px) {
  .icon-60 {
    width: 40px;
    height: 40px;
  }
}

/* =========================================================
   MAIN CONTENT SPACING
========================================================= */

@media (max-width: 991.98px) {
  .section-margin {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

@media (max-width: 767.98px) {
  .section-margin {
    margin-top: 45px;
    margin-bottom: 45px;
  }
}

/* =========================================================
   RIGHT CONTENT COLUMN
========================================================= */

@media (max-width: 991.98px) {
  .product-page-content {
    width: 100%;
  }
}

/* =========================================================
   OVERVIEW IMAGE ROW
========================================================= */

#overview-section .overview-images {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

#overview-section .overview-images > div {
  display: flex;
}

#overview-section .overview-images img {
  width: 100%;
}

@media (max-width: 767.98px) {
  #overview-section .overview-images {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }

  #overview-section .overview-images > div {
    width: 100%;
  }
}

/* =========================================================
   KEY FEATURES
========================================================= */

#overview-section .key-features > div {
  display: flex;
}

@media (max-width: 767.98px) {
  #overview-section .key-features > div {
    width: 100%;
  }
}

/* =========================================================
   CONTENT SECTION ANCHORS
========================================================= */

#overview-section,
#specifications-section,
#manufacturing-section,
#testing-section,
#applications-section,
#faqs-section {
  scroll-margin-top: 120px;
}

@media (max-width: 767.98px) {
  #overview-section,
  #specifications-section,
  #manufacturing-section,
  #testing-section,
  #applications-section,
  #faqs-section {
    scroll-margin-top: 90px;
  }
}

/* =========================================================
   SECTION HEADINGS
========================================================= */

#overview-section .section-title,
#specifications-section .section-title,
#manufacturing-section .section-title,
#testing-section .section-title,
#applications-section .section-title,
#faqs-section .section-title {
  margin-bottom: 25px;
}

@media (max-width: 767.98px) {
  #overview-section .section-title,
  #specifications-section .section-title,
  #manufacturing-section .section-title,
  #testing-section .section-title,
  #applications-section .section-title,
  #faqs-section .section-title {
    margin-bottom: 20px;
    font-size: 28px !important;
  }
}

/* =========================================================
   SPECIFICATION TABLE
========================================================= */

#specifications-section .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#specifications-section table {
  min-width: 650px;
}

@media (max-width: 767.98px) {
  #specifications-section table {
    font-size: 13px;
  }

  #specifications-section th,
  #specifications-section td {
    padding: 10px 12px;
  }
}

/* =========================================================
   MANUFACTURING & TESTING IMAGES
========================================================= */

#manufacturing-section .process-images > div,
#testing-section .testing-images > div {
  display: flex;
}

#manufacturing-section .process-images img,
#testing-section .testing-images img {
  width: 100%;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  #manufacturing-section .process-images > div,
  #testing-section .testing-images > div {
    width: 100%;
  }
}

/* =========================================================
   APPLICATION CARDS
========================================================= */

#applications-section .application-grid > div {
  display: flex;
}

@media (max-width: 767.98px) {
  #applications-section .application-grid > div {
    width: 100%;
  }
}

/* =========================================================
   FAQ
========================================================= */

#faqs-section h6 {
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  #faqs-section h6 {
    font-size: 15px;
  }

  #faqs-section .text-small {
    line-height: 1.6;
  }
}

/* =========================================================
   CONTACT / CTA SECTION
========================================================= */

.contact-section {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

.contact-section .row {
  align-items: flex-start;
}

@media (max-width: 991.98px) {
  .contact-section .contact-intro,
  .contact-section .contact-form-column {
    width: 100%;
  }

  .contact-section .contact-form-column {
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .contact-section {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .contact-section .contact-form-column {
    margin-top: 30px;
  }

  .contact-section .form-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .contact-section .text-end {
    text-align: left !important;
  }
}

/* =========================================================
   FORM
========================================================= */

.contact-section .form-control {
  min-height: 48px;
}

.contact-section textarea.form-control {
  min-height: 120px;
}

@media (max-width: 767.98px) {
  .contact-section .form-control {
    min-height: 46px;
  }

  .contact-section textarea.form-control {
    min-height: 110px;
  }
}

/* =========================================================
   STATS — RESPONSIVE
========================================================= */

@media (max-width: 767.98px) {
  .stats-container {
    flex-direction: column;
  }

  .stat-item {
    width: 100%;
  }
}

.overview-images {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 15px;
  width: 100%;
}

.overview-image-item {
  flex: 0 0 calc(50% - 7.5px) !important;
  width: calc(50% - 7.5px) !important;
  max-width: calc(50% - 7.5px) !important;
  min-width: 0;
}

.overview-image-item img {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain;
}

/* MOBILE */

@media (max-width: 767.98px) {
  .overview-images {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 15px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .overview-image-item {
    flex: 0 0 55% !important;
    width: 55% !important;
    max-width: 55% !important;
    min-width: 55% !important;
    scroll-snap-align: start;
  }

  .overview-image-item img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
}

/* SMALL MOBILE */

@media (max-width: 575.98px) {
  .overview-image-item {
    flex: 0 0 50% !important;
    width: 50% !important;
    max-width: 70% !important;
    min-width: 70% !important;
  }
}

/* =========================================================
   UNUSED CSS FROM ORIGINAL POWER TRANSFORMERS PAGE
   Kept unchanged as requested.
========================================================= */

/* Image inside expertise card */
.mini-card-no-border .product-image {
  width: 100%;
  height: 220px !important;
  object-fit: cover;
  display: block;
}

.mini-card-no-border .product-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  font-family: "Inter", sans-serif;
  margin-bottom: 6px;
  line-height: 1.3;
}

.mini-card-no-border .product-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 10px !important;
}

.mini-card-no-border .product-link {
  font-size: 14px;
  font-weight: 600;
  color: #2447a5;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.mini-card-bg-light {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f9f8f8;
}

.mini-card {
  overflow: hidden;
  height: 100%;
  background: #fff;
  border: 1px solid var(--border-light);
  transition:
    transform 0.3s ease,
    box-shadow 0.1s ease;
}

.mini-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.mini-card-no-hover {
  overflow: hidden;
  height: 100%;
  background: #fff;
  border: 1px solid var(--border-light);
}

.mini-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.mini-card-orange-border {
  background: #ffffff;
  border-radius: 6px;
  border-left: 5px solid #ffb663;
  padding: 20px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.mini-card-orange-border:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.mini-card-orange-border h5 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 6px;
  color: #0f2b3a;
}

.mini-card-orange-border p {
  font-size: 14px;
  color: #323232;
}

/* ================= IMAGE ================= */

/* Single clean definition (removed duplicates) */
.card-img {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #f5f7fb;
}

/* Image */
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Image zoom on hover */
.service-card:hover .card-img img {
  transform: scale(1.08);
}

/* Gradient overlay (premium look) */
.card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
}

/* ================================
   COMPANY JOURNEY TIMELINE
================================ */

.company-journey {
  width: 100%;
  padding: 20px 0 10px;
}

.timeline {
  position: relative;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  width: 100%;
  padding-top: 0;
}

/* Horizontal connecting line */
.timeline::before {
  content: "";

  position: absolute;
  top: 15px;
  left: 16px;
  right: 16px;

  height: 2px;

  background: #d8ddd9;

  z-index: 0;
}

/* Individual timeline item */
.timeline-item {
  position: relative;

  min-width: 0;
  padding-right: 45px;

  z-index: 1;
}

/* Timeline circle */
.timeline-marker {
  position: relative;

  width: 34px;
  height: 34px;

  margin-bottom: 36px;

  border: 4px solid #2447a5;
  border-radius: 50%;

  background: #f5f7f5;
}

/* Content */
.timeline-content {
  max-width: 360px;
}

.timeline-content h3 {
  margin: 0 0 22px;

  color: #102c40;

  font-size: 24px;
  line-height: 1;

  font-weight: 700;

  letter-spacing: -1px;
}

.timeline-content p {
  margin: 0;

  color: #64727c;

  font-size: 14px;
  line-height: 1.72;

  font-weight: 400;
}

/* ================= CUSTOM CARDS ================= */

/* CUSTOM BUTTON */

.button-rounded {
  font-size: 14px;
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 8px;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}

.button-rounded:hover {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.button-extra {
  font-size: 14px;
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 400;
  margin-top: 8px;
  border: 2px solid var(--primary);
}

.button-extra:hover {
  font-weight: 500;
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* SCROLL CARD */

.scroll-card::-webkit-scrollbar {
  width: 6px;
}

.scroll-card::-webkit-scrollbar-thumb {
  background-color: #f1f1f1;
  border-radius: 16px;
  height: 30px;
}

.scroll-card::-webkit-scrollbar-track {
  background: transparent;
}

.scroll-card {
  max-height: 590px;
  overflow-y: auto;
  padding-right: 12px;
}

.scroll-card {
  scroll-behavior: smooth;
}

/* GALLERY */

.gallery-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-image {
  width: 100%;
  object-fit: cover;
  display: block;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}

.gallery-title {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

/* LEFT SIDE SECONDARY NAV BAR*/

#businessTabs .nav-link {
  color: #020202 !important;
  background-color: rgb(227, 227, 227);
  font-weight: 400;
  border-radius: 8px;
  padding: 10px 10px;
  transition: all 0.1s ease;
}

#businessTabs .nav-link.active {
  background-color: #161617;
  color: #fff !important;
}

#businessTabs .nav-link:hover {
  background-color: #161617;
  color: #fff !important;
}

.sidebar-stick {
  position: sticky;
  top: 120px;
  max-height: calc(100vh - 50px);
  overflow-y: auto;
}

section[id] {
  scroll-margin-top: 120px;
}

.group-info-column {
  border-left: 1px solid #eaeaea;
}

@media (max-width: 991.98px) {
  .group-info-column {
    border-left: 0;
    border-top: 1px solid #eaeaea;
    margin-top: 30px;
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 35px !important;
  }
}