/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}
/* Header background */
.header {
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
}

/* Container controls LEFT/RIGHT layout */
.container {
  max-width: 1400px; /* wider container */
  margin: 0 auto;
  padding: 15px 0px; /* 🔥 smaller left padding → logo moves left */

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo size */
.logo img {
  height: 70px;
}

/* Navigation links */
.nav a {
  text-decoration: none;
  color: #4a7c2a;
  font-weight: 600;
  margin-left: 25px;

  transition: 0.3s;
}

.nav a:hover {
  color: #2f5a1a;
}

.top-line {
  height: 4px;
  background: #8cc63f; /* light green */
}

/* ===== HERO SECTION ===== */

.hero {
  height: 90vh;

  background: url("../img/graduation-home.jpeg") center/cover no-repeat;
  position: relative;

  display: flex;
  align-items: center;
}

/* Dark overlay like reference */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Content container */
.hero-content {
  position: relative;
  color: white;
  max-width: 700px;
  margin-left: 80px;
}

/* Established framed text */
.hero-established {
  display: inline-block;
  border: 1px solid #ffffff;
  color: #8cc63f;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700; /* 🔥 makes text bold */
  margin-bottom: 20px;
}

/* Main title */
.hero h1 {
  font-size: 56px;
  line-height: 1.2;
  font-weight: 700;
}

.hero h1 span {
  color: #8cc63f;
}

/* Paragraph */
.hero p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
  color: #e5e5e5;
}

/* Buttons container */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

/* Primary button */
.btn-primary {
  background: #8cc63f;
  color: white;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

/* Outline button */
.btn-outline {
  border: 1px solid white;
  color: white;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 600;
}

/* ===== STATS SECTION ===== */

.stats {
  background: #5ea12f; /* green bar */
  padding: 50px 0;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  text-align: center;
  color: white;
}

.stat h2 {
  font-size: 48px;
  font-weight: 700;
}

.stat p {
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #d6f2b3; /* light green text */
}

/* ===== LIGHT GREY LINE ===== */
.section-line {
  height: 1px;
  background: #e5e5e5;
}

/* ===== FACULTIES INTRO ===== */
.faculties-intro {
  text-align: center;
  padding: 70px 20px;
  background: #f7f7f7;
}

.faculties-intro h2 {
  font-size: 42px;
  color: #3e5f2a;
  font-weight: 700;
}

/* Small green underline under title */
.title-underline {
  width: 80px;
  height: 3px;
  background: #8cc63f;
  margin: 15px auto 25px;
}

/* Description text */
.faculties-intro p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

/* ===== FACULTIES GRID ===== */

.faculties-grid {
  padding: 60px 0 90px;
  background: #ffffff;
}

.faculties-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.faculty-card {
  border: 1px solid #e6e6e6;
  background: #fff;
  overflow: hidden;
  transition: 0.25s ease;
}

.faculty-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Image */
.faculty-img {
  height: 190px;
  overflow: hidden;
  position: relative;
}

.faculty-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Thin colored line under image */
.faculty-img::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #8cc63f;
}

/* Different colors per card */
.faculty-card:nth-child(1) .faculty-img::after {
  background: #7a3df0;
}
.faculty-card:nth-child(2) .faculty-img::after {
  background: #f0a500;
}
.faculty-card:nth-child(3) .faculty-img::after {
  background: #5ea12f;
}
.faculty-card:nth-child(4) .faculty-img::after {
  background: #79b930;
}
.faculty-card:nth-child(5) .faculty-img::after {
  background: #e53935;
}
.faculty-card:nth-child(6) .faculty-img::after {
  background: #e91e63;
}
.faculty-card:nth-child(7) .faculty-img::after {
  background: #1e88e5;
}
.faculty-card:nth-child(8) .faculty-img::after {
  background: #00a19a;
}

/* Body */
.faculty-body {
  padding: 18px;
}

.faculty-body h3 {
  color: #3e7d1a;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.faculty-body p {
  color: #5a5a5a;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1100px) {
  .faculties-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .faculties-container {
    grid-template-columns: 1fr;
  }

  .faculty-img {
    height: 220px;
  }
}

/* ===== VIEW ALL FACULTIES BUTTON ===== */

.view-all-wrapper {
  text-align: center;
  margin: 40px 0 80px;
}

.view-all-btn {
  display: inline-block;
  padding: 16px 32px;

  border: 1px solid #dcdcdc;
  background: #ffffff;

  color: #3e7d1a;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;

  transition: 0.25s ease;
}

/* Hover → turns green */
.view-all-btn:hover {
  background: #8cc63f;
  border-color: #8cc63f;
  color: #ffffff;
}

/* ===== ABOUT SECTION ===== */

.about-section {
  background: #f9fbf7; /* 🔥 soft white-green that fits your site */
  padding: 90px 0;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT TEXT */

.about-label {
  display: inline-block;
  border: 1px solid #dfe8d8;
  color: #7aa84f;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  margin-bottom: 18px;
}

.about-text h2 {
  font-size: 40px;
  color: #2f5f1d;
  margin-bottom: 18px;
}

.about-desc {
  color: #555;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* LIST */

.about-list {
  list-style: none;
  margin-bottom: 28px;
}

.about-list li {
  margin-bottom: 10px;
  color: #4a4a4a;
  position: relative;
  padding-left: 24px;
}

/* green check bullet */
.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #8cc63f;
  font-size: 14px;
}

/* BUTTON */

.about-btn {
  display: inline-block;
  background: #8cc63f;
  color: #fff;
  padding: 14px 26px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}

.about-btn:hover {
  background: #6ea52e;
}

/* RIGHT IMAGES GRID */

.about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.about-images img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

/* Responsive */

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-images img {
    height: 200px;
  }
}

/* ===== TESTIMONIALS ===== */

.testimonials {
  position: relative;
  padding: 90px 0;
  background: url("../img/home-background.jpeg") center/cover no-repeat;
  color: #ffffff;
}

/* Strong dark overlay on background */
.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75); /* darker than before */
}

/* Container */
.testimonials-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* Title */
.testimonials-title {
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
}

/* Green underline */
.testimonials-underline {
  width: 90px;
  height: 3px;
  background: #8cc63f;
  margin: 14px auto 55px;
}

/* Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ===== GLASS CARD ===== */
.testimonial-card {
  text-align: left;
  padding: 34px 32px;

  border: 1px solid rgba(255, 255, 255, 0.25);

  /* 🔥 GLASS EFFECT */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition: 0.3s ease;
}

/* Hover subtle lift */
.testimonial-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
}

/* Quote mark */
.testimonial-quote {
  font-size: 54px;
  line-height: 1;
  font-weight: 800;
  color: #8cc63f;
  margin-bottom: 14px;
}

/* Text */
.testimonial-text {
  font-style: italic;
  color: rgba(255, 255, 255, 0.92); /* clearer text */
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 15px;
}

/* Person */
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Avatar */
.testimonial-person img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

/* Name */
.testimonial-person-info h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

/* Job */
.testimonial-person-info span {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #8cc63f;
}

/* Responsive */
@media (max-width: 1000px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    max-width: 780px;
    margin: 0 auto;
  }
}

/* ===== FEATURES SECTION ===== */

.features {
  background: #ffffff;
  padding: 80px 0 90px;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

/* Circular image */
.feature-item img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
}

/* Title */
.feature-item h3 {
  color: #2f5f1d;
  font-size: 22px;
  margin-bottom: 10px;
}

/* Description */
.feature-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .features-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* ===== CTA SECTION ===== */

.cta {
  position: relative;
  background: url("../img/home-background-2.jpeg") center/cover no-repeat;
  padding: 110px 0 120px;
  text-align: center;
  color: #ffffff;
}

/* Dark overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

/* Content container */
.cta-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-container h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 18px;
}

.cta-container p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
}

/* Buttons wrapper */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Primary green button */
.btn-primary {
  background: #8cc63f;
  color: #ffffff;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary:hover {
  background: #6ea52e;
}

/* Outline button */
.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 14px 30px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-outline:hover {
  background: #ffffff;
  color: #000000;
}

/* Bottom green line */
.cta-bottom-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: #8cc63f;
}

/* Responsive */
@media (max-width: 700px) {
  .cta-container h2 {
    font-size: 34px;
  }
}

/* ===== FOOTER ===== */

/* ===== FOOTER ===== */

.footer {
  background: #5ea12f;
  color: #ffffff;
  padding: 70px 0;
}

/* Container layout */
.footer-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 120px;
}

/* Logo */
.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

/* Left text block */
.footer-about {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-about em {
  font-size: 14px;
  opacity: 0.9;
}

/* Column titles */
.footer-col h4 {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

/* Links (kept for future pages if needed) */
.footer-col a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  transition: 0.2s;
}

.footer-col a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Address centered */
.footer-col:nth-child(2) {
  text-align: center;
}

/* Contact pushed right, text left */
.footer-col:last-child {
  justify-self: end;
  text-align: left;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-col:last-child {
    justify-self: center;
    text-align: center;
  }
}

/* ===== HAMBURGER + MOBILE MENU ===== */

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #3e7d1a;
  margin: 5px 0;
  transition: 0.25s ease;
}

/* Hamburger -> X */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  border-top: 1px solid #e5e5e5;
  background: #f5f5f5;
}

.nav-mobile a {
  display: block;
  padding: 14px 20px;
  text-decoration: none;
  color: #4a7c2a;
  font-weight: 600;
}

.nav-mobile a:hover {
  background: #e9f5dc;
}

.nav-mobile.open {
  display: block;
}

/* ===== RESPONSIVE HEADER ===== */
@media (max-width: 900px) {
  .nav-desktop {
    display: none;
  }
  .hamburger {
    display: block;
  }

  .container {
    padding: 12px 16px; /* keeps logo nice on mobile */
  }
}

@media (max-width: 900px) {
  /* Hero text scales down */
  .hero h1 {
    font-size: 38px !important;
    line-height: 1.1;
  }

  .hero h1 span,
  .hero h1 .green {
    /* if you have green part in a span */
    font-size: 38px !important;
  }

  .hero p {
    font-size: 16px !important;
  }

  /* Make hero height flexible */
  .hero {
    min-height: 75vh; /* not fixed huge height */
    height: auto;
    padding: 90px 0 60px;
    background-position: center;
  }

  /* Prevent content from being pushed out */
  .hero-content {
    max-width: 100%;
    padding: 0 16px;
  }
}

/* ===== PAGE HERO ===== */

.page-hero {
  position: relative;
  background: url("../img/about-hero.jpg") center/cover no-repeat;
  height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.page-hero-content {
  position: relative;
  padding: 0 20px;
}

.page-hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.page-hero-content p {
  font-size: 18px;
  opacity: 0.9;
}

/* ===== ABOUT PAGE CONTENT ===== */

.about-page {
  padding: 80px 20px;
  background: #ffffff;
}

.about-page-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-page-container h2 {
  font-size: 36px;
  color: #2f5f1d;
  margin-bottom: 20px;
}

.about-page-container p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

/* ===== MOBILE ===== */

@media (max-width: 900px) {
  .page-hero-content h1 {
    font-size: 32px;
  }
}

/* ===== ABOUT HERO GREEN ===== */

.about-hero {
  background: #2f5f1d; /* dark green */
  color: #ffffff;
  text-align: center;
  padding: 120px 20px 100px;
}

.about-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.about-hero p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.9;
}

/* ===== GREEN DIVIDER ===== */

.about-divider {
  height: 4px;
  background: #8cc63f; /* light green line */
}

/* ===== ABOUT STATS ===== */

.about-stats {
  background: #f5f5f5;
  padding: 60px 20px;
}

.about-stats-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 40px;
}

.stat h2 {
  font-size: 42px;
  color: #2f5f1d;
  margin-bottom: 8px;
}

.stat p {
  font-size: 13px;
  letter-spacing: 1px;
  color: #555;
}

/* ===== MOBILE ===== */

@media (max-width: 900px) {
  .about-hero {
    padding: 90px 16px 70px;
  }

  .about-hero h1 {
    font-size: 34px;
  }

  .about-stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* ===== ABOUT: HISTORY + VISION (like screenshot) ===== */

.about-history-vision {
  background: #ffffff;
  padding: 90px 20px;
  border-bottom: 4px solid #8cc63f; /* green line at bottom */
}

.ahv-container {
  max-width: 1250px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}

/* Small tag boxes */
.ahv-tag {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid #dfe6d8;
  color: #8cc63f;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

/* Titles */
.ahv-title {
  font-family: Georgia, "Times New Roman", serif; /* similar to screenshot */
  color: #2f5f1d;
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 18px;
}

/* Paragraphs */
.ahv-text {
  color: #555;
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 15px;
}

/* Checklist */
.ahv-list {
  list-style: none;
  padding: 0;
  margin-top: 22px;
}

.ahv-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

/* green check icon (CSS only) */
.ahv-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #8cc63f;
  color: #8cc63f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
  .ahv-container {
    grid-template-columns: 1fr;
    gap: 45px;
    text-align: left;
  }

  .ahv-title {
    font-size: 30px;
  }
}

/* ===== ABOUT: OUR MISSION ===== */

.about-mission {
  background: #2f5f1d; /* dark green */
  color: #ffffff;
  text-align: center;
  padding: 110px 20px;
}

.about-mission-content {
  max-width: 800px;
  margin: 0 auto;
}

.mission-icon {
  font-size: 40px;
  margin-bottom: 18px;
  color: #8cc63f;
}

.about-mission h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  margin-bottom: 20px;
}

.mission-text {
  font-style: italic;
  line-height: 1.9;
  font-size: 17px;
  opacity: 0.9;
}

/* ===== CORE OBJECTIVES TITLE ===== */

.core-title {
  background: #f5f5f5;
  text-align: center;
  padding: 70px 20px 50px;
}

.core-title h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  color: #2f5f1d;
  margin-bottom: 12px;
}

.core-underline {
  width: 80px;
  height: 3px;
  background: #8cc63f;
  margin: 0 auto;
}

/* ===== MOBILE ===== */

@media (max-width: 900px) {
  .about-mission {
    padding: 80px 16px;
  }

  .about-mission h2 {
    font-size: 26px;
  }

  .mission-text {
    font-size: 15px;
  }

  .core-title h2 {
    font-size: 28px;
  }
}

/* ===== CORE OBJECTIVES CARDS ===== */

.core-cards {
  background: #f5f5f5;
  padding: 60px 20px 90px;
}

.core-cards-container {
  max-width: 1250px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.core-card {
  background: #fbf8f2; /* light beige like screenshot */
  border-left: 4px solid #d9e6f5; /* thin bluish left border */
  padding: 34px 34px 30px;
}

.core-icon {
  color: #2f5f1d;
  font-size: 28px;
  margin-bottom: 18px;
  line-height: 1;
}

.core-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: #2f5f1d;
  font-size: 20px;
  margin-bottom: 12px;
}

.core-card p {
  color: #555;
  line-height: 1.7;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .core-cards-container {
    grid-template-columns: 1fr;
  }
}

/* ===== ACADEMIC FACULTIES (EXACT STYLE) ===== */

.af-section {
  background: #ffffff;
  padding: 85px 20px 90px;
}

.af-wrap {
  max-width: 1250px;
  margin: 0 auto;
  text-align: center;
}

.af-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  color: #2f5f1d;
  margin-bottom: 10px;
}

.af-underline {
  width: 90px;
  height: 3px;
  background: #8cc63f;
  margin: 0 auto 55px;
}

/* Grid */
.af-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* Card */
.af-card {
  background: #fbf8f2; /* light beige */
  border: 1px solid #e6e6e6;
  border-top: 4px solid #8cc63f; /* default (overridden by colors) */
  padding: 26px 26px 22px;
  text-align: left;
}

.af-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  color: #2f5f1d;
  margin-bottom: 12px;
}

.af-card p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* Bottom label */
.af-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Card colors (top border + bottom text color) */
.af-purple {
  border-top-color: #7a4bc4;
}
.af-purple .af-meta {
  color: #7a4bc4;
}

.af-orange {
  border-top-color: #ff9800;
}
.af-orange .af-meta {
  color: #ff9800;
}

.af-green {
  border-top-color: #8cc63f;
}
.af-green .af-meta {
  color: #8cc63f;
}

.af-teal {
  border-top-color: #00b894;
}
.af-teal .af-meta {
  color: #00b894;
}

.af-red {
  border-top-color: #d63031;
}
.af-red .af-meta {
  color: #d63031;
}

.af-pink {
  border-top-color: #e84393;
}
.af-pink .af-meta {
  color: #e84393;
}

.af-blue {
  border-top-color: #0984e3;
}
.af-blue .af-meta {
  color: #0984e3;
}

.af-emerald {
  border-top-color: #00a98f;
}
.af-emerald .af-meta {
  color: #00a98f;
}

/* Responsive */
@media (max-width: 1100px) {
  .af-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .af-title {
    font-size: 30px;
  }
  .af-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== GREEN TOP LINE ===== */
.top-green-line {
  width: 100%;
  height: 6px;
  background: #7ac142;
}

/* ===== HEADER ===== */
.header {
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 60px;
}

/* ===== NAVIGATION ===== */
.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #1f3d1f;
  font-weight: 500;
  transition: 0.2s;
}

.nav a:hover,
.nav a.active {
  color: #7ac142;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1f3d1f;
}

/* ================= CONTACT HERO ================= */
.contact-hero {
  background: #3f6f2a;
  color: #fff;
  padding: 90px 20px 85px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* subtle dotted pattern */
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.contact-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 18px;
}

.contact-hero h1 {
  font-family: "Georgia", serif;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 18px;
}

.contact-hero p {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.95;
  max-width: 720px;
  margin: 0 auto;
}

/* ================= CONTACT CONTENT ================= */

.contact-section {
  background: #f6f6f6;
  padding: 90px 20px;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* LEFT INFO BLOCK */

.contact-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: #2f5a1a;
  margin-bottom: 20px;
}

.contact-info p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
}

.contact-item {
  margin-bottom: 15px;
  font-weight: 600;
  color: #2f5a1a;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .contact-hero {
    padding: 70px 18px 65px;
  }

  .contact-hero h1 {
    font-size: 42px;
  }

  .contact-hero p {
    font-size: 15px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ================= CONTACT CONTENT (Info + Form) ================= */

.contact-section {
  background: #f7f6f2; /* light warm grey like screenshot */
  padding: 80px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 50px;
  align-items: start;
}

.contact-title {
  font-family: "Georgia", serif;
  font-size: 28px;
  color: #2f5a1a;
  margin-bottom: 26px;
}

/* Left cards */
.contact-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 26px;
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: #2f5a1a;
  color: #fff;
  display: grid;
  place-items: center;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #2f5a1a;
  margin-bottom: 6px;
}

.contact-card p {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}

.contact-card small {
  display: inline-block;
  margin-top: 4px;
  color: #666;
  font-size: 12px;
}

.contact-card a {
  color: #76b82a;
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Quick links box */
.quick-links {
  margin-top: 34px;
  background: #2f5a1a;
  color: #fff;
  padding: 26px 24px;
}

.quick-links h3 {
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  opacity: 0.95;
}

.quick-links a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 10px 0;
  opacity: 0.95;
}

.quick-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Right form box */
.form-box {
  background: #fff;
  border: 1px solid #dfe6ee;
  padding: 36px;
}

.form-title {
  font-family: "Georgia", serif;
  font-size: 28px;
  color: #2f5a1a;
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  color: #2f5a1a;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7e0ea;
  padding: 14px 16px;
  font-size: 14px;
  outline: none;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 20px;
}

.field {
  margin-bottom: 20px;
}

.btn-submit {
  background: #76b82a;
  color: #fff;
  border: 0;
  padding: 14px 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.btn-submit:hover {
  filter: brightness(0.95);
}

/* Responsive */
@media (max-width: 980px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Success message under contact form button */
.form-success {
  display: none;
  margin-top: 14px;
  color: #2f5a1a;
  font-weight: 600;
  font-size: 14px;
}

/* ================= FAQ SECTION ================= */

.faq-section {
  background: #ffffff;
  padding: 90px 20px;
}

.faq-wrap {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  color: #2f5a1a;
  margin-bottom: 14px;
}

.section-underline {
  width: 90px;
  height: 3px;
  background: #8cc63f; /* your green */
  margin: 0 auto 45px;
}

.faq-list {
  display: grid;
  gap: 22px;
  text-align: left;
}

.faq-card {
  background: #f7f6f2; /* light beige like screenshot */
  padding: 26px 28px;
  border-left: 4px solid rgba(47, 90, 26, 0.18);
}

.faq-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #2f5a1a;
  margin-bottom: 10px;
}

.faq-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .faq-card {
    padding: 22px 20px;
  }
}

/* ===== FACULTIES HERO ===== */

.faculties-hero {
  position: relative;
  background: url("../img/faculties-back.jpeg") center/cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 80px 40px;
  color: #fff;
}

.faculties-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Content above overlay */
.faculties-hero-content {
  position: relative;
  max-width: 700px;
}

/* Green tag */
.faculties-tag {
  display: inline-block;
  border: 1px solid #8bc34a;
  color: #8bc34a;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

/* Title */
.faculties-hero h1 {
  font-size: 64px;
  font-family: "Playfair Display", serif;
  margin-bottom: 18px;
}

/* Description */
.faculties-hero p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
}

/* ===== STATS BAR ===== */

.faculties-stats {
  background: #3f6f2a;
  padding: 40px 20px;
  color: #fff;
}

.stats-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  text-align: center;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .faculties-hero {
    min-height: 420px;
    padding: 60px 20px;
  }

  .faculties-hero h1 {
    font-size: 40px;
  }

  .faculties-hero p {
    font-size: 16px;
  }

  .stats-container {
    flex-direction: column;
    gap: 18px;
  }
}

/* ===== FACULTY FEATURE (USED FOR ALL FACULTIES) ===== */

.faculty-feature {
  background: #fbfaf6;
  padding: 60px 20px;
}

.faculty-feature-card {
  max-width: 1800px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #d9e4f5;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  overflow: hidden;
  border-left: 5px solid #7cc242;
  /* accent line */
}

/* IMAGE SIDE */
.faculty-feature-img {
  min-height: 420px;
}

.faculty-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT SIDE */
.faculty-feature-content {
  padding: 44px 46px;
}

.faculty-feature-tag {
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #7cc242;
  margin-bottom: 14px;
}

.faculty-feature-title {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  color: #2f5a1a;
  margin-bottom: 16px;
}

.faculty-feature-desc {
  color: #4a4a4a;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 22px;
  max-width: 520px;
}

.faculty-feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.chip {
  background: #f4f6f8;
  border: 1px solid #eef1f4;
  padding: 8px 12px;
  font-size: 13px;
  color: #2b2b2b;
}

.faculty-feature-divider {
  height: 1px;
  background: #e7e7e7;
  margin: 18px 0;
}

.faculty-feature-meta {
  display: flex;
  gap: 40px;
  color: #6b6b6b;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 950px) {
  .faculty-feature-card {
    grid-template-columns: 1fr;
  }

  .faculty-feature-img {
    min-height: 260px;
  }

  .faculty-feature-content {
    padding: 30px 22px;
  }

  .faculty-feature-title {
    font-size: 36px;
  }
}

/* ===== FACULTIES STATS (background image + overlay) ===== */
.faculties-stats {
  position: relative;
  padding: 70px 20px;
  background: url("assets/img/faculties-stats.jpg") center/cover no-repeat;
  overflow: hidden;
}

/* green overlay */
.faculties-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(47, 90, 26, 0.78);
}

.faculties-stats-inner {
  position: relative; /* above overlay */
  max-width: 1300px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  align-items: center;
}

.stat-number {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  font-weight: 700;
  color: #9ad34b; /* light green like screenshot */
}

/* responsive */
@media (max-width: 900px) {
  .faculties-stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stat-number {
    font-size: 44px;
  }
}

@media (max-width: 480px) {
  .faculties-stats-inner {
    grid-template-columns: 1fr;
  }
}

/* ===== CTA CAREER SECTION ===== */
.cta-career {
  background: #fbfaf6;
  padding: 160px 20px; /* MUCH taller section */
  border-bottom: 10px solid #5e9f2e;
}

/* container */
.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center; /* vertical centering */
  gap: 80px; /* big breathing space */
}

/* LEFT TEXT BLOCK */
.cta-text {
  max-width: 620px;
}

/* TITLE */
.cta-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 72px; /* BIG hero headline */
  line-height: 1.12;
  color: #2f5a1a;
  margin-bottom: 28px;
}

/* PARAGRAPH */
.cta-text p {
  font-size: 20px;
  line-height: 1.9;
  color: #4b5563;
  margin-bottom: 40px;
}

/* BUTTON GROUP — PERFECT ALIGNMENT */
.cta-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: #7cc242;
  color: #fff;
  padding: 18px 34px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: 0.25s ease;
}

.btn-primary:hover {
  background: #6aae36;
}

/* OUTLINE BUTTON */
.btn-outline {
  border: 1px solid #cfd8e3;
  padding: 18px 34px;
  font-size: 15px;
  font-weight: 600;
  color: #2f5a1a;
  text-decoration: none;
  border-radius: 2px;
  transition: 0.25s ease;
}

.btn-outline:hover {
  background: #f3f5f8;
}

/* RIGHT IMAGE GRID */
.cta-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cta-images img {
  width: 100%;
  height: 210px; /* bigger images */
  object-fit: cover;
  border-radius: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cta-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .cta-buttons {
    justify-content: center; /* buttons centered on mobile */
  }

  .cta-text h2 {
    font-size: 48px;
  }
}

/* ===== FIX HAMBURGER FOR YOUR CURRENT HTML (.nav + #nav-menu + #hamburger) ===== */
.header {
  position: relative;
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #f5f5f5;
    border-top: 1px solid #ddd;
    flex-direction: column;
    padding: 10px 0;
  }

  .nav a {
    margin: 0;
    padding: 14px 20px;
  }

  .nav.active {
    display: flex;
  }
}

/* Hamburger -> X (MATCHES JS: hamburger.classList.toggle("open")) */
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
