* {
  font-family: "Poppins", sans-serif !important;
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  height: 100vh;
  padding: 0 4rem;
  overflow: hidden;
   background: linear-gradient(to bottom, #ffffff 0%, #fbf3e8 100%);
}
.hero-text {
      max-width: 700px;
      z-index: 1;
      position: relative;
      padding-right: 80px;
      padding-left: 50px;
      text-align: end;
    }

.hero-text p .red {
  color: red;
  font-size: 70px;
  font-weight: 800;
}

.hero-text p span {
  color: red;
}

.hero-text p {
  font-size: 1.1rem;
  margin-top: 1rem;
  color: #333;
  line-height: 35px;
}

.image-wrapper {
      position: relative;
      bottom:0px;
      right: -100px;
      width: 717px;
      height: 449.35px;
      z-index: 0;
      transition: box-shadow 0.3s ease; /* smooth animation */
    }

.large-img {
  width: 717px;
  height: auto;
  /* object-fit: cover; */
  display: block;
   transition: box-shadow 0.3s ease; /* smooth animation */
}

.large-img:hover{
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.small-img {
  position: absolute;
  top: 170px;
  left: -100px;
  width: 209px;
  height: 326px;
  border-radius: 10px;
  /* box-shadow: 0px 0px 10px 0px #c4c4c440; */
  z-index: 1;
   transition: box-shadow 0.3s ease; /* smooth animation */
}

.small-img:hover{
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width: 575.98px) {
  .hero-section {
    flex-direction: column;
    padding: 2rem 1rem;
    height: auto;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
      padding-right: 0px;
      padding-top: 5rem;
      text-align: center;
      padding-left: 10px !important;
  }

  .image-wrapper {
    width: 100%;
    height: auto;
    margin-top: 2rem;
    top: 0;
     right: 0;
  }

  .large-img {
    width: 100%;
  }

  .small-img {
    position: absolute;
    top: 150px;
    left: 20px;
    width: 100px;
    height: auto;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-text{
         padding-top: 5rem;
    }
  .hero-section {
    flex-direction: column;
    padding: 2rem 2rem;
    height: auto;
  }

  .image-wrapper {
    width: 100%;
    margin-top: 2rem;
     right: 0;
  }

  .large-img {
    width: 100%;
  }

  .small-img {
    top: 150px;
    left: 20px;
    width: 120px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
        .hero-text{
         padding-top: 5rem;
    }
  .hero-section {
    flex-direction: column;
    padding: 2rem 3rem;
    height: auto;
  }

  .image-wrapper {
    width: 100%;
    margin-top: 2rem;
    right: 0;
  }

  .large-img {
    width: 100%;
  }

  .small-img {
    top: 150px;
    left: 30px;
    width: 180px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section {
    flex-direction: row;
    padding: 0 3rem;
    height: 100vh;
  }

  .image-wrapper {
    width: 600px;
    top: 50px;
    /* right: 0; */
  }

  .large-img {
    width: 100%;
  }

  .small-img {
    top: 100px;
    left: -80px;
    width: 180px;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hero-section {
    padding: 0 4rem;
  }

  .image-wrapper {
    width: 680px;
    top: 80px;
  }

  .large-img {
    width: 100%;
  }

  .small-img {
    top: 120px;
    left: -90px;
    width: 200px;
  }
}

@media (min-width: 1400px) {
  .image-wrapper {
    width: 717px;
    top: 20px;
  }

  .large-img {
    width: 717px;
  }

  .small-img {
    top: 140px;
    left: -100px;
    width: 209px;
  }
}

.info-section {
  max-width: 1000px;
  margin: 2.5rem auto; /* centers horizontally */
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.info-row {
  display: flex;
  align-items: center;
  background-color: #f9faff;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  transition: box-shadow 0.3s ease; /* smooth animation */
}

.info-row:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.img-col {
  flex: 0 0 87px;
  margin-right: 1rem;
  display: flex;
  align-items: center; /* center image vertically if needed */
}

.info-col {
  display: flex;
  align-items: flex-start;
}

.heading-col {
  flex: 0 0 180px;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  height: 100%;
}

.heading-col h3 {
  font-weight: 700;
}

.para-col {
  flex: 1;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

.info-icon {
  width: 87px;
  height: 89px;
}

@media (max-width: 575.98px) {
  .info-row {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .img-col,
  .heading-col,
  .para-col {
    margin-right: 0;
    flex: unset;
    width: 100%;
    justify-content: flex-start;
  }

  .heading-col {
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
  }

  .para-col {
    font-size: 0.95rem;
  }

  .info-icon {
    width: 60px;
    height: 60px;
  }
}

/* 576px - 767px (Small devices) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .heading-col {
    flex: 0 0 140px;
  }

  .para-col {
    font-size: 0.95rem;
  }

  .info-icon {
    width: 70px;
    height: 70px;
  }
}

/* 768px - 991px (Medium devices) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .heading-col {
    flex: 0 0 160px;
  }

  .para-col {
    font-size: 1rem;
  }

  .info-icon {
    width: 75px;
    height: 75px;
  }
}

/* 992px - 1199px (Large devices) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .heading-col {
    flex: 0 0 180px;
  }

  .info-icon {
    width: 80px;
    height: 80px;
  }
}

/* 1200px - 1399px (Extra large devices) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .heading-col {
    flex: 0 0 200px;
  }

  .info-icon {
    width: 87px;
    height: 89px;
  }
}

.why-choose {
  text-align: center;
  padding: 60px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1a1a1a;
}

.why-choose h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.why-choose .subtitle {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #666;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background: #FF2543;
  border: 1px solid transparent;
  padding: 30px 20px;
  width: 260px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: border 0.3s ease, transform 0.3s ease;
}

.card:hover {
  border-color: #ff2543;
  transform: translateY(-5px);
}

.about-icon {
  font-size: 30px;
  margin-bottom: 15px;
  color: #ff2543;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  color: #444;
}

.org-hero-section {
  background-color: #fdf9f8;
  padding: 10rem 1rem;
  text-align: center;
}

.org-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.org-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.org-gradient-blue {
  background: linear-gradient(to right, #4f46e5, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.org-gradient-yellow {
  background: linear-gradient(to right, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.org-gradient-red {
  background: linear-gradient(to right, #f43f5e, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.org-hero-subtext {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
}
