/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: 0 0% 98%;
  --foreground: 0 0% 15%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 15%;
  --primary: 0 72% 51%;
  --primary-foreground: 0 0% 100%;
  --secondary: 210 40% 96.1%;
  --secondary-foreground: 0 0% 15%;
  --muted: 0 0% 96%;
  --muted-foreground: 0 0% 45%;
  --accent: 0 72% 51%;
  --accent-foreground: 0 0% 100%;
  --border: 0 0% 90%;
  --radius: 0.25rem;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utility Classes */
.min-h-screen {
  min-height: 100vh;
}

.bg-background {
  background-color: hsl(var(--background));
}

/* Header Styles */
.header {
  background-color: hsl(var(--card));
  border-bottom: 4px solid hsl(var(--primary));
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.header-logo {
  flex-shrink: 0;
}

.logo-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: hsla(var(--primary), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid hsl(var(--primary));
  font-weight: bold;
  font-size: 2rem;
  color: hsl(var(--primary));
}

.header-text {
  flex: 1;
}

.header-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: hsl(var(--primary));
  margin-bottom: 0.25rem;
}

.header-subtitle {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.header-info {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.header-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* Hero Section */
.hero {
  position: relative;
  padding: 5rem 0 8rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    hsla(var(--primary), 0.1),
    hsla(var(--accent), 0.05)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-main {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.hero-logo-wrapper {
  display: inline-block;
  padding: 1rem;
  background-color: hsla(var(--primary), 0.1);
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.hero-logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: hsla(var(--primary), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid hsl(var(--primary));
  font-weight: bold;
  font-size: 2.5rem;
  color: hsl(var(--primary));
  margin: 0 auto;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.hero-title-accent {
  color: hsl(var(--primary));
}

.hero-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding-top: 1.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-weight: bold;
  font-size: 1.5rem;
  color: hsl(var(--primary));
}

.stat-label {
  color: hsl(var(--muted-foreground));
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  background-color: transparent;
  border-color: hsl(var(--border));
  color: hsl(var(--foreground));
}

.btn-outline:hover {
  background-color: hsl(var(--muted));
}

.btn-large {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
}

.btn-full-width {
  width: 100%;
}

/* Section Styles */
section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto;
}

/* About Section */
.about {
  background-color: hsla(var(--muted), 0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.feature-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: hsla(var(--primary), 0.5);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.feature-title {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: hsl(var(--muted-foreground));
}

/* Programs Section */
.programs {
  background-color: hsl(var(--background));
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.program-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  padding: 2rem;
  border-radius: var(--radius);
  transition: all 0.2s;
}

.program-card:hover {
  border-color: hsla(var(--primary), 0.5);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.program-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.program-icon {
  font-size: 2.5rem;
}

.program-title {
  font-weight: bold;
  font-size: 1.25rem;
}

.program-duration {
  font-size: 0.875rem;
  color: hsl(var(--primary));
  font-weight: 500;
}

.program-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.program-subjects {
  margin-bottom: 1.5rem;
}

.subjects-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.subjects-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.subject-tag {
  padding: 0.25rem 0.75rem;
  background-color: hsl(var(--muted));
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-us {
  background: linear-gradient(
    to bottom right,
    hsla(var(--primary), 0.05),
    hsla(var(--accent), 0.05)
  );
}

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.reason-card {
  background-color: hsla(var(--card), 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s;
}

.reason-card:hover {
  background-color: hsl(var(--card));
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.reason-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.reason-title {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.reason-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Facilities Section */
.facilities {
  background-color: hsla(var(--muted), 0.3);
}

.facilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.facility-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  padding: 1.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: start;
  gap: 1rem;
  transition: border-color 0.2s;
}

.facility-card:hover {
  border-color: hsla(var(--primary), 0.5);
}

.facility-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.facility-title {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.facility-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Achievements Section */
.achievements {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 4rem 0;
}

.achievements-title,
.achievements-description {
  color: hsl(var(--primary-foreground));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto 3rem;
}

.stat-card {
  background-color: hsla(var(--primary-foreground), 0.1);
  border: 1px solid hsla(var(--primary-foreground), 0.2);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.stat-big-number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-text {
  font-size: 1rem;
  opacity: 0.9;
}

.achievements-footer {
  margin-top: 3rem;
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.achievements-footer p {
  font-size: 1.125rem;
  opacity: 0.9;
}

/* News Section */
.news {
  padding: 4rem 0;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.news-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: all 0.2s;
}

.news-card:hover {
  border-color: hsla(var(--primary), 0.5);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.news-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.news-icon {
  font-size: 1rem;
  color: hsl(var(--primary));
}

.news-date {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.news-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: hsla(var(--primary), 0.1);
  color: hsl(var(--primary));
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.news-title {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.news-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.news-footer {
  text-align: center;
}

/* Call To Action Section */
.cta {
  background: linear-gradient(
    to bottom right,
    hsla(var(--primary), 0.1),
    hsla(var(--accent), 0.05)
  );
  padding: 4rem 0;
}

.cta-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.cta-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 42rem;
  margin: 0 auto;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
}

.cta-contact-icon {
  font-size: 1.25rem;
  color: hsl(var(--primary));
}

.cta-contact-label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.cta-contact-value {
  font-weight: 600;
}

/* Contact Section */
.contact {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

.contact-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
}

.contact-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: hsla(var(--primary), 0.1);
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-card-title {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-card-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Footer */
.footer {
  background-color: hsl(var(--card));
  border-top: 4px solid hsl(var(--primary));
  margin-top: 3rem;
  padding: 3rem 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  justify-items: center;
}

.footer-section {
  padding: 1rem 0;
  text-align: center;
}

.footer-logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.footer-logo-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: hsla(var(--primary), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid hsl(var(--primary));
  font-weight: bold;
  font-size: 1.5rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.footer-section-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.footer-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-address {
  margin-top: 1rem;
}

.footer-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: hsl(var(--primary));
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  font-size: 1.25rem;
  color: hsl(var(--primary));
}

.footer-contact-label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}

.footer-contact-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.footer-hours {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--border));
}

.footer-hours-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.footer-hours-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}

.footer-programs {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.footer-programs li {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.footer-managed {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--border));
}

.footer-managed-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.footer-managed-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.footer-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  justify-content: center;
}

.footer-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: hsl(var(--primary));
}

.footer-stat-label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.footer-bottom {
  background-color: hsl(var(--muted));
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom-links a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: hsl(var(--primary));
}

.footer-accreditation {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
  text-align: center;
}

.footer-accreditation p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}

/* Responsive Design */
@media (min-width: 640px) {
  .header-title {
    font-size: 1.875rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .cta-buttons {
    flex-direction: row;
  }

  .cta-contact {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .facilities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-main {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Marquee Section */
.marquee-container {
  background-color: hsl(var(--primary));
  padding: 0.75rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.marquee {
  color: hsl(var(--primary-foreground));
  font-size: 1rem;
  font-weight: 500;
  overflow: hidden;
}

.marquee-link {
  color: hsl(var(--primary-foreground));
  text-decoration: underline;
  cursor: pointer;
  transition: opacity 0.2s;
}

.marquee-link:hover {
  opacity: 0.8;
}

.navbar {
  background: #fff;
  border-bottom: 2px solid #e6e6e6;
  box-shadow: 0 2px 8px rgba(60, 60, 60, 0.03);
  margin-bottom: 1rem;
}
.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0.75rem 0;
}
.nav-link {
  display: inline-block;
  padding: 0.35em 0.9em;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.07rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.nav-link:hover,
.nav-link:focus {
  background: #003366;
  color: #fff;
  box-shadow: 0 2px 12px rgba(0, 51, 102, 0.1);
}
@media (max-width: 700px) {
  .nav-list {
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
  }
  .navbar {
    border-radius: 0 0 14px 14px;
    border-bottom: none;
    border-top: 2px solid #e6e6e6;
  }
}
.hero-title {
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: hsl(var(--primary));
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: linear-gradient(
    to right,
    hsl(var(--primary)),
    hsl(var(--accent))
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.title-underline {
  display: inline-block;
  padding-bottom: 0.25rem;
  border-bottom: 3px solid hsl(var(--primary));
}
