.navbar-brand img {
  width: 170px;
}

.navbar-nav .nav-link.active {
  color: var(--accent-color) !important;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  width: 100%;
  height: 100vh;
}

/* Video full background */
.hero-swiper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Image slide */
.hero-image-slide {
  background-size: cover;
  background-position: center;
}

/* Overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 35, 58, 0) 30%, #0c0c0ca1 88%);
  z-index: 2;
}

/* Content positioning */
.hero-swiper .container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: end;
  padding: 160px 0;
}

/* Pagination Wrapper Position */
.hero-swiper .swiper-pagination {
  position: absolute;
  bottom: 60px;
  /* adjust based on spacing */
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.hero-swiper .swiper-pagination-bullet {
  width: 15px;
  height: 6px;
  background: transparent;
  border: 2px solid #ffffff;
  opacity: 1;
  margin: 0 6px !important;
  transition: all 0.3s ease;
  border-radius: 10%;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: #ffffff;
  /* transform: scale(1.2); */
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.hero-box h2 {
  font-size: 42px;
  line-height: 55px;
}

.hero-box h2 span {
  border-bottom: 3px solid var(--accent-color);
}

.hero-swiper .hero-counter-box {
  position: absolute;
  bottom: 18%;
  right: 1%;
  z-index: 9999 !important;
}

.hero-sl-img img {
  border-radius: 10px;
  margin-bottom: 15px;
}

.hero-sl-link {
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  line-height: 22px;
  gap: 10px;
}

.hero-btn .btn-default {
  background-color: #fff;
  color: var(--accent-color);
}

.hero-btn .btn-default:hover {
  background-color: transparent;
  color: #000;
  border: 2px solid #fff;
}

.hero-btn .btn-default::before {
  filter: invert(1);
}

.hero-btn .btn-default::after {
  filter: invert(1);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .hero-content {
    bottom: 500px;
    position: relative;
  }

  .hero-swiper .hero-counter-box {
    position: absolute;
    bottom: 100px;
    right: 0;
    z-index: 9999 !important;
  }

}

/* =============Sector Section=========== */

.industry-section {
  padding: 60px 0 20px;
  background: #fff;
}

.industry-wrapper {
  display: flex;
  gap: 15px;
  height: 400px;
  margin-top: 50px;
}

.industry-card {
  flex: 1;
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
  transition:
    flex 0.6s ease,
    transform 0.4s ease;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* ===== Gradient Overlay ===== */

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.8) 20%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0) 85%);
  z-index: 1;
}

/* ===== Content Layer ===== */

.industry-card .overlay {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ===== Heading ===== */

.industry-card h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0 20px;
  transform: translateY(20px);
  transition: 0.4s ease;
  display: inline-block;
  /* important */
}

.industry-card h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--accent-color);
  margin-top: 4px;
  transition: width 0.4s ease;
}

/* ===== Paragraph (Hidden Initially) ===== */

.industry-card p {
  color: #ddd;
  font-size: 14px;
  margin: 10px 20px 30px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(50px);
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

/* ===== Active State Animation ===== */

.industry-card.active h3 {
  transform: translateY(0);
  color: #ff5d5b;
  border-radius: 20px;
}

.industry-card.active h3::after {
  background-color: var(--white-color);
}

.industry-card.active p {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.industry-card.active {
  flex: 1.75;
}

.card-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  z-index: 3;
  transition: 0.3s ease;
}

.industry-card.active .card-arrow {
  background: var(--accent-color);
  color: #fff;
  transform: rotate(45deg);
}

h2.text-effect .split-line:first-child>div:first-child>div:first-child {
  color: var(--accent-color);
  font-weight: 700;
}

/*  */
/* ============================= */
/* 📱 Tablet (768px to 1024px) */
/* ============================= */
@media (min-width: 768px) and (max-width: 1024px) {

  .industry-wrapper {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    gap: 20px;
  }

  .industry-card {
    flex: 1 1 calc(50% - 10px);
    /* Always 2 columns */
    height: 300px;
    border-radius: 25px;
    transition: flex 0.5s ease, transform 0.3s ease;
  }

  /* Row behavior fix */
  .industry-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  /* Default equal width */
  .industry-card {
    width: 100%;
  }

  /* Expand effect INSIDE column (not full row) */
  .industry-card.active {
    transform: scale(1.05);
    z-index: 2;
  }

  /* Make content visible (optional for better UX) */
  .industry-card h3 {
    transform: translateY(0);
    font-size: 19px;
  }

  .industry-card p {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

}

/*  */
/* ================Fun Facts=================== */
.impact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* item */

.impact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  transition: 0.35s ease;
  cursor: pointer;
  position: relative;
}

.impact-item:hover {
  transform: translateY(-6px);
}

/* divider */

.impact-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: #ddd;
}

/* icon */

.impact-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-icon svg {
  width: 48px;
  height: 48px;
  stroke: #222;
  transition: 0.5s all ease;
}

/* content */

.impact-content h3 {
  font-size: 34px;
  font-weight: 700;
  color: #c40000;
  margin: 0;
  line-height: 1;
  transition: 0.35s;
}

.impact-content p {
  font-size: 15px;
  margin: 6px 0 0;
  color: #222;
  max-width: 160px;
}

/* hover animation */

.impact-item:hover h3 {
  transform: scale(1.04);
  letter-spacing: 1px;
}

.impact-item:hover .impact-icon svg {
  transform: rotateY(-180deg) scale(1.02);
}

/* responsive */

@media (max-width: 900px) {
  .impact-wrapper {
    justify-content: center;
    gap: 30px;
  }

  .impact-item:not(:last-child)::after {
    display: none;
  }
}

/* ============ Partner Section ============ */

.brand-section {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Swiper container */
.brand-container {
  margin-top: 60px;
}

/* Slides */
.brand-container .swiper-slide {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo styling */
.brand-container .swiper-slide img {
  max-height: 100px;
  width: auto;
  opacity: 1;
  transition: 0.4s ease;
}

.brand-container .swiper-slide img:hover {
  opacity: 0.8;
  filter: grayscale(100%);
  transform: scale(1.08);
}

/* Fade edges */
.brand-section::before,
.brand-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brand-section::before {
  left: 0;
  background: linear-gradient(to right, #f5f5f5, transparent);
}

.brand-section::after {
  right: 0;
  background: linear-gradient(to left, #f5f5f5, transparent);
}

.brand-container .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ============= Projects Section ================= */

.projects-section {
  padding: 60px 0;
  background: #f5f5f5;
}

.projects-header {
  text-align: center;
  margin-bottom: 60px;
}

.subtitle {
  font-size: 16px;
  color: #666;
}

.projects-wrapper {
  display: flex;
  gap: 80px;
  align-items: center;
}

/* LEFT SIDE */
.projects-tabs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.project-tab {
  position: relative;
  padding: 24px 30px;
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  transition: 0.4s ease;
  border: 1px solid #eee;
  overflow: hidden;
}

.project-tab h4 {
  margin: 0;
  font-size: 18px;
  line-height: 26px;
}

.project-tab p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

/* ACTIVE STATE */
.project-tab.active {
  background: var(--accent-color);
  color: #fff;
  /* transform: translateX(10px); */
  border-left: 10px solid #323232;
}

.project-tab.active p {
  color: rgba(255, 255, 255, 0.9);
}

.project-tab.active h4 {
  color: #fff;
}

.project-link {
  position: relative;
  display: block;
}

.read-more {
  position: absolute;
  left: 25px;
  bottom: 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #e31e24;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
  transition: .3s;
}

.read-more i {
  font-size: 18px;
}

.project-link:hover .read-more {
  transform: translateX(5px);
}

/* Hide by default */
.read-more {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* Show only for active project */
.project-link.active .read-more {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);

  background: #fff;
  color: var(--accent-color);
}

/* Progress animation */
.progress-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: #fff;
  transition: width 5s linear;
}

.project-tab.active .progress-line {
  width: 100%;
}

/* RIGHT SIDE */
.projects-preview {
  flex: 1;
  position: relative;
  min-height: 420px;
  padding: 40px;
}

.preview-image {
  position: absolute;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(30px) scale(0.96);
  transition: 0.8s ease;
}

.preview-image.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  position: relative;
}

.feature-item-list .feature-body img {
  filter: invert(21%) sepia(86%) saturate(4374%) hue-rotate(343deg) brightness(90%) contrast(101%);
}

/* map sction */
.global-section {
  padding: 80px 0 40px;
  background: #fff;
  text-align: center;
}

.map-area {
  position: relative;
  max-width: 1200px;
  margin: 20px auto 0;
  height: 500px;
  background: url("../img/common/bg-map-2.png") center/contain no-repeat;
}

/* Pin */
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

/* Flag */
.pin-flag {
  /* position: relative; */
  width: 26px;
  height: 26px;
  border-radius: 50%;
  overflow: hidden;
}

.pin-flag img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

/* 🔴 Ripple */
.pin-flag::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #da2927;
  animation: ripple 1.5s infinite;
}

@keyframes ripple {
  0% {
    transform: scale(0.7);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.4);
    opacity: 0.2;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Hide raw data */
.pin-data {
  display: none;
}

/* Right Panel */
.global-info-box {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  text-align: left;
  min-height: 250px;
  transition: 0.4s;
  border: 2px dashed #fd8691;
  align-content: center;
}

.global-info-box h4 {
  color: #da2927;
  margin-bottom: 10px;
  font-size: 20px;
}

.fade-in {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Positions */
.india-1 {
  top: 55%;
  left: 65.5%;
}

.uk {
  top: 35%;
  left: 46%;
}

.russia {
  top: 37%;
  left: 57%;
}

.zambia {
  top: 71%;
  left: 52%;
}

.kenya {
  top: 63%;
  left: 57%;
}

.text-justify {
  text-align: justify;
}

.india-scroll-box {
  max-height: 250px;
  overflow-y: auto;
  padding-right: 10px;
}



/* nuclear page css */

.single-page-feature-item-list .feature-item::before {
  background: #f5f5f5;
}

.feat-li {
  margin-top: 15px !important;
}

.feat-li li {
  color: #6c6b6b;
}

.feature-item.active .feat-li li {
  color: #ffffff;
}

.acc-list {
  list-style-type: square;
  color: #da2927;
}

.acc-list li {
  margin-bottom: 10px;
  color: #4c4c4b;
  line-height: 24px;
}

.accordion-button img {
  width: 28px;
  height: 28px;
  margin-right: 12px;
}

.acc-list h4 {
  color: #404040;
  font-size: 20px;
  margin-bottom: 15px;
}

.sidebar-cta-body {
  background: #d9232d;
  padding: 15px;
  border-radius: 20px;
  color: #fff;
}

.sidebar-cta-content {
  text-align: center;
  margin-bottom: 25px;
}

.sidebar-cta-content h4 {
  font-size: 20px;
  margin: 15px 0 10px;
  font-weight: 600;
}

.sidebar-cta-content p {
  font-size: 14px;
  opacity: 0.9;
}

.icon-box {
  width: 50px;
  height: 50px;
  background: #ffffff20;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  font-size: 20px;
  color: #fff;
}

.sidebar-cta-form .form-group {
  margin-bottom: 15px;
}

.sidebar-cta-form input,
.sidebar-cta-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  outline: none;
}

.sidebar-cta-form input:focus,
.sidebar-cta-form textarea:focus {
  box-shadow: 0 0 0 2px #ffffff80;
}

.cta-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: #000;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

/* Wrapper */
.floating-contact {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateX(0%);
  z-index: 999;
}

/* Button */
.floating-btn {
  background: #d9232d;
  color: #fff;
  padding: 10px 25px 15px;
  transform: translate(10%, 300%) rotate(-90deg);
  transform-origin: left center;
  border-radius: 0px 0px 30px 30px;
  /* margin-left: 60px; */
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
  transition: 0.4s ease;
}

/* Arrow animation */
.floating-btn i {
  transition: 0.4s ease;
}

/* Form */
.floating-form {
  position: absolute;
  top: -400%;
  left: 0;
  width: 320px;
  transform: translateX(-100%);
  transition: 0.4s ease;
}

/* When Active */
.floating-contact.active .floating-form {
  transform: translateX(0);
}

/* Push button when open */
.floating-contact.active .floating-btn {
  transform: translate(340px, 300%) rotate(-90deg);
  /* transform: translateY(-450px); */
  background-color: var(--primary-color);
}

/* Rotate arrow */
.floating-contact.active .floating-btn i {
  transform: rotate(180deg);
}

/* defense and aerospace css */

/* ================================
   CORE DEFENSE TABS SECTION
================================ */

#core-defense-tabs {
  padding: 80px 0;
  background: #f9f9f9;
  color: #fff;
}

#core-defense-tabs .cdt-wrapper {
  width: 90%;
  margin: auto;
}

#core-defense-tabs .cdt-tabs {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

#core-defense-tabs .cdt-tab {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
  font-weight: 500;
}

#core-defense-tabs .cdt-tab i {
  font-size: 18px;
}

#core-defense-tabs .cdt-tab:hover {
  background: var(--accent-color);
  color: #fff;
}

#core-defense-tabs .cdt-tab.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

#core-defense-tabs .cdt-content {
  display: none;
  animation: fadeSlide 0.5s ease;
  background-color: #fff;
  padding: 40px;
  box-shadow: 0 0 10px rgb(146 146 146 / 28%);
  border-radius: 15px;
  text-align: justify;
}

#core-defense-tabs .cdt-content.active {
  display: block;
}

#core-defense-tabs .cdt-content h3 {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 20px;
  text-align: left !important;
}

#core-defense-tabs .cdt-content p {
  color: #4c4c4b;
  line-height: 1.6;
  margin-bottom: 0;
}

#core-defense-tabs img {
  width: 100%;
  border-radius: 15px;
}

/* Animation */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  #core-defense-tabs .row {
    text-align: center;
  }

  #core-defense-tabs img {
    margin-top: 30px;
  }
}

.cdt-content-list {
  margin-top: 20px;
}

.cdt-content-list h5 {
  color: var(--accent-color);
  font-size: 20px;
  margin-bottom: 15px;
}

.cdt-content-list ul {
  padding-left: 0;
}

.cdt-content-list li {
  color: #4c4c4b;
  line-height: 1.6;
  margin-bottom: 10px;
  list-style-type: none;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.cdt-content-list li i {
  color: var(--accent-color);
}

.img-sec-bx img:first-child {
  margin-bottom: 30px;
}

.page-service-single .service-entry .feature-info h3 {
  margin-bottom: 0px;
}

.nuclear-services-section {
  padding-top: 30px;
}

/* Card Styling */
.ns-card {
  background: #fbfbfb;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.ns-card:hover {
  background: #ffffff;
  transform: translateY(-10px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.12);
}

/* Image Wrapper */
.ns-image-wrapper {
  position: relative;
  overflow: hidden;
}

.ns-image-wrapper img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Image Zoom */
.ns-card:hover .ns-image-wrapper img {
  transform: scale(1.04);
}

/* Glass Shine Effect */
.ns-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0.1) 100%);
  transform: skewX(-25deg);
}

.ns-card:hover .ns-image-wrapper::before {
  animation: shine 0.9s forwards;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* Content */
.ns-content {
  padding: 20px;
}

.ns-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--accent-color);
}

.ns-content h5 {
  margin-bottom: 15px;
}

/* List Styling */
.ns-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

.ns-content ul li {
  font-size: 15px;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #333;
}

/* Font Awesome Icon */
.ns-content ul li::before {
  content: "\f058";
  /* fa-circle-check */
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent-color);
}

.tech-prt-li li {
  width: 100% !important;
}

:root {
  --bg-light: #f8fafc;
  --text-dark: #1e293b;
  --border-light: #e9edf2;
}

.defense-alt-section {
  /* padding: 80px 0; */
  background: white;
}

.das-block {
  padding: 40px 0;
}

.das-reverse {
  background: var(--bg-light);
  border-radius: 40px;
  /* margin: 20px 0; */
  /* padding: 40px 50px; */
}

.das-content h3 {
  /* font-size: 26px; */
  /* font-weight: 700; */
  margin-bottom: 30px;
  color: var(--accent-color);
  letter-spacing: -0.02em;
}

.das-content>p {
  font-size: 16px;
  /* line-height: 1.8; */
  /* color: var(--text-dark); */
  padding: 10px;
  margin-top: 30px;
  border-left: 4px solid var(--accent-color);
  padding-left: 25px;
  background: rgba(11, 61, 109, 0.02);
  border-radius: 0 20px 20px 0;
}

/* List styling */
.das-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.das-list li {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.das-list i {
  color: var(--accent-color);
  font-size: 22px;
  margin-top: 3px;
  flex-shrink: 0;
}

.das-list p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
}

.das-list strong {
  color: var(--accent-color);
  font-weight: 600;
}

/* Image wrapper with shine effect */
.das-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
}

.das-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

/* Shine effect on hover */
.das-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  z-index: 2;
  transition: left 0.7s ease;
}

.das-image-wrapper:hover::before {
  left: 125%;
}

.das-image-wrapper:hover img {
  filter: brightness(1.02);
}

/* Multiple images spacing */
.das-image-wrapper img:not(:last-child) {
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .das-block {
    padding: 50px 0;
  }

  .das-reverse {
    padding: 50px 30px;
    border-radius: 30px;
  }

  .das-content h3 {
    font-size: 28px;
    margin-top: 30px;
  }

  .order-lg-1,
  .order-lg-2 {
    order: 0 !important;
  }
}

@media (max-width: 767px) {
  .das-reverse {
    padding: 40px 20px;
  }

  .das-content h3 {
    font-size: 24px;
  }

  .das-list li {
    gap: 12px;
  }
}

.sector-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.sector-links {
  display: flex;
  gap: 30px;
  transition: all 0.3s ease;
}

/* Sticky State */
.sector-links.sticky {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}

/* Hide animation */
.hide-sector {
  opacity: 0;
  transform: translate(-50%, 80px);
  pointer-events: none;
  transition: 0.3s;
}

/* Card */
.sector-card {
  position: relative;
  width: 275px;
  height: 110px;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: white;
  transition: all 0.2s ease;
}

.sector-links.sticky .sector-card {
  height: 70px !important;
}

/* Image */
.sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.sector-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
}

/* Title */
.sector-card span {
  position: absolute;
  bottom: 15px;
  left: 18px;
  font-weight: 600;
  z-index: 2;
}

/* Arrow */
.open-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: white;
  color: red;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease;
}

/* Hover */
.sector-card:hover .overlay {
  background: linear-gradient(to top,
      rgba(255, 0, 0, 0.65),
      rgba(0, 0, 0, 0.3));
}

.sector-card:hover .open-icon {
  background: var(--accent-color);
  color: #fff;
  transform: rotate(45deg);
}

.sector-card.active {
  pointer-events: none;
}

.sector-card.active .overlay {
  background: linear-gradient(to top,
      rgba(255, 0, 0, 0.65),
      rgba(0, 0, 0, 0.3));
}

.nuclear-services {
  padding: 20px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  border-top: 4px solid var(--primary-color);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER LIFT */
.service-card:hover {
  transform: translateY(-6px);
  border-top: 4px solid var(--accent-color);
}

/* TITLE */
.service-card h3 {
  margin-bottom: 25px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card h3 i {
  color: var(--accent-color);
  font-size: 26px;
}

/* LIST */
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card ul li {
  margin-bottom: 8px;
  color: #444;
  position: relative;
  padding-left: 30px;
}

/* custom bullet */
.service-card ul li::before {
  color: var(--primary-color);
}

/* ---------------------- */
/* OVERLAY ANIMATION */
/* ---------------------- */

.service-card::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  top: -100%;
  left: -100%;
  background: linear-gradient(135deg,
      transparent 40%,
      var(--accent-color) 60%,
      transparent 80%);
  opacity: 0.08;
  transition: all 0.6s ease;
}

/* sweep from top-left → bottom-right */
.service-card:hover::before {
  top: 0;
  left: 0;
}

/* keep content above overlay */
.service-card>* {
  position: relative;
  z-index: 2;
}

.oilgas-services {
  padding: 20px 0;
}

.og-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

/* column blocks */

.og-block {
  padding: 30px;
  position: relative;
  border-right: 1px solid #eee;
  transition: 0.35s;
}

.og-block:last-child {
  border-right: none;
}

/* title */

.og-block h3 {
  color: var(--primary-color);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.og-block h3 i {
  color: var(--accent-color);
  font-size: 20px;
}

/* list */

.og-block ul {
  margin: 0;
  padding-left: 18px;
}

.og-block ul li {
  margin-bottom: 8px;
  color: #444;
  line-height: 1.5;
}

/* accent divider */

.og-block::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 0%;
  background: var(--accent-color);
  transition: 0.4s;
}

/* hover effect */

.og-block:hover {
  background: #fafafa;
}

.og-block:hover::after {
  height: 100%;
}

.defence-tabs {
  padding: 20px 0;
}

/* tab buttons */

.defence-tabs .tab-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  border-bottom: 2px solid #eee;
  flex-wrap: wrap;
}

.defence-tabs .tab-btn {
  padding: 14px 22px;
  border: none;
  background: none;
  cursor: pointer;
  font-weight: 500;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: 0.3s;
}

.defence-tabs .tab-btn i {
  color: var(--accent-color);
}

/* active tab */

.defence-tabs .tab-btn.active {
  color: var(--primary-color);
}

.defence-tabs .tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
}

/* hover */

.defence-tabs .tab-btn:hover {
  color: var(--primary-color);
}

/* tab content */

.defence-tabs .tab-content {
  display: none;
  padding: 25px 0;
  animation: fadeTab 0.4s ease;
}

.defence-tabs .tab-content.active {
  display: block;
}

.defence-tabs .tab-content ul {
  padding-left: 20px;
  margin: 0;
}

.defence-tabs .tab-content ul li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #444;
}

/* animation */

@keyframes fadeTab {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.defence-tabs .tab-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 240px;
}

.defence-tabs.eps-tabs .tab-image {
  height: unset !important;
}

.defence-tabs .tab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* hover zoom */

.defence-tabs .tab-image:hover img {
  transform: scale(1.05);
}

/* gradient overlay */

.defence-tabs .tab-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), transparent);
}

/* SECTION */
.infra-bg-cards {
  padding: 20px 0;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* CARD */
.infra-card {
  position: relative;
  height: auto;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  transition: transform 0.4s ease;
}

/* GRADIENT OVERLAY */
.infra-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.6) 40%,
      rgba(0, 0, 0, 0.25) 70%,
      transparent 100%);
  z-index: 1;
  transition: 0.4s;
}

/* CONTENT AREA */
.infra-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 25px;
  border-radius: 12px;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  backdrop-filter: blur(0px);
  background: rgba(0, 0, 0, 0);

  transition: all 0.4s ease;
}

/* TITLE (BOTTOM INITIALLY) */
.infra-overlay h3 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  /* transform: translateY(250px); */
  position: absolute;
  bottom: 30px;
  transition: 0.4s ease;
}

/* #material-handling .infra-card .infra-overlay h3 {
  transform: translateY(150px);
} */

.infra-overlay h3 i {
  color: var(--white-color);
  transition: transform 0.3s ease;
}

/* LIST (HIDDEN INITIALLY) */
.infra-overlay ul {
  padding-left: 18px;
  margin-top: 10px;

  opacity: 0;
  transform: translateY(20px);

  transition: all 0.4s ease;
}

.infra-overlay ul li {
  margin-bottom: 7px;
  line-height: 1.5;

  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
/* .infra-card:hover {
  transform: scale(1.02);
} */

.infra-card:hover::before {
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.95),
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.35),
      transparent);
}

.infra-card:hover .infra-overlay {
  backdrop-filter: blur(1.5px);
  background: rgba(0, 0, 0, 0.25);
}

/* TITLE MOVES UP */
.infra-card:hover .infra-overlay h3 {
  transform: translateY(0);
  position: relative;
  bottom: unset;
  margin-bottom: 15px;
}

/* LIST SHOW */
.infra-card:hover .infra-overlay ul {
  opacity: 1;
  transform: translateY(0);
}

/* STAGGER ANIMATION */
.infra-card:hover .infra-overlay ul li {
  opacity: 1;
  transform: translateY(0);
}

.infra-card:hover .infra-overlay ul li:nth-child(1) {
  transition-delay: 0.1s;
}

.infra-card:hover .infra-overlay ul li:nth-child(2) {
  transition-delay: 0.2s;
}

.infra-card:hover .infra-overlay ul li:nth-child(3) {
  transition-delay: 0.3s;
}

.infra-card:hover .infra-overlay ul li:nth-child(4) {
  transition-delay: 0.4s;
}

.infra-card:hover .infra-overlay ul li:nth-child(5) {
  transition-delay: 0.5s;
}

.infra-card:hover .infra-overlay ul li:nth-child(6) {
  transition-delay: 0.6s;
}

.infra-card:hover .infra-overlay ul li:nth-child(7) {
  transition-delay: 0.7s;
}

/* PARAGRAPH (hidden initially) */
.infra-overlay p {
  margin-top: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

/* SHOW paragraph on hover */
.infra-card:hover .infra-overlay p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.page-category-list ul li ul {
  padding: 15px;
  margin: 10px 0;
  background-color: #fff;
}

.page-category-list ul li ul li {
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.page-category-list ul li ul li a {
  font-size: 14px;
  padding-right: 5px !important;
}

.page-category-list ul li ul li a.active {
  display: flex;
  align-items: baseline;
  transition: all 0.3s ease;
}

.page-category-list ul li ul li a::before {
  content: unset !important;
}

.page-category-list ul li ul li a:hover {
  color: var(--accent-color);
}

[id] {
  scroll-margin-top: 120px;
}

.px-showcase-row {
  padding: 20px;
  background-color: #f9f9f9;
  border-left: 4px solid var(--accent-color);
  margin-bottom: 20px;
  border-radius: 0 10px 10px 0;
}

.px-showcase-body {
  margin-top: 15px;
}

.px-showcase-body h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.px-showcase-body h2::first-letter {
  color: var(--accent-color);
  font-size: 28px;
  font-weight: 600;
}

.px-showcase-body p {
  margin-bottom: 5px;
}

.px-showcase-body h4 {
  font-size: 20px;
  /* color: var(--accent-color); */
  margin-bottom: 15px;
  margin-top: 15px;
}

.px-showcase-body ul {
  padding-left: 20px;
}

.px-showcase-body ul li {
  margin-bottom: 8px;
  line-height: 1.5;
  color: #444;
  list-style-type: none;
  display: flex;
}

.px-showcase-body ul li::before {
  content: "\f058";
  /* fa-circle-check */
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-right: 10px;
  color: var(--accent-color);
}

.px-showcase-media img {
  width: 100%;
  border-radius: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.px-showcase-row.reverse {
  border-left: none;
  border-right: 4px solid var(--accent-color);
  border-radius: 10px 0 0 10px;
  background-color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-single-content .service-entry h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
}

.service-single-content .service-entry h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  /* color: var(--accent-color); */
}

.fabrication-services {
  padding: 2rem 0;
}

.fs-container {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(600px, 1fr)); */
  gap: 2rem;
}

/* CARD */

.fs-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

/* ACCENT BORDER */

.fs-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--accent-color);
  transition: 0.4s;
}

/* ICON */

.fs-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--primary-color);
  color: #fff;
  margin-bottom: 0;
  transition: 0.4s;
}

/* TITLE */

.fs-card h3 {
  color: var(--primary-color);
  margin-bottom: 0;
  line-height: 1.3;
}

/* LIST */

.fs-card ul {
  padding-left: 1.2rem;
  margin-top: 15px;
}

.fs-card ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* HOVER EFFECT */

.fs-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.fs-card:hover::before {
  width: 100%;
  opacity: 0.06;
}

.fs-card:hover .fs-icon {
  background: var(--accent-color);
  transform: rotate(10deg);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .fs-container {
    grid-template-columns: 1fr;
  }
}

/* #innovation-infra .infra-card{
      height: 370px;
} */

#mining_services_section {
  padding: 25px 20px;
  background: #fbfbfb;
  border-radius: 20px;
}

/* grid */

#mining_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 25px;
  max-width: 1300px;
  margin: auto;
}

/* card */

.mining_card {
  background: #fbfbfb;
  padding: 25px;
  border-radius: 14px;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mining_card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
}

.mining_card img {
  border-radius: 15px;
  margin-bottom: 20px;
  position: relative;
}

/* icon */

.mining_card ul {
  margin: 20px 0 0 0 !important;
}

.card_icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--accent-color), #f58685);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  /* margin-bottom: 15px; */
  position: absolute;
  top: 35px;
  right: 35px;
}

.card_icon i {
  color: #000;
  font-size: 22px;
}

/* text */

.mining_card h3 {
  color: #da2927;
  font-size: 18px;
  margin-bottom: 10px;
}

.mining_card li,
.mining_card p {
  color: #333;
  line-height: 1.6;
}

/* responsive tweak */

@media (max-width: 768px) {
  #mining_services_section {
    padding: 40px 15px;
  }

  #mining_grid {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    gap: 15px;
    padding: 0 10px;
  }
}

#material-handling .infra-overlay h3 {
  font-size: 22px;
}

.core-work {
  background-color: var(--primary-color);
  border-radius: 20px;
  padding: 30px;
  color: #fff;
}

.core-work h2 {
  color: var(--white-color);
}

.core-work img {
  border-radius: 20px;
}

.core-stats {
  margin-top: 40px;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* CARD */

.stat-box {
  padding: 28px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: all 0.25s ease;
}

/* subtle hover only */

.stat-box:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ICON */

.stat-icon {
  width: 48px;
  height: 48px;
  /* margin: 0 12px; */
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;

  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-color);
}

/* NUMBER */

.stat-box h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

#working-at-core .defence-tabs .tab-btn {
  font-size: 18px;
}

#working-at-core .defence-tabs .tab-image {
  height: 350px;
}

.benefits-section {
  padding: 60px 0 0;
}

/* CARD */

.benefit-card {
  background: var(--primary-color);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

/* CLEAN HOVER (this is the key) */

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* IMAGE */

.benefit-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s;
}

.benefit-card:hover .benefit-image img {
  transform: scale(1.01);
}

/* CONTENT */

.benefit-content h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit-content h3 i {
  color: var(--accent-color);
}

/* POINT GRID */

.benefit-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* POINT */

.point {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.point i {
  color: var(--accent-color);
  font-size: 14px;
  margin-top: 3px;
}

.point p {
  font-size: 14px;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .benefit-points {
    grid-template-columns: 1fr;
  }

  .benefit-image img {
    height: 180px;
    margin-bottom: 15px;
  }
}

/* SECTION */

.social-proof {
  padding: 60px 20px 20px;
  background: #f8fafc;
  text-align: center;
}

/* TITLE */

.social-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* GRID */

.social-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* ITEM */

.social-item {
  min-width: 180px;
  padding: 20px 25px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  transition: 0.25s ease;
}

/* subtle hover */

.social-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

/* RATING */

.rating h3 {
  font-size: 36px;
  margin-bottom: 8px;
  color: #111;
}

/* STARS */

.stars {
  color: #f59e0b;
  margin-bottom: 8px;
}

.stars i {
  margin: 0 2px;
}

/* TEXT */

.social-item p {
  font-size: 13px;
  color: #6b7280;
}

/* LOGOS */

.social-item img {
  width: 150px;
  height: 50px;
  margin-bottom: 10px;
  object-fit: contain;
}

/* DIVIDER LINE (desktop only vibe) */

.social-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 25%;
  height: 50%;
  width: 1px;
  background: #e5e7eb;
}

.social-item {
  position: relative;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .social-grid {
    gap: 20px;
  }

  .social-item::after {
    display: none;
  }
}

.testimonial-slider {
  padding: 50px 10px;
}

/* Top-right nav buttons */
.testimonial-nav {
  display: flex;
  gap: 10px;
}

.testimonial-nav .swiper-button-prev,
.testimonial-nav .swiper-button-next {
  position: relative;
  top: 60px;
  left: auto;
  right: auto;
  width: 45px;
  height: 45px;
  background: var(--accent-color);
  border-radius: 5%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: var(--white-color);
  margin-bottom: 20px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

/* Card */
.testimonial-item {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  height: 100%;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-item:hover {
  transform: translateY(-8px);
}

/* Header */
.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-item h3 {
  font-size: 17px;
}

.testimonial-header img {
  filter: saturate(0);
}

#career-form-section {
  padding: 50px 20px;
}

/* Left side */
#career-form-section .career-info h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

#career-form-section .career-info p {
  color: #555;
  line-height: 1.6;
}

/* Form Box */
#career-form-section .career-form-box {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Form Groups */
#career-form-section .form-group {
  margin-bottom: 18px;
}

#career-form-section label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 500;
}

#career-form-section label i {
  color: var(--accent-color);
  margin-right: 6px;
}

/* Inputs */
#career-form-section input,
#career-form-section select,
#career-form-section textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.3s;
  outline: none;
}

/* Focus effect */
#career-form-section input:focus,
#career-form-section select:focus,
#career-form-section textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* Button */
#career-form-section .career-btn {
  width: auto;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: var(--accent-color);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

#career-form-section .career-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  #career-form-section .career-container {
    grid-template-columns: 1fr;
  }
}

.arrow-icon {
  margin-right: 8px;
  color: var(--accent-color);
  font-size: 12px;
}

h4.text-anime-style-3 .split-line:first-child>div:first-child>div:first-child {
  color: var(--accent-color);
  font-weight: 700;
}

.sus-box {
  padding: 30px;
  background-color: #fff9f9;
  margin: 30px 0 0;
  border-radius: 25px;
  border-top: 3px solid #da2927;
}

#sustainability-section {
  padding: 40px 0px 50px;
}

#sustainability-section .sus-wrapper {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card Design */
#sustainability-section .sustainability-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px 20px;
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
  box-shadow: 0 0 14px 0px rgba(0, 0, 0, 0.13);
}

/* Accent top line */
#sustainability-section .sustainability-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
}

/* Hover effect */
#sustainability-section .sustainability-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Icon */
#sustainability-section .icon-box {
  width: 55px;
  height: 55px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 15px;
  transition: 0.3s;
}

#sustainability-section .sustainability-card:hover .icon-box {
  background: var(--primary-color);
}

/* Title */
#sustainability-section h3 {
  margin-bottom: 10px;
  color: #222;
}

/* Text */
#sustainability-section p {
  line-height: 1.6;
  color: #666;
}

/* Responsive */
@media (max-width: 992px) {
  #sustainability-section .sustainability-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #sustainability-section .sus-wrapper {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

@media (max-width: 576px) {
  #sustainability-section .sustainability-wrapper {
    grid-template-columns: 1fr;
  }
}

#governance-section {
  padding: 30px 0 30px;
  background: #fff;
}

/* Content */
#governance-section .gov-content {
  padding-right: 30px;
}

#governance-section h2 {
  margin-bottom: 15px;
  position: relative;
}

#governance-section p {
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Image */
#governance-section .gov-image {
  position: relative;
}

#governance-section .gov-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
  transition: 0.4s ease;
  position: relative;
  z-index: 2;
}

/* Accent background */
#governance-section .gov-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 20px;
  left: -20px;
  background: var(--primary-color);
  border-radius: 16px;
  z-index: 1;
  /* opacity: 0.5; */
}

/* Hover */
#governance-section .gov-image:hover img {
  transform: scale(1.02);
}

/* Responsive tweaks */
@media (max-width: 991px) {
  #governance-section .gov-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  #governance-section .gov-image::before {
    left: 0;
    top: 10px;
  }
}

#taps-process-section {
  padding: 40px 0 20px;
  background: #fbfbfb;
  border-radius: 25px;
  margin-top: 30px;
}

/* Flow Layout */
#taps-process-section .taps-flow {
  position: relative;
}

/* Horizontal line */
#taps-process-section .taps-flow::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  opacity: 0.3;
}

/* Card */
#taps-process-section .flow-card {
  text-align: center;
  padding: 5px;
  position: relative;
}

/* Icon circle */
#taps-process-section .flow-icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 22px;
  color: var(--primary-color);
  z-index: 2;
  position: relative;
  transition: 0.3s;
}

/* Hover effect */
#taps-process-section .flow-card:hover .flow-icon {
  background: var(--accent-color);
  color: #fff;
}

/* Title */
#taps-process-section h4 {
  margin-top: 15px;
  font-size: 16px;
  color: #222;
}

/* Text */
#taps-process-section p {
  margin-top: 8px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  #taps-process-section .taps-flow::before {
    display: none;
  }

  #taps-process-section .flow-card {
    margin-bottom: 30px;
    text-align: left;
  }

  #taps-process-section .flow-icon {
    margin: 0 0 10px 0;
  }
}

.contact-info-item .icon-box {
  background: #f38c8c4a;
}

.contact-info-item .icon-box img {
  filter: invert(9%) sepia(97%) saturate(3023%) hue-rotate(365deg) brightness(85%) contrast(125%) !important;
}

.contact-info-item:hover .icon-box img {
  filter: brightness(100) !important;
}

.core-contact-wrapper {
  width: 100%;
}

/* FORM */
.core-contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  background-color: #f1f1f1;
}

.core-contact-title {
  font-size: 28px;
  margin-bottom: 25px;
}

.core-contact-form input,
.core-contact-form select,
.core-contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
}

.core-contact-form textarea {
  height: 140px;
  resize: none;
}

.core-contact-form input:focus,
.core-contact-form select:focus,
.core-contact-form textarea:focus {
  border-color: #c62828;
}

/* BUTTON */
.core-submit-btn {
  background: #c62828;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 6px;
  cursor: pointer;
}

.core-submit-btn:hover {
  background: #a61f1f;
}

.core-office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.core-office-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.core-office-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.core-office-info {
  margin-bottom: 15px;
  flex-grow: 1;
}

.core-office-info p {
  line-height: 1.6;
  margin-bottom: 10px;
  color: #333;
}

.core-office-country {
  font-weight: 600;
  color: #777;
}

.core-office-address {
  position: relative;
  padding-left: 22px;
}

.core-office-address:before {
  content: "\f3c5";
  /* location-dot */
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent-color);
}

.core-office-phone {
  position: relative;
  padding-left: 22px;
}

.core-office-phone a,
.core-office-email a {
  color: #6d6d6d;
}

.core-office-phone:before {
  content: "\f095";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent-color);
}

.core-office-email {
  position: relative;
  padding-left: 22px;
}

.core-office-email:before {
  content: "\f0e0";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent-color);
}

.core-office-map {
  margin-top: auto;
}

.core-office-map iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 8px;
}

/* responsive */
@media (max-width: 768px) {
  .core-office-grid {
    grid-template-columns: 1fr;
  }
}

.core-office-info p a {
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.2s all ease-in-out;
}

.core-office-info p a:hover {
  text-decoration: underline;
}

#core-mission-block {
  padding: 20px 20px 40px;
}

#core-mission-block .cmb-main-title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

/* grid */
#core-mission-block .cmb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* card */
#core-mission-block .cmb-card {
  height: 370px;
  perspective: 1200px;
}

#core-mission-block .cmb-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: 0.8s;
  transform-style: preserve-3d;
}

#core-mission-block .cmb-card:hover .cmb-inner {
  transform: rotateX(180deg);
}

/* front/back */
#core-mission-block .cmb-front,
#core-mission-block .cmb-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* front */
#core-mission-block .cmb-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#core-mission-block .cmb-front h3 {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  padding: 12px 15px 80px;
  color: #fff;
  font-size: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

#core-mission-block .cmb-front span {
  font-size: small;
  position: absolute;
  bottom: 26px;
  z-index: 9;
  left: 0;
  color: #fff;
  padding: 10px 15px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Show only 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* back */
#core-mission-block .cmb-back {
  background: #fff;
  padding: 20px 15px;
  transform: rotateX(180deg);
  overflow: auto;
}

#core-mission-block .cmb-back h4 {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 10px;
}

#core-mission-block .cmb-back p {
  line-height: 1.4;
}

/* responsive */
@media (max-width: 1024px) {
  #core-mission-block .cmb-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  #core-mission-block .cmb-grid {
    grid-template-columns: 1fr;
  }
}

#core-tagline-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-top: 40px;
  background-color: #ffffff;
  box-shadow: 0 0 20px 1px rgb(0 0 0 / 21%);
  padding: 15px 20px;
  border-radius: 15px;
  color: var(--primary-color);
}

#core-tagline-inline i {
  color: var(--accent-color);
  font-size: 30px;
}

#core-tagline-inline span {
  font-weight: 800;
  color: var(--accent-color);
  position: relative;
}

/* highlight effect */
#core-tagline-inline span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.247);
  z-index: 1;
}

#core-vision-section {
  padding: 20px 20px;
  /* background: linear-gradient(135deg, #f9f9f9, #4b0303); */
  margin-bottom: 40px;
  border-radius: 20px;
}

#core-vision-section .cvs-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 0px;
}

/* image */
#core-vision-section .cvs-image {
  position: relative;
}

#core-vision-section .cvs-image img {
  width: 100%;
  border-radius: 18px;
  /* box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15); */
}

/* floating shape */
/* #core-vision-section .cvs-image:after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: #0b5ed7;
  border-radius: 20px;
  bottom: -20px;
  left: -20px;
  z-index: -1;
  opacity: 0.15;
} */

/* content card */
#core-vision-section .cvs-content {
  background: #fff;
  padding: 45px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* label */
#core-vision-section .cvs-label {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #0b5ed7;
  display: inline-block;
  margin-bottom: 15px;
}

/* title */
#core-vision-section h2 {
  font-size: 32px;
  margin-bottom: 18px;
  line-height: 1.3;
}

/* text */
#core-vision-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* responsive */
@media (max-width: 992px) {
  #core-vision-section .cvs-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #core-vision-section .cvs-content {
    padding: 30px;
  }
}

#teamPopup {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

/* show with animation */
#teamPopup.show {
  display: block;
  animation: teamFade 0.55s ease forwards;
}

@keyframes teamFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.tp-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 600px;
  max-width: 90%;
  padding: 40px;
  border-radius: 10px;
}

.tp-close {
  position: absolute;
  right: 10px;
  top: 11px;
  background: none;
  border: none;
  background-color: #da2927;
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 25px;
  color: #fff;
  cursor: pointer;
}

#tpName {
  margin-bottom: 10px;
  font-size: 26px;
}

#tpContent {
  font-size: 17px;
  line-height: 1.35;
  text-align: justify;
}

#tpTitle {
  color: var(--accent-color);
  display: block;
  margin-bottom: 15px;
  font-weight: 600;
}

/* wrapper left center */
.core-float-wrap {
  position: fixed;
  left: 0;
  top: 60%;
  transform: translateY(-50%);
  z-index: 99;
  display: flex;
  align-items: center;
}

/* hamburger */
/* .core-float-btn {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
} */

.core-float-btn {
  width: 50px;
  height: 170px;
  background: var(--accent-color);
  border-radius: 0 12px 12px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.5s ease;
  text-align: center;
}

.core-float-btn.active {
  position: relative;
  left: 260px;
}

/* Hover effect */
/* .core-float-btn:hover {
  transform: translateX(2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
} */

/* Text styling */
.core-float-btn .btn-text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* Icon styling */
.core-float-btn i {
  font-size: 18px;
  color: #fff;
  animation: blink 1s infinite;
}

/*  */

.core-float-btn span {
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
}

/* hamburger animation */
.core-float-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.core-float-btn.active span:nth-child(2) {
  opacity: 0;
}

.core-float-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* panel RIGHT side */
.core-float-panel {
  width: 260px;
  background: #fff;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-left: 5px solid var(--primary-color);

  margin-left: -260px;
  opacity: 0;
  visibility: hidden;

  transition: 0.35s;
}

/* open */
.core-float-panel.show {
  margin-left: -50px;
  opacity: 1;
  visibility: visible;
}

/* content */
.core-float-inner {
  padding: 20px;
}

.core-float-title {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.core-float-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.core-float-menu li {
  border-bottom: 1px solid #eee;
}

.core-float-menu a {
  display: block;
  padding: 10px 5px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: 0.2s;
}

.core-float-menu a:hover {
  color: var(--accent-color);
  padding-left: 8px;
}

.core-float-menu a.active {
  color: var(--accent-color);
  font-weight: 600;
}

/* icon transition */
.core-float-btn i {
  font-size: 16px;
  color: #fff;
  transition: transform 0.3s ease;
}

/* rotate arrow when open */
.core-float-btn.active i {
  transform: rotate(180deg);
}

.core-float-btn .btn-text {
  transform: rotate(-90deg);
  white-space: nowrap;
}

#core-unique-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 40px 0 30px;
  position: relative;
  max-width: 1400px;
  margin: auto;
}

/* bottom line */
#core-unique-timeline:before {
  content: "";
  position: absolute;
  bottom: 4%;
  left: -4%;
  width: 108%;
  height: 3px;
  z-index: 3;
  background: #7c7c7c;
}

/* column */
#core-unique-timeline .cut-col {
  position: relative;
  width: 23%;
  padding-bottom: 40px;
}

/* vertical line auto height */
#core-unique-timeline .cut-col:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -12px;
  width: 2px;
  height: calc(100% - 10px);
  background: #1f1a17;
}

/* dot */
.cut-dot {
  width: 14px;
  height: 14px;
  background: var(--accent-color);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: -18px;
  z-index: 2;
}

/* year */
.cut-year {
  position: absolute;
  top: -50px;
  left: 0;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent-color);
}

/* content */
.cut-card {
  font-size: 14px;
  color: #555;
}

.cut-card h4 {
  margin-bottom: 10px;
  font-size: 20px;
}

.cut-card h3 {
  color: red;
  font-size: 26px;
}

.cut-divider {
  border-top: 1px dashed var(--accent-color);
  margin: 12px 0;
}

/* bottom text */
.gray {
  font-size: 30px;
  color: #555;
  margin-top: 20px;
}

.red {
  font-size: 30px;
  color: red;
}

/* animation */
.cut-col {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

.cut-col.show {
  opacity: 1;
  transform: translateY(0);
}

/* -==== Harizontal core journey =====- */

#core-horizontal-timeline {
  padding: 60px 20px;
  /* background: #f9fafc; */
  overflow: hidden;
}

/* YEARS */
#core-horizontal-timeline .cht-years {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 50px;
  border-bottom: 2px solid #ddd;
}

#core-horizontal-timeline .cht-year {
  padding: 10px 15px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  color: #777;
  transition: 0.3s;
}

#core-horizontal-timeline .cht-year::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}

#core-horizontal-timeline .cht-year.active {
  color: #000;
}

#core-horizontal-timeline .cht-year.active::after {
  background: var(--accent-color);
  transform: translateX(-50%) scale(1.5);
}

/* SLIDER → NOW GRID */
#core-horizontal-timeline .cht-slider {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

#core-horizontal-timeline .cht-slide {
  display: none;
  /* hide all */
}

#core-horizontal-timeline .cht-slide.active {
  display: block;
  /* show only active year */
}

/* MOBILE */
@media (max-width: 768px) {
  #core-horizontal-timeline .cht-slide {
    width: 100%;
  }
}

#core-horizontal-timeline .cht-track {
  display: flex;
  transition: transform 0.6s ease;
}

/* SLIDE → GRID */
#core-horizontal-timeline .cht-slide {
  flex: 0 0 50%;
  /* 🔥 THIS is the magic */
  padding: 10px;

  opacity: 1;
  /* remove animation conflict */
  transform: none;
}

#core-horizontal-timeline .cht-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* CARD DESIGN */
#core-horizontal-timeline .cht-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  border-left: 3px solid var(--accent-color);
}

#core-horizontal-timeline .cht-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
#core-horizontal-timeline .cht-card .cht-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* CONTENT */
#core-horizontal-timeline .cht-card .cht-content {
  padding: 20px;
}

#core-horizontal-timeline .cht-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

#core-horizontal-timeline .cht-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  #core-horizontal-timeline .cht-slide {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  #core-horizontal-timeline .cht-slide {
    flex-direction: column;
  }

  #core-horizontal-timeline .cht-img,
  #core-horizontal-timeline .cht-content {
    width: 100%;
  }
}

/* NAV ARROWS */
#core-horizontal-timeline .cht-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

#core-horizontal-timeline .cht-nav button {
  pointer-events: all;
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 15%;
  cursor: pointer;
  transition: 0.3s;
}

#core-horizontal-timeline .cht-nav button:hover {
  background: var(--accent-color);
}

/* BULLETS */
#core-horizontal-timeline .cht-dots {
  text-align: center;
  margin-top: 20px;
}

#core-horizontal-timeline .cht-dot {
  width: 15px;
  height: 3px;
  background: #ccc;
  display: inline-block;
  border-radius: 5%;
  margin: 0 5px;
  cursor: pointer;
  transition: 0.3s;
}

#core-horizontal-timeline .cht-dot.active {
  background: var(--accent-color);
  transform: scale(1.24);
}

/* YEAR PROGRESS LINE */
#core-horizontal-timeline .cht-years {
  position: relative;
}

#core-horizontal-timeline .cht-progress {
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  background: #e63946;
  width: 0%;
  transition: 0.5s ease;
}

#core-horizontal-timeline .cht-slider {
  position: relative;
}

#core-horizontal-timeline .cht-nav {
  z-index: 10;
}

#core-horizontal-timeline .cht-slide {
  position: relative;
  z-index: 1;
}

.cmd-video {
  width: 100%;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
  border-radius: 16px;

  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.77, 0, 0.18, 1);
}

/* ACTIVE STATE */
.cmd-video.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* VIDEO */
.cmd-video video {
  width: 100%;
  display: block;
  border-radius: 16px;
  margin-bottom: 30px;
}

/* subtle glow */
.cmd-video::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

/* Certifications */

.img-container {
  height: 240px;
  overflow: hidden;
  border-radius: 8px;
}

.card-img-top {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.download-card:hover .card-img-top {
  transform: scale(1.08);
}

.download-card {
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.download-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-body {
  padding: 12px !important;
}

.card-title {
  font-size: 14px !important;
  line-height: 1.3;
}

.pdf-link {
  color: #e74c3c;
  transition: all 0.3s ease;
  display: inline-block;
}

.pdf-link i {
  font-size: 22px;
  animation: iconBounce 2s infinite;
}

@keyframes iconBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.download-card:hover .pdf-link i {
  color: #c0392b;
  animation: iconPulse 0.6s infinite alternate;
}

@keyframes iconPulse {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.15);
  }
}

/* Certifications */
/* Awards */
.award-card-item {
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.award-card-item:hover {
  transform: translateY(-10px);
}

.award-card-inner {
  position: relative;
  width: 100%;
  height: 235px;
  background: #cfcccc;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border 0.4s ease;
  z-index: 1;
}

.award-card-item:hover .award-card-inner {
  border-color: #da2927;
}

.award-image-wrap {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.award-img-source {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

/* .award-card-item:hover .award-img-source {
  transform: scale(1);
} */

.award-title-block {
  position: relative;
  width: 100%;
  min-height: 65px;
  /* Height adjusted for longer titles */
  background: #F1F0F0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px 20px;
  box-sizing: border-box;
  z-index: 2;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
}

.award-main-heading {
  font-size: 13.5px;
  font-weight: 800;
  color: #050505;
  margin: 0;
  line-height: 1.45;
  text-align: center;
  /* letter-spacing: -0.5px; */
  /* transform: skewX(-10deg); */
  transition: all 0.5s ease;
  text-transform: uppercase;
}

.award-card-item:hover .award-title-block {
  background-color: #ffffff;
  border-color: #da2927;
}

.award-card-item:hover .award-main-heading {
  letter-spacing: 0.5px;
  transform: skewX(0deg);
  color: #da2927;
}

.award-corner {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid #da2927;
  z-index: 10;
  transition: 0.4s;
}

.award-tl {
  top: -5px;
  left: -5px;
  border-right: none;
  border-bottom: none;
}

.award-br {
  bottom: -5px;
  right: -5px;
  border-left: none;
  border-top: none;
}

.award-card-item:hover .award-corner {
  width: 30px;
  height: 30px;
  border-color: #da2927;
}

.bg-bl {
  background-color: #1f1a17 !important;
}

/*  */

/* .abt-menu-link {
  text-decoration: none;
  display: block;
  height: 100%;
}


.abt-menu-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
}


.abt-menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #DA2927;
}

.abt-menu-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: #f1f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #DA2927;
  transition: 0.3s;
}

.abt-menu-card:hover .abt-menu-icon {
  background: #DA2927;
  color: #fff;
}


.abt-menu-text {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}


@media (max-width: 576px) {
  .abt-menu-card {
    padding: 15px;
  }

  .abt-menu-text {
    font-size: 15px;
  }
} */

.abt-card {
  position: relative;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

.abt-card-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.abt-card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
  transition: all 0.4s ease;
}

.abt-card-content {
  position: absolute;
  bottom: 60px;
  left: 20px;
  right: 20px;
  color: #fff;
  z-index: 2;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.abt-card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.abt-card-text {
  font-size: 14px;
  opacity: 0.9;
}

/* HOVER EFFECT */
.abt-card:hover .abt-card-bg {
  transform: scale(1.1);
}

.abt-card:hover .abt-card-overlay {
  background: linear-gradient(180deg, rgba(218, 41, 39, 0.4), rgba(0, 0, 0, 0.9));
}

.abt-card:hover .abt-card-content {
  transform: translateY(0);
}

/*  */
.office-tabs {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid #DA2927;
  background: #1F1A17;
}

/* TAB BUTTON */
.tab-btn {
  flex: 1;
  padding: 14px 15px;
  border: none;
  background: #1F1A17;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

/* REMOVE LAST BORDER */
.tab-btn:last-child {
  border-right: none;
}

/* HOVER EFFECT */
.tab-btn:hover {
  background: #DA2927;
  color: #fff;
}

/* ACTIVE TAB */
.tab-btn.active {
  background: #DA2927;
  color: #fff;
  box-shadow: inset 0 -3px 0 #1F1A17;
}

/* TAB CONTENT */
.tab-content {
  display: none;
  padding: 25px 0;
}

.tab-content.active {
  display: block;
}

/* OPTIONAL: CARD ENHANCEMENT */
.core-office-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px;
  background: #fff;
  transition: 0.3s;
}

.core-office-card:hover {
  transform: translateY(-5px);
  border-color: #DA2927;
}

/*  */
.ka-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  /* reduced gap */
}

/* Card */
.ka-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* prevents extra stretching */

  background: #fff;
  padding: 20px 18px;
  /* reduced padding */
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Accent line */
.ka-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #DA2927;
}

/* Hover */
.ka-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Top */
.ka-top {
  margin-bottom: 10px;
  /* tighter */
}

/* Icon */
.ka-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: rgba(218, 41, 39, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #DA2927;
  font-size: 18px;
  margin-bottom: 10px;
}

/* Heading */
.ka-outline {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #1F1A17;
  letter-spacing: 0.3px;
}

/* First letter color */
.ka-outline::first-letter {
  color: #DA2927;
}

.ka-sub {
  display: block;
  font-size: 12.5px;
  color: #333;
  font-weight: 500;
  margin-top: 4px;
}

/* Paragraph */
.ka-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.5;
  /* tighter */
  margin-top: 8px;
}



/* Responsive */
@media (max-width: 992px) {
  .ka-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .ka-grid {
    grid-template-columns: 1fr;
  }
}

/*  */

/* Container spacing */
.cus-gallery-section {
  padding: 60px 20px;
  background: #fff;
}

/* Tabs */
.cus-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.cus-tab-btn {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid #DA2927;
  background: transparent;
  color: #1F1A17;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cus-tab-btn:hover {
  background: #DA2927;
  color: #fff;
}

.cus-tab-btn.active {
  background: #DA2927;
  color: #fff;
  box-shadow: 0 5px 15px rgba(218, 41, 39, 0.3);
}

/* Gallery Grid */
.cus-gallery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Items */
.cus-gallery-item {
  width: calc(33.33% - 14px);
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

@media (min-width: 1399px) {
  .cus-gallery-item {
    width: calc(24.33% - 14px);

  }

  .cus-gallery-img {
    height: auto;
  }
}

/* Image */
.cus-gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover Effect */
.cus-gallery-item:hover .cus-gallery-img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

/* Overlay */
.cus-gallery-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(31, 26, 23, 0.5); */
  opacity: 0;
  transition: 0.3s;
  border-radius: 12px;
}

.cus-gallery-item:hover .cus-gallery-overlay {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .cus-gallery-item {
    width: calc(33.33% - 14px);
  }

  .page-header {
    background-size: cover !important;
    padding: 90px 0;
  }
}

@media (max-width: 768px) {
  .cus-gallery-item {
    width: calc(50% - 10px);
  }

  .cus-gallery-img {
    height: 300px;
  }

  .page-header {
    background-size: cover !important;
    padding: 45px 0;
  }
}

@media (max-width: 480px) {
  .cus-gallery-item {
    width: 100%;
  }

  .cus-gallery-img {
    height: 300px;
  }
}

/*  team */

/* Container section */
.chr-leadership-section {
  background-color: #efefef;
  color: #ffffff;
  overflow: hidden;
  position: relative;
  display: flex;
}

/* Left Content Column */
.chr-content-box {
  flex: 0 0 45%;
  z-index: 5;
}

.chr-label {
  color: #b31d1d;
  letter-spacing: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.chr-red-line {
  width: 50px;
  height: 5px;
  background-color: #b31d1d;
  margin: 25px 0;
}

.chr-tagline {
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 50px;
}

/* Red Profile Info Box */
.chr-profile-badge {
  background-color: #b31d1d;
  padding: 35px 45px;
  width: fit-content;
  position: relative;
  z-index: 10;
}

.chr-name {
  font-size: 2rem;
  margin: 0;
  color: #ffffff
}

.chr-designation {
  font-size: 0.95rem;
  margin: 8px 0;
  font-weight: 300;
}

.chr-small-line {
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin: 20px 0;
}

.chr-mission {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

/* Right Side Image */
.chr-image-box {
  flex: 0 0 55%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-self: flex-end;
}

.chr-image-box img {
  /* height: 550px; */
  width: auto;
  display: block;
  filter: contrast(1.1);
  position: relative;
  z-index: 1;
  object-fit: cover;
  min-height: 600px;
}

/* Responsive adjustment */
@media (max-width: 991px) {
  .chr-profile-badge {
    margin-right: 0;
    width: 100%;
  }

  .chr-image-box img {
    height: 550px;
    object-fit: cover;
    object-position: 73%;
  }

  .projects-wrapper {
    gap: 10px;
  }

  .footer-link-list {
    gap: 18px;
    justify-content: unset;
  }


  #sustainability-section .sus-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }


}


/* team */

.main-footer.bg-section {
  max-width: unset;
  margin: 0 auto;
}