.banner-contact {
  position: relative;
  width: 100%;
  min-height: 440px;
  background: url(../images/slider-2.webp) no-repeat center center !important;
  background-position: center center;
  background-repeat: no-repeat;
  
  display: flex;
  align-items: center;
  
  justify-content: space-between;
  
  overflow: hidden;
  background-color: #000000;

  
  
  
 

  background-size: cover !important;
  height: 300px;
  position: relative;
  z-index: 2;
  padding: 50px 80px;
  
}
.banner-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.73); /* 🔥 dark overlay */
  z-index: 1;
}
.text-box {
  text-align: center;
}
/* TEXT */
.banner-content {
  display: flex;              /* block हटाओ */
  flex-direction: column;     /* ऊपर-नीचे stack */
  justify-content: center;    /* vertical center */
  align-items: center;        /* horizontal center */
  text-align: center;
  width: 100%;
  color: #fff;
  z-index: 2;
}
.banner-content h2 {
  font-size: 75px;
  color: #ffffff;
  
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 0;
   letter-spacing: -1px;
  
}

.banner-content p {
  margin-top: 30px;
  font-size: 14px;
}

.banner-content span {
  margin: 0 10px;
}

/* IMAGE */
.banner-image {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 100%;
  background: #000; /* black background */
  padding: 0 20px;
}

.banner-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* RESPONSIVE */
/* TABLET */
@media (max-width: 992px) {
  .banner-contact {
    padding: 40px;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center */
    text-align: center;
  }

  .banner-content h2 {
    font-size: 48px;
  }
.banner-content p {
  font-size: 22px;
}
  .banner-image {
    max-width: 350px;
  }
}


/* MOBILE */
@media (max-width: 768px) {
  .banner-contact {
    flex-direction: column;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center */
    text-align: center;
    padding: 30px 20px;
  }

  .banner-content h2 {
    font-size: 42px;
  }

  .banner-image {
    position: relative;
    max-width: 100%;
    margin-top: 30px;
  }
}


/* SMALL MOBILE */
@media (max-width: 480px) {
  .banner-contact {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .banner-content h2 {
    font-size: 40px;
  }

  .banner-content p {
    font-size: 16px;
  }
}
.about-right {
 background: none;
 border: 1px solid #000;

  padding: 40px;
  border-radius: 10px;
  text-align: center;
}

.about-btn{
  margin-top: 30px;
}

.main-div{
  background-color: #fff;
}


.values-section {
  background: #dcdcdf;
  padding: 60px 0;
}

.container {
  width: 90%;
  margin: auto;
}

.title {
  text-align: center;
  margin-bottom: 40px;
}

.title span {
  color: #38c0c7;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 32px;
}

.title h2 {
  font-size: 36px;
  margin-top: 10px;
}

/* GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 🔥 3 cards per row */
  gap: 25px;
  width: 90%;
  margin: 0 auto;
}

/* CARD */
.card {
  background: #fff;
  padding: 30px;
  position: relative;
  min-height: 220px;
}

/* ICON */
.icon {
  width: 50px;
  height: 50px;
  background: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38c0c7;
  font-size: 20px;
  margin-bottom: 70px;
}

/* TEXT */
.card h3 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 500;
}

.card p {
  font-size: 18px;
  color: #606061;
  font-weight: 300;
  
  
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}