/* ============================
   HERO / JOBS SECTION
   Background image + overlay
   ============================ */

.hero-section {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 50px;

  background-image: url('/images/Untitled-design-5-1.png'); /* apna image path yahan lagao */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* Blue overlay (jo screenshot mein bg image ke upar dikh raha hai) */
.hero-overlay {
  position: absolute;
  /* inset: 0; */
  background-color: rgba(1, 1, 101, 0.55); /* #010165 ~55% opacity */
  z-index: 1;
}

/* Content wrapper — text ko image/overlay ke upar rakhne ke liye */
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 720px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.hero-title {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
}

.hero-text {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  padding: 30px 30px;
  margin: 0;
}

.hero-btn {
  display: inline-block;
  padding: 14px 40px;
  background-color: #ffffff;
  border: 2px solid #010165;
  color: #010165;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #010165;
  color: #ffffff;
}

.Nethpadd {
  padding-left: 40px;
}

.Space-Gap {
  width: 10% !important;
}

.footer-ul-div {
  display: flex;
  gap: 30px;
}

.footer-about-us {
  width: 100px;
}

.footer-management-team {
  width: 200px;
}

.gap-zero {
  padding-bottom: 0px !important;
}


.quick-link-footer {
  text-align: center;
}

.about-pes-padd {
  padding-top: 200px !important;
}

.about-after-map-padd {
  padding-bottom: 60px !important;
}

.services-tab-padd {
  padding-top: 80px !important;
}

.services-after-text-padd {
  margin-bottom: 80px !important;
}

.pic-text-margin {
  margin-top: -140px;
}






/* ============================
   DESKTOP ONLY: fixed background
   (Elementor bhi ye sirf min-width:1025px pe deta hai,
   kyunke background-attachment:fixed mobile pe buggy hota hai)
   ============================ */
@media (min-width: 1025px) {
  .hero-section {
    background-attachment: fixed;
  }
}

/* ============================
   TABLET (max-width: 1024px)
   ============================ */
@media (max-width: 1024px) {
  .hero-section {
    padding: 30px 40px;
  }
  .hero-title {
    font-size: 32px;
  }

  .Nethpadd {
    padding-left: 0px;
  }
}






/* ============================
   MOBILE (max-width: 767px)
   ============================ */
@media (max-width: 767px) {
  .hero-section {
    padding: 10px 10px;
    min-height: 320px;
    background-attachment: scroll; /* mobile pe fixed hata diya, taake scroll smooth rahe */
  }
  .hero-title {
    font-size: 25px;
  }
  .hero-text {
    padding: 20px 10px;
    font-size: 14px;
    line-height: 1.6;
  }
  .hero-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}
