*, *::before, *::after {
  cursor:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="23" height="23" viewBox="0 0 24 24"><path fill="%23FFF" stroke="%23FF2711" stroke-width="2" d="M5.5 3.21V20.8c0 .45.54.67.85.35l4.86-4.86a.5.5 0 0 1 .35-.15h6.87a.5.5 0 0 0 .35-.85L6.35 2.85a.5.5 0 0 0-.85.35Z"></path></svg>') 5 5, auto;
}

a, button, input[type="submit"], input[type="button"],
label, select, .dropbtn, .sub-btn, .btn, .cn,
.carousel-control, .hideMenuButton, .item a,
input[type="text"], input[type="search"], textarea {
  cursor:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23FFF" stroke="%23FF2711" stroke-width="2" stroke-linejoin="round" d="M10 11V8.99c0-.88.59-1.64 1.44-1.86h.05A1.99 1.99 0 0 1 14 9.05V12v-2c0-.88.6-1.65 1.46-1.87h.05A1.98 1.98 0 0 1 18 10.06V13v-1.94a2 2 0 0 1 1.51-1.94h0A2 2 0 0 1 22 11.06V14c0 .6-.08 1.27-.21 1.97a7.96 7.96 0 0 1-7.55 6.48 54.98 54.98 0 0 1-4.48 0 7.96 7.96 0 0 1-7.55-6.48C2.08 15.27 2 14.59 2 14v-1.49c0-1.11.9-2.01 2.01-2.01h0a2 2 0 0 1 2.01 2.03l-.01.97v-10c0-1.1.9-2 2-2h0a2 2 0 0 1 2 2V11Z"></path></svg>') 5 5, auto;
}



@keyframes sparkle-fade {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.7;
    transform: translate(-50%, -35px) scale(0.8) rotate(90deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -70px) scale(0) rotate(200deg);
  }
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Times New Roman', Times, serif;
}

body::-webkit-scrollbar {
  display: none;
}

.main {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.main video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.main .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #0a0d14, transparent, #0a0d14);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  max-width: 80vw;
  height: auto;
  margin: auto;
  color: white;
  display: flex;
  margin-top: 100px;
}

.header {
  position: relative;
  z-index: 1000;
  width: 80vw;
  margin: auto;
}

.header-nav {
  background-color: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  position: relative;
}

.header-nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #ff7200,
    #ffaa00,
    #ff7200,
    transparent
  );
}

.nav {
  background-color: transparent;
}

.logo {
  height: 10.5vh;
  max-width: 180px;
}

.header-logo-container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex-shrink: 0;
  color: white;
  margin-top: 25px;
  width: 180px;
  position: relative;
}

.header-logo-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: -200%;
  width: 150%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent 0%,
    transparent 20%,
    rgba(255, 160, 100, 0.1) 30%,
    rgba(255, 255, 255, 0.531) 50%,
    rgba(255, 160, 100, 0.1) 70%,
    transparent 80%,
    transparent 100%
  );

  transform: skewX(-20deg);

  animation: shimmer 5s infinite;
  z-index: 3;
  mix-blend-mode: overlay;
}

@keyframes shimmer {
  0% {
    left: -200%;
  }
  50% {
    left: 200%;
  }
  100% {
    left: 200%;
  }
}

.logo-text-wrapper {
  display: flex;
  width: max-content;
  animation: marquee 12s linear infinite;
}

.logo-text {
  font-size: 18px !important;
  letter-spacing: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

header ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
}

ul li {
  list-style: none;
  height: 60px;
  font-size: 16px;
}

ul li a {
  height: 100%;
  padding-right: 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-family: Arial;
  font-weight: bold;
  transition: 0.4s ease-in-out;
}

ul li:not(:last-child) {
  margin-right: 20px;
}

ul li a:hover {
  color: #ff7200;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1a1a1a;
  min-width: 220px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
  z-index: 10;
  border-top: 2px solid #ff7200;
  margin-top: 15px; /* Creates the gap, but can cause hover issues. Bridged with ::after below */
}

/* Invisible bridge so mouse hover doesn't break when moving from nav link to dropdown */
.dropdown-content::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: transparent;
}

/* Orange triangle caret */
.dropdown-content::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent #ff7200 transparent;
  z-index: 11;
}

.dropdown-content a {
  color: #f1f1f1;
  padding: 12px 16px;
  text-decoration: none;
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-family: Arial, sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid #333;
  transition: all 0.3s ease;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: #333;
  color: #ff7200;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.show {
  display: block;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.search-container input[type="search"] {
  padding: 7px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.search-container button {
  padding: 8px 12px;
  font-size: 16px;
  background-color: #ff7200;
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor:
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23FFF" stroke="%23FF2711" stroke-width="2" stroke-linejoin="round" d="M10 11V8.99c0-.88.59-1.64 1.44-1.86h.05A1.99 1.99 0 0 1 14 9.05V12v-2c0-.88.6-1.65 1.46-1.87h.05A1.98 1.98 0 0 1 18 10.06V13v-1.94a2 2 0 0 1 1.51-1.94h0A2 2 0 0 1 22 11.06V14c0 .6-.08 1.27-.21 1.97a7.96 7.96 0 0 1-7.55 6.48 54.98 54.98 0 0 1-4.48 0 7.96 7.96 0 0 1-7.55-6.48C2.08 15.27 2 14.59 2 14v-1.49c0-1.11.9-2.01 2.01-2.01h0a2 2 0 0 1 2.01 2.03l-.01.97v-10c0-1.1.9-2 2-2h0a2 2 0 0 1 2 2V11Z"></path></svg>')
      5 5,
    auto;
}

.search-container button:hover {
  background-color: #ff7200;
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  display: none;
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
}

.search-results a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: black;
}

.search-results a:hover {
  background-color: rgba(0, 0, 0, 0.849);
}

.search-results p {
  padding: 10px;
  margin: 0;
  color: #666;
}

.content .par {
  margin-bottom: 40px;
  font-family: sans-serif;
  letter-spacing: 1.2px;
  line-height: 30px;
}

.content h2 {
  font-family: "Times New Roman";
  font-size: 40px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.content .cn {
  width: 160px;
  height: 40px;
  background: #ff7200;
  border: none;
  margin-bottom: 10px;
  font-size: 18px;
  border-radius: 10px;
  cursor:
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23FFF" stroke="%23FF2711" stroke-width="2" stroke-linejoin="round" d="M10 11V8.99c0-.88.59-1.64 1.44-1.86h.05A1.99 1.99 0 0 1 14 9.05V12v-2c0-.88.6-1.65 1.46-1.87h.05A1.98 1.98 0 0 1 18 10.06V13v-1.94a2 2 0 0 1 1.51-1.94h0A2 2 0 0 1 22 11.06V14c0 .6-.08 1.27-.21 1.97a7.96 7.96 0 0 1-7.55 6.48 54.98 54.98 0 0 1-4.48 0 7.96 7.96 0 0 1-7.55-6.48C2.08 15.27 2 14.59 2 14v-1.49c0-1.11.9-2.01 2.01-2.01h0a2 2 0 0 1 2.01 2.03l-.01.97v-10c0-1.1.9-2 2-2h0a2 2 0 0 1 2 2V11Z"></path></svg>')
      5 5,
    auto;
  transition: 0.4s ease;
}

.content .cn a {
  text-decoration: none;
  color: #000;
  transition: 0.3s ease;
}

.cn:hover {
  background-color: #fff;
}

.content span {
  color: #ff7200;
  font-size: 60px;
}

.liw {
  padding-top: 8px;
  padding-bottom: 15px;
  text-align: center;
}

.icons a {
  text-decoration: none;
  color: #fff;
}

.icons ion-icon {
  color: #fff;
  font-size: 30px;
  padding-top: 5px;
  transition: 0.3s ease;
  margin-right: 10px;
}

.icons ion-icon:hover {
  color: #ff7200;
}

.form select {
  width: 240px;
  height: 35px;
  background: transparent;
  border-bottom: 1px solid #ff7200;
  border-top: none;
  border-right: none;
  border-left: none;
  color: #fff;
  font-size: 16px;
  font-family: sans-serif;
}

.form option {
  color: #000;
  background: transparent;
}

@keyframes slide-up {
  0% {
    transform: translateY(20%);
    opacity: 0;
  }
  50% {
    transform: translateY(10%);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.left-side {
  max-width: 800px;
}

.left-side > * {
  opacity: 0;
  animation: slide-up 0.6s linear forwards;
}

.left-side > *:first-child {
  animation-delay: 0s;
}

.left-side > *:nth-child(2) {
  animation-delay: 0.6s;
}

.left-side > *:nth-child(3) {
  animation-delay: 1.2s;
}

.left-side > *:nth-child(4) {
  animation-delay: 1.8s;
}

@keyframes ani {
  0% {
    transform: translateX(2.5%);
    opacity: -2;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.form {
  opacity: 0;
  animation: ani 1s linear forwards;
  animation-delay: 1s;
}

/* =========================================
   ULTRA-MINIMAL CORPORATE CAROUSEL
   THIN PROGRESS BAR + NO ARROWS
========================================= */

.carousel-section {
  background: #0a0d14;
  position: relative;
  overflow: hidden;
  height: auto;
  padding: 60px 20px 80px;
}

.carousel-heading {
  text-align: center;
  color: white;
  margin-bottom: 32px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.carousel-heading h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ff7200;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.carousel-heading p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

.carousel-container {
  position: relative;
  width: 94%;
  max-width: 1380px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  background: #111722;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease-in-out, visibility 0.9s ease-in-out;
  z-index: 1;
  overflow: hidden;
}

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

.carousel-slide img,
.carousel-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 10, 16, 0.82) 0%,
    rgba(7, 10, 16, 0.26) 35%,
    rgba(7, 10, 16, 0.08) 60%,
    rgba(7, 10, 16, 0.04) 100%
  );
  z-index: 1;
}

.slide-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 28px 36px 72px;
  z-index: 3;
  color: #fff;
}

.slide-caption h2 {
  font-size: 2rem;
  margin: 0 0 8px;
  color: #ff7200;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.slide-caption p {
  font-size: 1rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  line-height: 1.65;
}

/* hide old controls / dots if still present */
.carousel-control,
.carousel-indicators {
  display: none !important;
}

/* minimal UI */
.carousel-minimal-ui {
  position: absolute;
  left: 36px;
  bottom: 24px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.carousel-progress {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.carousel-progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  background: #ff7200;
  border-radius: 999px;
  transition: width 0.25s linear;
}

.carousel-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.78);
}

.carousel-count #current-slide {
  color: #ffffff;
  font-weight: 700;
}

.carousel-count .divider {
  color: rgba(255, 255, 255, 0.45);
}

.carousel-count #total-slides {
  color: rgba(255, 255, 255, 0.55);
}

/* tablet */
@media (max-width: 768px) {
  .carousel-section {
    padding: 40px 14px 60px;
  }

  .carousel-heading h2 {
    font-size: 2.2rem;
  }

  .carousel-heading p {
    font-size: 0.96rem;
  }

  .carousel-container {
    aspect-ratio: 16 / 10;
    border-radius: 14px;
  }

  .slide-caption {
    padding: 20px 22px 64px;
  }

  .slide-caption h2 {
    font-size: 1.45rem;
  }

  .slide-caption p {
    font-size: 0.92rem;
    max-width: 90%;
  }

  .carousel-minimal-ui {
    left: 22px;
    bottom: 18px;
  }

  .carousel-progress {
    width: 120px;
  }
}

/* mobile */
@media (max-width: 480px) {
  .carousel-section {
    padding: 30px 10px 50px;
  }

  .carousel-heading h2 {
    font-size: 1.8rem;
  }

  .carousel-heading p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .carousel-container {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }

  .slide-caption {
    padding: 16px 16px 54px;
  }

  .slide-caption h2 {
    font-size: 1.15rem;
    margin-bottom: 5px;
  }

  .slide-caption p {
    font-size: 0.82rem;
    line-height: 1.5;
    max-width: 100%;
  }

  .carousel-minimal-ui {
    left: 16px;
    bottom: 14px;
    gap: 8px;
  }

  .carousel-progress {
    width: 90px;
    height: 2px;
  }

  .carousel-count {
    font-size: 0.75rem;
  }
}

.about__content {
  opacity: 0;
  transform: translateY(20%);
  transition:
    opacity 1s,
    transform 1s;
}

.about__content.animate {
  opacity: 1;
  transform: translateY(0);
}

.about {
  background-color: #0a0d14;
  height: 80vh;
  max-width: 100%;
  color: white;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 5%;
}

.about h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 30px;
  align-items: center;
  width: 320px;
}

.about h2 img {
  width: 100px;
  height: 60px;
  display: none;
}

.section__subheader {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.about__flex {
  margin: 2rem 0;
  padding: 2rem 1rem;
  display: flex;
  width: 30vw;
  align-items: center;
  gap: 0.5rem;
  background-color: #20242f;
  border-radius: 8px;
}

.about__flex img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  flex-shrink: 0;
}

.about__flex div {
  flex: 1;
}

.about__card {
  flex: 1;
  text-align: center;
  border-right: 2px solid #0a0d14;
  padding: 0 0.8rem;
  min-width: 0;
}

.about__card:last-child {
  border: none;
}

.about__card h4 {
  margin-bottom: 5px;
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--header-font);
}

.about__card p {
  font-size: 0.9rem;
}

.left-section {
  max-width: 40%;
}

.about .btn {
  width: 150px;
  height: 40px;
  background: #ff7200;
  border: none;
  font-size: 18px;
  border-radius: 10px;
  cursor:
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23FFF" stroke="%23FF2711" stroke-width="2" stroke-linejoin="round" d="M10 11V8.99c0-.88.59-1.64 1.44-1.86h.05A1.99 1.99 0 0 1 14 9.05V12v-2c0-.88.6-1.65 1.46-1.87h.05A1.98 1.98 0 0 1 18 10.06V13v-1.94a2 2 0 0 1 1.51-1.94h0A2 2 0 0 1 22 11.06V14c0 .6-.08 1.27-.21 1.97a7.96 7.96 0 0 1-7.55 6.48 54.98 54.98 0 0 1-4.48 0 7.96 7.96 0 0 1-7.55-6.48C2.08 15.27 2 14.59 2 14v-1.49c0-1.11.9-2.01 2.01-2.01h0a2 2 0 0 1 2.01 2.03l-.01.97v-10c0-1.1.9-2 2-2h0a2 2 0 0 1 2 2V11Z"></path></svg>')
      5 5,
    auto;
  color: #000;
  transition: 0.4s ease;
}

.Leaders .btn {
  width: 150px;
  height: 40px;
  background: transparent;
  border: 1px solid white;
  font-size: 18px;
  border-radius: 10px;
  cursor:
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23FFF" stroke="%23FF2711" stroke-width="2" stroke-linejoin="round" d="M10 11V8.99c0-.88.59-1.64 1.44-1.86h.05A1.99 1.99 0 0 1 14 9.05V12v-2c0-.88.6-1.65 1.46-1.87h.05A1.98 1.98 0 0 1 18 10.06V13v-1.94a2 2 0 0 1 1.51-1.94h0A2 2 0 0 1 22 11.06V14c0 .6-.08 1.27-.21 1.97a7.96 7.96 0 0 1-7.55 6.48 54.98 54.98 0 0 1-4.48 0 7.96 7.96 0 0 1-7.55-6.48C2.08 15.27 2 14.59 2 14v-1.49c0-1.11.9-2.01 2.01-2.01h0a2 2 0 0 1 2.01 2.03l-.01.97v-10c0-1.1.9-2 2-2h0a2 2 0 0 1 2 2V11Z"></path></svg>')
      5 5,
    auto;
  color: #fff;
  transition: 0.4s ease;
}

.Leaders .btn:hover {
  background: #ff7200;
}

.left-section .btn:hover {
  background: #fff;
  color: #000;
}

.about__image img {
  max-width: 500px;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  background-color: #0a0d14;
  text-align: center;
}

.logo-container h1 {
  color: #999;
  font-size: 11.4rem;
  background: url(logo.jpg) center;
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: animate 7s linear infinite;
  position: absolute;
  opacity: 0.8;
  z-index: 1;
}


.client-section{
padding:100px 20px;
background: #0a0d14; /* same background */
text-align:center;
}

.client-title{
font-size:48px;
color:#ff7a00;
font-family:'Playfair Display', serif;
margin-bottom:10px;
}

.client-subtitle{
color:#d6d6d6;
margin-bottom:60px;
font-size:18px;
}

.client-container{
display:flex;
justify-content:center;
}

/* card */

.client-card{
position:relative;
background:#ffffff;
padding:40px 60px;
border-radius:14px;
overflow:hidden;

/* orange glow border */

box-shadow:0 0 20px rgba(255,122,0,0.6);
animation:glow 3s infinite alternate;
}

/* logo */

.client-card img{
max-width:160px;
}

/* glow animation */

@keyframes glow{

0%{
box-shadow:0 0 10px rgba(255,122,0,0.4);
}

100%{
box-shadow:0 0 35px rgba(255,122,0,0.9);
}

}

/* shine sweep */

.client-card::before{
content:"";
position:absolute;
top:0;
left:-120%;
width:50%;
height:100%;

background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,0.8),
transparent
);

transform:skewX(-20deg);

animation:shine 4s infinite;
}

/* shine animation */

@keyframes shine{

0%{
left:-120%;
}

100%{
left:120%;
}

}

.why-kiepl-section{
padding:100px 20px;
background: #0a0d14; /* same background */
text-align:center;
}

/* Heading same as WHAT WE'VE BUILT */

.section-title{
font-size:56px;
font-weight:700;
color:#ff7a00;   /* same orange */
letter-spacing:2px;
font-family: 'Playfair Display', serif;
margin-bottom:10px;
}

/* subtitle */

.section-subtitle{
color:#d6d6d6;
font-size:18px;
font-family: 'Playfair Display', serif;
margin-bottom:60px;
}

/* cards layout */

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
max-width:1200px;
margin:auto;
}

/* cards */

.why-card{
background:#0c1b2e;
padding:35px 25px;
border-radius:10px;
transition:0.3s;
border:1px solid rgba(255,255,255,0.05);
}

.why-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

/* icon */

.icon{
font-size:40px;
margin-bottom:15px;
color:#ff7a00;
}

.why-card h3{
color:#ffffff;
font-size:18px;
margin-bottom:6px;
}

.why-card p{
color:#b0b0b0;
font-size:14px;
}

.testimonial-section{
background: #0a0d14; /* same background */
padding:120px 20px;
text-align:center;
color:white;
overflow:hidden;
}

.title{
color:#ff7a00;
font-size:48px;
margin-bottom:10px;
}

.subtitle{
color:#aaa;
margin-bottom:70px;
}

.testimonial-container{
position:relative;
display:flex;
align-items:center;
justify-content:center;
}

.testimonial-wrapper{
position:relative;
width:720px;
height:320px;
}

.testimonial-card{
position:absolute;
width:100%;
background:white;
color:#333;
padding:55px;
border-radius:20px;
transition:0.6s;
font-size:17px;
}

/* center */

.testimonial-card:nth-child(1){
transform:translateX(0) scale(1);
z-index:4;
filter:blur(0);
box-shadow:0 0 40px rgba(255,122,0,0.9);
}

/* right */

.testimonial-card:nth-child(2){
transform:translateX(260px) scale(0.9);
z-index:3;
filter:blur(2px);
opacity:0.7;
}

/* left */

.testimonial-card:nth-child(3){
transform:translateX(-260px) scale(0.9);
z-index:2;
filter:blur(3px);
opacity:0.5;
}

/* back */

.testimonial-card:nth-child(4){
transform:scale(0.75);
z-index:1;
filter:blur(5px);
opacity:0.3;
}

.stars{
color:#ff7a00;
font-size:22px;
margin-bottom:15px;
}



/* dots */

.dots{
margin-top:30px;
}

.dot{
height:10px;
width:10px;
margin:0 6px;
background:#555;
display:inline-block;
border-radius:50%;
}

.dot.active{
background:#ff7a00;
}

/* Testimonial Responsive - Tablet */
@media (max-width: 1024px) {
  .testimonial-section {
    padding: 80px 0;
  }

  .title {
    font-size: 34px;
  }

  .testimonial-wrapper {
    width: 70vw;
    max-width: 420px;
    height: 300px;
  }

  .testimonial-card {
    padding: 32px 24px;
    font-size: 15px;
  }

  .testimonial-card:nth-child(2) {
    transform: translateX(160px) scale(0.9);
  }

  .testimonial-card:nth-child(3) {
    transform: translateX(-160px) scale(0.9);
  }
}

/* Testimonial Responsive - Mobile */
@media (max-width: 480px) {
  .testimonial-section {
    padding: 60px 0;
  }

  .title {
    font-size: 24px;
  }

  .subtitle {
    font-size: 13px;
    margin-bottom: 36px;
    padding: 0 16px;
  }

  .testimonial-wrapper {
    width: 72vw;
    max-width: 280px;
    height: 260px;
  }

  .testimonial-card {
    padding: 24px 18px;
    font-size: 13px;
    border-radius: 14px;
  }

  .testimonial-card:nth-child(2) {
    transform: translateX(100px) scale(0.88);
    filter: blur(2px);
    opacity: 0.5;
  }

  .testimonial-card:nth-child(3) {
    transform: translateX(-100px) scale(0.88);
    filter: blur(3px);
    opacity: 0.3;
  }

  .testimonial-card:nth-child(4) {
    transform: scale(0.72);
    opacity: 0.15;
  }

  .stars {
    font-size: 18px;
  }
}

/* Testimonial Responsive - Small Mobile */
@media (max-width: 360px) {
  .testimonial-wrapper {
    width: 75vw;
    max-width: 240px;
    height: 280px;
  }

  .testimonial-card {
    padding: 20px 14px;
    font-size: 12px;
  }

  .testimonial-card:nth-child(2) {
    transform: translateX(80px) scale(0.88);
  }

  .testimonial-card:nth-child(3) {
    transform: translateX(-80px) scale(0.88);
  }
}

@keyframes animate {
  to {
    background-position-x: -200px;
  }
}

footer {
  background-color: #0c0f16;
  color: white;
  height: 10vh;
  font-size: 1.5rem;
  text-align: center;
}

.Leaders__card img {
  width: 100%;
  display: flex;
}

.Leaders__card:first-child img {
  height: 450px;
}

.Leaders__card:nth-child(2) img {
  height: 450px;
}

a {
  text-decoration: none;
}

.Leaders {
  background: linear-gradient(to bottom, #181a20, #0a0d14);
  color: white;
}

.Leaders .section__header {
  text-align: center;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 3.5rem;
  padding-top: 20px;
}

.Leaders .section__subheader {
  margin-top: 20px;
  margin-bottom: 4rem;
  text-align: center;
  font-size: 1.5rem;
}

.Leaders__grid {
  box-sizing: border-box;
  margin-top: 4rem;
  width: 100%;
  padding-inline: 20px;
  display: flex;
  justify-content: space-evenly;
  overflow-x: auto;
  flex-wrap: nowrap;
  scroll-behavior: smooth;
}

.Leaders__card {
  flex: 0 0 auto;
  width: 320px;
  margin: 10px;
}

.Leaders__image {
  position: relative;
}

.Leaders__image::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(to top, #0f131d, transparent);
}

.Leaders_card_content {
  padding: 0 2rem;
  transform: translateY(-50%);
}

.Leaders_card_content h4 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.Leaders_card_content p {
  margin-bottom: 2rem;
}

.Leaders__btn {
  padding: 0.75rem 1rem;
  outline: none;
  font-size: 1rem;
  color: white;
  background-color: transparent;
  border: 1px solid white;
  cursor:
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23FFF" stroke="%23FF2711" stroke-width="2" stroke-linejoin="round" d="M10 11V8.99c0-.88.59-1.64 1.44-1.86h.05A1.99 1.99 0 0 1 14 9.05V12v-2c0-.88.6-1.65 1.46-1.87h.05A1.98 1.98 0 0 1 18 10.06V13v-1.94a2 2 0 0 1 1.51-1.94h0A2 2 0 0 1 22 11.06V14c0 .6-.08 1.27-.21 1.97a7.96 7.96 0 0 1-7.55 6.48 54.98 54.98 0 0 1-4.48 0 7.96 7.96 0 0 1-7.55-6.48C2.08 15.27 2 14.59 2 14v-1.49c0-1.11.9-2.01 2.01-2.01h0a2 2 0 0 1 2.01 2.03l-.01.97v-10c0-1.1.9-2 2-2h0a2 2 0 0 1 2 2V11Z"></path></svg>')
      5 5,
    auto;
}

.Leaders__btn:hover {
  background-color: #ff7200;
}

.side-bar{
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 100dvh;

    background: #020814; /* IMPORTANT */
    z-index: 999999;

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    transform: translateX(-100%);
    transition: transform .4s ease;
}

.side-bar.active{
    transform: translateX(0);
}

.side-bar::-webkit-scrollbar {
  width: 0px;
}

.side-bar .menu{
    position: relative;
    z-index: 999999;
    padding: 80px 20px 180px;
}

.side-bar .menu .item {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor:
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23FFF" stroke="%23FF2711" stroke-width="2" stroke-linejoin="round" d="M10 11V8.99c0-.88.59-1.64 1.44-1.86h.05A1.99 1.99 0 0 1 14 9.05V12v-2c0-.88.6-1.65 1.46-1.87h.05A1.98 1.98 0 0 1 18 10.06V13v-1.94a2 2 0 0 1 1.51-1.94h0A2 2 0 0 1 22 11.06V14c0 .6-.08 1.27-.21 1.97a7.96 7.96 0 0 1-7.55 6.48 54.98 54.98 0 0 1-4.48 0 7.96 7.96 0 0 1-7.55-6.48C2.08 15.27 2 14.59 2 14v-1.49c0-1.11.9-2.01 2.01-2.01h0a2 2 0 0 1 2.01 2.03l-.01.97v-10c0-1.1.9-2 2-2h0a2 2 0 0 1 2 2V11Z"></path></svg>')
      5 5,
    auto;
}

.side-bar .menu .item:first-child {
  border-bottom: none;
  position: fixed;
  top: 20px;
  right: 25px;
  z-index: 9999999;
}

.side-bar .menu .item:first-child a {
  padding: 8px;
  font-size: 0;
}

.side-bar .menu .item:first-child a svg {
  width: 28px;
  height: 28px;
}

.side-bar .menu .item:first-child a:hover svg {
  fill: #ff7200;
}

.side-bar .menu .item:first-child,
.side-bar .menu .item:first-child a,
.side-bar .menu .item:first-child a *,
.side-bar .menu .item:first-child svg,
.side-bar .menu .item:first-child svg path {
  cursor:
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23FFF" stroke="%23FF2711" stroke-width="2" stroke-linejoin="round" d="M10 11V8.99c0-.88.59-1.64 1.44-1.86h.05A1.99 1.99 0 0 1 14 9.05V12v-2c0-.88.6-1.65 1.46-1.87h.05A1.98 1.98 0 0 1 18 10.06V13v-1.94a2 2 0 0 1 1.51-1.94h0A2 2 0 0 1 22 11.06V14c0 .6-.08 1.27-.21 1.97a7.96 7.96 0 0 1-7.55 6.48 54.98 54.98 0 0 1-4.48 0 7.96 7.96 0 0 1-7.55-6.48C2.08 15.27 2 14.59 2 14v-1.49c0-1.11.9-2.01 2.01-2.01h0a2 2 0 0 1 2.01 2.03l-.01.97v-10c0-1.1.9-2 2-2h0a2 2 0 0 1 2 2V11Z"></path></svg>')
      5 5,
    auto !important;
}

.side-bar .menu .item a {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.5px;
}

.side-bar .menu .item a:hover {
  color: #ff7200;
  transition: 0.3s ease;
  background: transparent;
}

.side-bar .menu .item a .dropdown {
  position: relative;
  right: auto;
  margin: 0;
  transition: 0.3s ease;
  width: 24px;
  height: 24px;
}

.side-bar .menu .item .sub-btn .dropdown {
  display: none;
}

.side-bar .menu .item .sub-btn::after {
  content: "+";
  font-size: 28px;
  font-weight: 300;
  color: #fff;
  transition: 0.3s ease;
}

.side-bar .menu .item .sub-btn.open::after {
  content: "−";
}

.side-bar .search-results a {
  width: 200px;
}

.side-bar .search-container {
  position: relative;
  display: flex;
  justify-content: flex-start;
  padding: 0 10px;
  margin-bottom: 20px;
}

.side-bar .search-container .search-results {
  position: absolute;
  left: auto;
  width: 220px;
  color: black;
  margin-left: auto;
  margin-top: 5px;
}

.side-bar .search-results a:hover {
  background-color: rgba(0, 0, 0, 0.849);
  color: #ff7200;
}

.side-bar .search-container input[type="search"] {
  padding: 10px 14px;
  font-size: 18px;
  border-left: 1px thin white;
  border-top: 1px thin white;
  border-bottom: 1px thin white;
  border-radius: 6px 0 0 6px;
  outline: none;
  width: 350px;
  height: 46px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-sizing: border-box;
}

.side-bar .search-container input[type="search"]::placeholder {
  color: white;
}

.side-bar .search-container button {
  padding: 10px 20px;
  font-size: 18px;
  height: 46px;
  background-color: #ff7200;
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor:
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23FFF" stroke="%23FF2711" stroke-width="2" stroke-linejoin="round" d="M10 11V8.99c0-.88.59-1.64 1.44-1.86h.05A1.99 1.99 0 0 1 14 9.05V12v-2c0-.88.6-1.65 1.46-1.87h.05A1.98 1.98 0 0 1 18 10.06V13v-1.94a2 2 0 0 1 1.51-1.94h0A2 2 0 0 1 22 11.06V14c0 .6-.08 1.27-.21 1.97a7.96 7.96 0 0 1-7.55 6.48 54.98 54.98 0 0 1-4.48 0 7.96 7.96 0 0 1-7.55-6.48C2.08 15.27 2 14.59 2 14v-1.49c0-1.11.9-2.01 2.01-2.01h0a2 2 0 0 1 2.01 2.03l-.01.97v-10c0-1.1.9-2 2-2h0a2 2 0 0 1 2 2V11Z"></path></svg>')
      5 5,
    auto;
}

.side-bar .menu .item .sub-menu {
  background: transparent;
  display: none;
  padding-left: 20px;
}

.side-bar .menu .item .sub-menu a {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 10px;
  border-bottom: none;
}

.side-bar .menu .item .sub-menu a:hover {
  color: #ff7200;
}

.side-bar .item:nth-child(2) {
  display: none;
}

.rotate {
  transform: rotate(-180deg);
}

.footer-section {
  background: linear-gradient(to right, #1e2226, #3a3e43);
  color: #ffffff;
  padding: 30px 0 15px;
  margin-top: 0;
  border-top: 1px solid #ff7200;
}

.footer-container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex: 1;
  min-width: 220px;
  margin-bottom: 10px;
  padding-right: 20px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  position: relative;
  color: #ff7200;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #ff7200;
}

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

.footer-links li {
  margin-bottom: 5px;
  height: 40px;
}

.footer-links a,
address p a {
  color: #e8eaed;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
  display: inline-block;
}

.footer-links a:hover,
address p a:hover {
  color: #ff7200;
  padding-left: 5px;
}

address {
  font-style: normal;
  line-height: 1.4;
  font-size: 13px;
  color: #e8eaed;
}

.contact-info {
  margin-top: 10px;
}

.social-links {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
}

.social-icon:hover {
  background-color: #ff7200;
  transform: translateY(-3px);
}

.social-icon ion-icon {
  font-size: 18px;
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 85%;
  max-width: 1200px;
  margin: 30px auto 0;
}

.footer-bottom p {
  font-size: 14px;
  color: #a0a0a0;
  margin: 0;
}

.footer-bottom a {
  color: #ff7200;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer-column {
    flex: 1 0 40%;
  }
}

@media (max-width: 600px) {
  .footer-column {
    flex: 1 0 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .credits {
    margin-top: 10px;
  }
}

.hideMenuButton {
  display: list-item !important;
  position: relative;
}

.burger-hover-box {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%) scale(0);
  width: 36px;
  height: 36px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 10;
}

.hideMenuButton:hover .burger-hover-box {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.burger-arrow {
  position: relative;
  z-index: 2;
}

.snake-border {
  position: absolute;
  top: -6px;
  left: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  z-index: 1;
  overflow: visible;
}

.snake-border svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.snake-border svg rect {
  fill: none;
  stroke-width: 3;
  width: calc(100% - 3px);
  height: calc(100% - 3px);
  x: 1.5;
  y: 1.5;
  rx: 0;
  ry: 0;
}

.snake-border svg rect:nth-child(1) {
  stroke: rgba(255, 114, 0, 0.9);
  stroke-dasharray: 60 180;
  animation: snake-chase 5s linear infinite;
}

.snake-border svg rect:nth-child(2) {
  stroke: rgba(255, 114, 0, 0.9);
  stroke-dasharray: 60 180;
  animation: snake-chase 5s linear infinite;
  animation-delay: -2.5s;
}

@keyframes snake-chase {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -240;
  }
}

.hideMenuButton,
.hideMenuButton a,
.hideMenuButton a *,
.hideMenuButton svg,
.hideMenuButton svg path {
  cursor:
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23FFF" stroke="%23FF2711" stroke-width="2" stroke-linejoin="round" d="M10 11V8.99c0-.88.59-1.64 1.44-1.86h.05A1.99 1.99 0 0 1 14 9.05V12v-2c0-.88.6-1.65 1.46-1.87h.05A1.98 1.98 0 0 1 18 10.06V13v-1.94a2 2 0 0 1 1.51-1.94h0A2 2 0 0 1 22 11.06V14c0 .6-.08 1.27-.21 1.97a7.96 7.96 0 0 1-7.55 6.48 54.98 54.98 0 0 1-4.48 0 7.96 7.96 0 0 1-7.55-6.48C2.08 15.27 2 14.59 2 14v-1.49c0-1.11.9-2.01 2.01-2.01h0a2 2 0 0 1 2.01 2.03l-.01.97v-10c0-1.1.9-2 2-2h0a2 2 0 0 1 2 2V11Z"></path></svg>')
      5 5,
    auto !important;
}

.sidebar-info {
  display: none;
}

@media (min-width: 992px) {

  #no-hide{
    display:none;
  }

  .side-bar{
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    gap:80px;

    width:100%;
    max-width:1600px;

    margin:0 auto;
    padding:60px 80px;
    box-sizing:border-box;
  }

  .side-bar .menu{
    flex:0 0 650px;
    max-width:650px;
    width:650px;
    margin:0;
    padding-top:40px;
  }

  .sidebar-info{
    display:flex;
    flex-direction:column;
    flex:0 0 420px;
    max-width:420px;
    width:420px;

    padding-left:40px;
    border-left:1px solid rgba(255,255,255,.08);

    animation:sidebar-info-fadein .8s ease .3s both;
  }

  .side-bar .menu .item a{
    font-size:22px;
    padding:15px 15px;
  }

  .side-bar .menu .item .sub-menu a{
    font-size:18px;
  }

}

  .sidebar-info__section h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff7200;
    margin-bottom: 18px;
    font-family: Arial, sans-serif;
    position: relative;
    padding-bottom: 10px;
  }

  .sidebar-info__section h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ff7200;
  }

  .sidebar-info__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .sidebar-info__stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 16px 14px;
    text-align: center;
    transition:
      border-color 0.3s ease,
      transform 0.3s ease;
  }

  .sidebar-info__stat:hover {
    border-color: rgba(255, 114, 0, 0.4);
    transform: translateY(-2px);
  }

  .sidebar-info__stat .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff7200;
    margin-bottom: 4px;
    font-family: Arial, sans-serif;
  }

  .sidebar-info__stat .stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: Arial, sans-serif;
  }

  .sidebar-info__services {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .sidebar-info__services li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: Arial, sans-serif;
    padding: 8px 12px;
    border-radius: 6px;
    transition:
      background 0.3s ease,
      color 0.3s ease;
    height: auto;
  }

  .sidebar-info__services li:hover {
    background: rgba(255, 114, 0, 0.1);
    color: #fff;
  }

  .sidebar-info__services li svg {
    flex-shrink: 0;
  }

  .sidebar-info__contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    font-family: Arial, sans-serif;
    margin-bottom: 12px;
  }

  .sidebar-info__contact p svg {
    flex-shrink: 0;
  }

  .sidebar-info__tagline p {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    border-left: 3px solid #ff7200;
    padding-left: 16px;
    font-family: "Times New Roman", Times, serif;
  }


@media (max-width: 1399px) {
  #hide {
    display: none;
  }
  .nav {
    width: 200px;
  }
  .content .form {
    display: none;
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .about .about__image {
    display: none;
  }
  .about h2 img {
    display: block;
  }
  .left-section {
    max-width: 80%;
  }
  .about__flex {
    width: 60vw;
  }
}

@media (max-width: 830px) {
  .Leaders__grid {
    padding-inline: 10px;
    justify-content: flex-start;
  }
}

@media (min-width: 0) and (max-width: 500px) {
  .about {
    padding-top: 50px;
  }
  .header-logo-container {
    width: 140px;
  }
  .logo-text {
    font-size: 14px;
    letter-spacing: 2px;
  }
  .logo-text-wrapper {
    animation: marquee 10s linear infinite;
  }
}

@media (min-width: 0) and (max-width: 760px) {
  .side-bar .item:nth-child(2) {
    display: none;
  }
  .nav > li.search-container {
    display: none;
  }

  .side-bar .search-container button {
    padding: 8px 12px;
    font-size: 16px;
    background-color: #ff7200;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor:
      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23FFF" stroke="%23FF2711" stroke-width="2" stroke-linejoin="round" d="M10 11V8.99c0-.88.59-1.64 1.44-1.86h.05A1.99 1.99 0 0 1 14 9.05V12v-2c0-.88.6-1.65 1.46-1.87h.05A1.98 1.98 0 0 1 18 10.06V13v-1.94a2 2 0 0 1 1.51-1.94h0A2 2 0 0 1 22 11.06V14c0 .6-.08 1.27-.21 1.97a7.96 7.96 0 0 1-7.55 6.48 54.98 54.98 0 0 1-4.48 0 7.96 7.96 0 0 1-7.55-6.48C2.08 15.27 2 14.59 2 14v-1.49c0-1.11.9-2.01 2.01-2.01h0a2 2 0 0 1 2.01 2.03l-.01.97v-10c0-1.1.9-2 2-2h0a2 2 0 0 1 2 2V11Z"></path></svg>')
        5 5,
      auto;
  }

  .side-bar .search-container button:hover {
    background-color: #e65c00;
  }
}

@media (min-width: 0) and (max-width: 730px) {
  .content .par {
    hyphens: auto;
    word-wrap: break-word;
    padding: 0 15px;
    line-height: 1.6;
    max-width: 100%;
    margin: 10px auto;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .content .par {
    font-size: 0.9rem;
    padding: 0 10px;
    line-height: 1.5;
    letter-spacing: 0.8px;
  }
}

.certifications {
  background: linear-gradient(to bottom, #0a0d14, #181a20);
  padding: 60px 0;
  color: white;
  text-align: center;
  padding-bottom: 200px;
}

.certifications__header {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #ff7200;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.certifications__subheader {
  font-size: 1.3rem;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e8eaed;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.certifications__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
}

.certification__item {
  flex: 0 0 auto;
  width: 250px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.certification__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 114, 0, 0.5);
}

.certification__image {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #ff7200;
}

.certification__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.certification_item:hover .certification_image img {
  transform: scale(1.1);
}

.certification__item h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.certification__item p {
  font-size: 0.9rem;
  color: #cccccc;
}

@media (max-width: 535px) {
  .certifications__container {
    margin-left: 20vw;
  }
  .logo {
    height: 6vh;
    max-width: 180px;
  }
}

/* =========================================
   PARALLAX CLIENT BASE SECTION
   ========================================= */
.parallax-section {
  position: relative;
  width: 100%;
}

.parallax-layer {
  position: relative;
  width: 100%;
  background-image: url("industry2.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Layer 1: Grayscale top half */
.layer-gray {
  height: 40vh;
  filter: grayscale(100%);
}

/* Layer 2: Full color bottom half */
.layer-color {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
}

.layer-color::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  pointer-events: none;
}

/* Content overlay at the bottom */
.parallax-section .content-box {
  width: 100%;
  padding: 50px 10%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.parallax-section .content-box h2 {
  color: #ff7200;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.parallax-section .logo-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.parallax-section .logo {
  background: white;
  padding: 30px;
  border-radius: 4px;
  font-weight: bold;
  color: #333;
  flex: 1;
  text-align: center;
  min-width: 150px;
  font-size: 1.1rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.parallax-section .logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Hindalco logo image */
.parallax-section .logo.logo-hindalco {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  min-width: 250px;
  min-height: 100px;
  background: transparent;
}

.client-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.logo-hindalco .client-logo-img {
  animation: slideInFromRight 0.5s ease-out both;
}

/* Parallax: Tablet (under 768px) */
@media (max-width: 768px) {
  .parallax-section .content-box {
    padding: 40px 5%;
  }

  .parallax-section .content-box h2 {
    font-size: 2rem;
  }

  .parallax-section .logo {
    min-width: 120px;
    padding: 20px;
  }
}

/* Parallax: Mobile (under 480px) */
@media (max-width: 480px) {
  .layer-gray {
    height: 25vh;
  }

  .parallax-section .content-box {
    padding: 30px 15px;
  }

  .parallax-section .content-box h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .parallax-section .logo-grid {
    flex-direction: column;
    gap: 10px;
  }

  .parallax-section .logo {
    width: 100%;
    box-sizing: border-box;
  }
}

/* Parallax: iOS / touch device fix */
@media (hover: none) and (pointer: coarse) {
  .parallax-layer {
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  .certifications__container {
    padding: 0 10px;
    justify-content: flex-start;
  }

  .certification__item {
    width: 200px;
  }

  .certifications__header {
    font-size: 2.5rem;
  }

  .Leaders__grid {
    gap: 20px;
  }

  .Leaders__card {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .certification__item {
    width: 180px;
    padding: 15px;
  }

  .certification__image {
    width: 100px;
    height: 100px;
  }

  .certification__item h4 {
    font-size: 1.2rem;
  }

  .certifications__header {
    font-size: 2rem;
  }

  .certifications__subheader {
    font-size: 1rem;
  }
}

.leaders {
  background: linear-gradient(to bottom, #181a20, #0a0d14);
  color: white;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.leaders .section__header {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: #ff7200;
  letter-spacing: -0.03em;
}

.leaders .section__subheader {
  text-align: center;
  font-size: 1.25rem;
  max-width: 680px;
  margin: 0 auto 4rem;
  color: #94a3b8;
  line-height: 1.6;
}

.leaders__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.leader__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.leader__card:hover {
  transform: translateY(-8px);
}

.leader__image-container {
  position: relative;
  aspect-ratio: 3/4;
}

.leader__image-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to top, #0d101880 20%, transparent 80%);
}

.leader__image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.leader__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  opacity: 0.8;
}

.leader__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
  transition: all 0.3s ease;
}

.leader__name {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  color: white;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.leader__title {
  color: #ff7200;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transform: translateY(20px);
  transition: all 0.3s ease 0.1s;
}

.leader__socials {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease 0.2s;
}

.leader__cta {
  display: inline-block;
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.555);
  border-radius: 50px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.leader_card:hover .leader_cta {
  transform: translateY(0);
  opacity: 1;
}

.leader__cta:hover {
  background: #ff7200;
  border-color: #ff7200;
}

@media (max-width: 768px) {
  .section__header {
    font-size: 2.5rem;
  }

  .section__subheader {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .leaders__grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .leader__cta {
    opacity: 1;
  }
}

video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  object-fit: cover;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

@media (max-width: 768px) {
  .logo-container h1 {
    font-size: 6rem;
    position: relative;
    opacity: 0.8;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .logo-container h1 {
    font-size: 4rem;
  }
  .logo-container {
    height: 30vh;
  }
  .left-side h2 {
    font-size: 2rem;
  }
  .left-side span {
    font-size: 3.5rem;
  }
}

@media (max-width: 400px) {
  .logo-container h1 {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .content {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 90vw;
  }
}

@media (max-width: 480px) {
  .main {
    height: 70vh;
  }

  .header {
    width: 90vw;
  }
  .content {
    margin-top: 70px;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 95vw;
  }

  .content .left-side {
    text-align: center;
    padding: 0 5px;
  }

  .content .left-side .par {
    margin-top: 40px;
    margin-bottom: 50px;
  }

  .content h2 {
    font-size: 26px;
  }

  .content span {
    font-size: 38px;
  }

  .content .cn {
    width: 100%;
    max-width: 220px;
    padding: 12px;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .carousel-section {
    padding-block: 40px;
    padding-bottom: 80px;
  }

  .carousel-indicators {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
  }

  .carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor:
      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23FFF" stroke="%23FF2711" stroke-width="2" stroke-linejoin="round" d="M10 11V8.99c0-.88.59-1.64 1.44-1.86h.05A1.99 1.99 0 0 1 14 9.05V12v-2c0-.88.6-1.65 1.46-1.87h.05A1.98 1.98 0 0 1 18 10.06V13v-1.94a2 2 0 0 1 1.51-1.94h0A2 2 0 0 1 22 11.06V14c0 .6-.08 1.27-.21 1.97a7.96 7.96 0 0 1-7.55 6.48 54.98 54.98 0 0 1-4.48 0 7.96 7.96 0 0 1-7.55-6.48C2.08 15.27 2 14.59 2 14v-1.49c0-1.11.9-2.01 2.01-2.01h0a2 2 0 0 1 2.01 2.03l-.01.97v-10c0-1.1.9-2 2-2h0a2 2 0 0 1 2 2V11Z"></path></svg>')
        5 5,
      auto;
    transition:
      background-color 0.3s ease,
      transform 0.3s ease;
  }

  .header-logo-container {
    width: 120px;
  }
}

@media (max-width: 900px) {
  .about {
    height: auto;
    min-height: 50vh;
    padding-top: 40px;
    padding-bottom: 40px;
    align-items: flex-start;
  }

  .left-section {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 15px;
  }

  .about h2 {
    width: auto;
    justify-content: center;
    text-align: center;
    font-size: 2.6rem;
  }
  .about h2 img {
    width: 65px;
    height: auto;
  }

  .about .section__subheader {
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }

  .about__flex {
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px auto;
    gap: 1.5rem;
  }

  .about .btn {
    display: block;
    margin: 30px auto 0;
  }
}

@media (max-width: 768px) {
  .left-section {
    max-width: 90%;
  }

  .about h2 {
    font-size: 2.3rem;
  }
  .about h2 img {
    width: 55px;
  }
  .about .section__subheader {
    font-size: 0.95rem;
  }

  .about__flex {
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .about__card {
    width: 100%;
    max-width: 350px;
    border-right: none;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
  }
  .about__card:last-child {
    margin-bottom: 0;
  }
  .about__card h4 {
    font-size: 1.7rem;
  }

  .about__card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .left-section {
    max-width: 95%;
    padding: 0 10px;
  }

  .about h2 {
    font-size: 2rem;
  }
  .about h2 img {
    width: 50px;
  }

  .about .section__subheader {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .about__flex {
    max-width: 200px;
  }

  .about__card {
    padding: 15px;
  }

  .about__card h4 {
    font-size: 1.5rem;
  }

  .about__card p {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .about__flex {
    padding: 0.8rem;
    max-width: 100%;
    gap: 0.3rem;
  }

  .about__card {
    padding: 0 0.5rem;
  }

  .about__card h4 {
    font-size: 1.6rem;
  }

  .about__card p {
    font-size: 0.8rem;
  }

  .about__card:first-child {
    margin-top: 16px;
  }

  .about__card:nth-child(2) {
    margin-top: 16px;
  }
}

@media (max-width: 480px) {
  .about__flex {
    gap: 0.3rem;
    max-width: 90vw;
    padding-block: 20px;
  }

  .about__card {
    padding: 0 0.3rem;
  }

  .about__card h4 {
    font-size: 1.4rem;
  }

  .about__card p {
    font-size: 0.75rem;
  }

  .about__card:first-child {
    margin-top: 16px;
  }

  .about__card:nth-child(2) {
    margin-top: 16px;
  }
}


.equipment-section{
padding:80px 5%;
background: #0a0d14; /* same background */
text-align:center;
overflow:hidden;
color:white;
}

.equip-title{
font-size:36px;
font-weight:700;
letter-spacing:2px;
color:#ff7a00;
}

.equip-sub{
color:#ccc;
margin-bottom:40px;
}

.equipment-slider{
overflow:hidden;
width:100%;
}

.equipment-track{
display:flex;
gap:30px;
}

.equipment-card{
flex:0 0 260px;
background:#0f2a44;
border-radius:10px;
overflow:hidden;
transition:0.4s;
}

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

.equipment-card h3{
margin:15px 0 5px;
}

.equipment-card p{
color:#ccc;
margin-bottom:15px;
}

.equipment-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.6);
}

.slider-btn{
position:absolute;
background:#0b6cff;
border:none;
color:white;
font-size:25px;
width:40px;
height:40px;
cursor:pointer;
border-radius:50%;
}

.prev{
left:-20px;
}

.next{
right:-20px;
}

.equipment-stats{
margin-top:60px;
display:flex;
justify-content:center;
gap:100px;
}

.stat-box i{
font-size:35px;
margin-bottom:10px;
}

.stat-box h3{
font-size:30px;
}


.stats-section{
background: #0a0d14; /* same background */
padding:40px 0;
}

/* Fade line */

.line-top,
.line-bottom{
height:2px;
width:80%;
margin:30px auto;
background:linear-gradient(to right, transparent, white, transparent);
}

/* Container */

.stats-container{
max-width:1100px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
}

/* Stat box */

.stat-box{
flex:1;
color:white;
}

/* Icon + text layout */

.stat-content{
display:flex;
align-items:center;
gap:15px;
justify-content:center;
}

/* Icon */

.stat-content i{
font-size:35px;
color:#ff7a00;
}

/* Number */

.stat-content h2{
font-size:38px;
margin:0;
}

/* Text */

.stat-content p{
margin:0;
color:#cfd8e3;
}

/* Divider */

.stat-box:not(:last-child){
border-right:1px solid rgba(255,255,255,0.2);
}





.equipment-section {
        padding: 80px 5%;
        background:#0a0d14; /* same background */
        text-align: center;
        overflow: hidden;
        color: white;
      }

      .kiepl-case-study-heading h2{
        color: #ff7a00;
      }

      .equip-title {
        font-size: 36px;
        font-weight: 700;
        letter-spacing: 2px;
        color: #ff7a00;
      }

      .equip-sub {
        color: #ccc;
        margin-bottom: 40px;
      }

      .equipment-slider {
        overflow: hidden;
        width: 100%;
      }

      .equipment-track {
        display: flex;
        gap: 30px;
      }

      .equipment-card {
        flex: 0 0 260px;
        background: #0f2a44;
        border-radius: 10px;
        overflow: hidden;
        transition: 0.4s;
      }

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

      .equipment-card h3 {
        margin: 15px 0 5px;
      }

      .equipment-card p {
        color: #ccc;
        margin-bottom: 15px;
      }

      .equipment-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
      }

      .slider-btn {
        position: absolute;
        background: #0b6cff;
        border: none;
        color: white;
        font-size: 25px;
        width: 40px;
        height: 40px;
        cursor: pointer;
        border-radius: 50%;
      }

      .prev {
        left: -20px;
      }

      .next {
        right: -20px;
      }

      .equipment-stats {
        margin-top: 60px;
        display: flex;
        justify-content: center;
        gap: 100px;
      }

      .stat-box i {
        font-size: 35px;
        margin-bottom: 10px;
      }

      .stat-box h3 {
        font-size: 30px;
      }

      .stats-section {
        background: #0a0d14; /* same background */
        padding: 40px 0;
      }

      /* Fade line */

      .line-top,
      .line-bottom {
        height: 2px;
        width: 80%;
        margin: 30px auto;
        background: linear-gradient(to right, transparent, white, transparent);
      }

      /* Container */

      .stats-container {
        max-width: 1100px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      /* Stat box */

      .stat-box {
        flex: 1;
        color: white;
      }

      /* Icon + text layout */

      .stat-content {
        display: flex;
        align-items: center;
        gap: 15px;
        justify-content: center;
      }

      /* Icon */

      .stat-content i {
        font-size: 35px;
        color: #ff7a00;
      }

      /* Number */

      .stat-content h2 {
        font-size: 38px;
        margin: 0;
      }

      /* Text */

      .stat-content p {
        margin: 0;
        color: #cfd8e3;
      }

      /* Divider */

      .stat-box:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
      }

      .kiepl-case-study-section {
        position: relative;
        padding: 100px 8%;
        background-color: #0a0d14;
        overflow: hidden;
      }

      .kiepl-case-study-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            circle at 15% 20%,
            rgba(255, 255, 255, 0.05),
            transparent 25%
          ),
          radial-gradient(
            circle at 85% 15%,
            rgba(255, 140, 0, 0.08),
            transparent 20%
          ),
          radial-gradient(
            circle at 70% 80%,
            rgba(30, 90, 255, 0.1),
            transparent 22%
          );
        pointer-events: none;
      }

      .kiepl-case-study-container {
        position: relative;
        z-index: 2;
        max-width: 1320px;
        margin: auto;
      }

      .kiepl-case-study-heading {
        text-align: center;
        max-width: 850px;
        margin: 0 auto 60px;
      }

      .kiepl-case-study-tag {
        display: inline-block;
        padding: 8px 16px;
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: #dfe9f7;
        font-size: 0.95rem;
        letter-spacing: 0.4px;
        margin-bottom: 18px;
      }

      .kiepl-case-study-heading h2 {
        margin: 0 0 16px;
        font-size: 3rem;
        line-height: 1.15;
        color: #ff7200;
        font-weight: 800;
      }

      .kiepl-case-study-heading p {
        margin: 0;
        font-size: 1.08rem;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.72);
      }

      .kiepl-case-study-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
      }

      .kiepl-case-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 22px;
        overflow: hidden;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
        transition:
          transform 0.35s ease,
          box-shadow 0.35s ease,
          border-color 0.35s ease;
      }

      .kiepl-case-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 26px 50px rgba(0, 0, 0, 0.28);
        border-color: rgba(255, 140, 0, 0.22);
      }

      .kiepl-case-image-wrap {
        position: relative;
        height: 240px;
        overflow: hidden;
      }

      .kiepl-case-image-wrap::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.28),
          rgba(0, 0, 0, 0.02)
        );
      }

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

      .kiepl-case-card:hover .kiepl-case-image {
        transform: scale(1.06);
      }

      .kiepl-case-status {
        position: absolute;
        top: 16px;
        right: 16px;
        z-index: 2;
        padding: 7px 12px;
        border-radius: 30px;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.2px;
        color: #fff;
      }

      .kiepl-case-status.ongoing {
        background: linear-gradient(135deg, #ff9d00, #f06b00);
      }

      .kiepl-case-status.completed {
        background: linear-gradient(135deg, #129c56, #0c7c43);
      }

      .kiepl-case-status.active {
        background: linear-gradient(135deg, #1667d8, #0d4ea8);
      }

      .kiepl-case-content {
        padding: 26px 24px 24px;
      }

      .kiepl-case-content h3 {
        margin: 0 0 10px;
        font-size: 1.45rem;
        line-height: 1.3;
        color: #ffffff;
        font-weight: 700;
      }

      .kiepl-case-location {
        margin: 0 0 14px;
        font-size: 0.95rem;
        color: #ffb14a;
        font-weight: 600;
      }

      .kiepl-case-desc {
        margin: 0 0 20px;
        font-size: 0.97rem;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.72);
      }

      .kiepl-case-meta {
        display: grid;
        gap: 10px;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
      }

      .kiepl-case-meta div {
        font-size: 0.92rem;
        color: rgba(255, 255, 255, 0.78);
        line-height: 1.5;
      }

      .kiepl-case-meta strong {
        color: #ffffff;
        font-weight: 700;
      }

      /* responsive */
      @media (max-width: 1100px) {
        .kiepl-case-study-grid {
          grid-template-columns: repeat(2, 1fr);
        }

        .kiepl-case-study-heading h2 {
          font-size: 2.4rem;
        }
      }

      @media (max-width: 768px) {
        .kiepl-case-study-section {
          padding: 75px 5%;
        }

        .kiepl-case-study-grid {
          grid-template-columns: 1fr;
        }

        .kiepl-case-study-heading {
          margin-bottom: 40px;
        }

        .kiepl-case-study-heading h2 {
          font-size: 1.9rem;
        }

        .kiepl-case-study-heading p {
          font-size: 0.96rem;
          line-height: 1.7;
        }

        .kiepl-case-image-wrap {
          height: 220px;
        }

        .kiepl-case-content h3 {
          font-size: 1.2rem;
        }
      }






.kiepl-trust-section{
  position: relative;
  padding: 100px 8%;
  background: linear-gradient(135deg, #060d18, #0c1523);
  overflow: hidden;
}

.kiepl-trust-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.05), transparent 25%),
    radial-gradient(circle at 80% 80%, rgba(255,140,0,0.08), transparent 25%);
}

.kiepl-trust-container{
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: auto;
}

/* heading */
.kiepl-trust-heading{
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.kiepl-trust-tag{
  display: inline-block;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.kiepl-trust-heading h2{
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.kiepl-trust-heading p{
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

/* grid */
.kiepl-trust-grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

/* cards */
.kiepl-trust-card{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.kiepl-trust-card:hover{
  transform: translateY(-8px);
  border-color: rgba(255,140,0,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.kiepl-trust-icon{
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.kiepl-trust-card h3{
  color: #fff;
  margin-bottom: 10px;
}

.kiepl-trust-card p{
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* bottom */
.kiepl-trust-bottom{
  text-align: center;
  margin-top: 50px;
}

.kiepl-trust-bottom p{
  color: #ffb14a;
  font-weight: 600;
}

/* responsive */
@media(max-width:1000px){
  .kiepl-trust-grid{
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:600px){
  .kiepl-trust-grid{
    grid-template-columns: 1fr;
  }

  .kiepl-trust-heading h2{
    font-size: 2rem;
  }
}






.kiepl-cta-section{
  position: relative;
  padding: 100px 8%;
  background: linear-gradient(135deg, #050c18, #0a1424);
  overflow: hidden;
}

/* glow background */
.kiepl-cta-bg{
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,140,0,0.2), transparent 70%);
  top: -100px;
  right: -100px;
  filter: blur(60px);
}

.kiepl-cta-container{
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* content */
.kiepl-cta-content h2{
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.kiepl-cta-content p{
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* buttons */
.kiepl-cta-buttons{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.kiepl-cta-btn{
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

/* primary */
.kiepl-cta-btn.primary{
  background: linear-gradient(135deg,#ff9d00,#f05a00);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255,140,0,0.4);
}

.kiepl-cta-btn.primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255,140,0,0.5);
}

/* secondary */
.kiepl-cta-btn.secondary{
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}

.kiepl-cta-btn.secondary:hover{
  background: rgba(255,255,255,0.1);
}

/* contact info */
.kiepl-cta-info{
  display: flex;
  justify-content: center;
  gap: 30px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

/* responsive */
@media(max-width:768px){

  .kiepl-cta-content h2{
    font-size: 2rem;
  }

  .kiepl-cta-buttons{
    flex-direction: column;
  }

  .kiepl-cta-info{
    flex-direction: column;
    gap: 10px;
  }

}







.kiepl-safety-section{
  position: relative;
  padding: 100px 8%;
  background: #0a0d14; /* same background */
  overflow: hidden;
}

.kiepl-safety-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(255,255,255,0.04), transparent 25%),
    radial-gradient(circle at 85% 16%, rgba(255,140,0,0.08), transparent 22%),
    radial-gradient(circle at 75% 82%, rgba(35,110,255,0.10), transparent 24%);
  pointer-events: none;
}

.kiepl-safety-container{
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: auto;
}

.kiepl-safety-heading{
  text-align: center;
  max-width: 840px;
  margin: 0 auto 60px;
}

.kiepl-safety-tag{
  display: inline-block;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dfe8f7;
  font-size: 0.95rem;
  margin-bottom: 18px;
  letter-spacing: 0.4px;
}

.kiepl-safety-heading h2{
  margin: 0 0 16px;
  font-size: 3rem;
  line-height: 1.15;
  color: #ffffff;
  font-weight: 800;
}

.kiepl-safety-heading p{
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
}

.kiepl-safety-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.kiepl-safety-card{
  position: relative;
  padding: 32px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.kiepl-safety-card:hover{
  transform: translateY(-10px);
  border-color: rgba(255,140,0,0.22);
  box-shadow: 0 28px 56px rgba(0,0,0,0.28);
}

.kiepl-safety-icon{
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  background: linear-gradient(135deg, rgba(255,140,0,0.18), rgba(35,110,255,0.15));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.kiepl-safety-card h3{
  margin: 0 0 14px;
  font-size: 1.35rem;
  line-height: 1.3;
  color: #ffffff;
  font-weight: 700;
}

.kiepl-safety-card p{
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}

.kiepl-safety-bottom{
  margin-top: 42px;
}

.kiepl-safety-bottom-box{
  padding: 28px 30px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
  text-align: center;
}

.kiepl-safety-bottom-box h4{
  margin: 0 0 12px;
  font-size: 1.45rem;
  color: #ffb14a;
  font-weight: 700;
}

.kiepl-safety-bottom-box p{
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  max-width: 920px;
  margin-inline: auto;
}

/* responsive */
@media (max-width: 1100px){
  .kiepl-safety-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .kiepl-safety-heading h2{
    font-size: 2.4rem;
  }
}

@media (max-width: 768px){
  .kiepl-safety-section{
    padding: 75px 5%;
  }

  .kiepl-safety-grid{
    grid-template-columns: 1fr;
  }

  .kiepl-safety-heading{
    margin-bottom: 40px;
  }

  .kiepl-safety-heading h2{
    font-size: 1.9rem;
  }

  .kiepl-safety-heading p{
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .kiepl-safety-card{
    padding: 26px 20px;
  }

  .kiepl-safety-card h3{
    font-size: 1.2rem;
  }

  .kiepl-safety-bottom-box{
    padding: 24px 20px;
  }

  .kiepl-safety-bottom-box h4{
    font-size: 1.2rem;
  }

  .kiepl-safety-bottom-box p{
    font-size: 0.95rem;
    line-height: 1.7;
  }
}



.kiepl-process-section{
  position: relative;
  padding: 100px 8%;
  background: #0a0d14; /* same background */
}

.kiepl-process-container{
  max-width: 1200px;
  margin: auto;
}

/* heading */
.kiepl-process-heading{
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.kiepl-process-tag{
  display: inline-block;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
  color: #dfe8f7;
  margin-bottom: 15px;
}

.kiepl-process-heading h2{
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.kiepl-process-heading p{
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

/* timeline */
.kiepl-process-timeline{
  position: relative;
  margin-top: 40px;
}

/* vertical line */
.kiepl-process-timeline::before{
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(#ff9d00, #1a63c3);
}

/* step */
.kiepl-process-step{
  position: relative;
  padding-left: 80px;
  margin-bottom: 40px;
}

/* number */
.kiepl-process-number{
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,#ff9d00,#f05a00);
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 25px rgba(255,140,0,0.4);
}

/* content */
.kiepl-process-content{
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.kiepl-process-content h3{
  color: #fff;
  margin-bottom: 10px;
}

.kiepl-process-content p{
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* hover */
.kiepl-process-step:hover .kiepl-process-content{
  border-color: rgba(255,140,0,0.3);
  transform: translateY(-5px);
  transition: 0.3s;
}

/* responsive */
@media(max-width:768px){

  .kiepl-process-heading h2{
    font-size: 2rem;
  }

  .kiepl-process-step{
    padding-left: 70px;
  }

  .kiepl-process-number{
    width: 50px;
    height: 50px;
  }

}

/* ===== DESKTOP SIDEBAR FIX (override at end) ===== */
.sidebar-info {
  display: none;
}

@media (min-width: 992px) {
  .side-bar {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 90px !important;
    padding: 0 90px !important;
  }

  .side-bar .menu {
    width: 100%;
    max-width: 650px;
    flex: 0 0 650px;
    flex-shrink: 0;
    margin: 0;
    padding: 100px 40px 60px;
  }

  .side-bar .menu .item a {
    font-size: 22px;
    padding: 15px 15px;
  }

  .side-bar .menu .item .sub-btn::after {
    font-size: 34px;
  }

  .side-bar .menu .item .sub-menu a {
    font-size: 18px;
  }

  .sidebar-info {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
    max-width: 420px;
    width: 100%;
    flex: 0 0 420px;
    padding: 100px 40px 60px 50px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    animation: sidebar-info-fadein 0.8s ease 0.3s both;
  }

  @keyframes sidebar-info-fadein {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .sidebar-info__section h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff7200;
    margin-bottom: 18px;
    font-family: Arial, sans-serif;
    position: relative;
    padding-bottom: 10px;
  }

  .sidebar-info__section h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ff7200;
  }

  .sidebar-info__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .sidebar-info__stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 16px 14px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
  }

  .sidebar-info__stat:hover {
    border-color: rgba(255, 114, 0, 0.4);
    transform: translateY(-2px);
  }

  .sidebar-info__stat .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff7200;
    margin-bottom: 4px;
    font-family: Arial, sans-serif;
  }

  .sidebar-info__stat .stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: Arial, sans-serif;
  }

  .sidebar-info__services {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .sidebar-info__services li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: Arial, sans-serif;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.3s ease, color 0.3s ease;
    height: auto;
  }

  .sidebar-info__services li:hover {
    background: rgba(255, 114, 0, 0.1);
    color: #fff;
  }

  .sidebar-info__services li svg {
    flex-shrink: 0;
  }

  .sidebar-info__contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    font-family: Arial, sans-serif;
    margin-bottom: 12px;
  }

  .sidebar-info__contact p svg {
    flex-shrink: 0;
  }

  .sidebar-info__tagline p {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    border-left: 3px solid #ff7200;
    padding-left: 16px;
    font-family: "Times New Roman", Times, serif;
  }
}

@media (max-width: 1399px) {
  #hide {
    display: none;
  }
  .nav {
    width: 200px;
  }
  .content .form {
    display: none;
    opacity: 0;
  }
}
