/* Accomplishments Page Styles */
:root {
    --primary-color: #1e40af;
    --secondary-color: #3b82f6;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --border-color: #e5e7eb;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 25px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    --gradient-warning: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-accent: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
  }
  
 
.accomplishments-section h2, .accomplishments-section h3 {
    color: #1e293b;
}
  /* Hero Section */
  .accomplishments-hero {
    position: relative;
    height: 70vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .accomplishments-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("/placeholder.svg?height=800&width=1200&query=school achievements awards trophies") center / cover;
    opacity: 0.1;
    z-index: 1;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: rgba(30, 64, 175, 0.8);*/
    z-index: 2;
  }
  
  .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
  }
  
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* Navigation Tabs */
  .accomplishments-nav {
    background: white;
    padding: 2rem 0;
    box-shadow: var(--shadow-light);
    /*position: sticky;*/
    top: 80px;
    z-index: 100;
  }
  
  .nav-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .nav-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--dark-color);
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }
  
  .nav-tab:hover,
  .nav-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
  }
  
  /* Accomplishments Sections */
  .accomplishments-section {
    padding: 4rem 0;
    background: var(--light-color);
  }
  
  .accomplishments-section:nth-child(even) {
    background: white;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Achievement Cards */
  .achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .achievement-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
  }
  
  .achievement-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
  }
  
  .achievement-card:hover::before {
    transform: scaleX(1);
  }
  
  .academic-card::before {
    background: var(--gradient-primary);
  }
  
  .sports-card::before {
    background: var(--gradient-success);
  }
  
  .cultural-card::before {
    background: var(--gradient-accent);
  }
  
  .achievement-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
  }
  
  .academic-card .achievement-icon {
    background: var(--gradient-primary);
  }
  
  .sports-card .achievement-icon {
    background: var(--gradient-success);
  }
  
  .cultural-card .achievement-icon {
    background: var(--gradient-accent);
  }
  
  .achievement-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
  }
  
  .achievement-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .achievement-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
  }
  
  .achievement-level {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  .achievement-date {
    color: #6b7280;
    font-weight: 500;
  }
  
  /* Awards Grid */
  .awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .award-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-align: center;
  }
  
  .award-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
  }
  
  .award-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-warning);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
  }
  
  .award-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
  }
  
  .award-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .award-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
  }
  
  .award-authority {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
  }
  
  .award-year {
    background: var(--light-color);
    color: var(--dark-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 500;
    font-size: 0.9rem;
  }
  
  /* Timeline Section */
  .timeline-section {
    padding: 4rem 0;
    background: var(--dark-color);
    color: white;
  }
  
  .timeline-section .section-title {
    color: white;
  }
  
  .timeline-section .section-subtitle {
    color: #d1d5db;
  }
  
  .timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
  }
  
  .timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 45%;
  }
  
  .timeline-item.left {
    left: 0;
  }
  
  .timeline-item.right {
    left: 55%;
  }
  
  .timeline-item::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 20px;
    z-index: 2;
  }
  
  .timeline-item.left::before {
    right: -10px;
  }
  
  .timeline-item.right::before {
    left: -10px;
  }
  
  .timeline-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .timeline-year {
    background: var(--accent-color);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
  }
  
  .timeline-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color:#ffffff;
  }
  
  .timeline-description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .timeline-category {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 4rem 0;
    background: var(--gradient-primary);
    text-align: center;
  }
  
  .cta-content {
    max-width: 600px;
    margin: 0 auto;
    color: white;
  }
  
  .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .btn-primary {
    background: white;
    color: var(--primary-color);
  }
  
  .btn-primary:hover {
    background: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
  }
  
  .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
  }
  
  .btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
  
    .hero-stats {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
  
    .nav-tabs {
      gap: 0.5rem;
    }
  
    .nav-tab {
      padding: 0.5rem 1rem;
      font-size: 0.9rem;
    }
  
    .achievements-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .awards-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .timeline::before {
      left: 20px;
    }
  
    .timeline-item {
      width: calc(100% - 60px);
      left: 60px !important;
    }
  
    .timeline-item::before {
      left: -30px !important;
    }
  
    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }
  
    .btn {
      width: 100%;
      max-width: 300px;
    }
  }
  
  @media (max-width: 480px) {
    .hero-title {
      font-size: 2rem;
    }
  
    .hero-stats {
      grid-template-columns: 1fr;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .achievement-card,
    .award-card {
      padding: 1.5rem;
    }
  
    .timeline-content {
      padding: 1.5rem;
    }
  }
  
  /* Animation Classes */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
  }
  
  .slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
  }
  
  .slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
  }
  
  .slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Loading States */
  .loading {
    opacity: 0.6;
    pointer-events: none;
  }
  
  .loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
  }
  
  @keyframes spin {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  
  /* Print Styles */
  @media print {
    .accomplishments-nav,
    .cta-section {
      display: none;
    }
  
    .accomplishments-hero {
      height: auto;
      padding: 2rem 0;
    }
  
    .achievement-card,
    .award-card {
      break-inside: avoid;
      box-shadow: none;
      border: 1px solid var(--border-color);
    }
  }
  