/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
nav{
    background-color: #1D3B2A;
}
:root {
    --dark-green: #1a5729;
    --light-green: #e8f5e8;
    --maroon: #8b1538;
    --gold: #ffd700;
    --white: #ffffff;
    --light-gray: #f8f9fa;
}
#dropdownNavbar{
    background-color: var(--dark-green);
}
.dropdownlist{
    color: white;
}
.cta-buttons {
    margin-top: 10px;
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 15px 30px;
            background: #FFD700;
            color: #1e3c72;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
        }

        .cta-btn.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-btn.secondary:hover {
            background: white;
            color: #1e3c72;
        } */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark-green: #1f4123;

  --light-green: #e8f5e8;
  --maroon: #8c1420;
  --gold: #ffd700;
  --white: #ffffff;
  --light-gray: #f8f9fa;
}

body {
  font-family: open-sans, Arial, sans-serif;
  line-height: 1.6;
}
h1 {
  font-family: Montserrat, sans-serif;
}
/* Header/Navbar */
nav {
  background-color: var(--dark-green);
}

/* Hero Section */
.cta-buttons {
  margin-top: 20px;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 15px 30px;
  background: #ffd700;
  color: #1e3c72;
  text-decoration: none;
  /* border-radius: 10px; */
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-btn.secondary:hover {
  background: white;
  color: #1e3c72;
}
*/ .hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}
.section-label {
    display: inline-flex; align-items: center; gap: .6rem;
    font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--maroon); margin-bottom: 1rem;
  }
  .section-label::before, .section-label::after { content: ''; flex: 1; height: 1px;            background: var(--maroon); opacity: .4; width: 20px; }

  a.btn-primary {
   color: white;
  }
  .btn-primary {
    background: var(--maroon);
    border: 2px solid var(--maroon);
    color: var(--navy); padding: .9rem 2rem;
    border-radius: 8px; font-weight: 600; font-size: .95rem;
    text-decoration: none; letter-spacing: .02em;
    transition: transform .2s, box-shadow .2s;
    display: inline-flex; align-items: center; gap: .5rem;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(201,151,58,.4); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

  .section-label::before, .section-label::after { content: ''; flex: 1; height: 1px; background: var(--maroon); opacity: .4; width: 20px; }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900; color: var(--navy); line-height: 1.15;
    letter-spacing: -.02em;
  }
  .section-title em { color: var(--maroon); font-style: italic; }


/* About Section */
.about {
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h3 {
  color: var(--maroon);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.about-btn,
.program-btn,
.news-btn,
.gallery-btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--maroon);
  color: var(--white);
  text-decoration: none;
  /* border-radius: 5px; */
  font-weight: bold;
  margin-top: 10px;
}

/* Academics Section */
.academics {
  background: var(--light-green);
}

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

.academic-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

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

.academic-card .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--maroon);
}

.academic-card h4 {
  color: var(--dark-green);
  margin-bottom: 1rem;
}

/* ── GALLERY ── */
  .gallery { background: var(--light-green); }
  .gallery-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
  }
  .gallery-item { border-radius: 12px; overflow: hidden; cursor: pointer; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
  .gallery-item:first-child img { height: 480px; }
  .gallery-item:not(:first-child) img { height: 230px; }
  .gallery-item:hover img { transform: scale(1.05); }

/* Testimonials */
.testimonials {
  background: var(--maroon);
  color: var(--white);
  text-align: center;
}

.testimonial {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial blockquote {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial cite {
  color: var(--gold);
  font-weight: bold;
}

/* CTA Section */
.cta {
  background: var(--dark-green);
  color: var(--white);
  text-align: center;
}

.cta h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Footer */
/* =========================
   FOOTER
========================= */
.footer {
  background: var(--dark-green);
  color: var(--white);
  padding: 5rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,151,58,0.5), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  width: 120px;
  height: auto;
  margin-bottom: 1.2rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  padding: .4rem;
}

.footer-brand-text {
  color: rgba(255,255,255,0.68);
  line-height: 1.9;
  max-width: 320px;
  font-size: 0.95rem;
}

.footer-section h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.footer-section p,
.footer-section a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.8;
  transition: all 0.25s ease;
}

.footer-section a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
}

.footer-credit a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .footer {
    padding: 4rem 0 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand img {
    margin-inline: auto;
  }

  .footer-brand-text {
    margin-inline: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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