 /* ===== About Section ===== */
 .about {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  }

.about::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(2, 171, 134, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  }

.about::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(2, 171, 134, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  }

.about .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  }

.about .image {
  flex: 1 1 45%;
  position: relative;
  min-width: 300px;
  }

.about .image::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid #02ab86;
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
  transition: all 0.4s ease;
  }

.about .image:hover::before {
  top: -20px;
  right: -20px;
  opacity: 0.5;
}

.about .image img {
  width: 100%;
  height: auto;
  min-height: 400px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: block;
  }

.about .image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(2, 171, 134, 0.25);
  }

.about .image .placeholder {
  width: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, #02ab86 0%, #018f6f 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}


.about .text {
  flex: 1 1 50%;
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
  min-width: 300px;
  overflow: hidden;
  }

    .about .text::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      height: 100%;
      width: 5px;
      border-radius: 0 20px 20px 0;
      background: linear-gradient(180deg, #02ab86 0%, rgba(2, 171, 134, 0.3) 100%);
    }

    .about .text:hover {
      box-shadow: 0 15px 40px rgba(2, 171, 134, 0.15);
      transform: translateY(-5px);
    }

    .about .text h2 {
      font-size: 28px;
      font-weight: 800;
      color: #02ab86;
      margin-bottom: 35px;
      position: relative;
      display: inline-block;
    }

    .about .text h2::after {
      content: "";
      position: absolute;
      bottom: -12px;
      right: 0;
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #02ab86 0%, transparent 100%);
      border-radius: 2px;
    }


    .about .text h2::before {
      content: "◆";
      position: absolute;
      right: -30px;
      top: 50%;
      transform: translateY(-50%);
      color: #02ab86;
      font-size: 0.8rem;
      opacity: 0.5;
    }


    .about .text ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .about .text ul li {
      margin-bottom: 28px;
      line-height: 2;
      color: #444;
      font-size: 16px;
      padding-right: 35px;
      position: relative;
      transition: all 0.3s ease;
    }


    .about .text ul li::before {
      content: "✓";
      position: absolute;
      right: 0;
      top: 2px;
      color: #ffffff;
      background: #02ab86;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: bold;
      box-shadow: 0 2px 8px rgba(2, 171, 134, 0.3);
      transition: all 0.3s ease;
    }

    .about .text ul li:hover {
      color: #02ab86;
      padding-right: 40px;
    }

    .about .text ul li:hover::before {
      transform: scale(1.15);
      box-shadow: 0 4px 12px rgba(2, 171, 134, 0.4);
    }

    .about .text ul li:last-child {
      margin-bottom: 0;
    }

    @media (max-width: 992px) {
      .about {
        padding: 80px 0;
      }

      .about .container {
        flex-direction: column;
        gap: 50px;
      }

      .about .text, 
      .about .image {
        flex: 1 1 100%;
        min-width: auto;
      }

      .about .text {
        padding: 40px 35px;
      }

      .about .text h2 {
        font-size: 2.2rem;
      }

      .about .image img,
      .about .image .placeholder {
        min-height: 350px;
      }
    }

    @media (max-width: 576px) {
      .about {
        padding: 60px 0;
      }

      .about .text {
        padding: 30px 25px;
      }

      .about .text h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
      }

      .about .text h2::before {
        display: none;
      }

      .about .text ul li {
        font-size: 1rem;
        padding-right: 32px;
        margin-bottom: 24px;
        line-height: 1.9;
      }

      .about .text ul li::before {
        width: 22px;
        height: 22px;
        font-size: 0.85rem;
      }

      .about .image img,
      .about .image .placeholder {
        min-height: 300px;
      }

      .about .image::before {
        top: -10px;
        right: -10px;
      }
    }

    .about .text ul li:focus-within {
      outline: 2px solid #02ab86;
      outline-offset: 4px;
      border-radius: 4px;
    }
/* ================================================== mission & vission section ======================================================= */
/* ===== Mission Section ===== */
        .mission {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8fafb 0%, #eef8f7 100%);
            direction: rtl;
            position: relative;
            overflow: hidden;
        }


        .mission::before,
        .mission::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            filter: blur(90px);
            opacity: 0.3;
            z-index: 0;
            animation: float 8s ease-in-out infinite;
        }
        .mission::before {
            width: 280px;
            height: 280px;
            background: #02ab86;
            top: -60px;
            right: -60px;
            animation-delay: 0s;
        }
        .mission::after {
            width: 220px;
            height: 220px;
            background: #0a0e27;
            bottom: -40px;
            left: -40px;
            animation-delay: 4s;
        }


        .mission .floating-element {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.2;
            z-index: 0;
            animation: float 10s ease-in-out infinite;
        }
        .mission .floating-element:nth-child(1) {
            width: 150px;
            height: 150px;
            background: #ff6b6b;
            top: 20%;
            left: 10%;
            animation-delay: 2s;
        }
        .mission .floating-element:nth-child(2) {
            width: 120px;
            height: 120px;
            background: #4ecdc4;
            bottom: 30%;
            right: 15%;
            animation-delay: 6s;
        }

        .mission .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 70px;
            position: relative;
            z-index: 1;
        }

        .mission .image {
            flex: 1 1 45%;
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 
                0 25px 50px rgba(2, 171, 134, 0.2),
                0 15px 35px rgba(0, 0, 0, 0.1);
        }
        .mission .image:hover {
            transform: perspective(1000px) rotateY(0deg) translateY(-10px);
            box-shadow: 
                0 35px 70px rgba(2, 171, 134, 0.3),
                0 25px 45px rgba(0, 0, 0, 0.15);
        }
        .mission .image img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            border-radius: 24px;
            transition: all 0.8s ease;
            transform: scale(1.05);
        }
        .mission .image:hover img {
            transform: scale(1.1);
        }
        .mission .image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg, 
                rgba(2, 171, 134, 0.4) 0%, 
                rgba(10, 14, 39, 0.2) 100%
            );
            border-radius: 24px;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        .mission .image:hover .image-overlay {
            opacity: 1;
        }

        .mission .text {
            flex: 1 1 48%;
            text-align: right;
            animation: fadeInUp 0.9s ease both;
        }

        .mission .text h2 {
            font-size: 3.2rem;
            font-weight: 900;
            color: #0a0e27;
            margin-bottom: 25px;
            position: relative;
            background: linear-gradient(135deg, #0a0e27 0%, #02ab86 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }
        .mission .text h2::after {
            content: "";
            position: absolute;
            bottom: -15px;
            right: 0;
            width: 120px;
            height: 5px;
            background: linear-gradient(90deg, #02ab86, #0ac4a5);
            border-radius: 3px;
            transform-origin: right;
            animation: expandWidth 1s ease-out 0.5s both;
        }

        .mission .text p {
            color: #444;
            line-height: 2;
            font-size: 1.15rem;
            margin-top: 35px;
            font-weight: 400;
            max-width: 95%;
            position: relative;
            padding: 20px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.8);
        }

        .mission .cta-container {
            margin-top: 40px;
            position: relative;
        }
        
        .mission .cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: linear-gradient(135deg, #02ab86 0%, #0ac4a5 100%);
            color: #fff;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 15px 30px rgba(2, 171, 134, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        .mission .cta::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0ac4a5 0%, #02ab86 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .mission .cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(2, 171, 134, 0.4);
        }
        .mission .cta:hover::before {
            opacity: 1;
        }
        .mission .cta i {
            font-size: 1.1rem;
            transition: all 0.4s ease;
        }
        .mission .cta:hover i {
            transform: translateX(-8px);
        }

        .mission .cta-container::after {
            content: "";
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            width: 100%;
            height: 100%;
            border-radius: 50px;
            background: rgba(2, 171, 134, 0.2);
            z-index: 0;
            animation: pulse 2s infinite;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes expandWidth {
            from {
                transform: scaleX(0);
            }
            to {
                transform: scaleX(1);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        @keyframes pulse {
            0% {
                transform: translateY(-50%) scale(1);
                opacity: 0.7;
            }
            70% {
                transform: translateY(-50%) scale(1.05);
                opacity: 0.3;
            }
            100% {
                transform: translateY(-50%) scale(1);
                opacity: 0.7;
            }
        }

        @media (max-width: 1200px) {
            .mission .text h2 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 992px) {
            .mission .container {
                flex-direction: column;
                text-align: center;
                gap: 50px;
            }
            .mission .text {
                order: 2;
            }
            .mission .image {
                order: 1;
                transform: perspective(1000px) rotateY(0deg);
            }
            .mission .text p {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }
            .mission .text h2::after {
                right: 50%;
                transform: translateX(50%);
            }
        }

        @media (max-width: 768px) {
            .mission {
                padding: 80px 0;
            }
            .mission .text h2 {
                font-size: 2.4rem;
            }
            .mission .text p {
                font-size: 1.05rem;
                padding: 15px;
            }
            .mission .image img {
                height: 350px;
            }
        }

        @media (max-width: 576px) {
            .mission .text h2 {
                font-size: 2rem;
            }
            .mission .cta {
                padding: 14px 28px;
                font-size: 0.95rem;
            }
        }

/* ===== Vision Section  ===== */
.vision {
  padding: 100px 0;
  background: #fff;
  direction: rtl;
  position: relative;
  overflow: hidden;
}

.vision .container {
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}


.vision .image {
  flex: 1 1 48%;
  min-width: 320px;
  order: 2;
  position: relative;
  overflow: hidden;
}

.vision .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #02ab86 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
  mix-blend-mode: multiply;
}

.vision .image:hover::before {
  opacity: 0.3;
}

.vision .image img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  filter: grayscale(0) contrast(1.05);
}

.vision .image:hover img {
  transform: scale(1.08);
  filter: grayscale(0.2) contrast(1.1);
}

.vision .text {
  flex: 1 1 48%;
  min-width: 320px;
  background: #02ab86;
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision .text::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 30px;
  width: 80px;
  height: 4px;
  background: #fff;
  transition: all 0.4s ease;
}

.vision .text:hover::before {
  width: 120px;
  background: #0a0e27;
}

.vision .text h2 {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 40px;
  position: relative;
  letter-spacing: -2px;
  text-transform: uppercase;
  line-height: 1.1;
}

.vision .text p {
  color: rgba(255,255,255,0.95);
  line-height: 2;
  font-size: 18px;
  margin-bottom: 50px;
  text-align: right;
  font-weight: 300;
  border-right: 3px solid rgba(255,255,255,0.3);
  padding-right: 25px;
}

.vision .text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vision .text ul li {
  margin-bottom: 30px;
  position: relative;
  padding-right: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  transition: all 0.3s ease;
  font-weight: 500;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  padding-bottom: 15px;
}

.vision .text ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.vision .text ul li::before {
  content: "—";
  position: absolute;
  right: -30px;
  top: 0;
  color: #0a0e27;
  font-size: 1.5rem;
  font-weight: 900;
  transition: all 0.3s ease;
  opacity: 0;
}

.vision .text ul li:hover {
  padding-right: 30px;
  color: #0a0e27;
  border-bottom-color: #0a0e27;
}

.vision .text ul li:hover::before {
  opacity: 1;
  right: 0;
}

.vision::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: #00594f;
  opacity: 0.05;
  transform: rotate(45deg);
  pointer-events: none;
}


@media (max-width: 992px) {
  .mission .container,
  .vision .container {
    flex-direction: column;
    gap: 60px;
  }

  .mission .text,
  .vision .text,
  .mission .image,
  .vision .image {
    flex: 1 1 100%;
  }

  .vision .container {
    gap: 0;
  }

  .vision .image {
    order: 1;
  }

  .vision .image img {
    min-height: 450px;
  }

  .mission .image::before {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .mission,
  .vision {
    padding: 100px 0;
  }

  .mission .text {
    padding: 45px 35px;
  }

  .vision .text {
    padding: 60px 40px;
  }

  .mission .text h2 {
    font-size: 2.3rem;
  }

  .vision .text h2 {
    font-size: 3rem;
  }

  .mission .image img {
    height: 400px;
  }

  .vision .image img {
    min-height: 400px;
  }
}

@media (max-width: 576px) {
  .mission,
  .vision {
    padding: 80px 0;
  }

  .mission .container,
  .vision .container {
    width: 95%;
  }

  .mission .container {
    gap: 50px;
  }

  .mission .text {
    padding: 35px 25px;
  }

  .vision .text {
    padding: 50px 30px;
  }

  .mission .text h2 {
    font-size: 2rem;
  }

  .vision .text h2 {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }

  .mission .text p,
  .vision .text p,
  .vision .text ul li {
    font-size: 1.05rem;
  }

  .mission .image img {
    height: 320px;
  }

  .vision .image img {
    min-height: 350px;
  }

  .vision .text::before {
    top: 20px;
    right: 20px;
    width: 60px;
  }

  .vision .text p {
    padding-right: 20px;
  }
}
  /* Board Section - Optimized */

.board {
    display: none !important;
    background: linear-gradient(135deg, #ffffff 0%, #f5f9f8 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Decorative Background */
.board::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 176, 135, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.board::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 89, 79, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.board .container {
  overflow: hidden;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* ============================================
   HEADER SECTION
============================================ */
.board-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.board-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #00b087 0%, #00594f 100%);
    border-radius: 10px;
}

.board-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #00b087 0%, #00594f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.2;
}

.board-header p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.6;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   SWIPER CONTAINER
============================================ */
.mySwiper {
    padding: 20px 0 60px 0;
    overflow: visible;
    position: relative;
}

.swiper-slide {
    height: auto;
    display: flex;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    padding: 10px;
    box-sizing: border-box;
}

.swiper-slide-active {
    opacity: 1;
}

.swiper-slide-next,
.swiper-slide-prev {
    opacity: 0.8;
}

/* ============================================
   BOARD CARD - COMPACT DESIGN
============================================ */
.boardCard {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 89, 79, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    border: 1px solid rgba(0, 176, 135, 0.1);
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.boardCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00b087 0%, #00594f 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
    z-index: 2;
}

.boardCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 89, 79, 0.15);
    border-color: #00b087;
}

.boardCard:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* ============================================
   IMAGE CONTAINER - COMPACT
============================================ */
.boardImg {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.boardImg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0, 89, 79, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.boardCard:hover .boardImg::after {
    opacity: 1;
}

.boardImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: grayscale(15%);
}

.boardCard:hover .boardImg img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

/* ============================================
   CARD CONTENT - COMPACT
============================================ */
.boardText {
    padding: 18px 15px;
    text-align: center;
    position: relative;
    background: white;
}

.boardText::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00b087 0%, #00594f 100%);
    border-radius: 3px;
    transition: width 0.4s ease;
}

.boardCard:hover .boardText::before {
    width: 70px;
}

.boardText h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin: 8px 0 6px 0;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.boardCard:hover .boardText h2 {
    background: linear-gradient(135deg, #00b087 0%, #00594f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.02);
}

.boardText h3 {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s ease;
    margin-bottom: 6px;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boardCard:hover .boardText h3 {
    color: #00594f;
}

/* Role Badge */
.role-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #00b087 0%, #00594f 100%);
    border-radius: 16px;
    font-size: 0.75rem;
    color: #ffffff;
    font-weight: 600;
    margin-top: 6px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s ease;
}

.boardCard:hover .role-badge {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SWIPER PAGINATION - ENHANCED
============================================ */
.swiper-pagination {
    bottom: 15px !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e0;
    opacity: 1;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.swiper-pagination-bullet:hover {
    background: #00b087;
    transform: scale(1.15);
}

.swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #00b087 0%, #00594f 100%);
    width: 35px;
    border-radius: 6px;
}

/* ============================================
   SWIPER NAVIGATION
============================================ */
.swiper-button-next,
.swiper-button-prev {
    color: #00b087;
    background: rgba(255, 255, 255, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 89, 79, 0.15);
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #00b087;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 89, 79, 0.25);
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 992px) {
    .board {
        padding: 50px 0;
        min-height: auto;
    }

    .board-header {
        margin-bottom: 40px;
    }

    .mySwiper {
        padding: 15px 0 55px 0;
    }

    .boardCard {
        max-width: 260px;
    }

    .boardImg {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .board {
        padding: 40px 0;
    }

    .board-header::before {
        width: 70px;
        height: 4px;
        top: -15px;
    }

    .board-header {
        margin-bottom: 35px;
    }

    .board-header h2 {
        font-size: 1.8rem;
    }

    .board-header p {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .mySwiper {
        padding: 10px 0 50px 0;
    }

    .boardCard {
        max-width: 240px;
        border-radius: 16px;
    }

    .boardImg {
        height: 180px;
    }

    .boardText {
        padding: 15px 12px;
    }

    .boardText h2 {
        font-size: 1rem;
        margin: 6px 0 5px 0;
    }

    .boardText h3 {
        font-size: 0.85rem;
        min-height: 34px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .board {
        padding: 35px 0;
    }

    .board-header {
        margin-bottom: 30px;
    }

    .board-header::before {
        width: 60px;
        height: 3px;
    }

    .board-header h2 {
        font-size: 1.6rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .boardCard {
        max-width: 220px;
    }

    .boardImg {
        height: 160px;
    }

    .boardText {
        padding: 12px 10px;
    }

    .boardText h2 {
        font-size: 0.95rem;
    }

    .boardText h3 {
        font-size: 0.8rem;
        min-height: 32px;
    }

    .role-badge {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
}

@media (max-width: 480px) {
    .board {
        padding: 30px 0;
    }

    .board-header {
        margin-bottom: 25px;
    }

    .mySwiper {
        padding: 8px 0 45px 0;
    }

    .boardCard {
        max-width: 200px;
    }

    .boardImg {
        height: 150px;
    }
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
============================================ */
@media (prefers-reduced-motion: reduce) {
    .boardCard,
    .boardCard::before,
    .boardImg img,
    .boardText::before,
    .boardText h2,
    .role-badge,
    .swiper-pagination-bullet,
    .board::before,
    .board::after {
        transition: none !important;
        animation: none !important;
    }

    .boardCard:hover {
        transform: none;
    }
}

/* Loading State */
.boardCard.loading {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Services Section */
/* =========================
   Services Section (Updated + Enhanced UI)
   ========================= */

/* Services Section */
.services-section {
  background: linear-gradient(135deg, #f8fafb 0%, #eef8f7 100%);
  padding: clamp(64px, 6vw, 90px) 0; /* أقل شوية من 100px */
  margin: 0 auto;
}

/* Section Header */
.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  background: linear-gradient(135deg, #022c22 0%, #11a39c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  letter-spacing: -0.6px;
}

.section-desc {
  max-width: 680px;
  margin: 0 auto;
  color: #475569;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.8;
  font-weight: 400;
}

/* Services Grid */
.services-grid {
  list-style: none;
  display: grid;
  /* ✅ أصغر: بوكسات أصغر وعدد أكبر في الصف */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(14px, 2.5vw, 22px);
  padding: 0;
  margin: 0;

  /* تحسين تموضع العناصر */
  align-items: stretch;
}

/* Service Card */
.service-card {
  background: #ffffff;
  border-radius: 16px;
  /* ✅ padding أصغر */
  padding: clamp(18px, 2.2vw, 24px) clamp(16px, 2vw, 22px);

  position: relative;
  box-shadow:
    0 3px 6px rgba(0, 0, 0, 0.03),
    0 10px 18px rgba(2, 44, 34, 0.05);

  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;

  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(17, 163, 156, 0.10);

  /* ✅ تحسين اللمس على الموبايل */
  -webkit-tap-highlight-color: transparent;

  /* ✅ يوحّد ارتفاع الكارت */
  min-height: 190px;

  /* ✅ لسهولة ضغط/تنقل */
  outline: none;
}

/* Animated gradient background */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 0%,
      rgba(17, 163, 156, 0.12) 0%,
      transparent 40%
    ),
    linear-gradient(
      135deg,
      rgba(231, 246, 245, 0.55) 0%,
      rgba(17, 163, 156, 0.06) 50%,
      transparent 100%
    );
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

/* Decorative corner accent */
.service-card::after {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 90px;
  height: 90px;
  background: radial-gradient(
    circle at top right,
    rgba(17, 163, 156, 0.10) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

/* Hover / Focus (more polished) */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 24px rgba(2, 44, 34, 0.10),
    0 18px 36px rgba(17, 163, 156, 0.12);
  border-color: rgba(17, 163, 156, 0.22);
}

.service-card:hover::before,
.service-card:hover::after {
  opacity: 1;
}

.service-card:active {
  transform: translateY(-3px);
}

/* Card Content Container */
.card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;

  /* ✅ توزيع أفضل داخل الكارت */
  height: 100%;
}

/* Icon Container */
.icon {
  /* ✅ أصغر */
  width: 56px;
  height: 56px;
  border-radius: 14px;

  background: linear-gradient(135deg, #e7f6f5 0%, #d1f0ee 100%);
  color: #11a39c;
  display: grid;
  place-items: center;

  margin-bottom: 2px;

  box-shadow:
    0 4px 10px rgba(17, 163, 156, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);

  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.35s ease,
              color 0.35s ease,
              box-shadow 0.35s ease;

  position: relative;
  overflow: hidden;
}

.icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 163, 156, 0.22) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover .icon {
  transform: scale(1.08) rotate(4deg);
  background: linear-gradient(135deg, #11a39c 0%, #0d857f 100%);
  color: #ffffff;
  box-shadow:
    0 8px 18px rgba(17, 163, 156, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.service-card:hover .icon::before {
  opacity: 1;
}

.icon svg {
  /* ✅ أصغر */
  width: 28px;
  height: 28px;
  transition: transform 0.25s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover .icon svg {
  transform: scale(1.08);
}

/* Service Title */
.service-title {
  font-size: clamp(16px, 1.9vw, 18px);
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  letter-spacing: -0.2px;
  line-height: 1.35;
  transition: color 0.25s ease;
}

.service-card:hover .service-title {
  color: #11a39c;
}

/* Service Description */
.service-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
  opacity: 0.95;

  /* ✅ توازن لطيف للنص */
  max-width: 40ch;
}

/* Arrow Icon */
.arrow-icon {
  width: 18px;
  height: 18px;
  color: #94a3b8;
  margin-top: auto; /* ✅ يخلّي السهم دايمًا تحت */
  opacity: 0;
  transform: translateX(10px);
  transition: transform 0.25s ease, opacity 0.25s ease, color 0.25s ease;

  /* ✅ RTL-friendly: نعكس الاتجاه */
  transform: translateX(-10px);
}

.service-card:hover .arrow-icon {
  opacity: 1;
  transform: translateX(0);
  color: #11a39c;
}

/* =========================
   Responsive adjustments
   ========================= */

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
  }

  .service-card {
    padding: 18px 16px;
    min-height: 180px;
  }

  .icon {
    width: 52px;
    height: 52px;
  }

  .icon svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card:hover {
    transform: translateY(-3px);
  }
}

/* =========================
   Animation delays for staggered entrance
   ========================= */
.service-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.08s backwards; }
.service-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.16s backwards; }
.service-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.24s backwards; }
.service-card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.32s backwards; }
.service-card:nth-child(5) { animation: fadeInUp 0.6s ease-out 0.40s backwards; }
.service-card:nth-child(6) { animation: fadeInUp 0.6s ease-out 0.48s backwards; }
.service-card:nth-child(7) { animation: fadeInUp 0.6s ease-out 0.56s backwards; }
.service-card:nth-child(8) { animation: fadeInUp 0.6s ease-out 0.64s backwards; }
.service-card:nth-child(9) { animation: fadeInUp 0.6s ease-out 0.72s backwards; }
.service-card:nth-child(10){ animation: fadeInUp 0.6s ease-out 0.80s backwards; }

/* =========================
   Focus styles for accessibility (polished)
   ========================= */
.service-card:focus-visible {
  outline: 3px solid rgba(17, 163, 156, 0.9);
  outline-offset: 4px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .section-head,
  .service-card,
  .service-card::before,
  .service-card::after,
  .icon,
  .icon svg,
  .arrow-icon {
    animation: none !important;
    transition: none !important;
  }

  .service-card:hover {
    transform: none;
  }
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== NEWS SECTION ======= */

.latest-news {
    /* background: linear-gradient(135deg, #ffffff 0%, #f5f9f8 100%); */
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.latest-news::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 176, 135, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.latest-news::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 89, 79, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { 
        transform: translate(0, 0) scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: translate(30px, -30px) scale(1.1); 
        opacity: 0.8; 
    }
}

/* Container */
.latest-news .container {
    max-width: 1300px;
    margin: auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
    width: 100%;
}

/* ============================================
   HEADER SECTION
============================================ */
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

/* Main Heading */
.news-heading {
    position: relative;
}

.news-heading span {
    font-size: 42px;
    font-weight: 800;
    color: #00594f;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.news-heading span::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 5px;
    background: linear-gradient(90deg, #00b087, #00594f);
    border-radius: 10px;
    animation: expandLine 2s ease-in-out infinite;
}

@keyframes expandLine {
    0%, 100% { width: 70%; opacity: 1; }
    50% { width: 85%; opacity: 0.8; }
}

/* Show All Button */
.show-all-btn {
    background: linear-gradient(135deg, #00594f 0%, #00b087 100%);
    box-shadow: 0 8px 25px rgba(0, 89, 79, 0.25);
    border: none;
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.show-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.show-all-btn:hover::before {
    left: 100%;
}

.show-all-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 89, 79, 0.35);
}

.show-all-btn:active {
    transform: translateY(-1px) scale(1);
}

.show-all-btn i {
    transition: transform 0.3s ease;
}

.show-all-btn:hover i {
    transform: translateX(-5px);
}

/* ============================================
   CONTENT LAYOUT
============================================ */
.news-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 50px;
    align-items: start;
}

/* ============================================
   LEFT IMAGE CARD
============================================ */
.news-left {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 89, 79, 0.15);
    background: #ffffff;
    width: 100%;
    height: 400px;
    max-height: 400px;
}

.news-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 89, 79, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}

.news-left:hover::before {
    opacity: 1;
}

.news-left::after {
    content: 'عرض المزيد';
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: white;
    color: #00594f;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
    opacity: 0;
    transition: all 0.5s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.news-left:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.news-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeIn 0.8s ease-in;
}

.news-left:hover img {
    transform: scale(1.08);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   RIGHT NEWS ITEMS
============================================ */
.news-right {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
}

/* Individual News Item */
.news-item {
    position: relative;
    padding: 20px 0 20px 80px;
    border-bottom: 2px solid rgba(0, 89, 79, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: auto;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item::before {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 176, 135, 0.06), transparent);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
}

.news-item:hover::before {
    width: calc(100% + 40px);
}

/* News Title Link */
.news-title {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.6;
    color: #1a1a1a;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.news-title:hover {
    color: #00b087;
    transform: translateX(-8px);
}

/* News Date */
.news-date {
    font-size: 14px;
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 16px;
    background: rgba(0, 176, 135, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.news-item:hover .news-date {
    background: rgba(0, 176, 135, 0.15);
    color: #00594f;
}

.news-date::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #00b087;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.3); 
        opacity: 0.7; 
    }
}

/* Arrow Icon */
.news-arrow {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #00594f 0%, #00b087 100%);
    box-shadow: 0 10px 25px rgba(0, 89, 79, 0.3);
}

.news-item:hover .news-arrow {
    transform: translateY(-50%) translateX(-10px) rotate(-15deg);
    box-shadow: 0 15px 40px rgba(0, 89, 79, 0.4);
    background: linear-gradient(135deg, #00b087 0%, #00594f 100%);
}

.news-arrow::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #00b087, #00594f);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-item:hover .news-arrow::before {
    opacity: 1;
}

/* Remove HR tags styling */
.news-item hr {
    display: none;
}

/* Focus states for accessibility */
.news-title:focus,
.news-arrow:focus,
.show-all-btn:focus {
    outline: 3px solid #00b087;
    outline-offset: 4px;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */

/* Large Desktop (1200px+) */
@media (max-width: 1200px) {
    .latest-news .container {
        max-width: 1000px;
        padding: 0 30px;
    }

    .news-heading span {
        font-size: 38px;
    }

    .news-content {
        gap: 40px;
        grid-template-columns: 1fr 1fr;
    }

    .news-left {
        height: 380px;
        max-height: 380px;
    }

    .news-title {
        font-size: 1.25rem;
    }
}

/* Tablet - Large (992px - 1200px) */
@media (max-width: 992px) {
    .latest-news {
        padding: 50px 0;
    }

    .news-header {
        margin-bottom: 40px;
        gap: 20px;
    }

    .news-heading span {
        font-size: 34px;
    }

    .news-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .news-left {
        max-width: 100%;
        height: 350px;
        max-height: 350px;
    }

    /* RTL: Move arrow to the right on tablet/mobile */
    .news-item {
        padding: 20px 75px 20px 0;
    }

    .news-arrow {
        right: 0;
        left: auto;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .news-item:hover .news-arrow {
        transform: translateY(-50%) translateX(10px) rotate(15deg);
    }

    .news-title {
        font-size: 1.2rem;
    }

    .news-title:hover {
        transform: translateX(8px);
    }

    .news-item:hover {
        padding-right: 20px;
        background: rgba(0, 176, 135, 0.04);
    }

    .news-item::before {
        right: auto;
        left: -20px;
    }
}

/* Tablet - Medium (768px - 992px) */
@media (max-width: 768px) {
    .latest-news {
        padding: 45px 0;
    }

    .latest-news .container {
        padding: 0 20px;
    }

    .news-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 35px;
        gap: 15px;
    }

    .news-heading span {
        font-size: 30px;
        padding-bottom: 12px;
    }

    .show-all-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        font-size: 15px;
    }

    .news-content {
        gap: 35px;
    }

    .news-left {
        height: 300px;
        max-height: 300px;
    }

    .news-item {
        padding: 18px 70px 18px 0;
    }

    .news-arrow {
        width: 48px;
        height: 48px;
        font-size: 17px;
    }

    .news-title {
        font-size: 1.15rem;
        line-height: 1.5;
    }

    .news-date {
        font-size: 13px;
    }
}

/* Mobile - Large (600px - 768px) */
@media (max-width: 600px) {
    .latest-news {
        padding: 40px 0;
    }

    .news-header {
        margin-bottom: 30px;
    }

    .news-heading span {
        font-size: 26px;
        padding-bottom: 10px;
    }

    .news-heading span::after {
        height: 4px;
    }

    .show-all-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .news-content {
        gap: 30px;
    }

    .news-left {
        height: 260px;
        max-height: 260px;
        border-radius: 20px;
    }

    .news-left::after {
        font-size: 13px;
        padding: 10px 24px;
        bottom: 20px;
    }

    .news-item {
        padding: 16px 65px 16px 0;
    }

    .news-arrow {
        width: 46px;
        height: 46px;
        font-size: 16px;
    }

    .news-title {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .news-date {
        font-size: 12px;
        padding: 5px 12px;
        gap: 8px;
    }
}

/* Mobile - Medium (480px - 600px) */
@media (max-width: 480px) {
    .latest-news {
        padding: 35px 0;
    }

    .latest-news .container {
        padding: 0 15px;
    }

    .news-heading span {
        font-size: 24px;
    }

    .show-all-btn {
        padding: 12px 20px;
        font-size: 13px;
        gap: 8px;
    }

    .news-left {
        height: 240px;
        max-height: 240px;
        border-radius: 18px;
    }

    .news-item {
        padding: 15px 60px 15px 0;
        border-radius: 16px;
    }

    .news-arrow {
        width: 44px;
        height: 44px;
        font-size: 15px;
    }

    .news-title {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .news-date {
        font-size: 11px;
        padding: 4px 10px;
    }

    .news-date::before {
        width: 6px;
        height: 6px;
    }

    .news-item:hover {
        padding-right: 15px;
    }

    .news-item:hover .news-arrow {
        transform: translateY(-50%) translateX(8px) rotate(12deg);
    }
}

/* Mobile - Small (360px - 480px) */
@media (max-width: 360px) {
    .news-heading span {
        font-size: 22px;
    }

    .news-left {
        height: 220px;
        max-height: 220px;
    }

    .news-item {
        padding: 14px 58px 14px 0;
    }

    .news-arrow {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .news-title {
        font-size: 0.95rem;
    }
}

/* ============================================
   LANDSCAPE ORIENTATION FIXES
============================================ */
@media (max-width: 992px) and (orientation: landscape) {
    .latest-news {
        padding: 40px 0;
    }

    .news-left {
        height: 280px;
        max-height: 280px;
    }

    .news-content {
        gap: 30px;
    }
}

/* ============================================
   PRINT STYLES
============================================ */
@media print {
    .latest-news {
        background: white;
        padding: 20px 0;
    }

    .latest-news::before,
    .latest-news::after {
        display: none;
    }

    .show-all-btn,
    .news-arrow {
        display: none;
    }

    .news-item {
        padding: 15px 0;
        page-break-inside: avoid;
    }

    .news-left {
        max-height: 250px;
    }
}
/* coatches  */
/* Coaches Section */
.coaches-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    position: relative;
}

.coaches-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #02ab86, transparent);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    /* margin-bottom: 60px; */
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #02ab86;
    border-radius: 2px;
}

/* Bootstrap Carousel Customization */
.coaches-carousel {
    padding: 40px 20px;
}

.carousel-inner {
    padding: 20px 0;
}

/* Coach Card */
.coach-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin: 0 10px;
    height: 100%;
    animation: fadeInUp 0.6s ease forwards;
}

.coach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(2, 171, 134, 0.15);
}

/* Image Container */
.coach-img-wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #02ab86 0%, #00594f 100%);
}

.coach-img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.coach-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.coach-card:hover .coach-img {
    transform: scale(1.1);
}

/* Badge */
.coach-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #02ab86, #00594f);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(2, 171, 134, 0.3);
}

/* Info Section */
.coach-info {
    padding: 25px;
    text-align: center;
    background: #ffffff;
}

.coach-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.coach-job {
    background: linear-gradient(135deg, #02ab86, #00594f);
    color: #ffffff;
    font-size: 13px;
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(2, 171, 134, 0.2);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: #02ab86;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -60px;
}

.carousel-control-next {
    right: -60px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: #028d6f;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    margin-bottom: -30px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d1d5db;
    border: none;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background: linear-gradient(135deg, #02ab86, #00594f);
    transform: scale(1.3);
}

/* Responsive Grid */
@media (max-width: 767px) {
    .coaches-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .coach-card {
        margin: 0 5px;
    }

    .coach-img-wrapper {
        height: 220px;
    }

    .coach-name {
        font-size: 1.2rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .coach-img-wrapper {
        height: 240px;
    }

    .carousel-control-prev {
        left: -40px;
    }

    .carousel-control-next {
        right: -40px;
    }
}

@media (min-width: 992px) {
    .carousel-control-prev {
        left: -70px;
    }

    .carousel-control-next {
        right: -70px;
    }
}

/* Loading State */
.coach-img-wrapper:not(:has(img[src])) {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
}

.coach-img-wrapper:not(:has(img[src]))::after {
    content: '👤';
    font-size: 3rem;
    opacity: 0.5;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accessibility Improvements */
.carousel-control-prev:focus,
.carousel-control-next:focus {
    outline: 2px solid #02ab86;
    outline-offset: 2px;
}

.carousel-indicators [data-bs-target]:focus {
    outline: 2px solid #02ab86;
    outline-offset: 2px;
}

/* RTL Support for Arabic */
[dir="rtl"] .carousel-control-prev {
    left: auto;
    right: -60px;
}

[dir="rtl"] .carousel-control-next {
    right: auto;
    left: -60px;
}

[dir="rtl"] .coach-badge {
    right: auto;
    left: 15px;
}

[dir="rtl"] .section-title::after {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .coach-card {
        border: 2px solid #000000;
    }
    
    .coach-job {
        border: 1px solid #000000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .coach-card,
    .coach-card:hover,
    .coach-img,
    .coach-card:hover .coach-img,
    .carousel-control-prev,
    .carousel-control-next,
    .carousel-indicators [data-bs-target] {
        transition: none;
        animation: none;
    }
    
    .coach-card:hover {
        transform: none;
    }
}

/* Print Styles */
@media print {
    .coaches-section {
        background: none !important;
        padding: 40px 0 !important;
    }
    
    .coach-card {
        box-shadow: none !important;
        border: 1px solid #000000 !important;
        break-inside: avoid;
    }
    
    .coach-img-wrapper {
        height: 200px !important;
    }
    
    .carousel-control-prev,
    .carousel-control-next,
    .carousel-indicators {
        display: none !important;
    }
}
/* ===== Contact Section ===== */
.contact {
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
 background: linear-gradient(135deg, #f8fafb 0%, #eef8f7 100%);
}

/* Blur Overlay Effect - Optional decorative background */
/* .contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(39, 197, 58, 0.15) 0%, transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(39, 197, 58, 0.1) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
} */

.contact .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Button Style */
.contact .contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 2px solid rgba(0, 0, 0, 0.15);
  padding: 20px 45px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  min-width: 300px;
}

/* Text */
.contact .contact-btn span {
  flex: 1;
  text-align: center;
}

/* Icon Circle */
.contact .icon-box {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #00594f;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

/* Hover Effects */
.contact .contact-btn:hover {
  border-color: #00594f;
  background: rgba(255, 255, 255, 1);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(39, 197, 58, 0.25);
}

.contact .contact-btn:hover .icon-box {
  background: #00594f;
  transform: rotate(45deg) scale(1.1);
}

/* Active/Click Effect */
.contact .contact-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(39, 197, 58, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }
  
  .contact .contact-btn {
    font-size: 18px;
    padding: 16px 35px;
    min-width: 260px;
  }
  
.contact .icon-box {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* partners */
    .partners {
      padding: 50px 0;
      background: linear-gradient(135deg, #00594f 0%, #00b087 100%);
      position: relative;
      overflow: hidden;
    }

    .partners::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
      opacity: 0.3;
    }

    .partners .container {
      position: relative;
      z-index: 1;
      
    }

    .partners h3 {
      text-align: center;
      color: #ffffff;
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 60px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }


    .carousel-item {
      padding: 20px 0;
    }

    .partner-slide {
      display: flex !important;
      justify-content: center;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .partner-logo {
      background: #ffffff;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 120px;
      min-width: 200px;
      max-width: 220px;
    }

    .partner-logo:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    }

    .partner-logo img {
      max-width: 100%;
       height: 80px;
      object-fit: contain;
      filter: grayscale(0%);
      transition: filter 0.3s ease;
    }

    .partner-logo:hover img {
      filter: grayscale(0%) brightness(1.1);
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0.8;
      transition: all 0.3s ease;
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
      background: rgba(255, 255, 255, 0.3);
      opacity: 1;
    }

    .carousel-control-prev {
      right: -25px;
      left: auto;
    }

    .carousel-control-next {
      left: -25px;
      right: auto;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      width: 25px;
      height: 25px;
      transform: rotate(180deg);
    }

    .carousel-indicators {
      margin-bottom: -40px;
    }

    .carousel-indicators button {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.5);
      border: none;
      margin: 0 5px;
    }

    .carousel-indicators button.active {
      background-color: #ffffff;
      transform: scale(1.2);
    }

    @media (max-width: 768px) {
      .partners {
        padding: 60px 0;
      }

      .partners h3 {
        font-size: 2rem;
        margin-bottom: 40px;
      }

      .partner-slide {
        gap: 20px;
      }

      .partner-logo {
        min-width: 150px;
        max-width: 180px;
        padding: 20px;
      }

      .carousel-control-prev,
      .carousel-control-next {
        width: 40px;
        height: 40px;
      }
    }


/* download App */

.download-mini-section {
    direction: rtl;
    font-family: 'Tajawal', sans-serif;
    background-color: #ffffff;
    padding: 40px 0;
    overflow: hidden;
}

.download-mini-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.download-mini-section .download-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    background: #f9fdfc;
    border-radius: 20px;
    border: 1px solid rgba(0, 176, 135, 0.1);
    min-height: 320px;
    padding: 40px;
    gap: 40px;
    position: relative;
}

.download-mini-section .content-side {
    z-index: 2;
}

.download-mini-section .badge-mini {
    color: #00b087;
    background: rgba(0, 176, 135, 0.08);
    display: inline-block;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 12px;
}

.download-mini-section h2 {
    color: #1a1a1a;
    font-size: 2em;
    margin: 0 0 12px 0;
    font-weight: 700;
    line-height: 1.3;
}

.download-mini-section p {
    color: #666;
    font-size: 1.05em;
    margin-bottom: 24px;
    max-width: 450px;
    line-height: 1.6;
}

.download-mini-section .store-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.download-mini-section .btn-store {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 160px;
    pointer-events: none;
    opacity: 0.5;
    filter: grayscale(100%);
    cursor: not-allowed;
}

.download-mini-section .btn-store svg {
    flex-shrink: 0;
}

.download-mini-section .primary-btn {
    background: #00b087;
    color: #ffffff;
    border: 2px solid #00b087;
}

.download-mini-section .primary-btn:hover {
    background: #009973;
    border-color: #009973;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 176, 135, 0.25);
}

.download-mini-section .outline-btn {
    background: #ffffff;
    color: #00b087;
    border: 2px solid #00b087;
}

.download-mini-section .outline-btn:hover {
    background: rgba(0, 176, 135, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 176, 135, 0.15);
}

.download-mini-section .mockup-side {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-mini-section .phone-frame {
    width: 200px;
    height: 400px;
    background: #1a1a1a;
    border: 6px solid #2a2a2a;
    border-radius: 30px;
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.15),
        0 0 0 1px rgba(255,255,255,0.1) inset;
    transform: rotate(-3deg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.download-mini-section .phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
    z-index: 10;
}

.download-mini-section .phone-frame:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 
        0 25px 60px rgba(0,0,0,0.2),
        0 0 0 1px rgba(255,255,255,0.1) inset;
}

.download-mini-section .phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .download-mini-section .download-grid {
        grid-template-columns: 1fr 0.6fr;
        gap: 30px;
    }
    
    .download-mini-section .phone-frame {
        width: 180px;
        height: 360px;
    }
}

@media (max-width: 768px) {
    .download-mini-section .download-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 35px 25px;
        text-align: center;
        gap: 0;
    }
    
    .download-mini-section h2 {
        font-size: 1.6em;
    }
    
    .download-mini-section p {
        margin-left: auto;
        margin-right: auto;
        font-size: 1em;
    }
    
    .download-mini-section .store-buttons {
        justify-content: center;
    }
    
    .download-mini-section .btn-store {
        min-width: 145px;
        padding: 11px 20px;
        font-size: 0.9em;
    }
    
    .download-mini-section .mockup-side {
        display: none;
    }
}

@media (max-width: 480px) {
    .download-mini-section .store-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .download-mini-section .btn-store {
        width: 100%;
        max-width: 280px;
    }
}


