
html, body {
  overflow-x: hidden;
}

.line-assembly-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../mecha-images/banner-Zero.webp') no-repeat center center/cover;
    /* Ensure banner-contact.webp exists or update path */
    color: #fff;
    padding: 100px 0;
    /* Removed text-align: center; from here as content is now in columns */
    display: flex; /* Use flexbox to center content vertically */
    align-items: center; /* Vertically align items in the container */
}

.line-assembly-banner .container {
    height: 100%; /* Ensure container fills banner height for centering */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.line-assembly-banner h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 3.5em;
    margin-bottom: 10px; /* Reduced margin for tighter spacing with paragraph */
    /* text-align: left is now handled by col-md-6 */
    animation: fadeInDown 1s ease-out;
}

.line-assembly-banner p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2em;
    max-width: 100%; /* Ensure text fills its column width */
    margin: 0; /* No external margins */
    /* text-align: left is now handled by col-md-6 */
    animation: fadeInUp 1s ease-out;
}



/* ========================================================================================================== */
/* %%%%%%%%%%%%%%%%%%%%%%%%&&&&&&&&&&&&&  Banner Style End ^^^^^^^^^^^^^^^^^^!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
/* ========================================================================================================== */



/* ========================================================================================================== */
/* %%%%%%%%%%%%%%%%%%%%%%%%&&&&&&&&&&&&&  First Section start ^^^^^^^^^^^^^^^^^^!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
/* ========================================================================================================== */

/* --- Section Base Styles --- */
/* --- Section Wrapper --- */
.custom-turnkey-section {
  padding: 190px 20px 60px 20px;
  background: #fff;
}

/* --- Main Flex Container --- */
.turnkey-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

/* --- Left and Right Shared Properties --- */
.turnkey-left,
.turnkey-right {
  flex: 0 0 48%;
  max-width: 48%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* --- Hover Move Up Animation for Both --- */
.turnkey-left:hover,
.turnkey-right:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* ============================= */
/* LEFT SIDE STYLING */
/* ============================= */
.turnkey-left {
  background: #215a72;
  border-radius: 30px;
  padding: 90px 40px 30px 40px;
  color: white;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* --- Circle Image --- */
.circle-frame {
  position: absolute;
  top: -115px;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s ease;
}

.dual-border {
  position: relative;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid #5eb1c5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.dual-border img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.half-border {
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 50%;
  background: transparent;
  z-index: 2;
  border-top: 6px solid white;
  border-bottom: 6px solid #5eb1c5;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  pointer-events: none;
}

/* --- Hover Animation on Circle --- */
.circle-frame:hover {
  transform: translateX(-50%) scale(1.05);
}

.circle-frame:hover .dual-border {
  box-shadow: 0 0 15px rgba(94, 177, 197, 0.6);
  transform: rotate(3deg);
}

/* --- Left Content List --- */
.left-description {
  padding-top: 100px;
  font-size: 17px;
}

.left-description ul {
  text-align: left;
  padding-left: 20px;
}

.left-description li {
  margin-bottom: 20px;
  list-style-type: disc;
}

/* ============================= */
/* RIGHT SIDE STYLING */
/* ============================= */
.turnkey-right {
  background: #f9f9f9;
  border-radius: 30px;
  padding: 40px 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}

.turnkey-right h2 {
  font-size: 26px;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 700;
}

.turnkey-right h2 span {
  color: #007BFF;
  position: relative;
}

.turnkey-right h2 span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  background: #5eb1c5;
  border-radius: 2px;
}

.turnkey-right ul {
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

.turnkey-right li {
  margin-bottom: 12px;
}

/* ============================= */
/* Scroll Animations */
/* ============================= */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================= */
/* Responsive */
/* ============================= */
@media (max-width: 768px) {
  .turnkey-wrapper {
    flex-direction: column;
    gap: 30px;
    padding: 0;
  }

  .turnkey-left,
  .turnkey-right {
    max-width: 100%;
    flex: 0 0 100%;
    margin: 0 auto;
  }

  .circle-frame {
    width: 180px;
    height: 180px;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
  }

  .dual-border {
    width: 180px;
    height: 180px;
  }

  .half-border {
    top: 8px;
    left: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border-top: 5px solid white;
    border-bottom: 5px solid #5eb1c5;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
  }

  .left-description {
    padding-top: 100px;
  }

  .custom-turnkey-section {
    padding: 50px 20px;
  }

  .turnkey-right {
    padding: 30px 20px;
    box-sizing: border-box;
  }

  .turnkey-right h2 {
    font-size: 22px;
  }

  .turnkey-right ul {
    font-size: 16px;
  }


}


@media (min-width: 767px) and  (max-width:1024px) {

  .turnkey-wrapper {
  display: flex;
  flex-wrap: wrap;
}

  .turnkey-left,
  .turnkey-right {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}


@media (max-width:500px)  {
      .custom-turnkey-section {
        padding: 125px 20px 40px 20px !important;
    }

    .custom-project-section {
    background: #f5f7fa;
    padding: 30px 20px 40px 20px !important;
}

.custom-image-gallery {
    background: #fff;
    padding: 40px 20px !important;
}
  
}


/* ========================================================================================================== */
/* %%%%%%%%%%%%%%%%%%%%%%%%&&&&&&&&&&&&&  First Section End ^^^^^^^^^^^^^^^^^^!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
/* ========================================================================================================== */



/* ========================================================================================================== */
/* %%%%%%%%%%%%%%%%%%%%%%%%&&&&&&&&&&&&&  Project section Start ^^^^^^^^^^^^^^^^^^!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
/* ========================================================================================================== */

.custom-project-section {
  background: #f5f7fa;
  padding: 40px 20px 80px 20px;
}

.project-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.project-wrapper h2 {
  font-size: 28px;
  margin-bottom: 40px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.project-wrapper h2 span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  background: #5eb1c5;
  border-radius: 2px;
}

.project-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.project-item {
  background: white;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  font-size: 18px;
  font-weight: 500;
  color: #333;
  flex: 1 1 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* Center text */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100px;
}

.project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 768px) {
  .project-item {
    font-size: 16px;
    padding: 16px 20px;
  }
}

/* ========================================================================================================== */
/* %%%%%%%%%%%%%%%%%%%%%%%%&&&&&&&&&&&&&  Project section End ^^^^^^^^^^^^^^^^^^!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
/* ========================================================================================================== */






/* ========================================================================================================== */
/* %%%%%%%%%%%%%%%%%%%%%%%%&&&&&&&&&&&&&  Image section start  ^^^^^^^^^^^^^^^^^^^!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
/* ========================================================================================================== */

.custom-image-gallery {
  background: #fff;
  padding: 80px 20px;
}

.gallery-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.gallery-wrapper h2 {
  font-size: 28px;
  margin-bottom: 40px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.gallery-wrapper h2 span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  background: #5eb1c5;
  border-radius: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(192, 221, 215, 0.08);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  background-color: #F5F7FA;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Scroll Animation */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-wrapper h2 {
    font-size: 22px;
  }
}





/* ========================================================================================================== */
/* %%%%%%%%%%%%%%%%%%%%%%%%&&&&&&&&&&&&&  Image section End  ^^^^^^^^^^^^^^^^^^^!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
/* ========================================================================================================== */









/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" */
/* RESPONSIVE CODE START */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */





@media only screen and (max-width:500px) {

  .line-assembly-banner {
    padding: 20px 0;
  }

  .line-assembly-banner h1 {
    font-size: 2.5em;
  }

  .left-description {
    padding-top: 30px;
    font-size: 15px;
  }

  .turnkey-left, .turnkey-right {
    margin: 0px;
  }

  .turnkey-right {
    padding: 10px 20px;
    box-sizing: border-box;
  }

  .project-wrapper h2 {
    font-size: 24px;
    margin-bottom: 30px;
    margin-top: 0px;
  }

  .turnkey-left {
    margin-bottom: 0px !important;
  }

  .left-description li {
    margin-bottom: 13px;
  }

  .project-section {
    padding: 10px 0 30px 0 !important;
  }

  .column.animate-in {
    padding-top: 5px;
  }

  .project-columns .column.animate-in h3 {
    font-size: 18px !important;
  }

  .project-item {
    font-size: 15px;
    min-height: 70px;
  }

  .heading-hd-project h2 {
    font-size: 24px;
  }

  .heading-hd h2 {
    font-size: 22px !important;
  }

  .gallery-grid {
    gap: 20px;
  }


}