:root {
  --primary-blue: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #dbeafe;
  --secondary-green: #10b981;
  --secondary-orange: #f59e0b;
  --accent-red: #ef4444;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-light: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg:
    0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --border-radius: 12px;
}

/* Why Choose Section */
.why-choose-section {
  background: var(--bg-light);
  padding: 100px 0;
}

.advantage-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.advantage-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.advantage-icon i {
  font-size: 1.75rem;
  color: white;
}

.advantage-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.advantage-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.advantage-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.advantage-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.advantage-features i {
  color: var(--secondary-green);
  font-size: 0.8rem;
}

/* Programs Section */
.programs-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(135deg, yellow 0%, orange 100%);
  color: white;
}

.tab-headers {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-header {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-header:hover,
.tab-header.active {
  background: var(--primary-blue);
  border-color: white;
  transform: translateY(-2px);
}

.tab-content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  min-height: 400px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.program-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.program-content .lead {
  font-size: 1.25rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.program-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.program-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.program-features i {
  color: var(--secondary-green);
}

.age-group {
  background: var(--primary-light);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  display: inline-block;
  font-weight: 600;
  color: var(--primary-blue);
}

.program-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.program-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.program-image:hover img {
  transform: scale(1.05);
}

/* Achievements Section */
.achievements-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.achievement-stat {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.achievement-stat:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.achievement-stat p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

.sport-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.sport-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.sport-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-orange), #f97316);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.sport-icon i {
  font-size: 2rem;
  color: white;
}

.sport-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.sport-card p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* Infrastructure Section */
.infrastructure-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.infra-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.infra-card:hover {
  transform: translateY(-5px);
}

.infra-image {
  height: 200px;
  overflow: hidden;
}

.infra-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.infra-card:hover .infra-image img {
  transform: scale(1.1);
}

.infra-content {
  padding: 1.5rem;
}

.infra-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.infra-content p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.certification-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.certification-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.certification-card i {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.certification-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.certification-card p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--bg-white);
  padding: 100px 0;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  margin: 1rem;
  height: 100%;
}

.rating {
  margin-bottom: 1.5rem;
}

.rating i {
  color: var(--secondary-orange);
  margin-right: 0.25rem;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.author {
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.author strong {
  display: block;
  color: var(--text-dark);
  font-size: 1.1rem;
}

.author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Process Steps */
.admission-process-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 30px;
  height: 100%;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.step-icon i {
  font-size: 2rem;
  color: var(--primary-blue);
}

.process-step h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.process-step p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* Fee Section */
.fee-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.fee-table {
  width: 100%;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  margin-bottom: 30px;
}

.fee-table th {
  background: var(--primary-blue);
  color: white;
  padding: 1.25rem 1rem;
  font-weight: 600;
  text-align: left;
}

.fee-table td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-dark);
}

.fee-table tr:last-child td {
  border-bottom: none;
}

.fee-table tr:hover {
  background: var(--primary-light);
}

.note-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  margin-bottom: 30px;
  height: 100%;
}

.note-card i {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-top: 0.25rem;
}

.note-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.note-card p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-top: 0.25rem;
}

.contact-item h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-item p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.map-container {
  height: 100%;
  background: var(--primary-light);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.map-placeholder {
  text-align: center;
  color: var(--primary-blue);
}

.map-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.map-placeholder p {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  background: var(--primary-blue);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-blue);
}

.theme-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: white;
}

.theme-btn.secondary {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.theme-btn.secondary:hover {
  background: var(--primary-blue);
  color: white;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Hero Section Styles */
.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--bg-white) 50%,
    var(--primary-light) 100%
  );
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  color: var(--primary-blue);
  position: relative;
}

.hero-button {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.video-btn {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.video-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

/* Section Title Styles */
.section-title {
  margin-bottom: 3rem;
}

.section-title h6 {
  color: var(--primary-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tab-headers {
    flex-direction: column;
    align-items: center;
  }

  .tab-header {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .program-content,
  .program-image {
    margin-bottom: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .theme-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .advantage-card,
  .process-step,
  .sport-card,
  .certification-card {
    padding: 1.5rem 1rem;
  }

  .tab-content {
    padding: 2rem 1rem;
  }

  .program-content h3 {
    font-size: 1.5rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

/* Admission Lists Styles */
.list-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease;
}

.list-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.list-header {
  padding: 25px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.list-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.list-header h3 {
  margin: 0;
  font-size: 1.4rem;
  flex-grow: 1;
}

.list-badge {
  background: rgba(255, 255, 255, 0.3);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.list-content {
  padding: 25px;
}

.list-content p {
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.6;
}

.list-download {
  background: var(--bg2);
  border-radius: 8px;
  padding: 20px;
}

.file-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.file-info i {
  color: var(--theme-red);
  font-size: 2rem;
}

.file-name {
  display: block;
  color: var(--header);
  font-weight: 600;
  margin-bottom: 3px;
}

.file-size {
  display: block;
  color: var(--text-light);
  font-size: 0.85rem;
}

.file-actions {
  display: flex;
  gap: 10px;
}

.view-btn,
.download-btn {
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.view-btn {
  background: var(--theme-blue);
  color: var(--white);
  border: 2px solid var(--theme-blue);
}

.view-btn:hover {
  background: transparent;
  color: var(--theme-blue);
}

.download-btn {
  background: var(--theme-green);
  color: var(--white);
  border: 2px solid var(--theme-green);
}

.download-btn:hover {
  background: transparent;
  color: var(--theme-green);
}

/* Responsive Design */
@media (max-width: 768px) {
  .list-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 20px;
  }

  .file-actions {
    flex-direction: column;
  }

  .view-btn,
  .download-btn {
    width: 100%;
  }
}
