* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #f5f7fa;
}
h2, .equip-meta h1{font-size:30px !important}
@media (max-width:768px){
h2, .equip-meta h1{font-size:25px !important}
.tab, .pc-tab{width:100%}
/* menu link */
.nav ul li a{
    display:block;
    transition: background 0.2s ease;
}

/* background when touched/clicked */
.nav ul li a:active{
    background:#e6eefc;
}

/* highlight current page */
.nav ul li.current-menu-item a{
    background:#eeeeee !important;
    color:#000;
}

}
.eq-arrows button, .pc-arrows button{font-size:15px !important}
/* ================= HEADER ================= */
.site-header {
  position: fixed;
  top: 20px;
  width: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  pointer-events: auto;
}

.header-inner {
  background: #fff;
  width: 88%;
  max-width: 100%;
  padding: 14px 28px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
}

.logo img {
  width: 200px;
}

.nav > ul {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}

.nav a::after {
  content: '';
  width: 0;
  height: 2px;
  background: #1e6cff;
  position: absolute;
  bottom: -6px;
  left: 0;
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.btn-primary {
  background: #1e6cff;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30,108,255,0.35);
}

/* Hamburger */
.menu-toggle {
  display: none;
}

/* ================= DROPDOWN MENU ================= */
.nav > ul > li {
  position: relative;
}

.nav .arrow {
  font-size: 16px !important;
  margin-left: 4px;
}

.sub-menu {
  position: absolute;
  top: 130%;
  left: -100% !important;
  background: #fff;
  min-width: 200px;
  border-radius: 14px;
  padding: 10px 0;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
  z-index: 9999;
}

.sub-menu li {
  list-style: none;
}

.sub-menu a {
  display: block;
  padding: 10px 18px;
  white-space: nowrap;
}

.sub-menu a:hover {
  background: #f2f6ff;
  color: #1e6cff;
}

@media (min-width: 769px) {
  .has-sub:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ================= HERO SLIDER ================= */
 .hero-slider {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* SLIDES CONTAINER */
.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

/* EACH SLIDE */
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  overflow: hidden;
}

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

/* ✅ FEATURED IMAGE AS BACKGROUND */
.slide img,
.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;        /* background-size: cover */
  object-position: center;  /* background-position */
  z-index: 1;
}

/* OVERLAY ABOVE IMAGE */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.2)
  );
  z-index: 2;
}

/* CONTENT ON TOP */
/*.slide.active .content {
  transform: translateY(-50%);
  opacity: 1;
} */


.content {
  position: absolute;     /* IMPORTANT */
  top: 55%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 600px;
  z-index: 3;
  animation: slideUp 1s ease forwards;
}

.content h1 {
  font-size: 45px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

/* BUTTON */
.btn-secondary {
  display: inline-block;
  padding: 12px 26px;
  background: #fff;
  color: #1e6cff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-secondary:hover {
  background: #eaf1ff;
  transform: translateX(6px);
}

/* SLIDER ARROWS */
.slider-nav {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 10;
}

.slider-nav button {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  font-size: 22px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.8);
  background: transparent;
  color: #fff;
  transition: all 0.3s ease;
}

.slider-nav button:first-child {
  background: #fff;
  color: #1e6cff;
  border: none;
}

.slider-nav button:hover {
  background: #1e6cff;
  color: #fff;
  border-color: #1e6cff;
}

/* ================= EQUIPMENT SECTION ================= */
.equipment-section {
  padding: 40px 6%;
  background: #1e6cff08;
  overflow: hidden;
}

.equipment-section h2 {
  text-align: left;
  font-size: 30px;
  font-weight:500;
  margin-bottom: 20px;
}

.equipment-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tab {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-weight: 500;
}

.tab.active {
  background: #1e6cff;
  color: #fff;
  border-color: #1e6cff;
}

.eq-arrows {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

.eq-arrows button {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #1e6cff;
  background: transparent;
  color: #1e6cff;
  cursor: pointer;
  font-size: 18px;
}

.eq-arrows button:hover {
  background: #1e6cff;
  color: #fff;
}

.equipment-slider {
  overflow: hidden;
}
.equipment-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
}

.equipment-card{
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: calc((100% - 72px) / 4);
  height: 500px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s ease;
}


.equipment-card.show {
  transform: translateY(0);
  opacity: 1;
  background:white;
}

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

/*.equipment-card::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background: linear-gradient(to top, rgba(0,0,0,.35), transparent);*/
/*}*/

.equipment-card h3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  z-index: 2;
}

.count {
display:none !important;
  position: absolute;
  top: 18px;
  left: 18px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  z-index: 2;
}

/* ================= ABOUT SECTION ================= */
.about-cdhorizon {
  background: #f5f7fa;
  padding: 40px 6%;
}

.about-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image,
.about-content {
  transform: translateY(40px);
  opacity: 0;
  transition: all 1s ease;
}

.about-cdhorizon.show .about-image,
.about-cdhorizon.show .about-content {
  transform: translateY(0);
  opacity: 1;
}

.about-image {
  border-radius: 22px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 550px;
}

.about-cdhorizon h2 {
  text-align: left;
 font-size: 30px;
  font-weight:500;
  margin-bottom: 20px;
  color: #000;
}

.about-content h3 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 24px;
}

.about-content h3 span {
  color: #1e6cff;
  font-weight: 600;
}

.about-content p {
  font-size: 16px;
  color: #555;
  line-height: 24px;
  margin-bottom: 18px;
  font-weight: 300;
}

 .about-stats {
  display: flex;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: nowrap; /* keep in one line */
  overflow: visible; /* allow hover content to show */
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center; /* center content horizontally */
  text-align: center;  /* center multi-line text */
  transition: transform 0.3s ease; /* smooth hover effect */
  padding: 5px 0; /* optional spacing */
}

.stat-box:hover {
  transform: translateY(-5px); /* subtle lift on hover */
}

.stat-box h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

.stat-box span {
  line-height: 1.4;
}

@media (max-width: 768px) {
  .about-stats {
    flex-wrap: wrap; /* wrap on mobile */
    justify-content: center;
  }
}


/* ================= MOBILE ================= */
@media (max-width: 1024px) {

.equipment-card{
  flex:0 0 calc((100% - 24px) / 2);
  min-width:calc((100% - 24px) / 2);
}


  .about-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .btn-primary {
    display: none;
  }

  .header-inner {
    width: 94%;
    padding: 10px 18px;
  }

  .logo img {
    width: 140px;
  }

  .menu-toggle {
    display: flex;
    width: 28px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .menu-toggle span {
    height: 3px;
    background: #111;
    border-radius: 3px;
    transition: 0.4s;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }

  .nav {
    position: absolute;
    top: 85px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: 90%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    padding: 20px 0;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
    z-index: 9999;
  }

  .nav.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .nav > ul > li {
    width: 100%;
    text-align: center;
  }

  .has-sub > a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }

  .sub-menu {
    position: static;
    box-shadow: none;
    padding: 8px 0 0;
    display: none;
  }

  .has-sub.open > .sub-menu {
    display: block;
  }

  /* slider arrows bottom */
  .slider-nav {
    right: 50%;
    top: auto;
    bottom: 30px;
    transform: translateX(50%);
    flex-direction: row;
    gap: 16px;
  }

  .slider-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
  }

  .content h1 {
    font-size: 25px;
  }
  /* ===== Equipment slider: 1 column on mobile ===== */
  .equipment-slider {
    overflow: hidden;
  }

  .equipment-track {
    gap: 16px;
  }

  .equipment-card {
    flex: 0 0 100%;   /* VERY IMPORTANT */
    min-width: 100%; /* FULL WIDTH */
    height: 470px;
  }

  
}
/*
.equipment-card {
  min-width: 32%;
  height: 500px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s ease;
}

*/

.equipment-card.show {
  transform: translateY(0);
  opacity: 1;
}

.equipment-card a.equipment-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

.equipment-card a.equipment-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.equipment-card a.equipment-link:hover img {
  transform: scale(1.05);
}

.equipment-card a.equipment-link::after {
  content: "";
  position: absolute;
  inset: 0;
 /* background: linear-gradient(to top, rgba(0,0,0,.55), transparent); */
}

.equipment-card a.equipment-link h3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  margin: 0;
  z-index: 2;
  font-size: 18px;
  font-weight: 600;
  color: #000;
 /* padding:5px 20px;
  border-radius:16px;
  background:black; */
}

.equipment-card a.equipment-link .arrow-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
 background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.equipment-card a.equipment-link:hover .arrow-icon {
  background: #1e6cff;
  transform: translateX(3px);
}



/* ............................ contact form....................... */
 
 
 /* ================= FAQ + CONTACT SECTION ================= */

.faq-contact-section {
    background: #eef2f8;
    padding: 80px 20px;
}

.faq-contact-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: stretch;
}

/* FORCE 50% / 50% */
.faq-column,
.contact-column {
    width: 50%;
}

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

.faq-column {
    padding-right: 50px;
}

.faq-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
}

.faq-accordion {
    border-top: 1px solid #dcdcdc;
}

.faq-item {
    border-bottom: 1px solid #dcdcdc;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 40px 18px 0;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    position: relative;
}

.faq-icon {
    position: absolute;
    right: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: #000;
    transition: 0.3s;
}

.faq-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 0 18px 0;
    margin: 0;
    font-size: 14px;
    color: #444;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* ================= CONTACT COLUMN ================= */

.contact-column {
    background: #1565f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
 
    border-radius:20px;
    overflow: hidden;
}

/* LEFT NOTCH */
.contact-column::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 50px;
    bottom: 190px;
    width: 32px;
    background: #eef2f8;
    clip-path: polygon(0 0, 100% 8%, 100% 92%, 0 100%);
    z-index: 1;
}

/* FORM WRAPPER */
.contact-form-wrapper {
    
  /* padding: 60px; */
    border-radius: 18px;
    width: 100%;
    max-width: 480px;
    position: relative;
    z-index: 2;
}

/* Contact title */
.contact-form-wrapper h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Hide CF7 labels */
.contact-form-wrapper label {
    font-size: 0;
    display: block;
}

/* Inputs */
.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 10px 14px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    margin-bottom: 14px;
    outline: none;
}

/* Textarea height */
.contact-form-wrapper textarea {
    min-height: 100px;
    resize: none;
    height: 100px;
}

/* Placeholder color */
.contact-form-wrapper ::placeholder {
    color: #4a4a4a;
    opacity: 1;
}

/* Submit button */
.contact-form-wrapper input[type="submit"] {
    width: 100%;
    background: #ffffff;
    color: #1565f5;
    font-size: 15px;
    font-weight: 600;
    padding: 12px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}

/* Remove CF7 spacing */
.wpcf7-form p {
    margin: 0;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
    .faq-contact-inner {
        flex-direction: column;
    }

    .faq-column,
    .contact-column {
        width: 100%;
        padding: 20px;
    }

    .faq-column {
        padding-right: 0;
    }

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

    .contact-column::before {
        display: none;
    }
}

 .hidden-fields-container{visibility:hidden}
 
 @media (max-width: 768px) {
 
    .nav {
        overflow: visible; /* 🔥 THIS is missing */
    }
}


 
 
 /* PRODUCT LISTING AND DETIAL PAGE */
 
 /* ================= PRODUCTS LISTING PAGE ================= */

.equipment-listing .equipment-grid-wrap {
  display: none;
}

.equipment-listing .equipment-grid-wrap.active {
  display: block;
}

.equipment-listing .equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Reuse existing card design */
.equipment-listing .equipment-card {
  min-width: auto;
  height: 420px;
  transform: none;
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
.equipment-card a.equipment-link img{padding-bottom:20px !important}
.equipment-card a.equipment-link h3{
  position:absolute;
  bottom:20px;
  left:0;
  width:100%;
  text-align:center;
}
  .equipment-listing .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .equipment-listing .equipment-grid {
    grid-template-columns: 1fr;
  }
}


/* inner page banners */

/* ================= INNER BANNER ================= */

.inner-banner {
  position: relative;
  width: 100%;
  min-height: 520px;
  padding-top: 140px; /* for fixed header */
  background: linear-gradient(135deg, #0d3fd6, #0b2fa3);
  color: #fff;
  overflow: hidden;
}

.inner-banner-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.inner-banner-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 18px;
}

.inner-banner-text p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
  opacity: 0.95;
}

.inner-banner-image {
  position: relative;
}

.inner-banner-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
  object-fit: cover;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .inner-banner-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .inner-banner-text p {
    margin: 0 auto;
  }
}


/* ================= INNER BANNER ================= */

.inner-banner {
  position: relative;
  width: 100%;
  min-height: 520px;
  padding-top: 140px; /* space for fixed header */
  background: linear-gradient(135deg, #0d3fd6, #0b2fa3);
  overflow: hidden;
  color: #fff;
}

.inner-banner-container {
  max-width: 100%;
  margin: 0 6%;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* ================= TEXT ================= */

.inner-banner-content {
  max-width: 520px;
}

.inner-eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 10px;
}

.inner-banner-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 18px;
}

.inner-banner-content p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
}

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

.inner-banner-media {
  flex-shrink: 0;
  width: 460px;
  max-width: 100%;
}

.inner-banner-media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .inner-banner-container {
    flex-direction: column;
    text-align: center;
  }

  .inner-banner-content {
    max-width: 100%;
  }

  .inner-banner-media {
    width: 100%;
    max-width: 520px;
  }
}

@media (max-width: 600px) {
  .inner-banner-content h1 {
    font-size: 36px;
  }

  .inner-banner {
    padding-top: 120px;
  }
}




/* animation of inner page banners  */
/* =====================================
   INNER BANNER – MICRO DOT TEXTURE
===================================== */

.inner-banner {
  position: relative;
  width: 100%;
  padding-top: 140px;
  overflow: hidden;

  background:
    /* micro white noise dots */
    repeating-radial-gradient(
      circle at 0 0,
      rgba(255,255,255,0.09) 0,
      rgba(255,255,255,0.09) 1px,
      transparent 1px,
      transparent 6px
    ),

    repeating-radial-gradient(
      circle at 50% 50%,
      rgba(255,255,255,0.03) 0,
      rgba(255,255,255,0.03) 1px,
      transparent 1px,
      transparent 7px
    ),

    repeating-radial-gradient(
      circle at 100% 0,
      rgba(255,255,255,0.025) 0,
      rgba(255,255,255,0.025) 1px,
      transparent 1px,
      transparent 8px
    ),

    /* soft light bloom */
    radial-gradient(
      900px 600px at -10% -20%,
      rgba(255,255,255,0.15),
      transparent 60%
    ),

    /* brand gradient */
    linear-gradient(
      135deg,
      #0d3fd6 0%,
      #0b2fa3 100%
    );
}




/* ---------- Digital section css ................. */
  /* ================================
   DIGITAL SYSTEMS SECTION
================================ */

.cdi-digital-section {
  position: relative;
  min-height: 650px;
  padding: 90px 6%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  margin-bottom: 20px;
}

/* BLACK TRANSPARENT LAYER (IMAGE → TEXT BUFFER) */
.cdi-digital-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

/* BLUE TINT OVERLAY */
.cdi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6, 20, 60, 0.65),
    rgba(6, 20, 60, 0.55)
  );
  z-index: 1;
}

/* CONTAINER */
.cdi-container {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT CONTENT */
.cdi-left {
  max-width: 620px;
}

.cdi-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 24px;
}

.cdi-title span {
  color: #1e7bff;
}

.cdi-desc {
  color: #e6ecff;
  font-size: 16px;
  line-height: 1.75;
}

/* RIGHT GRID */
.cdi-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* BOX – CLEAN (NO BG / NO BORDER) */
.cdi-box {
  padding: 38px 28px;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 16px;

  border: 3px solid rgba(255, 255, 255, 0.85);
}

/* HOVER ONLY */
.cdi-box:hover {
 transform: scale(1.05);
  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
}

/* ICON */
.cdi-icon {
  margin-bottom: 18px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cdi-icon img {
  width: 46px;
  height: auto;
}

.cdi-icon i {
  font-size: 56px;
  color: #ffffff;
}

/* TITLE */
.cdi-box h3 {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .cdi-digital-section {
    padding: 60px 5%;
  }

  .cdi-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cdi-left {
    text-align: center;
    margin: 0 auto;
  }

  .cdi-desc {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .cdi-title {
    font-size: 30px;
  }

  .cdi-right {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .cdi-title {
    font-size: 26px;
  }

  .cdi-desc {
    font-size: 15px;
  }
}






/* ABOUT PAGE  ------------------------------ */

 /* ================= ABOUT GRADIENT SECTION ================= */
 

.about-section {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  background: linear-gradient(135deg, #0d3fd6, #0b2fa3) !important;

  /* MATCH GLOBAL SECTION SPACING */
  padding-top: 60px !important;
  padding-bottom: 60px !important;
  padding-left: 6% !important;
  padding-right: 6% !important;

  overflow: visible !important;
  z-index: 1;
}

/* CONTAINER */
.about-container {
  max-width: 100% !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 40px !important;
  width: 100% !important;
}

/* CONTENT */
.about-content {
  width: 50% !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.about-content h1,
.about-content p {
  color: #ffffff !important;
}

/* IMAGE COLUMN */
.about-image {
  width: 50% !important;
  visibility: visible !important;
  opacity: 1 !important;
  overflow:hidden;
}

/* IMAGE */
.about-image img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin-top: 30px !important;
  margin-bottom: 30px !important;
  margin-left: auto !important;
  border-radius: 12px;
}
 
/* ================= TABLET & MOBILE ================= */
@media (max-width: 1024px) {

  .about-container {
    flex-direction: column !important;
  }

  .about-content,
  .about-image {
    width: 100% !important;
  }

  /* Vertical spacing fix */
  .about-content h1 {
    margin-top: 40px !important;
    margin-bottom: 12px !important;
  }

  .about-content p {
    margin-bottom: 10px !important;
  }

  .about-image img {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

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

  .about-content h1 {
    margin-top: 48px !important;
    margin-bottom: 10px !important;
  }

  .about-content p {
    margin-bottom: 6px !important;
  }

  .about-image img {
    width: 100% !important;
    max-width: 100% !important;
  
    margin-bottom: 20px !important;
  }
}
.stats-section {
  padding: 40px 6%;
  background: #f9fbfd;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.stat-box {
  background: #fff;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
  border-radius: 14px;
  padding: 30px 40px;
  text-align: center;
  flex: 1 1 200px; /* responsive width with min 200px */
  min-width: 180px;
  transition: transform 0.3s ease;
  cursor: default;
}

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.15);
}

.stat-box h3 {
 
  color: #0d3fd6; /* bright blue */
  margin-bottom: 8px;
}

.stat-box span {
 
  color: #555;
  display: block;
  font-weight: 400;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .stats-container {
    gap: 20px;
    justify-content: center;
  }
  
  .stat-box {
    flex: 1 1 45%;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .stat-box {
    flex: 1 1 100%;
  }
}

.stats-section {
  padding: 40px 6%;
  background: #f9fbfd;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.stat-box {
  background: #fff;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
  border-radius: 14px;
  padding: 30px 40px;
  text-align: center;
  flex: 1 1 200px; /* responsive width with min 200px */
  min-width: 180px;
  transition: transform 0.3s ease;
  cursor: default;
}

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.15);
}

.stat-box h3 {
 
  color: #0d3fd6; /* bright blue */
  margin-bottom: 8px;
}

.stat-box span {
 
  color: #555;
  display: block;
  font-weight: 400;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .stats-container {
    gap: 20px;
    justify-content: center;
  }
  
  .stat-box {
    flex: 1 1 45%;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .stat-box {
    flex: 1 1 100%;
  }
}




 /* ================= WHO WE ARE / WHAT DRIVES US ================= */

.who-drives-section {
  padding: 80px 6%;
  background: linear-gradient(
    135deg,
    #f5f8ff 0%,
    #eef3ff 35%,
    #ffffff 100%
  );
}

.who-drives-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch; /* Equal height columns */
}

/* Columns */
.who-column {
  display: flex;
  flex-direction: column;
}

/* Left column */
.who-left p {
  max-width: 560px;
}

/* Image */
.who-image-wrap {
  margin-top: auto;
}

.who-image-wrap img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Right column */
.who-right {
  gap: 24px;
}

/* Cards */
.drive-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #0d3fd6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .who-drives-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .who-image-wrap {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .who-drives-section {
    padding: 60px 6%;
    
  }

  .drive-card {
    padding: 22px;
  }
}





/* ================= INTELLIGENT SYSTEMS ================= */

.intelligent-section {
  padding: 90px 6%;
  background: linear-gradient(180deg, #0b1426, #0a1220);
}

.intelligent-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.intelligent-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.intelligent-header h2,
.intelligent-header p {
  color: #ffffff;
}

.intelligent-header p {
  opacity: 0.85;
}

/* Cards wrapper */
.intelligent-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.intelligent-card {
  background: #1a253d;
  border-radius: 16px;
  padding: 28px 30px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intelligent-card h3 {
  color: #4da3ff;
  margin-bottom: 10px;
}

.intelligent-card p {
  color: #cfd6e6;
}

/* Hover (subtle, premium) */
.intelligent-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .intelligent-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .intelligent-cards {
    grid-template-columns: 1fr;
  }

  .intelligent-header {
    margin-bottom: 40px;
  }
}


/* ================= OUR JOURNEY ================= */

.journey-section {
  padding: 80px 6%;
  background: #ffffff;
}

.journey-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.journey-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.journey-subtitle {
  opacity: 0.7;
  margin-bottom: 30px;
}

/* Timeline */
.journey-timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.timeline-year {
  color: #0d3fd6;
  white-space: nowrap;
}

/* RIGHT */
.journey-image-wrap {
  position: relative;
}

.journey-image-wrap img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
  object-fit: cover;
}

/* Badge */
.journey-badge {
  position: absolute;
  left: -24px;
  bottom: 24px;
  background: linear-gradient(135deg, #0d3fd6, #0b2fa3);
  color: #ffffff;
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .journey-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .journey-badge {
    left: 16px;
  }
}

@media (max-width: 640px) {
  .journey-section {
    padding: 60px 6%;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
/* ================= CTA SECTION ================= */

.cta-section {
  background: linear-gradient(135deg, #1f4fe0 0%, #1b3fbf 100%);
  padding: 48px 24px;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ================= TEXT ================= */

.cta-container h2 {
  color: #ffffff;
  margin: 0;
  animation: fadeSlideLeft 0.9s ease-out forwards;
}

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

.cta-button {
  background: #ffffff;
  color: #1f4fe0;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  animation: fadeSlideRight 0.9s ease-out forwards;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  background: #f2f6ff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }
}

/* ================= ANIMATIONS ================= */

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

@keyframes fadeSlideRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ================= INTERACTION ANIMATIONS ================= */

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Directional variants */
[data-animate="fade-left"] {
  transform: translateX(-40px);
}

[data-animate="fade-right"] {
  transform: translateX(40px);
}

[data-animate="scale-in"] {
  transform: scale(0.92);
}

[data-animate="scale-in"].in-view {
  transform: scale(1);
}

/* Stagger support */
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
/* Vertically center Vision & Mission column */
.who-column.who-right {
  justify-content: center;
}
/* === JOURNEY TIMELINE OVERRIDE (FINAL FIX) === */

.journey-section .timeline-item {
  align-items: flex-start !important;   /* Top align year & text */
  gap: 36px !important;                 /* More space between year & text */
  text-align: left !important;
}

.journey-section .timeline-year {
  min-width: 160px !important;          /* Fixed year column */
  font-weight: 700;
  color: #0d3fd6;
  line-height: 1.6;
  text-align: left !important;
}

.journey-section .timeline-item p {
  margin: 0 !important;
  line-height: 1.75;
  color: #111;
  flex: 1;
  text-align: left !important;
}

/* Mobile fix */
@media (max-width: 640px) {
  .journey-section .timeline-item {
    flex-direction: column;
    gap: 8px !important;
  }

  .journey-section .timeline-year {
    min-width: auto !important;
  }
}
/* ================= ABOUT SECTION ================= */

.cd-about-section {
  background-color: #eef2f8;
  padding: 90px 6%;
}

.cd-about-wrap {
 
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 60px;
  align-items: center;
}


/* ================= TEXT : 7 COLUMNS ================= */

.cd-about-text-7 {
  grid-column: span 7;
}

.cd-about-title {
  font-size: 38px !important;
  padding-bottom:20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 22px;
}

.cd-about-content {
  font-size: 16px;
  line-height: 1.8;
  color: #1f2937;
}

.cd-about-content p {
  margin-bottom: 18px;
}


/* ================= IMAGE : 5 COLUMNS ================= */

.cd-about-image-5 {
  grid-column: span 5;
  border-radius: 20px;
  overflow: hidden;
}

.cd-about-image-5 img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .cd-about-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cd-about-text-7,
  .cd-about-image-5 {
    grid-column: span 12;
    text-align: center;
  }

 
}

@media (max-width: 480px) {
  .cd-about-section {
    padding: 60px 5%;
  }

  .cd-about-title {
  
  }

  .cd-about-content {
  
  }
}

#hmcnt p {
  color: black !important;
}


@media (min-width: 1440px) {
  .equipment-card {
    flex: 0 0 calc((100% - 72px) / 4) !important;
    min-width: calc((100% - 72px) / 4) !important;
    height: 500px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300 !important;
}

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

.slides .slide.active{
  opacity:1;
  z-index:2;
}


/* FORCE SUBMENU VISIBILITY (MOBILE FIX) */
@media(max-width:768px){

  .nav .sub-menu {
      background: #fff !important;
  }

  .nav .sub-menu li a {
      color: #000 !important;
      opacity: 1 !important;
      visibility: visible !important;
  }

  /* ALSO FIX PARENT ITEM (Products) */
  .nav li.menu-item-has-children > a {
      color: #000 !important;
  }
  
  

}