html, body {
  overflow-x: hidden;
}

.custom-turnkey-section-one {
    padding: 80px 20px 60px 20px;
    background: #fff;
}

.heading-hd h2 {
  font-size: 26px;
  font-weight: 700;
  word-wrap: break-word;
  text-align: left;
}

.heading-hd-project {
  text-align: center !important;
  font-size: 26px;
  font-weight: 700;
  font-family: 'poppins', sans-serif; 
}

@media (min-width: 768px ) and (max-width: 1024px) {
  .heading-hd h2 {
    font-size: 24px;
    text-align: center;
  }

  .custom-turnkey-section-one {
    padding: 150px 20px 60px 20px !important;
    background: #fff;
}

}


.turnkey-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}


@media (max-width: 768px) {
  .turnkey-left,
  .turnkey-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .turnkey-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .heading-hd h2 {
    text-align: center;
  }

  .turnkey-left {
    margin-bottom: 30px;
  }
}





.project-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.project-section {
  padding: 40px 0 60px 0;
  background: #f9f9f9;
  font-family: 'poppins', sans-serif;
  color: #2c3e50;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 30px;
}

.project-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.column {
  flex: 1 1 48%;
  max-width: 48%;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.4s ease;
}

.column h3 {
  font-size: 28px;
  border-bottom: 2px solid #2980b9;
  padding-bottom: 8px;
  margin-bottom: 20px;
  color: #2980b9;
}

.column ul {
  list-style: disc;
  padding-left: 20px;
}

.column ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Hover Animation */
.column:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Animate in on scroll */
.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.6s ease;
}

/* Responsive Fix */
@media (max-width: 1040px) {
  .column {
    flex: 1 1 100%;
    max-width: 100%;
  }
}