* {
  margin: 0;
  padding: 0;
}
.award-section {
  /* width: 100%; */
  padding: 50px 70px;
 
  background: url("../images/Rectangle\ 508\ \(2\).png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.award-wrapper {
  margin: auto;
  display: flex;
  flex-direction: column;
}

.award-row {
  display: flex;
  justify-content: space-between;
  gap: 90px;
}

.award-div1 {
  display: flex;
  gap: 20px;
}

.award-div2 {
  display: flex;
  padding-top: 94px;
  gap: 20px;
  text-align: right;
}

.award-row h3 {
  font-family: Poppins;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  leading-trim: NONE;
  /* line-height: 100%; */
  letter-spacing: 1%;
  color: #1c3f94;
}

.award-row p {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  /* line-height: 100%; */
  letter-spacing: 1%;
  color: #1c3f94;
}

.award-wrapper h2 {
  font-family: Merriweather;
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  leading-trim: NONE;
  /* line-height: 100%; */
  letter-spacing: 1%;
  color: #1c3f94;
  padding-bottom: 50px;
}

.award-wrapper span {
  color: #ee1b22;
}

/* ========================= */
/* ✅ FULL RESPONSIVE DESIGN */
/* ========================= */

/* ---------- Large Screens (1200px and below) ---------- */
@media (max-width: 1400px) {
  .award-section {
    padding: 45px 60px;
  }

  .award-row {
    gap: 70px;
  }

    .award-wrapper h2 {
    font-size: 30px;
    padding-bottom: 35px;
  }

  .award-row h3 {
    font-size: 18px;
  }

  .award-row p {
    font-size: 15px;
  }
}

/* ---------- Tablets (1024px and below) ---------- */
@media (max-width: 1024px) {
  .award-section {
    padding: 40px 40px;
  }

  .award-row {
    gap: 50px;
  }

  .award-div2 {
    padding-top: 60px;
  }

  .award-wrapper h2 {
    font-size: 30px;
    padding-bottom: 35px;
  }

  .award-row h3 {
    font-size: 18px;
  }

  .award-row p {
    font-size: 15px;
  }

  .award-img img {
    width: 170px;
  }
}

/* ================================================= */
/* ✅ ✅ ✅ CENTER EVERYTHING FROM 900px AND BELOW ✅ ✅ ✅ */
/* ================================================= */
@media (max-width: 900px) {
  .award-section {
    padding: 30px 20px;
  }

  .award-row {
    flex-direction: column;
    gap: 30px;
  }

  .award-div1,
  .award-div2 {
    width: 100%;
    padding-top: 30px;
  
    justify-content: flex-start;
    align-items: center;
   
  }

  .award-content {
    width: 100%;
    /* text-align: center; */
  }

  

  .award-wrapper h2 {
    font-size: 24px;
    padding-bottom: 25px;
    /* text-align: center; */
  }

  .award-row h3 {
    font-size: 16px;
  }

  .award-row p {
    font-size: 14px;
    line-height: 1.4;
  }

  .award-img img {
    width: 200px;
  }
}

/* ---------- Small Mobiles (480px and below) ---------- */
@media (max-width: 480px) {
  .award-wrapper h2 {
    font-size: 21px;
  }

 .award-img img {
    width: 114px;
  }

  .award-row h3 {
    font-size: 15px;
  }

  .award-row p {
    font-size: 12.5px;
  }
}

/* ---------- Extra Small Mobiles (360px and below) ---------- */
@media (max-width: 360px) {
  .award-wrapper h2 {
    font-size: 19px;
  }

  .award-img img {
    width: 100px;
  }

  .award-row h3 {
    font-size: 12px;
  }

  .award-row p {
    font-size: 11px;
  }
}


/* carousel  */

.achievement-section {
  /* width: 100%; */
  padding: 80px 60px;
  background: #f9f7f4;
  text-align: center;
  overflow: hidden;
  background: url("../images/Rectangle\ 319\ \(7\).png");
   background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.achievement-section h2 {
  color: #1c3f94;
  margin-bottom: 40px;
  text-align: left;
  font-family: Merriweather;
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 1%;
}

.achievement-section h2 span {
  color: #e2212a;
}

/* VIEWPORT */
.carousel-track-wrapper {
  width: 100%;
  overflow: hidden;
}

/* TRACK = CONTINUOUS MOTION */
.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: smoothScroll 25s linear infinite;
}

/* CARD */
.carousel-card {
  min-width: 280px;
  height: 320px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ✅ PURE CONTINUOUS INFINITE ANIMATION */
@keyframes smoothScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .carousel-card {
    min-width: 240px;
    height: 280px;
  }
}

@media (max-width: 575px) {
  .achievement-section {
    padding: 50px 16px;
  }
}
