/* Reset and base styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #ffffff;
    }

    /* Top Social Bar */
    .top-social-bar {
      background-color: #ffffff; /* Burgundy */
      padding: 12px 20px;
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }

    .social-icons a {
      color: #970303; /* Light cream */
      margin-left: 16px;
      font-size: 20px;
      text-decoration: none;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .social-icons a:hover {
      color: #ffd700; /* Gold */
      transform: scale(1.2);
    }

    /* Responsive */
    @media (max-width: 600px) {
      .top-social-bar {
        justify-content: center;
      }

      .social-icons a {
        margin-left: 12px;
        font-size: 18px;
      }
    }

    
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

.main-header {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 15px 5%;
  position: sticky;
  top: 0;
  z-index: 999;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.logo span {
  color: #800020;
  font-weight: 600;
  font-size: 1.4rem;
}

/* Nav */
.nav {
  display: flex;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #800020;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  display: none;
  flex-direction: column;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu li {
  padding: 10px 20px;
}

.dropdown-menu a {
  color: #333;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: #f8f8f8;
  color: #800020;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: #800020;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    background: #fff;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }

  .nav.show {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
  }

  .dropdown:hover .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #f9f9f9;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
  }

  .dropdown:hover .dropdown-menu {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}



.about-hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slider {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.about-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeUp 1.5s ease;
}

.about-hero-content h1 span {
  background: #ffd700;
  color: #800020;
  padding: 0 0.5rem;
  border-radius: 6px;
}

#about-tagline {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  animation: fadeUp 2s ease;
}

.about-cta {
  background: #ffd700;
  color: #800020;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  animation: fadeUp 2.5s ease;
}

.about-cta:hover {
  background: #fff4aa;
}

@keyframes fadeUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 2rem;
  }

  #about-tagline {
    font-size: 1rem;
  }

  .about-cta {
    padding: 0.6rem 1.2rem;
  }
}


.our-story {
  background: #fdf9f5;
  padding: 4rem 2rem;
}

.our-story-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.story-image {
  flex: 1 1 45%;
  padding: 1rem;
  animation: fadeInLeft 1s ease forwards;
}

.story-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.story-text {
  flex: 1 1 50%;
  padding: 1rem;
  animation: fadeInRight 1s ease forwards;
}

.story-text h2 {
  font-size: 2.5rem;
  color: #800020;
  margin-bottom: 0.5rem;
  text-align: left;
}

.underline-flair {
  width: 60px;
  height: 6px;
  background: #ffd700;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  margin-left: 0;
}

.story-text p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {
  .our-story-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .story-text h2 {
    text-align: center;
  }

  .underline-flair {
    margin: 0.5rem auto 1.5rem;
  }
}




.vm-section {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  color: #800020; /* burgundy */
}

.section-title::after {
  content: "";
  width: 60px;
  height: 6px;
  background: linear-gradient(to right, #ffd700, #ffcc00); /* gold */
  border-radius: 3px;
  display: block;
  margin: 10px auto 0;
}

.vm-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.vm-card {
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 30px 20px;
  border-radius: 12px;
  flex: 1 1 300px;
  max-width: 500px;
  transition: transform 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-10px);
}

.vm-icon {
  font-size: 40px;
  margin-bottom: 10px;
  color: #b30000;
}

.vm-card h3 {
  font-size: 1.5rem;
  color: #800020;
  margin-bottom: 15px;
}

.vm-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Core Values Section Layout */
.core-values-wrapper {
  overflow-x: auto;
  padding-bottom: 10px;
}

.core-values-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.core-value-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  min-width: 280px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.core-value-card:hover {
  transform: translateY(-8px);
}

.core-icon {
  font-size: 35px;
  margin-bottom: 10px;
  color: #b30000;
}

.core-value-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #800020;
}

.core-value-card p {
  font-size: 0.95rem;
  color: #444;
}

/* Mobile Horizontal Slide */
@media (max-width: 768px) {
  .core-values-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .core-values-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
  }

  .core-value-card {
    flex: 0 0 auto;
    min-width: 240px;
    max-width: 240px;
  }
}




.leadership-section {
  padding: 60px 20px;
  background: #fefefe;
  text-align: center;
}

.principal-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 30px;
}

.principal-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.principal-info {
  max-width: 600px;
  text-align: left;
}

.principal-info h3 {
  font-size: 1.8rem;
  color: #800020;
  margin-bottom: 5px;
}

.principal-info h5 {
  color: #b30000;
  margin-bottom: 15px;
}

.principal-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.team-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.team-card h4 {
  font-size: 1.1rem;
  color: #800020;
  margin-bottom: 5px;
}

.team-card p {
  font-size: 0.95rem;
  color: #666;
}

/* Mobile stacking */
@media (max-width: 768px) {
  .principal-card {
    flex-direction: column;
    text-align: center;
  }

  .principal-info {
    text-align: center;
  }
}


.why-choose-section {
  background-color: #fef9f4;
  padding: 80px 20px;
  text-align: center;
}

.why-title {
  font-size: 2.2rem;
  color: #800020;
  margin-bottom: 50px;
  position: relative;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

.why-card {
  background-color: white;
  padding: 25px;
  border-radius: 20px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInZoom 0.6s ease forwards;
  animation-delay: calc(var(--i) * 0.15s);
  opacity: 0;
  transform: scale(0.95);
}

.why-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #b30000;
}

.why-card h4 {
  font-size: 1.2rem;
  color: #800020;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

/* Animation Keyframe */
@keyframes fadeInZoom {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .why-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 15px;
    gap: 20px;
  }

  .why-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
    margin: 0 10px;
    min-width: 260px;
  }
}




.school-life-section {
  width: 90%;
  margin: auto;
  padding: 60px 0;
}

.school-life-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.school-life-block.reverse {
  flex-direction: row-reverse;
}

.school-life-block img {
  flex: 1 1 300px;
  max-width: 500px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.school-life-content {
  flex: 1 1 300px;
  padding: 20px;
  text-align: left;
}

.school-life-content h2 {
  font-size: 2rem;
  color: #880e4f; /* Burgundy */
  margin-bottom: 10px;
  position: relative;
}

.school-life-content h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: gold;
  position: absolute;
  bottom: -6px;
  left: 0;
  border-radius: 2px;
}

.school-life-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-top: 15px;
}

.clubs-list {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.clubs-list li {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.5;
}

.clubs-section {
  background-color: #fefefe;
  padding: 60px 5%;
  border-top: 3px solid gold;
}

.clubs-header {
  text-align: center;
  margin-bottom: 40px;
}

.clubs-header h2 {
  color: #880e4f;
  font-size: 2.2rem;
  margin-bottom: 10px;
  position: relative;
}

.clubs-header h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background-color: gold;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.clubs-header p {
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
}

.club-card {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 40px 0;
  animation: fadeIn 1s ease;
}

.club-card.reverse {
  flex-direction: row-reverse;
}

.club-card img {
  flex: 1 1 300px;
  max-width: 500px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.club-content {
  flex: 1 1 300px;
  padding: 20px;
}

.club-content h3 {
  font-size: 1.5rem;
  color: #880e4f;
  margin-bottom: 10px;
}

.club-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 768px) {
  .club-card {
    flex-direction: column;
    text-align: center;
  }

  .club-card.reverse {
    flex-direction: column;
  }

  .clubs-header h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Fade in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 768px) {
  .school-life-block {
    flex-direction: column;
    text-align: center;
  }

  .school-life-block.reverse {
    flex-direction: column;
  }

  .school-life-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}


.cta-section {
  background-image: url('images/_MG_0234.jpg'); /* Replace with actual image path */
  background-size: cover;
  background-position: flex;
  background-repeat: no-repeat;
  padding: 100px 0px;
  position: relative;
  text-align: center;
  color: white;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(64, 0, 0, 0.75); /* Dark burgundy overlay */
  z-index: 1;
}

.cta-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cta-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
  padding: 0 10px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.cta-btn {
  background-color: gold;
  color: #300000;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #ffd700;
  transform: scale(1.05);
}



.clarus-footer {
  background-color: #800020; /* Burgundy */
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 60px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 300px;
  min-width: 280px;
}

/* Map */
.footer-section.map {
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
}

/* Center */
.footer-section.center h2 {
  font-size: 1.8rem;
  color: #ffd700;
  margin-bottom: 5px;
}

.footer-section.center .motto {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 15px;
  color: #fdf6e3;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: #f0f0f0;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffd700;
}

.footer-socials a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 12px;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  color: #ffd700;
  transform: scale(1.2);
}

/* Newsletter */
.footer-section.newsletter h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #ffd700;
}

.footer-section.newsletter p {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: #eee;
}

.footer-section.newsletter form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-section.newsletter input {
  padding: 10px;
  border: none;
  border-radius: 6px;
  flex: 1;
  min-width: 180px;
}

.footer-section.newsletter button {
  padding: 10px 18px;
  background-color: #ffd700;
  border: none;
  border-radius: 6px;
  color: #800020;
  cursor: pointer;
  transition: 0.3s ease;
}

.footer-section.newsletter button:hover {
  background-color: #ffdb4d;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #ccc;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-section.map {
    width: 100%;
    height: 250px;
  }

  .footer-section.newsletter form {
    flex-direction: column;
  }

  .footer-section.newsletter input,
  .footer-section.newsletter button {
    width: 100%;
  }

  .footer-socials {
    justify-content: center;
  }
}
