@font-face {
  font-family: "MyCustomFont";
  src: url("./Satoshi-Variable.ttf") format("truetype");
 
}

.hero-section {
  position: relative;
  background: url("../img/banner1.jpg") 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;
  max-width: 1366px !important;
}
.container {
  max-width: 1366px !important;
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}
.container-top-0{
  max-width: 1366px !important;
  padding-top: 0px !important;
  padding-bottom: 120px !important;
  margin: auto;
}
.container-bottom-0{
  max-width: 1366px !important;
  padding-top: 120px !important;
  padding-bottom:0px !important;
  margin: auto;
}
.container-10{
    max-width: 1366px !important;
  margin: auto;
}
.container-0{
    max-width: 1366px !important;
  margin: auto;
}
.container-60{
    max-width: 1366px !important;
  padding-top: 120px !important;
  padding-bottom:60px !important;
  margin: auto;
}
.hero-content h1 {
  font-family: MyCustomFont;
  font-weight: 900;
  font-style: Black;
  font-size: 56px;
  leading-trim: NONE;
  line-height: 130%;
  letter-spacing: -2%;
  vertical-align: middle;

  /* 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: "";
  line-height: 130%;
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 16rem; /* Control underline length */
  height: 5px;
  background-color: #ec5d24;
}
.hero-content p {
  color: #fff;
  margin-bottom: 30px;
  font-family: MyCustomFont;
  font-weight: 400;
  /* font-style: Medium; */
  font-size: 20px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 3%;
  vertical-align: middle;
}
@media (max-width: 768px) {

  .hero-overlay{
    padding-top: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-container{
    max-width: 100%;
    padding-right: 0;
  }

  .hero-content h1{
    font-size: 2rem; /* 32px */
    line-height: 1.3;
  }

  .hero-content h1::after{
    width: 10rem; /* smaller underline */
    height: 4px;
    bottom: -15px;
  }

  .hero-content p{
    font-size: 1rem; /* 16px */
    line-height: 1.5;
  }

}
/* Buttons */

/* EVERY STAGE CSS */
/* EVERY STAGE CSS */

.stage-section {
  background-color: #521e10;
  color: #fff;
  /* padding: 120px 0; */
}

.stage-section .container {
  max-width: 1366px;
  margin: auto;
}

.stage-header {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 50px;
  align-items: flex-start;
  flex-wrap: nowrap; /* prevent wrapping */
}

/* Heading */
.stage-header h2 {
  width: 60%;
  font-size: 56px;
  font-weight: 700;
  line-height: 130%;
  margin: 0;
  color: white;
}

/* Paragraph */
.stage-header p {
  width: 40%;
  font-size: 16px !important;
  line-height: 150%;
  color: #EFE9E8;
  margin: 0;
  
}

@media screen and (max-width: 600px) {
 .stage-header p {
  width: 100%;  
}
.stage-header h2 {
  width: 100%;  
}
.stage-header {
   gap: 10px;
}
}
/* Heading */

/* Highlight word */
.stage-header .highlight {
  color: #EC5D24;
}

.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);
}
.stage-p{
   font-family: "Satoshi", sans-serif !important;
font-weight: 500;
font-style: Medium;
font-size: 14px;
line-height: 150%;
letter-spacing: 0%;
vertical-align: middle;
text-transform: uppercase;

}
.card-box h3{
  font-family: "Satoshi", sans-serif !important;
  font-weight: 700 !important;
  font-size: 32px !important;
  line-height: 130% !important;
  letter-spacing: -0.02em !important;
  color: rgba(81, 37, 32, 1) !important;
  margin-bottom: 15px;
}
.card-box {
  background-color: #fff;
  color: #333;
  padding: 32px 32px 32px 32px;
  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;
  /* max-height: 100dvh; */
}

.container-custom {
  display: flex;
  flex-wrap: wrap;
  /* min-height: 100vh; */
}

.left-column {
  flex: 1 1 50%;
  min-height: 400px;
  max-height: 100vh;
}

.left-column img {
  width: 100%;
  max-height: 100dvh;
  object-fit: cover;
}
.right-column {
  flex: 1 1 50%;
  position: relative;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
   min-height: 100vh;
  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);
  height: 100%;
}

.overlay-content {

  position: relative;
  z-index: 2;
  max-width: 728px;
  padding: 40px 30px 40px 40px;
  background-color: white;
  transform:translateX(-250px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.overlay-content > *:last-child{
  margin-bottom:0;
}

.overlay-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #111;
  margin-top: 0px;
  padding-top: 0%;
}

.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;
  font-size: 1rem;
}

.overlay-content ul li {
  font-size: 1rem;
  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;
  }
}

@media (max-width: 576px){

.overlay-content{
padding:25px;
margin-top:-180px;
}

.overlay-content h2{
font-size:1.7rem;
}

.overlay-content p,
.overlay-content ul li{
font-size:.95rem;
}
.right-column1{
  margin-bottom: 20px;
}

}

/* === SOLUTIONS SECTION (Bootstrap-compatible) === */
.solutions-section {
  
  padding-top: 50px;
  padding-bottom: 120px;
/* margin: auto; */
  background: #fff;

}

.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;
}
.left-column1{
  display: flex;
  flex-direction: column;
  gap: 25px !important;
}
.left-column{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.right-column{
  height:100%;
}

.solution-card{
  background-size:cover;
  background-position:center;
  height:375px;
  width:100%;
  position:relative;
  color:white;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  border-radius:0;
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
}

.tall{
  height:775px; /* 375 + 375 + 20 gap */
}

.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;
  }
  .overlay-content {

 
  transform:translateX(0px);
  
}

}

/* core system */
.glass-section {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 100px 0px;
  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: 930px;
  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;
}



/* 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;
  }
}

@media (max-width: 576px) {

  .glass-section{
    padding: 60px 15px;
    min-height: auto;
    align-items: flex-end;
  }

  .glass-overlay{
    padding: 20px;
    max-width: 100%;
    margin: 0;
  }

  .glass-overlay h2{
    font-size: 1.4rem;
    line-height: 1.4;
  }

  .glass-overlay p{
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .button-group{
    flex-direction: column;
    gap: 10px;
  }

  .btn-glass{
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    padding: 10px 14px;
  }

}

@media (max-width: 576px){

.div1{
padding:40px 20px !important;
}

.div1 h2{
font-size:28px !important;
line-height:1.3;
}

.div1 p{
font-size:14px !important;
}

}



/* 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: 120px 20px 120px;
  
}

/* Content Box */
.content-wrapper {
  max-width: 1366px;
  margin: auto;
  text-align: left;
  padding: 0px 15px 0px;
  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: 900px;
  margin: 0;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Stats Row */
.stats-row {
  display: flex;
  justify-content: flex-start;
  /* gap: 0px; */
  flex-wrap: wrap;
  /* margin-top: 30px; */
}

/* Stat Box */
.stat-box {
  flex: 1 1 250px;
  max-width: auto;
}

/* Stat Labels */
.stat-box h4 {
  font-size: 2.5rem;
  color: rgba(239, 121, 73, 1);
  margin-bottom: 8px;
}

/* Stat Numbers */
.stat-box h2 {
  font-size: 7.25rem !important;
  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: 1366px;
  overflow: hidden;
  z-index: 3;
  margin: 40px auto 0; 
  padding: 10px;
}

.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: 50px 0px; */
  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;
}
