.vision-mission-section {
  width: 100%;
  padding: 35px 6%;
  background-image: url('/img/background.png');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* MAIN GRID */
.vm-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 35px;
  align-items: center;
}

/* LEFT + RIGHT COLUMN */
.vm-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* CARD */
.vm-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 14px;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-5px);
}

/* HEADING */
.vm-card h2 {
  color: #2f80ed;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* TEXT */
.vm-card p {
  font-size: 16px;
  line-height: 1.9;
  color: #222;
}

/* CENTER */
.vm-center {
  text-align: center;
}

/* IMAGE BOX */
.center-image {
  background: #fff;
  padding: 2px;
  border-radius: 14px;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.05);
}

.center-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

/* BUTTON */
.vm-btn {
  display: inline-block;
  margin-top: 22px;
  background: #2f80ed;
  color: #fff;
  text-decoration: none;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s ease;
}

.vm-btn:hover {
  background: #1667d8;
}

/* TABLET */
@media(max-width:1200px) {
  .vm-container {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media(max-width:768px) {
  .vision-mission-section {
    padding: 30px 20px;
  }

  /* ORDER FIX FOR MOBILE */
  .left-column {
    order: 1;
  }

  .vm-center {
    order: 2;
  }

  .right-column {
    order: 3;
  }

  .vm-card {
    padding: 24px 20px;
  }

  .vm-card h2 {
    font-size: 22px;
  }

  .vm-card p {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* Mission Vision Completed */
.development-section {
  width: 100%;
  height: 560px;
  /* FIXED SMALLER HEIGHT */
  display: grid;
  grid-template-columns: 40% 60%;
  overflow: hidden;
}

/* ===================================
   LEFT SIDE
=================================== */
.left-side {
  background: #39b8e7;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  overflow: hidden;
}

/* TEXTURE */
.left-texture {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 140px;
  background: url("/img/taxture.png") bottom center no-repeat;
  background-size: cover;
  opacity: 0.18;
}

/* CARD */
.left-card {
  width: 430px;
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  position: relative;
  z-index: 5;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ICON */
.icon {
  font-size: 28px;
  margin-bottom: 12px;
}

/* HEADING */
.left-card h5 {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #000;
  margin-bottom: 12px;
}

/* NUMBER */
.left-card h1 {
  font-size: 52px;
  line-height: 1;
  color: #2f80ed;
  margin-bottom: 12px;
}

/* TEXT */
.left-card p {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
  color: #111;
}

/* BUTTON */
.left-card a {
  display: inline-block;
  margin-top: 24px;
  background: #2f80ed;
  color: #fff;
  text-decoration: none;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s ease;
}

.left-card a:hover {
  background: #1667d8;
}

/* ===================================
   RIGHT SIDE
=================================== */
.right-side {
  position: relative;
  overflow: hidden;
}

/* SLIDE */
.slide {
  width: 100%;
  height: 560px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

/* IMAGE */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT BOX */
.slide-info {
  position: absolute;
  bottom: 0;
  left: 70px;
  /* SHIFTED RIGHT */
  width: 540px;
  background: #fff;
  padding: 24px 28px;
  z-index: 10;
}

/* TITLE */
.slide-info h2 {
  font-size: 24px;
  color: #1d2d50;
  margin-bottom: 10px;
}

/* TEXT */
.slide-info p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* ===================================
   ARROWS
=================================== */
.slider-buttons {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 50;
}

/* BUTTON */
.slider-buttons button {
  width: 70px;
  height: 60px;
  display: block;
  border: none;
  background: #00a7df;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  transition: 0.3s ease;
}

.slider-buttons button:hover {
  background: #008bbd;
}

/* ===================================
   TABLET
=================================== */
@media (max-width: 1200px) {
  .development-section {
    grid-template-columns: 1fr;
    height: auto;
  }

  .left-side {
    min-height: 420px;
  }

  .right-side {
    height: 450px;
  }

  .slide {
    height: 450px;
  }
}

/* ===================================
   MOBILE
=================================== */
@media (max-width: 768px) {
  .development-section {
    height: auto;
  }

  .left-side {
    padding: 22px 16px;
  }

  .left-card {
    width: 100%;
    padding: 24px 20px;
  }

  .left-card h1 {
    font-size: 42px;
  }

  .left-card p {
    font-size: 14px;
  }

  .right-side {
    height: 380px;
  }

  .slide {
    height: 380px;
  }

  .slide-info {
    width: calc(100% - 55px);
    left: 55px;
    padding: 18px;
  }

  .slide-info h2 {
    font-size: 18px;
  }

  .slide-info p {
    font-size: 13px;
  }

  .slider-buttons button {
    width: 55px;
    height: 50px;
    font-size: 22px;
  }
}

/* Impact Section Start */
.impact-section {
  width: 100%;
  background: #eef6f9;
  overflow: hidden;
}

.impact-container {
  display: flex;
  align-items: center;
  min-height: 520px;
}

.impact-image {
  flex: 1;
}

.impact-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.impact-content {
  flex: 1;
  padding: 40px 50px;
}

.impact-content h2 {
  font-size: 36px;
  line-height: 1.25;
  font-weight: 700;
  color: #111827;
  margin-bottom: 35px;
  max-width: 650px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.impact-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 15px;
  text-align: center;
  border-top: 5px solid #1e88e5;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-6px);
}

.impact-card span {
  display: block;
  font-size: 34px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  margin-bottom: 8px;
}

.impact-card p {
  margin: 0;
  font-size: 13px;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #111;
}

/* Tablet */
@media (max-width: 1200px) {
  .impact-content {
    padding: 35px;
  }

  .impact-content h2 {
    font-size: 32px;
  }

  .impact-card span {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 900px) {
  .impact-container {
    flex-direction: column;
  }

  .impact-image,
  .impact-content {
    width: 100%;
  }

  .impact-image img {
    height: 280px;
  }

  .impact-content {
    padding: 25px 18px;
  }

  .impact-content h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 25px;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .impact-card span {
    font-size: 28px;
  }
}

@media (max-width: 550px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-content h2 {
    font-size: 24px;
  }

  .impact-card span {
    font-size: 26px;
  }
}

/* Our Partners */
/* =========================
   PARTNERS SECTION
========================= */

.partners-section {
  padding: 30px 0;
  background: #f7f7f7;
  overflow: hidden;
}

.partners-header {
  text-align: center;
  margin-bottom: 40px;
}

.partners-header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1c2431;
  font-family: "Poppins", sans-serif;
}

/* =========================
   SLIDER
========================= */

.partners-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.partners-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: scrollRTL 30s linear infinite;
}

/* Pause on hover */

.partners-slider:hover .partners-track {
  animation-play-state: paused;
}

/* =========================
   CARD
========================= */

.partner-card {
  width: 280px;
  height: 125px;
  flex-shrink: 0;

  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 15px;

  transition: 0.3s;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.partner-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =========================
   RTL ANIMATION
========================= */

@keyframes scrollRTL {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .partners-section {
    padding: 5px 0;
  }

  .partner-card {
    width: 220px;
    height: 95px;
  }

  .partners-track {
    gap: 12px;
    animation-duration: 22s;
  }
}