
    /* ===================== CSS RESET & BASE ===================== */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --background: hsl(0, 0%, 100%);
      --foreground: hsl(220, 20%, 20%);
      --card: hsl(0, 0%, 100%);
      --card-foreground: hsl(220, 20%, 20%);
            --primary: rgb(4, 94, 110);
      --primary-foreground: hsl(0, 0%, 100%);
      --secondary: hsl(175, 40%, 95%);
      --secondary-foreground: hsl(175, 50%, 25%);
      --muted: hsl(175, 20%, 96%);
      --muted-foreground: hsl(220, 10%, 45%);
      --border: hsl(175, 20%, 85%);
            --hero-bg: rgb(4, 94, 110);
      --hero-text: hsl(0, 0%, 95%);
      --radius: 0.5rem;
    }

            :root
            {
                --brand-deep: #07124f;
                --brand-teal: rgb(4, 94, 110);
                --muted: #6c757d;
                --card-wash: #f7fbfb;
                --white: #ffffff;
                --page-bg: #ffffff;
                --accent: #11107f;
                --footer-bg: #083b3b;
            }

    html {
      scroll-behavior: smooth;
    }

    /* body {
            font-family: 'Forum', serif;
      background-color: var(--background);
      color: var(--foreground);
      line-height: 1.6;
    }

    h1, h2, h3, h4, h5, h6 {
            font-family: 'Forum', serif;
            font-weight: normal;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    } */

    /* ===================== HEADER ===================== */
    .header {
      background: var(--background);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 50;
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem;
    }

    .logo {
      text-align: center;
      flex: 1;
    }

    .logo-arabic {
      font-family: 'Amiri', serif;
      font-size: 2rem;
      color: var(--primary);
      letter-spacing: 0.05em;
    }

    .logo-english {
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      color: var(--muted-foreground);
      font-weight: 500;
      margin-top: 0.25rem;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 1rem;
      color: var(--muted-foreground);
    }

    .header-actions button {
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--muted-foreground);
      font-size: 0.875rem;
    }

    .search-box {
      display: none;
    }

    @media (min-width: 768px) {
      .search-box {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }
      .logo-arabic {
        font-size: 2.5rem;
      }
    }

    /* ===================== HERO SECTION ===================== */
    .hero {
      background-color: var(--hero-bg);
      color: var(--hero-text);
      padding: 4rem 1rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .hero {
        padding: 6rem 1rem;
      }
    }

    .hero-title {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      animation: fadeIn 0.5s ease-out;

      color: wheat;
    }

    @media (min-width: 768px) {
      .hero-title {
        font-size: 3.5rem;
      }
    }

    .hero-text {
      max-width: 800px;
      margin: 0 auto;
      opacity: 0.9;
    }

    .hero-text p {
      margin-bottom: 1rem;
      font-size: 1rem;
      animation: fadeIn 0.5s ease-out;
    }

    @media (min-width: 768px) {
      .hero-text p {
        font-size: 1.125rem;
      }
    }

    .hero-text p:nth-child(1) { animation-delay: 0.1s; }
    .hero-text p:nth-child(2) { animation-delay: 0.2s; }
    .hero-text p:nth-child(3) { animation-delay: 0.3s; }

    .btn {
      display: inline-block;
      padding: 0.875rem 2.5rem;
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-decoration: none;
      border-radius: var(--radius);
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .btn-hero {
      background: transparent;
      color: var(--hero-text);
      border: 1px solid rgba(255, 255, 255, 0.5);
      margin-top: 1.5rem;
      animation: fadeIn 0.5s ease-out;
      animation-delay: 0.4s;
      animation-fill-mode: both;
    }

    .btn-hero:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .btn-primary {
      background: var(--primary);
      color: var(--primary-foreground);
      border: none;
    }

    .btn-primary:hover {
      opacity: 0.9;
    }

    /* ===================== TAB NAVIGATION ===================== */
    .tab-nav {
      border-bottom: 1px solid var(--border);
      background: var(--background);
      position: sticky;
      top: 73px;
      z-index: 40;
      overflow-x: auto;
    }

    .tab-nav-inner {
      display: flex;
      justify-content: center;
    }

    .tab-btn {
      padding: 1rem 1.5rem;
      font-size: 0.875rem;
      font-weight: 500;
      white-space: nowrap;
      background: none;
      border: none;
      border-bottom: 2px solid transparent;
      cursor: pointer;
      color: var(--muted-foreground);
      transition: all 0.2s ease;
    }

    @media (min-width: 768px) {
      .tab-btn {
        font-size: 1rem;
      }
    }

    .tab-btn:hover {
      color: var(--foreground);
      background: var(--muted);
    }

    .tab-btn.active {
      color: var(--primary);
      border-bottom-color: var(--primary);
      background: var(--secondary);
    }

    /* ===================== SECTIONS ===================== */
    .section {
      display: none;
      padding: 3rem 1rem;
    }

    .section.active {
      display: block;
    }

    @media (min-width: 768px) {
      .section {
        padding: 4rem 1rem;
      }
    }

    .section-title {
      font-size: 2rem;
      font-family: 'Forum', serif;

      text-align: center;
      margin-bottom: 2.5rem;
      color: var(--foreground);


    }

    @media (min-width: 768px) {
      .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
      }
    }

    .section-alt {
      background: var(--muted);
    }

    /* ===================== OVERVIEW SECTION ===================== */
    .overview-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .overview-content p {
      margin-bottom: 1.5rem;
      color: rgba(0, 0, 0, 0.7);
    }

    .course-details-box {
      margin-top: 3rem;
      padding: 1.5rem;
      background: var(--secondary);
      border-radius: var(--radius);
      border: 1px solid var(--border);
    }

    .course-details-box h3 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      color: var(--foreground);
    }

    .details-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .details-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    .detail-item {
      display: flex;
      gap: 0.5rem;
    }

    .detail-label {
      font-weight: 600;
      color: var(--primary);
    }

    /* ===================== OBJECTIVES SECTION ===================== */
    .objectives-grid {
      max-width: 800px;
      margin: 0 auto;
      display: grid;
      gap: 2rem;
    }

    .objective-card {
      background: var(--card);
      padding: 1.5rem;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
      animation: fadeIn 0.5s ease-out;
    }

    @media (min-width: 768px) {
      .objective-card {
        padding: 2rem;
      }
    }

    .objective-icon {
      flex-shrink: 0;
      width: 3rem;
      height: 3rem;
      background: rgba(26, 95, 95, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
    }

    .objective-card h3 {
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
      color: var(--foreground);
    }

    .objective-card p {
      color: var(--muted-foreground);
    }

    /* ===================== SCHEDULE SECTION ===================== */
    .schedule-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      max-width: 800px;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .schedule-grid {
        grid-template-columns: repeat(5, 1fr);
      }
    }

    .schedule-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.5rem;
      text-align: center;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
      transition: box-shadow 0.2s ease;
      animation: fadeIn 0.5s ease-out;
    }

    .schedule-card:hover {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .schedule-card h3 {
      font-size: 1.125rem;
      margin-bottom: 0.75rem;
      color: var(--primary);
    }

    .schedule-card p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
      font-weight: 500;
    }

    .schedule-note {
      margin-top: 3rem;
      text-align: center;
      padding: 1.5rem;
      background: var(--secondary);
      border-radius: var(--radius);
      color: var(--muted-foreground);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* ===================== FEES SECTION ===================== */
    .fees-card {
      max-width: 400px;
      margin: 0 auto;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .fees-header {
      background: var(--primary);
      color: var(--primary-foreground);
      padding: 1.5rem;
      text-align: center;
    }

    .fees-header h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .fees-header p {
      opacity: 0.8;
    }

    .fees-body {
      padding: 2rem;
    }

    .fees-price {
      text-align: center;
      margin-bottom: 2rem;
    }

    .fees-amount {
      font-size: 3rem;
      font-weight: 700;
      color: var(--primary);
    }

    .fees-period {
      color: var(--muted-foreground);
    }

    .fees-admin {
      font-size: 0.875rem;
      color: var(--muted-foreground);
      margin-top: 0.5rem;
    }

    .fees-list {
      list-style: none;
      margin-bottom: 2rem;
    }

    .fees-list li {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
      color: var(--foreground);
    }

    .fees-list li svg {
      color: var(--primary);
      flex-shrink: 0;
    }

    .fees-body .btn {
      width: 100%;
      text-align: center;
    }

    /* ===================== TEACHERS SECTION ===================== */
    .teachers-grid {
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      gap: 2rem;
    }

     .teachers-grid > h2, .teacher-info > h3 {
            font-family: 'Forum', serif;
     }

    .teacher-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      padding: 1.5rem;
      animation: fadeIn 0.5s ease-out;
    }

    @media (min-width: 768px) {
      .teacher-card {
        padding: 2rem;
      }
    }

    .teacher-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .teacher-content {
        flex-direction: row;
      }
    }

    .teacher-image {
      flex-shrink: 0;
      display: flex;
      justify-content: center;
    }

    .teacher-image-placeholder {
      width: 8rem;
      height: 8rem;
      background: var(--muted);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted-foreground);
    }

    .teacher-info {
      flex: 1;
    }

    .teacher-info h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--primary);
    }

    .teacher-bio {
      margin-bottom: 1rem;
    }

    .teacher-bio p {
      margin-bottom: 0.75rem;
      color: var(--muted-foreground);
    }

    .teacher-roles h4 {
            font-family: 'Forum', serif;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--foreground);
    }

    .teacher-roles ul {
      list-style: none;
    }

    .teacher-roles li {
      color: var(--muted-foreground);
      display: flex;
      gap: 0.5rem;
    }

    .teacher-roles li::before {
      content: "›";
      color: var(--primary);
    }

    /* ===================== FOOTER ===================== */
    .footer {
      background: var(--hero-bg);
      color: var(--hero-text);
      padding: 3rem 1rem;
    }

    .footer-cta {
      text-align: center;
      margin-bottom: 2rem;
    }

    .footer-divider {
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding-top: 2rem;
    }

    .footer-logo {
      text-align: center;
    }

    .footer-logo-arabic {
      font-family: 'Amiri', serif;
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .footer-logo-english {
      font-size: 0.875rem;
      letter-spacing: 0.2em;
      opacity: 0.8;
    }

    .footer-contact {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      opacity: 0.7;
    }

  @media (min-width: 768px) {
      .footer-contact {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
      }
    }

    .footer-contact a {
      color: inherit;
      text-decoration: none;
    }

    .footer-contact a:hover {
      opacity: 1;
    }

    .footer-copyright {
      text-align: center;
      font-size: 0.75rem;
      opacity: 0.5;
      margin-top: 2rem;
    }

    /* ===================== ANIMATIONS ===================== */
  @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ===================== UTILITIES ===================== */
    .hidden {
      display: none !important;
    }

