    /* ============================================
   Global Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0D9488;
    --primary-dark: #0F766E;
    --accent: #F97316;
    --dark: #0F172A;
    --light: #F8FAFC;
    --border: #E2E8F0;
    --text: #0F172A;
    --text-light: #475569;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--white);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ============================================
   Hero Section
   ============================================ */

/* ===== SCHOLARSHIP HERO (NO CONFLICT) ===== */
.sch-hero{
  position: relative;
  overflow: hidden;
  padding: clamp(6.5rem, 10vw, 8.5rem) 1rem 5rem; /* فوق أكبر عشان الـ navbar */
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
}

.sch-hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
  background: url("/assets/images/burslar.jpeg") center/cover no-repeat;
}
.sch-hero-bg::before{
  content:"";
  position:absolute;
  inset:-40px;
  background: url("../assets/images/burslar.jpeg") center/contain no-repeat; /* contain بدل cover */
  opacity: .14;                 /* خففناها */
  filter: grayscale(15%) contrast(95%) blur(1px);
  transform: scale(1.05);
}

.sch-hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.92), rgba(255,255,255,.65) 45%, rgba(248,250,252,.95) 100%),
    linear-gradient(135deg, rgba(69,49,171,.10), rgba(245,158,11,.08));
}
/* blobs */
.sch-blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  mix-blend-mode: multiply;
}

.sch-blob-1{
  width: 384px;
  height: 384px;
  background: var(--primary);
  top: 0;
  right: 0;
  animation: sch-blob-animation 7s infinite;
}

.sch-blob-2{
  width: 384px;
  height: 384px;
  background: var(--accent);
  bottom: 0;
  left: 0;
  animation: sch-blob-animation 7s infinite 2s;
}

@keyframes sch-blob-animation{
  0%,100%{ transform: translate(0,0) scale(1); }
  33%{ transform: translate(30px,-50px) scale(1.1); }
  66%{ transform: translate(-20px,20px) scale(0.9); }
}

/* content */
.sch-hero-content{
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;

  background: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  padding: clamp(18px, 3vw, 34px);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}


.sch-badge{
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.3);
  border-radius: 50px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.sch-hero-title{
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.sch-gradient-text{
  display: block;
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 0.5rem;
}
.sch-hero-desc{
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.sch-hero-actions{
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================
   Buttons
   ============================================ */

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--light);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   Section Styles
   ============================================ */

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

/* ============================================
   Benefits Section
   ============================================ */

.benefits {
    padding: 5rem 1rem;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   Timeline Section
   ============================================ */

.timeline {
    padding: 5rem 1rem;
    background: linear-gradient(to right, #0F172A, #1E293B);
    color: var(--white);
}

.timeline-title {
    color: var(--white);
}

.timeline-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-dot {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    background: #475569;
    color: #CBD5E1;
    position: relative;
    z-index: 10;
}

.timeline-dot.active {
    background: var(--primary);
    color: var(--white);
}

.timeline-content {
    text-align: center;
}

.timeline-date {
    font-weight: 600;
    color: var(--accent);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.timeline-event {
    color: #CBD5E1;
}

/* ============================================
   Requirements Section
   ============================================ */

.requirements {
    padding: 5rem 1rem;
    background: var(--white);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.requirements-column {
    background: var(--light);
    padding: 2rem;
    border-radius: 0.75rem;
}

.requirements-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.requirement-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(13, 148, 136, 0.1);
    border-radius: 0.5rem;
    align-items: flex-start;
}

.checkmark {
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

.requirement-item span:last-child {
    color: var(--text);
}

.age-boxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.age-box {
    padding: 1rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 0.5rem;
}

.age-level {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.age-value {
    color: var(--text);
    font-size: 0.95rem;
}

.age-date {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* ============================================
   GPA Table
   ============================================ */

.gpa-section {
    margin-top: 2rem;
}

.gpa-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.gpa-table thead {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: var(--white);
}

.gpa-table th {
    padding: 1rem;
    text-align: right;
    font-weight: 600;
}

.gpa-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    text-align: right;
}

.gpa-table tbody tr:nth-child(even) {
    background: var(--light);
}

.gpa-table tbody tr:hover {
    background: rgba(13, 148, 136, 0.05);
}

/* ============================================
   Stipends Section
   ============================================ */

.stipends {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.stipends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stipend-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stipend-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.stipend-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stipend-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.stipend-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

/* ============================================
   Documents Section
   ============================================ */

.documents {
    padding: 5rem 1rem;
    background: var(--white);
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.doc-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    align-items: center;
    transition: all 0.3s ease;
}

.doc-item:hover {
    border-color: var(--primary);
    background: rgba(13, 148, 136, 0.05);
}

.doc-check {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.doc-item span:last-child {
    color: var(--text);
}

/* ============================================
   FAQ Section
   ============================================ */

.faq {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
    user-select: none;
}

.faq-question:hover {
    background: var(--light);
}

.faq-toggle {
    color: var(--primary);
    transition: transform 0.3s ease;
    font-size: 0.75rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid var(--border);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   CTA Section
   ============================================ */

.cta {
    padding: 5rem 1rem;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    padding: 3rem 1rem;
    background: #0F172A;
    color: #94A3B8;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3,
.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.95rem;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .gpa-table {
        font-size: 0.85rem;
    }

    .gpa-table th,
    .gpa-table td {
        padding: 0.75rem 0.5rem;
    }

    .timeline-wrapper {
        grid-template-columns: 1fr;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 1rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .benefits-grid,
    .stipends-grid {
        grid-template-columns: 1fr;
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 1.5rem;
    }

    .cta p {
        font-size: 1rem;
    }
}
