/*------------------------------------------------*/
/*About*/
/*------------------------------------------------*/
/* About Section Styles */
.about-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    direction: rtl;
  }
  
  .about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
  }
  
  .about-text {
    text-align: center;
  }
  
  .about-title {
    color: #f4623a;
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .about-subtitle {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1f2937;
  }
  
  .about-description {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
  }
  
  .highlight {
    color: #f4623a;
    font-weight: bold;
  }
  
  .about-image img {
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .about-image img:hover {
    transform: scale(1.05);
  }
  
  @media (min-width: 768px) {
    .about-container {
      flex-direction: row;
      justify-content: space-between;
      text-align: right;
    }
  
    .about-text {
      flex: 1;
    }
  
    .about-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  }
  




/*------------------------------------------------*/
/*About*/
/*------------------------------------------------*/
.why-us-card a:hover{
    color: #fff !important;
  }
  /* Base Section Styling */
  .why-us-section {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
    direction: rtl;
  }

  /* Section Title */
  .why-us-title {
    font-size: 2.5rem;
    color: #f4623a;
    margin-bottom: 40px;
    font-weight: bold;
  }

  /* Cards Container */
  .why-us-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  /* Individual Card */
  .why-us-card {
    background-color: #f9f9f9;
    border-radius: 16px;
    padding: 30px 20px;
    max-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  /* Icon Style */
  .why-us-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
  }

  /* Card Title */
  .why-us-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
  }

  /* Card Text */
  .why-us-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  /* Button */
  .why-us-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: #f4623ab6;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .why-us-btn:hover {
    background-color: #d84f2d;
    transform: scale(1.05);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .why-us-cards {
      flex-direction: column;
      align-items: center;
    }
  }
  /*--------------------------------------------------------*/
  /*--------------------------------------------------------*/
  .majors-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: 'Cairo', sans-serif;
  }
  
  .majors-section .title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .majors-section .subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #666;
  }
  
  .majors-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  @media (min-width: 1024px) {
    .majors-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .major-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .major-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
  }
  
  .major-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .major-card:hover img {
    transform: scale(1.05);
  }
  
  .card-content {
    padding: 20px;
    text-align: center;
  }
  
  .card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
  }
  
  .btn-major {
    display: inline-block;
    background-color: #f4623a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .btn-major:hover {
    background-color: #cf4c29;
    color: #fff;
  }
  
  .more-button {
    text-align: center;
    margin-top: 60px;
  }
  
  .btn-major-large {
    font-size: 1.2rem;
    background-color: #f4623a;
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .btn-major-large:hover {
    background-color: #cf4c29;
    color: #fff;
  }
  /*----------------------------------------------------------------*/
  /*SERVICES*/
  /*----------------------------------------------------------------*/
  .services-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section-title {
    font-size: 2.8rem;
    text-align: center;
    color: #1f2937;
    margin-bottom: 10px;
  }
  
  .section-subtitle {
    font-size: 1.4rem;
    text-align: center;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.8;
  }
  
  .service-feature {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
  }
  
  .service-feature.reverse {
    flex-direction: row-reverse;
  }
  
  .service-text {
    flex: 1 1 500px;
    max-width: 600px;
  }
  
  .feature-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #f4623a;
  }
  
  .feature-description {
    font-size: 1.1rem;
    color: #333;
    line-height: 2;
  }
  
  .service-image {
    flex: 1 1 400px;
    max-width: 500px;
    overflow: hidden;
    border-radius: 12px;
  }
  
  .service-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
  }
  
  /* Hover Zoom + Shadow Effect */
  .service-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  }
  
  
  /* Responsive behavior */
  @media (max-width: 768px) {
    .service-feature,
    .service-feature.reverse {
      flex-direction: column;
      text-align: center;
    }
  
    .service-text {
      text-align: center;
    }
  
    .section-title,
    .section-subtitle {
      text-align: center;
    }
  }
  /*----------------------------------------------------*/
  /*CONTACT*/
  /*----------------------------------------------------*/
  .contact-section {
    background-color: #ecedee;
    color: #f4623a;
    padding: 60px 20px;
    direction: rtl;
  }

  .contact-container {
    max-width: 1200px;
    margin: auto;
  }

  .contact-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
  }

  .advisor-box {
    background-color: white;
    color: #1f2937;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .advisor-box img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
  }

  .advisor-box img:hover {
    transform: scale(1.05);
  }

  .advisor-box h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
  }

  .advisor-box p {
    font-size: 16px;
    line-height: 1.8;
  }

  .form-box {
    background-color: white;
    color: #1f2937;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .form-box h4 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: bold;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 15px;
  }

  .form-check {
    margin-bottom: 10px;
  }

  .form-check-label {
    margin-right: 8px;
  }

  .submit-btn {
    width: 100%;
    background-color: #f4623ac6;
    color: white;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .submit-btn:hover {
    background-color: #f4623a;
  }

  @media (min-width: 768px) {
    .advisor-box {
      flex-direction: row;
      text-align: right;
    }

    .advisor-box img {
      margin-left: 30px;
      margin-bottom: 0;
    }

    .advisor-text {
      max-width: 700px;
    }
  }
  /*---------------------------------------------------------------*/
  /*FOOTER*/
  /*---------------------------------------------------------------*/
  .footer {
    background-color: #000000;
    color: white;
    padding: 20px 15px;
    direction: rtl;
    font-size: 14px;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .footer a {
    color: #f4623a;
    text-decoration: none;
    margin: 0 6px;
    transition: color 0.3s ease;
    font-size: 14px;
  }

  .footer a:hover {
    color: #fff;
    text-decoration: underline;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

  .scroll-top {
    font-weight: bold;
    font-size: 13px;
  }

  @media (min-width: 768px) {
    .footer-content {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      text-align: right;
    }

    .footer-links {
      justify-content: flex-start;
    }

    .footer-copy {
      margin: 0;
    }

    .scroll-top {
      order: 3;
    }
  }