.hero-section {
  position: relative;
  background: url('../img/banner1.png') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding-left: 0px;
  padding-top: 20%;
  }

.hero-container {
  color: #fff;
  max-width: 600px;
  padding-right: 30px;
}

.hero-content h1 {
  font-size: 2.8rem;
    color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
    position: relative;
 display: inline-block;
}

.hero-content h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 14rem; /* Control underline length */
  height: 5px;
  background-color: #EC5D24;
}
.hero-content p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 30px;
}



/* Buttons */

/* EVERY STAGE CSS */
.stage-section {
  background-color: #521e10; /* Deep brown */
  color: #fff;
  padding: 100px 20px;
  font-family: Arial, sans-serif;
}

.stage-section .container {
  max-width: 1200px;
  margin: auto;
}

.stage-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
}

.stage-header h2 {
  font-size: 3rem;
  font-weight: 700;
  flex: 1 1 300px;
  color: white;
  line-height: 130%;
}

.stage-header .highlight {
  color: #ec5d24;
}

.stage-header p {
  flex: 1 1 300px;
  line-height: 1.6;
  color: #ddd;
  font-size: 1rem;
}

.stage-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.card-box p{
  font-size: 1rem;
  color: rgba(74, 63, 62, 1);
}
.card-box h3{
  color: rgba(81, 37, 32, 1);
  font-size: 1.5rem !important ; 
  margin-bottom: 15px;
}
.card-box {
  background-color: #fff;
  color: #333;
  padding: 25px 20px;
  flex: 1 1 30%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  /* border-top: 6px solid #ec5d24; */
  transition: transform 0.3s ease;
}

.card-box:hover {
  transform: translateY(-5px);
}

.icon-box {
  width: 50px;
  height: 50px;
  background-color: #ec5d24;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -20px;
  left: 20px;
  border-radius: 0px;
  padding: 12px;
}

.card-box h3 {
  margin-top: 30px;
  font-size: 1.25rem;
  font-weight: bold;
}

.card-box small {
  display: block;
  font-size: 0.75rem;
  color: #ec5d24;
  margin-bottom: 10px;
}

.card-box p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(74, 63, 62, 1);
;
}

@media screen and (max-width: 991px) {
  .stage-header {
    flex-direction: column;
  }
  .stage-cards {
    flex-direction: column;
  }
  .card-box {
    flex: 1 1 100%;
  }
}

/* engineering-section */

.engineering-section {
  width: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.container-custom {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

.left-column {
  flex: 1 1 50%;
  min-height: 400px;
}

.left-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.right-column {
  flex: 1 1 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 40px 20px;
}

.bg-boxes {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.white-box {
  flex: 1;
  background: rgba(252, 252, 250, 1);
}

.dark-box {
  flex: 1;
  background: rgba(31, 49, 56, 1);
}

.overlay-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  background: transparent;
  padding: 30px;
  background-color: white;
  left: -250px;
}

.overlay-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #111;
}

.overlay-content .highlight {
  color: #ec5d24;
}

.overlay-content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
}
.overlay-content h3 , .overlay-content h4 , .overlay-content h5 {
   color: rgba(81, 37, 32, 1) !important;
}
.overlay-content ul {
  padding-left: 20px;
  margin-bottom: 1.5rem;
  color: rgba(81, 37, 32, 1) !important;
}

.overlay-content ul li {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}


/* Responsive */
@media screen and (max-width: 768px) {
  .container-custom {
    flex-direction: column;
  }

  .left-column,
  .right-column {
    flex: 1 1 100%;
    min-height: auto;
    margin-top: 15px;
  }

  .bg-boxes {
    flex-direction: column;
  }

  .overlay-content {
    padding: 20px;
    left: 0px;
    top:-100px
  }
}


/* === SOLUTIONS SECTION (Bootstrap-compatible) === */
.solutions-section {
    max-width: 1140px; /* or 100% */
  padding: 0 80px;
  margin: auto;
  background: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
 
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2c2c2c;
  
}

.section-header .highlight {
  color: #ec5d24;
}

.section-header p {
  color: #555;
  font-size: 1rem;
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
}

.left-column,
.right-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.solution-card {
  background-size: cover;
  background-position: center;
  height: 290px;
  position: relative;
  color: white;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.solution-card.tall {
  height: 600px;
}

.overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 60%, transparent);
  padding: 20px;
  width: 100%;
}

.overlay h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
}

.overlay p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.overlay a {
  color: #ec5d24;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.9rem;
}

.overlay a i {
  margin-left: 5px;
}

.overlay a:hover {
  text-decoration: underline;
}

.solutions-button {
  text-align: center;
  margin-top: 40px;
  
}
.margin-left-40{
  margin-left: -40px;
}

.btn-orange {
  background-color: #ec5d24;
  color: white;
  padding: 12px 28px;
  font-size: 1rem;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-orange:hover {
  background-color: #c44711;
}

/* === RESPONSIVE FIX (override Bootstrap stacking on mobile) === */
@media screen and (max-width: 767px) {
  .solution-card,
  .solution-card.tall {
    height: 260px;
  }

  .overlay h3 {
    font-size: 1.1rem;
  }

  .overlay p {
    font-size: 0.85rem;
  }
.section-header h2 {
  font-size: 2.5rem;
 
  
}
.margin-left-40{
  margin-left: 0px;
}

.solutions-section {
 
  padding: 0 30px;

}
}


/* core system */
.glass-section {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 100px 20px;
  min-height: 1000px;
  display: flex;
  align-items: flex-end; /* Align to bottom */
  justify-content: flex-start; /* Align to left */
}

.glass-overlay {
  background: rgba(0, 0, 0, 0.55); /* darker black glass */
  /* border-radius: 12px; */
  padding: 40px;
  max-width: 900px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  margin: 20px; /* space from bottom-left */
}

.glass-overlay h2 {
  font-size: 2.8rem;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: bold;
  color: #eee;
}

.orange {
  color: #ec5d24;
}

.glass-overlay p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 30px;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-glass {
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.orange-btn {
  background-color: #ec5d24;
  color: #fff;
}

.orange-btn:hover {
  background-color: #c74410;
}

.white-btn {
  background-color: #fff;
  color: #ec5d24;
  border: 2px solid #ec5d24;
}

.white-btn:hover {
  background-color: #ec5d24;
  color: #fff;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .glass-overlay {
    padding: 25px;
    max-width: 100%;
    margin: 20px;
  }

  .glass-overlay h2 {
    font-size: 1.5rem;
  }

  .button-group {
    flex-direction: column;
    align-items: flex-start;
  }
}





/* Main Section Background */
.stats-slider-section {
  position: relative;
  color: white;
  background: linear-gradient(
    to bottom,
    rgb(95, 31, 21) 0%,
    rgb(122, 59, 39) 50%,
    rgba(91, 31, 21) 100%
  );
  overflow: hidden;
  padding: 80px 20px 0;
  padding-bottom: 100px;
}

/* Content Box */
.content-wrapper {
  max-width: 1200px;
  margin: auto;
  text-align: left;
  padding: 60px 20px 0;
  color: white;
}

/* Headline */
.content-wrapper h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.content-wrapper h2 .highlight {
  color: rgba(239, 121, 73, 1);
}

/* Subheading */
.content-wrapper p {
  font-size: 15px;
  color: white;
  max-width: 700px;
  margin: 0;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Stats Row */
.stats-row {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Stat Box */
.stat-box {
  flex: 1 1 250px;
  max-width: 260px;
}

/* Stat Labels */
.stat-box h4 {
  font-size: 3rem;
  color: rgba(239, 121, 73, 1);
  margin-bottom: 8px;
}

/* Stat Numbers */
.stat-box h2 {
  font-size: 6rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.stat-box h2::after {
  content: "+";
  font-size: 100px;
  margin-left: 4px;
  color: rgba(239, 121, 73, 1);
}

/* Stat Description */
.stat-box p {
  font-size: 13px;
  color: white;
  margin-top: 10px;
  line-height: 1.4;
}/* Shared styles */
.logo-slider-background {
  position: absolute;
  bottom: 3%;
  left: 0;
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.logo-row {
  display: flex;
  gap: 40px;
  white-space: nowrap;
}

.logo-row img {
  height: 50px;
  filter: grayscale(1);
  opacity: 0.5;
  flex-shrink: 0;
}

/* Animate LTR */
.scroll-ltr {
  animation: scrollLeftToRight 15s ease-in-out infinite alternate;
}

/* Animate RTL */
.scroll-rtl {
  animation: scrollRightToLeft 15s ease-in-out infinite alternate;
}

/* LTR Ping-Pong */
@keyframes scrollLeftToRight {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* RTL Ping-Pong */
@keyframes scrollRightToLeft {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}


.video-section {
  position: relative;
  height: 590px;
  max-width: 1200px;
  overflow: hidden;
  z-index: 3;
  margin: 60px auto 0; /* Centers the section horizontally */
}

.video-background {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center; /* Center video horizontally */
  align-items: center;     /* Optional: center vertically inside container */
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center;
  display: block;
 
}
@media (max-width: 767px) {
  .video-section {
    height: 320px;  /* Smaller height */
    max-width: 100%;
    margin-top: 30px;
  }

  .video-background video {
    object-fit: cover;
  }
}

/* Small Mobiles (up to 479px) */
@media (max-width: 480px) {
  .video-section {
    height: 250px;
    margin-top: 20px;
  }

  .video-background video {
    object-fit: contain;
  }
}

/* CTA Button */
.btn-glass.orange-btn {
  background-color: #f89c4e;
  color: #fff;
  padding: 14px 26px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  margin-top: 30px;
  display: inline-block;
  transition: background 0.3s;
  z-index: 3;
  position: relative;
}

.btn-glass.orange-btn:hover {
  background-color: #d76f21;
}


/* logo section */

.partner-section {
  padding: 100px 20px;
  background-color: #fdfdfd;
}

.partner-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: rgba(81, 37, 32, 1);
}

.partner-section .highlight {
  color: #f89c4e;
}

.partner-section p {
  font-size: 15px;
  color: rgba(74, 63, 62, 1);
  max-width: 700px;
  margin: 0 auto 40px;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.logo-box {
  border: 1px dashed #ddd;
  padding: 20px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-box img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
}

.cta-center {
  position: relative;
  text-align: center;
}

.cta-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  border: 3px solid white;
  background-color: #fff;
  z-index: 2;
}

.btn-orange {
  display: inline-block;
  background-color: #f89c4e;
  color: white;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.footer-section{

  background-color: rgba(34, 9, 5, 1);
}
.industries-section p{
  font-size: 1.2rem;
}
.Certified-img1{
height: 100px;
}

.nav-tabs .nav-link {
    color: #333;
    font-weight: 500;
  }

  .nav-tabs .nav-link.active {
    color: #ef7949;
   border: 0px;
    font-weight: 600;
    border-bottom: 1px solid #ef7949;
  }

  .tab-content {
    background-color: #fff;
  }