/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", "Cairo", "Tajawal", sans-serif;
    background-color: #ffffff;
    color: #1a2946;
    line-height: 1.6;
    scroll-behavior: smooth;
  }
  
  html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
  }
  
  /* ========== HEADER ========== */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #1a2946;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
  }
  
  .logo img {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
  }
  .logo img:hover {
    transform: scale(1.1);
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
  }
  nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 50px;
    transition: background-color 0.3s, color 0.3s;
  }
  nav ul li a:hover,
  nav ul li a.active {
    background-color: #637b97;
    color: #ffffff;
  }
  
  .language-toggle {
    margin-left: auto;
    padding-left: 20px;
  }
  .language-toggle button {
    background-color: #5d3712;
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .language-toggle button:hover {
    background-color: #637b97;
  }
  
  /* Burger Menu */
  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
  }
  .burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
  }
  .burger.open div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.open div:nth-child(2) {
    opacity: 0;
  }
  .burger.open div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  @media (max-width: 991px) {
    header {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      padding: 20px;
    }
  
    .burger {
      display: flex;
      margin-left: auto;
      margin-bottom: 10px;
    }
  
    nav {
      display: none;
      width: 100%;
      background-color: #1a2946;
      transition: all 0.3s ease-in-out;
    }
  
    nav.active {
      display: flex;
      flex-direction: column;
    }
  
    nav ul {
      flex-direction: column;
      width: 100%;
      gap: 15px;
      margin-top: 20px;
    }
  
    nav ul li a {
      width: 100%;
      display: block;
      background-color: #5d3712;
      color: #ffffff;
      text-align: center;
      padding: 12px 0;
    }
  
    nav ul li a:hover {
      background-color: #637b97;
    }
  
    .language-toggle {
      margin-top: 10px;
    }
  }
  
  /* ========== HERO SECTION ========== */
  .hero {
    height: 100vh;
    background: linear-gradient(160deg, #1a2946 0%, #000000 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    font-family: "Poppins", "Cairo", "Tajawal", sans-serif;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 123, 151, 0.15) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    z-index: 0;
  }
  
  .hero * {
    z-index: 1;
  }
  
  .hero h1 {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 22px;
    font-weight: 300;
    color: #b0bac9;
    margin-bottom: 40px;
    max-width: 700px;
  }
  
  .hero .cta {
    display: inline-block;
    padding: 16px 36px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    background-color: #5d3712;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
  }
  
  .hero .cta:hover {
    background-color: #637b97;
    transform: translateY(-5px);
  }
  
  @keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  @media (max-width: 768px) {
    .hero h1 { font-size: 42px; }
    .hero p { font-size: 18px; }
    .hero .cta { font-size: 18px; padding: 14px 28px; }
  }
  @media (max-width: 480px) {
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
  }
  
  /* ========== ABOUT SECTION ========== */
  .about {
    background-color: #ffffff;
    color: #1a2946;
    padding: 80px 20px;
    font-family: "Poppins", "Cairo", "Tajawal", sans-serif;
  }
  
  .about .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .about-content img {
    width: 200px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .about-content p {
    flex: 1;
    font-size: 18px;
    line-height: 1.6;
  }
  
  .accordion-item {
    margin-bottom: 30px;
    border: 4px solid #5d3712;
    border-radius: 50px;
    overflow: hidden;
    background-color: #f5f5f5;
  }
  
  .accordion-title {
    width: 100%;
    background-color: #1a2946;
    color: #ffffff;
    padding: 20px;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: left;
  }
  
  .accordion-title:hover {
    background-color: #637b97;
  }
  
  .accordion-content {
    display: none;
    padding: 20px;
    animation: fadeIn 0.4s ease-in-out;
  }
  
  @media (max-width: 768px) {
    .about-content {
      flex-direction: column;
      text-align: center;
    }
  
    .about-content img {
      width: 100%;
      max-width: 300px;
    }
  }
  
  /* ========== SERVICES SECTION ========== */
  .services-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(to right, #f5f7fa, #ffffff);
    font-family: "Poppins", "Cairo", "Tajawal", sans-serif;
  }
  
  .services-section h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a2946;
  }
  
  .services-section .intro {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #637b97;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 10px;
  }
  
  .service-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  }
  
  .service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #5d3712;
  }
  
  .service-card p {
    font-size: 16px;
    color: #444f63;
  }
  
  .cta-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 32px;
    background-color: #5d3712;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .cta-btn:hover {
    background-color: #637b97;
    transform: translateY(-4px);
  }
  
  /* ========== CONTACT SECTION ========== */
  .contact-section {
    padding: 80px 20px;
    background-color: #f5f7fa;
    text-align: center;
    font-family: "Poppins", "Cairo", "Tajawal", sans-serif;
  }
  
  .contact-section h1 {
    font-size: 42px;
    font-weight: 800;
    color: #1a2946;
    margin-bottom: 20px;
  }
  
  .contact-section p {
    font-size: 18px;
    color: #637b97;
    max-width: 700px;
    margin: 0 auto 40px;
  }
  
  .contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form .form-group {
    text-align: left;
    margin-bottom: 25px;
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a2946;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    font-family: "Poppins", "Cairo", "Tajawal", sans-serif;
  }
  
  .contact-form textarea {
    resize: vertical;
  }
  
  .contact-form button {
    background-color: #5d3712;
    color: #ffffff;
    padding: 14px 30px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #637b97;
    transform: translateY(-3px);
  }
  
  /* ========== FOOTER ========== */
  footer {
    background-color: #1a2946;
    padding: 30px 20px;
    color: #ffffff;
    text-align: center;
    font-family: "Poppins", "Cairo", "Tajawal", sans-serif;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .social-media a {
    color: #ffffff;
    font-size: 24px;
    background-color: #5d3712;
    padding: 12px;
    border-radius: 50px;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .social-media a:hover {
    background-color: #637b97;
    transform: scale(1.1);
  }
  
  footer p {
    font-size: 14px;
    color: #ffffff;
  }
  
  /* ========== ANIMATIONS ========== */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
/* ========== WORKSHOPS SECTION ========== */
.workshops {
    padding: 80px 20px;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
    background-color: #ffffff;
    font-family: "Poppins", "Cairo", "Tajawal", sans-serif;
  }
  
  .workshops h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a2946;
  }
  
  .workshops p {
    font-size: 18px;
    color: #637b97;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .workshop-table-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .workshop-card {
    background: #f9f9f9;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
  
  .workshop-card:hover {
    transform: translateY(-5px);
  }
  
  .workshop-card img {
    width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .workshop-card h2 {
    font-size: 20px;
    font-weight: 700;
    color: #5d3712;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .workshop-card ul {
    list-style: none;
    padding: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    width: 100%;
  }
  
  .register-btn {
    margin-top: 20px;
    background: #5d3712;
    color: white;
    padding: 14px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.3s, transform 0.3s;
    display: inline-block;
  }
  
  .register-btn:hover {
    background: #637b97;
    transform: scale(1.05);
  }
  
  /* Responsive for small screens */
  @media (max-width: 600px) {
    .workshops h1 {
      font-size: 30px;
    }
  
    .workshops p {
      font-size: 16px;
    }
  
    .register-btn {
      font-size: 16px;
      padding: 12px 24px;
    }
  
    .workshop-card {
      padding: 20px 15px;
    }
  }
    