* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #ffffff;
}

/* NAVBAR */
.navbar {
  background: #a4152c;
  color: #fff;
  padding: 14px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 40px;
  height: 40px;
}

.school-name {
  font-size: 14px;
  line-height: 1.2;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 25px;
  font-size: 14px;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* HERO */
.hero {
  margin: 40px auto;
  width: 90%;
  height: 420px;
  background: url("Images/hero1.png") center/cover no-repeat;
  border-radius: 8px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 8px;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 15px;
  line-height: 1.6;
}

/* BUTTONS */
.btn {
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
}

.btn-primary {
  background: #0a8f55;
  color: #fff;
}

.btn-outline {
  border: 1px solid #fff;
  color: #fff;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* WELCOME SECTION */
.welcome-section {
  background: #a4152c;
  padding: 80px 0 60px;
  color: #ffffff;
}

.welcome-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.welcome-label {
  font-size: 13px;
  opacity: 0.8;
  display: block;
  margin-bottom: 12px;
}

.welcome-content h2 {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.welcome-content p {
  max-width: 700px;
  margin: 0 auto 35px;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.95;
}

.welcome-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-outline {
  padding: 10px 26px;
  border: 1px solid #ffffff;
  border-radius: 30px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.more-link {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  align-self: center;
}

/* IMAGE SECTION */
.welcome-image {
  margin-top: 60px;
  width: 100%;
}

.welcome-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .welcome-content h2 {
    font-size: 28px;
  }

  .welcome-actions {
    flex-direction: column;
  }
}

/* Campus Section */
.campus {
  padding: 60px 20px;
}

.campus h2{
  text-align: center;
}

.subtitle {
  color: #555;
  margin-bottom: 30px;
  text-align: center;
}

.carousel {
  position: relative;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
}

.images {
  display: flex;
  transition: transform 0.5s ease;
}

.images img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 10px;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: black;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}

.prev { left: 0; }
.next { right: 0; }

.dots {
  margin-top: 15px;
}

.dot {
  height: 8px;
  width: 8px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin: 0 4px;
}

.dot.active {
  background: black;
}

/* FAQ Section */
.faq {
  background: #fff59d;
  padding: 60px 20px;
  text-align: center;
}

.faq-item {
  max-width: 700px;
  margin: 15px auto;
  background: white;
  border-radius: 8px;
}

.faq-question {
  width: 100%;
  padding: 15px;
  border: none;
  background: none;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 15px 15px;
  text-align: left;
  color: #444;
}

.more {
  margin-top: 40px;
  text-align: center;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
  color: #111;
}

/* Updates Section */
.updates {
  padding: 80px 20px;
  text-align: center;
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #777;
}

.updates h2 {
  font-size: 32px;
  margin: 10px 0;
}

.subtitle {
  color: #666;
  max-width: 600px;
  margin: 0 auto 40px;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: left;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.meta {
  font-size: 12px;
  color: #777;
}

.card h3 {
  font-size: 18px;
  margin: 10px 0;
}

.card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.card a {
  font-size: 14px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.view-all {
  margin-top: 40px;
  padding: 10px 25px;
  border: 1px solid #000;
  background: none;
  border-radius: 20px;
  cursor: pointer;
}

/* CTA Section */
.cta {
  background: #a1122a;
  color: #ffd966;
  padding: 80px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 20px;
  color: #f5caca;
}

.cta-btn {
  background: #1f8f3a;
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 20px;
  cursor: pointer;
  margin-bottom: 40px;
}

.cta-image {
  max-width: 1100px;
  margin: auto;
}

.cta-image img {
  width: 100%;
  border-radius: 10px;
}


/* ================= FOOTER WRAPPER ================= */

.site-footer {
  background: #ffffff;
  border-top: 1px solid #e6e6e6;
  padding: 48px 64px 24px;
  font-family: Inter, Arial, sans-serif;
  color: #111;
}

/* ================= TOP SECTION ================= */

.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

/* ================= NEWSLETTER ================= */

.newsletter {
  max-width: 360px;
}

.footer-logo {
  width: 52px;
  margin-bottom: 16px;
}

.newsletter-text {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #333;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.newsletter-form input {
  width: 220px;
  border: none;
  border-bottom: 1px solid #cfcfcf;
  padding: 8px 0;
  font-size: 14px;
  outline: none;
  background: transparent;
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-form button {
  padding: 6px 18px;
  border: 1px solid #cfcfcf;
  background: transparent;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
}

.newsletter-form button:hover {
  background: #f5f5f5;
}

.privacy-note {
  font-size: 12px;
  color: #777;
}

.Subscribe{
  border: 1px solid #fff;
color: #000;
}
/* ================= FOOTER COLUMNS ================= */

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 14px;
  color: #333;
  text-decoration: none;
}

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

/* ================= SOCIAL LINKS ================= */

.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-links li {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ================= BOTTOM BAR ================= */

.footer-bottom {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid #e6e6e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #444;
}

.legal-links {
  display: flex;
  gap: 24px;
}

.legal-links a {
  font-size: 13px;
  color: #333;
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
