.section-label {
  display: inline-block;
  padding: 8px 18px;
  border: 2px solid #0f172a;
  border-radius: 40px;
  font-size: 14px;
  margin-bottom: 20px;
}

h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 700px;
}

.top-right-btn {
  position: absolute;
  right: 60px;
  top: 60px;
  background: #54b008;
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

/* Slider */
.slider-container {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
  position: relative;
}

.slider {
  display: flex;
  gap: 18px;
  transition: 0.6s ease;
}

.slide {
  min-width: 32%;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}
.slide img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #0f172a;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  z-index: 5;
}
.arrow.left {
  left: 20px;
}
.arrow.right {
  right: 20px;
}

.Team-member {
  margin-left: 120px;
  margin-right: 120px;
  margin-bottom: 50px;
}
.Team-members {
  background: #f8f9fa;
  padding: 20px;
}

/* --------Team Member-------- */

.myGallery {
  width: 100%;
  height: 350px;
  position: relative;
}

.myGallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  font-size: 22px;
}

.swiper-pagination-bullet-active {
  background: #007aff;
}

/* -----------Preloader--------- */

.preloader-tag{
  /* display: none; */
  /* position: absolute; */
  top :0;
  left: 0;
  bottom: 0;
  right: 0;
}


/* ----------------------------------------------------- */

.main-heading{
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* ----------------------- Responsive Design ----------------------- */
/* --- Force Single Column View for Mobile --- */
@media (max-width: 767px) {
  /* Isse kisi bhi tarah ka multi-column layout mobile pe khatam ho jayega */
  .section .row {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .section .col, 
  .section div[class*="col-"] {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 20px !important; /* Boxes ke beech ka gap */
  }

  /* Card styling ko mobile ke liye bada aur bold karein */
  .feature-box {
    padding: 3rem 1.5rem !important; 
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
  }

  .feature-box-icon {
    font-size: 4.5rem !important; /* Bada icon */
    margin-bottom: 1.5rem !important;
  }

 
}