:root {
    --dark: #061928;
    --green: #061928;
    --light: #f8f8f8;
  }

  body {
    background: var(--light);
    color: var(--dark);
    font-family: sans-serif;
  }

  .btn-primary {
    background: #061928 !important;
    color: #fff !important;
    padding: 10px !important;
    border: 1px solid #061928 !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition:  0.3s ease-out !important;
}

.btn-primary:hover {
    letter-spacing: 1px !important;
}

  .banner {
    display: flex;
    width: 100%;
    height: 40vh;
    padding: 20px;
    gap: 20px;
    color: #f8f8f8;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(45deg, #0D0D0D, #506B56, #0D0D0D);
    border-bottom-left-radius: 2%;
    border-bottom-right-radius: 2%;
    border-top-left-radius: 0%;
    border-top-right-radius: 0%;
}
  .banner h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .banner h1 {
      font-size: 1em !important;
    }

    .banner p {
      font-size: .8em !important;
    }

    .banner .btn {
      font-size: .8em !important;
      padding: 10px 20px !important;
    }

  }
  /* Hero Banner */
  .about-hero {
    position: relative;
    height: 50vh;
    background: url('../images/about/banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-hero .overlay {
    position: absolute; inset: 0;
    background: rgba(13, 13, 13, 0.6);
  }
  .about-hero h1, .about-hero p {
    position: relative; z-index: 2;
    color: #fff;
  }
  .about-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  .about-hero p {
    font-size: 1.2rem;
    font-weight: 300;
  }

  /* Sections */
  .section-padding {
    padding: 60px 0;
  }
  .about-section {
    padding: 40px 0;
  }
  .section-title {
    text-align: center;
    margin-bottom: 30px;
  }
  .section-title h2 {
    color: var(--green);
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  .section-title p {
    font-weight: 300;
  }

  /* Box for Vision/Mission */
  .box {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-weight: bold;
  }
  
    .box h3 {
    font-weight: bold !important;
  }

  /* Why Us */
  .icon-box {
    background: var(--green);
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }
  .icon-box i {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .icon-box:hover {
    transform: translateY(-8px);
  }

  /* Team */
  .team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 10px;
  }
  .team-member h5 {
    margin-bottom: 5px;
    color: var(--green);
    font-size: 1.1rem;
  }
  .team-member p {
    font-weight: 300;
  }

  /* Footer */
  /*.site-footer {*/
  /*  background: var(--dark);*/
  /*  color: #fff;*/
  /*  padding: 20px 0;*/
  /*}*/

  /* Animations */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .fade-in {
    opacity: 0;
    animation: fadeInUp 1s forwards;
  }
  .fade-in.delay-1 { animation-delay: 0.3s; }
  .fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s forwards;
  }
  .fade-in-up.delay-1 { animation-delay: 0.4s; }
  .fade-in-up.delay-2 { animation-delay: 0.7s; }

.about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    background: #fff;
}

.about-container p {
    width: 80%;
}



/* Container styles */
.why-choose-us {
    background: #0d3d61;
    padding: 80px 0;
    text-align: center;
    direction: rtl;
}

.why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section title and subtitle */
.section-title {
    font-size: 2.5em;
    font-weight: bold;
    /*color: #fff;*/
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.6s forwards;
}

.section-subtitle {
    font-size: 1.2em;
    font-weight: bold;
    /*color: #fff;*/
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 0.6s forwards;
    animation-delay: 0.1s;
}

/* Cards container */
.reasons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Individual reason card */
.reason-card {
    background: linear-gradient(45deg, rgb(13, 13, 13), rgb(80, 107, 86), rgb(13, 13, 13));
    width: 300px;
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid #506b56;
    box-shadow: 0 6px 12px rgba(190, 184, 184, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.reason-card:hover {
    transform: translateY(0);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* Icon styles */
.reason-card i {
    font-size: 3em;
    color: #fff;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.reason-card:hover i {
    color: #fff;
}

/* Card title and description */
.reason-card h3 {
    font-size: 1.5em;
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
}

.reason-card p {
    font-size: 1em;
    font-weight: lighter;
    color: #fff;
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply staggered fade-in animation to cards */
.animate {
    animation: fadeInUp 0.6s forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .reasons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-container {
        text-align: center;
    }
    
    .about-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    }
}
