@media(max-width:900px){

    .navbar{
        position:relative;
    }

    .menu-toggle{
        display:block;
        flex-shrink:0;
    }

    .nav-links{
        display:none;

        position:absolute;
        top:100%;
        right:0;

        width:100%;
        padding:15px 5%;

        background:white;

        flex-direction:column;
        align-items:stretch;
        gap:0;

        box-shadow:0 15px 30px rgba(0,54,90,.12);

        z-index:9999;
    }

    .nav-links.open{
        display:flex;
    }

    .nav-links li{
        width:100%;
    }

    .nav-links a{
        display:block;
        width:100%;
        padding:13px 5px;
        border-bottom:1px solid var(--line);
    }

    .nav-links li:last-child a{
        border-bottom:0;
    }

}
/* =========================================
   PREMIUM ABOUT PAGE - MATCHES MOCKUP
========================================= */
.menu-toggle{
    display:none;
    background:none;
    border:0;
    color:var(--deep);
    font-size:28px;
    cursor:pointer;
}

.section-kicker {
  display: inline-block;
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}

.section-kicker::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin: 8px auto 0;
  background: linear-gradient(90deg, var(--red), var(--green), var(--blue));
  border-radius: 20px;
}

.about-premium-hero {
  min-height: 520px;
  background:
    linear-gradient(250deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 38%, rgba(255,255,255,.10) 72%),
    url("all.jpg");
  background-size: cover;
  background-position: center left;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.about-premium-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 85px;
  background: linear-gradient(to top, rgba(247,251,255,.95), transparent);
}

.about-hero-inner {
  width: min(92%, 1250px);
  margin: auto;
  position: relative;
  z-index: 2;
}

.about-hero-text {
  max-width: 560px;
  text-align: center;
}

.about-hero-text h1 {
  color: var(--deep);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.25;
  margin-bottom: 18px;
}

.about-hero-text p {
  color: #345a72;
  font-size: 19px;
  margin-bottom: 28px;
}

/* STORY */

.about-story-clean {
  padding: 90px 8% 55px;
  background: var(--soft);
}



.about-story-wrapper {
  width: min(100%, 1120px);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.story-photo {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,75,122,.14);
}

.story-photo img {
  height: 355px;
  object-fit: cover;
}

.story-content {
  background: transparent;
}

.story-content .section-kicker::after {
  margin-right: 0;
}

.story-content h2 {
  color: var(--deep);
  font-size: 36px;
  margin-bottom: 16px;
}

.story-content p {
  color: #405f74;
  font-size: 17px;
  margin-bottom: 13px;
}

.read-more-btn {
  display: inline-block;
  margin-top: 14px;
  background: var(--blue);
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 800;
  transition: .3s;
}

.read-more-btn:hover {
  background: var(--deep);
  transform: translateY(-3px);
}

/* VISION MISSION */

.about-vm-clean {
  padding: 20px 8% 75px;
  background: var(--soft);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.about-vm-box {
  background: linear-gradient(180deg, #ffffff, #f2f8fe);
  border: 1px solid #cfe3f3;
  border-radius: 12px;
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  box-shadow: 0 10px 24px rgba(0,75,122,.08);
}

.vm-icon {
  width: 74px;
  height: 74px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
}

.about-vm-box h3 {
  color: var(--deep);
  font-size: 25px;
  margin-bottom: 8px;
}

.about-vm-box p {
  color: #426174;
  font-size: 15px;
}

/* OBJECTIVES */

.about-objectives-clean {
  padding: 35px 8% 65px;
  background: #ffffff;
}

.objectives-clean-grid {
  width: min(100%, 1120px);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.objective-clean-card {
  min-height: 132px;
  background: #ffffff;
  border: 1px solid #d9e8f3;
  border-radius: 10px;
  padding: 22px 14px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0,75,122,.05);
  transition: .3s;
}

.objective-clean-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,75,122,.13);
}

.objective-clean-card i {
  color: var(--blue);
  font-size: 30px;
  margin-bottom: 14px;
}

.objective-clean-card h3 {
  color: var(--deep);
  font-size: 15px;
  line-height: 1.6;
}

/* HERITAGE */

.heritage-clean-section {
  padding: 30px 8% 70px;
  background: #ffffff;
}

.heritage-clean-grid {
  width: min(100%, 1120px);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.heritage-clean-card {
  height: 190px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(0,75,122,.14);
}

.heritage-clean-card img {
  height: 100%;
  object-fit: cover;
  transition: .45s;
}

.heritage-clean-card:hover img {
  transform: scale(1.08);
}

.heritage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,35,65,.82), rgba(0,35,65,.15));
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  padding: 20px;
  color: white;
}

.heritage-overlay h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.heritage-overlay a {
  color: white;
  border: 1px solid white;
  padding: 4px 16px;
  border-radius: 6px;
  font-size: 13px;
  transition: .3s;
}

.heritage-overlay a:hover {
  background: white;
  color: var(--blue);
}

/* NUMBERS */

.about-numbers-clean {
  padding: 34px 8%;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-numbers-clean article {
  text-align: center;
  border-left: 1px solid #cfdde8;
  position: relative;
}

.about-numbers-clean article:last-child {
  border-left: none;
}

.about-numbers-clean strong {
  color: var(--blue);
  font-size: 34px;
  display: block;
  line-height: 1.1;
}

.about-numbers-clean span {
  color: #385b72;
  font-size: 14px;
  display: block;
  margin-top: 6px;
}

.about-numbers-clean i {
  color: var(--blue);
  font-size: 28px;
  margin-top: 8px;
}

/* QUOTE */

.about-quote-clean {
  background:
    linear-gradient(rgba(0,64,110,.96), rgba(0,64,110,.96)),
    url("quote-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 90px 8%;
  text-align: center;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-quote-clean blockquote {
  color: white;
  font-size: clamp(25px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.8;
  margin: 0;
}

.about-quote-clean span {
  font-size: 52px;
  color: white;
  opacity: .9;
}


/* CHAIRMAN */

.chairman-clean-section {
  background: #ffffff;
  padding: 58px 8% 70px;
}

.chairman-clean-card {
  width: min(100%, 1020px);
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 48px;
  align-items: center;
}

.chairman-text {
  text-align: center;
}

.chairman-text h2 {
  color: var(--deep);
  font-size: 32px;
  margin-bottom: 16px;
}

.chairman-text p {
  color: #405f74;
  font-size: 17px;
  margin-bottom: 18px;
}

.chairman-text h3 {
  color: var(--blue);
  font-size: 20px;
}

.chairman-text small {
  color: #45677c;
}

.chairman-photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0,75,122,.15);
}

.chairman-photo img {
  height: 280px;
  object-fit: cover;
}

/* MOBILE */

@media (max-width: 900px) {

  .about-premium-hero {
    min-height: 620px;
    background:
      linear-gradient(rgba(255,255,255,.91), rgba(255,255,255,.86)),
      url("about-hero.jpg");
    background-size: cover;
    background-position: center;
    text-align: center;
  }

  .about-hero-text {
    max-width: 100%;
  }

  .about-story-wrapper,
  .about-vm-clean,
  .heritage-clean-grid,
  .about-numbers-clean,
  .chairman-clean-card {
    grid-template-columns: 1fr;
  }

  .story-photo,
.chairman-photo {
  background:
    linear-gradient(135deg, #eef7fd, #ffffff);
  border: 1px solid var(--line);
  position: relative;
}

.story-photo::before,
.chairman-photo::before {
  content: "سيتم إضافة الصورة بعد اختيار العميل";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #6f8ca0;
  font-weight: 700;
  z-index: 0;
}

.story-photo img,
.chairman-photo img {
  position: relative;
  z-index: 1;
}

  .story-photo img {
    height: 285px;
  }

  .objectives-clean-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-vm-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .vm-icon {
    margin: auto;
  }

  .about-numbers-clean article {
    border-left: none;
    border-bottom: 1px solid var(--line);
    padding: 20px;
  }

  .about-numbers-clean article:last-child {
    border-bottom: none;
  }

  .chairman-clean-card {
    text-align: center;
  }

  .chairman-photo {
    order: -1;
  }

  .chairman-photo img {
    height: 320px;
  }
}

@media (max-width: 560px) {

  .about-hero-text h1 {
    font-size: 36px;
  }

  .about-hero-text p {
    font-size: 17px;
  }

  .story-content h2,
  .chairman-text h2 {
    font-size: 28px;
  }

  .objectives-clean-grid {
    grid-template-columns: 1fr;
  }

  .heritage-clean-card {
    height: 230px;
  }
}
/* =========================================
   FADE / SCROLL ANIMATIONS
========================================= */

.fade-up,
.fade-in,
.fade-right,
.fade-left {
  opacity: 0;
  transition: opacity .9s ease, transform .9s ease;
}

.fade-up {
  transform: translateY(45px);
}

.fade-in {
  transform: scale(.96);
}

.fade-right {
  transform: translateX(45px);
}

.fade-left {
  transform: translateX(-45px);
}

.fade-up.show,
.fade-in.show,
.fade-right.show,
.fade-left.show {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Small delay options */
.delay-1 {
  transition-delay: .15s;
}

.delay-2 {
  transition-delay: .3s;
}

.delay-3 {
  transition-delay: .45s;
}

.delay-4 {
  transition-delay: .6s;
}

/* Better accessibility */
@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .fade-in,
  .fade-right,
  .fade-left {
    opacity: 1;
    transform: none;
    transition: none;
  }
}