.hero-section-website {
    /* background: linear-gradient(135deg, #ff4500, #ff8c00, #40e0d0); */
    /* background-color: #007bff; */
    /* background: url("/static/images/website_background.svg") no-repeat center center/cover; */
    /* height: 80vh; */
    /* margin: 0px -8px 0px -8px; */
    /* padding: 37px; */
    /* margin-bottom: 16px; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

}


.hero-overlay {
    /* background: linear-gradient(135deg, #ff4500, #ff8c00, #40e0d0); */
    /* background: rgba(10, 25, 47, 0.9); */
    padding: 10px 50px 40px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
    /* max-width: 850px; */
}

.-hero-overlay h1 {
    font-size: 38px;
    margin-bottom: 12px;
    color: #ffffff; /* Turquoise Heading */
}
.hero-overlay h2 {
    font-size: 26px;
    /* margin-top: 10px;
    margin-bottom: 15px; */
    color: #ffeb3b; /* Yellow Heading */
    text-transform: uppercase;
    font-weight: bold;
}


.hero-overlay p {
    font-size: 20px;
    margin-bottom: 25px;
    color: #ffffff;
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}


.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #007bff, #32cd32); /* Blue → Green */
    padding: 16px;
    border-radius: 12px;
    width: 190px;
    transition: 0.4s;
    color: #ffffff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
a {
  text-decoration: none;
}
.feature-item:hover {
    background: linear-gradient(135deg, #ff8c00, #ff4500); /* Orange → Red on Hover */
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(255, 69, 0, 0.5);
}

.feature-item i {
    font-size: 42px;
    margin-bottom: 10px;
    color: #ffffff; /* Bright Yellow Icon */
}

.feature-item span {
    font-size: 17px;
    font-weight: bold;
}
/* General Styles */
.home-container {
  text-align: center;
  font-family: 'Arial', sans-serif;
  color: #333;
  /* margin-top: 106px; */
  width: 100%;
 
  /* display: flex; */
}
.slider-container img {
    width: 100%;
    height: auto;
}



.our-services {
  padding: 5px 0px 32px;
  text-align: center;
  background: #f9f9f9;
}

.services-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #02a79cd9, #167681, #07a192);

  /* Pehle standard property */
  background-clip: text;

  /* Vendor prefix for Webkit (Chrome, Safari, Edge old versions) */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.services-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 30px 20px;
  width: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.service-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  color: #167681;
  margin: 0;
}

.why-backtoprocess {
  padding: 70px 20px;
  background: #f4fdfd;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #02a79cd9, #167681, #07a192);
    /* Pehle standard property */
  background-clip: text;
  /* Webkit based browsers (Chrome, Safari, Edge old versions) */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.point-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.point-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.point-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.point-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #167681;
}

.point-card p {
  font-size: 15px;
  color: #444;
}

@media (max-width: 520px) {
  .hero-overlay h2 {
    font-size: 22px;
  }

}