@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #de7e5d;
  --dark-color: #de7e5d;
  /* --dark-color: #DE7E5D; */

  --main-font-family: "Montserrat", sans-serif;
  --heading-font-family: "Roboto Condensed", sans-serif;
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: var(--main-font-family);
}

.section-padding {
  padding: 50px 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar  */

.custom-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 1rem 2rem;
  background-color: transparent;
}

.custom-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-light);
}

.custom-logo .embroid-logo {
  width: 145px;
}

.nav-toggle {
  background: none;
  border: none;
  outline: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: white;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background-color: #111;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: left 0.3s ease;
  z-index: 9;
}

.mobile-nav.show {
  left: 0;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
}

.nav-link-caps {
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-link-caps:hover {
  opacity: 0.8;
}

/* hero section banner */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: fill;
  position: absolute;
  z-index: 0;
}

.my-swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.my-swiper-slide {
  height: 100vh;
  overflow: hidden;
}

.my-swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  z-index: 10;
  width: 40px;
  height: 40px;
  background-color: #211f1f3a;
  backdrop-filter: blur(9px);
  border-radius: 10px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 18px;
  font-weight: 600;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  padding-top: 40px;
}

.home-hero-head h1 {
    font-size: 1.4rem;
    color: #fff;
  }

.hero-card {
  background: rgba(255, 255, 255, 0.15); /* glass effect */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  max-width: 600px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.inner-hero {
  /* max-width: 730px; */
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.inner-hero h1,
.inner-hero h2 {
  margin: 0;
}

.inner-hero h1 {
  font-size: 80px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Noto Serif Georgian", serif;
  animation-duration: 2s;
}

.inner-hero h2 {
  font-size: 45px;
  text-transform: capitalize;
  color: rgb(227, 228, 228);
}

.inner-hero p {
  font-size: 20px;
  font-weight: 500;
  margin-top: 12px;
}

.inner-hero .main-btn {
  width: max-content;
}

/* main btn */
/* From Uiverse.io by mrhyddenn */
.main-btn {
  position: relative;
  margin: 0;
  padding: 1em 1.6em;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  background-color: var(--primary-color);
  border-radius: 10px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  font-family: inherit;
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
  width: max-content;
}

.main-btn:hover {
  animation: sh0 0.5s ease-in-out both;
}

@keyframes sh0 {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotate(7deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-7deg) translate3d(0, 0, 0);
  }

  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

.main-btn:hover span {
  animation: storm 0.7s ease-in-out both;
  animation-delay: 0.06s;
}

.main-btn::before,
.main-btn::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1),
    opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
  z-index: -1;
  transform: translate(100%, -25%) translate3d(0, 0, 0);
}

.main-btn:hover::before,
.main-btn:hover::after {
  opacity: 0.15;
  transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1),
    opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.main-btn:hover::before {
  transform: translate3d(50%, 0, 0) scale(0.9);
}

.main-btn:hover::after {
  transform: translate(50%, 0) scale(1.1);
}

/* end main btn */

/* All service-- 3 card of all 3 factory */
/* all service block card */
.all-service-sec .left-service {
  height: 360px;
}

.card-block {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 100%;
  padding: 20px;
  height: 350px;
  transition: background-color 0.3s ease-in-out;
  overflow: hidden;
}

/* Sliding red background on hover */
.card-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #de7d5dac;
  /* Red background (#e21e1e) */
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
  z-index: 1;
}

.card-block:hover::before {
  transform: translateY(0);
}

.card-block .overlay {
  position: absolute;
  inset: 0;
  background-color: #de7e5d59;
  /* Dark semi-transparent */
  z-index: 1;
  transition: background-color 0.3s ease-in-out;
}

/* Make sure content appears on top */
.card-block i,
.card-block h5,
.card-block hr {
  position: relative;
  z-index: 3;
  color: white;
}

.card-block hr {
  border-top: 4px solid #fff;
  z-index: 2;
  position: relative;
  opacity: 1;
  width: 30%;
  margin: 0 auto;
}

.card-block span {
  font-weight: 800;
  font-size: 22px;
}

/* About Us section */
.about-us p {
  margin-bottom: 0;
}

.about-us img {
  height: 380px;
}

.main-heading {
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-transform: capitalize;
}

/* Footer css */

/*--------------------------- Footer css--------------------------- */
.main-footer-container {
  /* background: #000 url('../images/shape.png') center/cover no-repeat; */
  background: var(--primary-color);
}

.footer-area {
  padding: 40px 0px;
  /* background-color: var(--primary-color); */
  color: #fff;
  padding-bottom: 0;
}

.footer-area .container {
  border-bottom: 1px solid #fff;
}

.footer-area a {
  text-decoration: none;
}

.footer-area .footer-heading {
  font-size: 20px;
  color: #fff;
  font-family: var(--heading-font-family);
}

.footer-area .footer-underline {
  height: 1px;
  width: 70px;
  background-color: #ddd;
  margin: 10px 0px;
}

.copyright-area {
  padding: 14px 0px;
  /* background-color: var(--primary-color); */
}

.copyright-area p {
  margin-bottom: 0px;
  color: #fff;
  font-family: var(--para-font-family);
}

.copyright-area .social-media {
  text-align: end;
}

.copyright-area .social-media a {
  margin: 0px 10px;
  color: #fff;
  width: 20px;
}

.footer-area a,
.footer-area p {
  color: #fff;
  font-size: 14px;
  font-family: var(--para-font-family);
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-area a:hover {
  color: #d9d8d8 !important;
  text-decoration: underline;
}

.footer-area a i.fa-solid {
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
  color: #fff;
}

.footer-area a:hover i.fa-solid {
  color: #d9d8d8;
  transform: rotate(0deg);
}

/* brodcam */
/* brodacm section */
.brodcam-container {
  position: relative;
  height: 350px;
  background: url("../images/dy1.jpg") center/cover no-repeat;
}

.brodcam-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}

.brodcam-container > .container,
.brodcam-container > * {
  position: relative;
  z-index: 2;
}

/* PRODUCTS */

.prod-hero-container {
  position: relative;
  height: 350px;
  background: url("../images/products.jpg") center/cover no-repeat;
}

.prod-hero-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}

.prod-hero-container > .container,
.prod-hero-container > * {
  position: relative;
  z-index: 2;
}

/* SUSTAINABILITY PAGE */

.sust-hero-container {
  position: relative;
  height: 350px;
  background: url("../images/JDE BANNER SUSTAINABILITY.png") center/cover
    no-repeat;
}

.sust-hero-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}

.sust-hero-container > .container,
.sust-hero-container > * {
  position: relative;
  z-index: 2;
}

/* ABOUT */

.infra-hero-container {
  position: relative;
  height: 350px;
  background: url("../images/Infra.jpg") center/cover no-repeat;
}

.infra-hero-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}

.infra-hero-container > .container,
.infra-hero-container > * {
  position: relative;
  z-index: 2;
}

/* CONTACT */

.contact-hero-container {
  position: relative;
  height: 350px;
  background: url("../images/contact.jpg") center/cover no-repeat;
}

.contact-hero-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}

.contact-hero-container > .container,
.contact-hero-container > * {
  position: relative;
  z-index: 2;
}

.inner-brodcam {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 120%;
}

.inner-brodcam h1 {
  color: #fff;
  font-weight: 800;
}

.inner-brodcam a {
  text-decoration: none;
  color: #fff;
}

.inner-brodcam p {
  color: #fff;
  font-family: 600;
}

/* Certificate sec */
.certificates-container {
  background-color: #f7f7f7;
}

.certificates-container .para-text {
  max-width: 700px;
  margin: auto;
  margin-bottom: 25px;
}

.certificate-card-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.certificate-card-box .cr-card {
  width: 140px;
  height: 100px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  background-color: #fff;
}

.cr-card .img-fluid {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* client section */
.our-client-sec {
  background-color: var(--primary-color);
}

.our-client-sec .main-heading,
.our-client-sec .main-heading span {
  color: #fff;
}

.our-client-sec .para-text {
  color: #f5f5f5;
}

.client-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.client-container .client-box {
  width: 140px;
  height: 100px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  background-color: #fff;
}

.client-box .img-fluid {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*---------------- Product container -------------------*/
.product-container .para-text {
  max-width: 800px;
}

/* Custom Swiper Section */
.custom-product-slider-section {
  padding: 40px 20px;
  /* background: #f9f9f9; */
}

.custom-swiper-container {
  width: 100%;
}

.custom-product-card {
  overflow: hidden;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.custom-product-card:hover {
  transform: translateY(-5px);
}

.custom-product-image {
  position: relative;
  overflow: hidden;
}

.custom-product-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.custom-product-card:hover .custom-product-image img {
  transform: scale(1.05);
}

.custom-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  height: 100%;
  border-radius: 10px;
  background: #de7d5d84;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: bottom 0.3s ease;
}

.custom-product-card:hover .custom-overlay {
  bottom: 0;
}

.product-title {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  background-color: #de7d5d84;
  font-weight: 700;
  padding: 6px 10px;
  font-size: 16px;
  border-radius: 4px;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.custom-product-card:hover .product-title {
  opacity: 0;
}

.custom-overlay-text {
  text-align: center;
  font-size: 18px;
  padding: 10px;
}

.custom-overlay-text span i {
  transform: rotate(-45deg);
  font-size: 24px;
}

.custom-overlay-text span {
  background-color: var(--primary-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.custom-product-text {
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.product-card-box {
  position: relative;
  /* z-index: 1; */
}

.product-card-box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 60%;
  top: 50%;
  left: 0;
  /* background-color: var(--primary-color); */
  background: url("../images/shape.png") center/cover no-repeat;
}

.product-card-box .main-btn {
  background-color: #fff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

/* product page-- product card section */
.product-card-container {
  background: url("../images/p3.jpg") center/cover no-repeat;
}

.product-card-container .para-text {
  max-width: 800px;
  margin: auto;
}

.inner-container-product-card img {
  border-radius: 15px;
}

.pro-card {
  overflow: hidden;
}

.pro-card .product-title {
  border-radius: 0;
  bottom: 10px;
}

/* Mobile Responsive */
.custom-overflow {
  overflow: hidden;
}

@media screen and (max-width: 576px) {
  .custom-logo .embroid-logo {
    width: 110px;
  }

  .about-grid {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .about-images {
    position: relative;
    z-index: -1;
  }

  .about-testimonial {
    position: static;
    width: 100%;
    margin-top: -50px;
    z-index: 999;
  }

  .social-media {
    margin-bottom: 20px;
  }

  .cta-section .cta-title {
    font-size: 1.5rem;
  }

  .cta-section .cta-subtitle {
    font-size: 14px;
  }

  .c-logo {
    flex-wrap: wrap;
  }

  .certifications-section .c-logo .logo-box {
    width: 115px;
    height: 80px;
    padding: 10px;
  }

  .mobile-nav {
    padding: 40px;
  }

  .close-btn {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    margin-bottom: 10px;
    color: #fff;
  }

  .mobile-nav a {
    padding: 10px 0;
    border-bottom: 1px solid #bcb0b045;
    font-size: 16px;
  }

  p {
    font-size: 14px;
  }

  .inner-hero h1 {
    font-size: 40px;
  }

  .inner-hero h2 {
    font-size: 30px;
  }

  .inner-hero p {
    font-size: 16px;
  }

  .about-us img {
    height: auto;
    margin-bottom: 15px;
  }
}

/* SUSTAINABILITY PAGE */

/* Commitment Section */
.commitment-section {
  background: white;
}

.commitment-img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.commitment-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(black);
}

/* Timeline Section */
/* .timeline-section {
  background: white;
  overflow-x: auto;
}

.timeline-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 3rem 0;
  min-width: 900px;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(to right,
      var(--primary-color),
      var(--dark-color));
  z-index: 1;
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 0 1rem;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  background: white;
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  color: var(--primary-color);
  transition: all 0.3s;
}

.timeline-step:hover .timeline-icon {
  background: var(--dark-color);
  color: white;
  transform: scale(1.1);
}

.timeline-step h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-color);
} */

.section-header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Desktop Timeline */
.timeline-horizontal {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  top: 90px;
  left: 8%;
  right: 8%;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  z-index: -1;
  overflow: hidden;
}

.timeline-line-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  z-index: -1;

  background: linear-gradient(90deg, var(--primary-color), var(--dark-color));
  transition: width 1.5s ease;
  box-shadow: 0 0 20px rgb(255, 123, 0);
}

.timeline-line-progress.active {
  width: 100%;
}

.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.timeline-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-icon-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: white;
  display: flex;
  position: relative;
  z-index: 20;
  align-items: center;
  justify-content: center;

  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.step-icon-wrapper::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.timeline-step:hover .step-icon-wrapper::before {
  opacity: 1;
}

.timeline-step:hover .step-icon-wrapper {
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.timeline-step:hover .step-icon {
  transform: scale(1.2) rotate(5deg);
  background: linear-gradient(135deg, var(--white), var(--white)) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: white !important;
  background-clip: text;
}

.step-content {
  text-align: center;
  max-width: 200px;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.step-description {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.timeline-step:hover .step-description {
  opacity: 1;
  max-height: 100px;
  margin-top: 10px;
}

.timeline-step.active .step-icon-wrapper {
  animation: pulse 2s infinite;
}

/* Number Badge */
.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

/* Mobile Timeline */
.timeline-vertical {
  display: none;
}

@media (max-width: 992px) {
  .all-service-sec .left-service {
    height: auto;
    background-color: #fbfbfb !important;
  }

  .timeline-horizontal {
    display: none;
  }

  .timeline-vertical {
    display: block;
    position: relative;
    padding: 40px 0;
  }

  .timeline-vertical::before {
    content: "";
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 4px;
    height: 0px;
    background: #e5e7eb;
  }

  .timeline-vertical-progress {
    position: absolute;
    left: 60px;
    top: 0;
    width: 4px;
    height: 0%;
    background: linear-gradient(
      180deg,
      var(--primary-color),
      var(--dark-color)
    );
    /* z-index: -1; */
    transition: height 1.5s ease;
    /* box-shadow: 0 0 20px rgb(255, 119, 0); */
  }

  .timeline-vertical-progress.active {
    height: 100%;
  }

  .timeline-step-vertical {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease;
  }

  .timeline-step-vertical.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .step-icon-wrapper-vertical {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 30px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
  }

  .step-icon {
    font-size: 2.5rem;
    background: linear-gradient(
      135deg,
      var(--primary-color),
      var(--dark-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
  }

  .step-icon-wrapper-vertical:hover .step-icon {
    /* font-size: 2.5rem; */
    background: linear-gradient(
      135deg,
      var(--primary-color),
      var(--dark-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: white !important;
    background-clip: text;
    transition: all 0.4s ease;
  }

  .step-icon-wrapper-vertical::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(
      135deg,
      var(--primary-color),
      var(--dark-color)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
  }

  .timeline-step-vertical:hover .step-icon-wrapper-vertical::before {
    opacity: 1;
  }

  .step-content-vertical {
    flex: 1;
    padding-top: 20px;
  }

  .step-title-vertical {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
  }

  .step-description-vertical {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .timeline-section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 60px;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Certifications Section */
.certifications-section {
  background: var(--bg-light);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.cert-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.cert-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cert-logo {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cert-name {
  font-weight: 600;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .timeline-container {
    flex-direction: column;
    min-width: auto;
  }

  .timeline-line {
    display: none;
  }

  .timeline-step {
    margin-bottom: 2rem;
  }

  .commitment-section img {
    height: auto;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 991px) {
  .hero-section {
    height: 70vh;
  }
  .hero-video {
    object-fit: cover !important;
  }
}
