@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --green-dark: #2d6a2d;
  --green-mid: #3d8b3d;
  --green-light: #5aad5a;
  --green-pale: #e8f5e8;
  --gold: #c8a84b;
  --text-dark: #1a2e1a;
  --text-mid: #4a5e4a;
  --text-light: #7a8e7a;
  --white: #ffffff;
  --off-white: #f7faf7;
}

/* ===== HEADER ===== */
.header {
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(135deg, rgba(20, 50, 20, 0.82), rgba(45, 106, 45, 0.65)),
    url(assets/banner.png);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--off-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* ===== NAV ===== */
nav {
  display: flex;
  padding: 20px 6%;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 50, 20, 0.15);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header nav {
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
}

nav .logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

nav .logo-wrap img {
  height: 54px;
  width: auto;
}

nav .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

nav .logo-text span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

nav .logo-text span:last-child {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  flex: 1;
  text-align: right;
}

.nav-links ul li {
  list-style-type: none;
  display: inline-block;
  padding: 8px 14px;
  position: relative;
}

.nav-links ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background-color: var(--gold);
  display: block;
  margin: auto;
  transition: 0.4s;
}

.nav-links ul li:hover::after {
  width: 100%;
}

.nav-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* ===== HERO TEXT ===== */
.text-box {
  width: 90%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.text-box .tagline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.text-box h1 {
  font-family: 'Playfair Display', serif;
  font-size: 68px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.text-box p {
  font-size: 16px;
  margin: 0 auto 40px;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  line-height: 1.7;
}

.hero-btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 2px solid var(--gold);
  padding: 14px 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: all 0.4s;
  border-radius: 3px;
}

.hero-btn:hover {
  background: var(--gold);
  color: var(--text-dark);
}

.red-btn {
  border-color: var(--green-dark);
  color: var(--green-dark);
}

.red-btn:hover {
  background: var(--green-dark);
  color: #fff;
}

nav .fa {
  display: none;
}

/* ===== SUB-HEADER ===== */
.sub-header {
  min-height: 42vh;
  width: 100%;
  background-image: linear-gradient(135deg, rgba(20, 50, 20, 0.88), rgba(45, 106, 45, 0.75)),
    url(./assets/background.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 60px;
}

.sub-header nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.sub-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  margin-top: 20px;
}

.sub-header .breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1px;
  margin-top: 10px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--green-dark);
  padding: 28px 6%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  text-align: center;
  color: #fff;
}

.stat-item .number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.stat-item .label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

/* ===== SECTIONS ===== */
section {
  position: relative;
}

/* ===== SERVICES (was course) ===== */
.course {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 90px;
  padding-bottom: 30px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-mid);
  display: block;
  margin-bottom: 10px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--text-dark);
}

p {
  color: var(--text-mid);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  padding: 10px;
}

.row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.course-col {
  flex-basis: 31%;
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 5%;
  padding: 30px 20px;
  box-sizing: border-box;
  transition: 0.4s;
  border: 1px solid #e0ede0;
  position: relative;
  overflow: hidden;
}

.course-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
}

.course-col:hover {
  box-shadow: 0 12px 40px rgba(45, 106, 45, 0.15);
  transform: translateY(-4px);
}

.course-col .icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

h3 {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  color: var(--text-dark);
  margin: 10px 0;
}

/* ===== CAMPUS / LOCATION ===== */
.campus {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 40px;
}

.campus-col {
  flex-basis: 32%;
  border-radius: 12px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.campus-col img {
  width: 100%;
  display: block;
  transition: 0.5s;
}

.campus-col:hover img {
  transform: scale(1.05);
}

.layer {
  background-color: transparent;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s;
  cursor: pointer;
}

.layer:hover {
  background-color: rgba(45, 106, 45, 0.75);
}

.layer h3 {
  width: 100%;
  font-weight: 600;
  color: #fff;
  font-size: 22px;
  bottom: 0%;
  left: 50%;
  translate: -50% 0;
  position: absolute;
  opacity: 0;
  transition: 0.4s;
}

.layer:hover h3 {
  bottom: 49%;
  opacity: 1;
}

/* ===== FACILITIES ===== */
.facilites {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 40px;
}

.facilities-col {
  flex-basis: 31%;
  border-radius: 12px;
  margin-bottom: 5%;
  text-align: left;
}

.facilities-col img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
}

/* ===== TESTIMONIALS ===== */
.testi {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 40px;
}

.testi-col {
  flex-basis: 47%;
  border-radius: 12px;
  margin-bottom: 5%;
  text-align: left;
  background: var(--white);
  border: 1px solid #e0ede0;
  padding: 28px;
  cursor: pointer;
  display: flex;
  transition: 0.3s;
}

.testi-col:hover {
  box-shadow: 0 8px 30px rgba(45, 106, 45, 0.12);
  border-color: var(--green-light);
}

.testi-col img {
  height: 60px;
  width: 60px;
  min-width: 60px;
  margin-right: 22px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green-pale);
}

.testi-col p { padding: 0; }

.testi-col h3 {
  margin-top: 12px;
  text-align: left;
  font-size: 16px;
}

.testi-col .stars .fa {
  color: var(--gold);
  font-size: 13px;
}

/* ===== NOTICE BOARD ===== */
.notice-board {
  background: var(--green-pale);
  width: 100%;
  padding: 70px 10%;
  margin-top: 60px;
}

.notice-board h1 {
  text-align: center;
  margin-bottom: 10px;
}

.notice-board > p {
  text-align: center;
  margin-bottom: 40px;
}

.notices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.notice-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  border-left: 4px solid var(--green-dark);
  transition: 0.3s;
}

.notice-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45,106,45,0.12);
}

.notice-card .notice-date {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.notice-card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-size: 17px;
  margin-bottom: 10px;
}

.notice-card p {
  font-size: 14px;
  padding: 0;
  color: var(--text-mid);
}

/* ===== CTA ===== */
.cta {
  margin: 80px auto;
  width: 80%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  text-align: center;
  padding: 90px 40px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta h1 {
  color: #fff;
  margin-bottom: 14px;
  padding: 0;
  font-size: 36px;
}

.cta p {
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta .hero-btn {
  border-color: #fff;
  color: #fff;
}

.cta .hero-btn:hover {
  background: #fff;
  color: var(--green-dark);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.85);
  padding: 60px 10% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer-brand img {
  height: 50px;
  width: auto;
}

.footer-brand .logo-text span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #fff;
}

.footer-brand .logo-text span:last-child {
  font-size: 9px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 2px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  padding: 0;
  line-height: 1.7;
}

.footer-col h5 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

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

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

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-col .contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.footer-col .contact-item .fa {
  color: var(--gold);
  margin-top: 2px;
  min-width: 16px;
}

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

.footer-bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  padding: 0;
}

.icons .fa {
  color: rgba(255,255,255,0.5);
  margin: 0 8px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.icons .fa:hover {
  color: var(--gold);
}

/* ===== ABOUT PAGE ===== */
.about-us {
  width: 80%;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 60px;
}

.about-col {
  flex-basis: 48%;
  padding: 20px 0;
}

.about-col img {
  width: 100%;
  border-radius: 12px;
}

.about-col h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.about-col p {
  padding: 0;
  margin-bottom: 16px;
}

.about-col .hero-btn {
  margin-top: 10px;
}

/* Values */
.values-section {
  background: var(--green-pale);
  padding: 80px 10%;
}

.values-section h1 {
  text-align: center;
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  border-bottom: 3px solid var(--green-dark);
  transition: 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(45,106,45,0.15);
}

.value-card .icon {
  font-size: 36px;
  display: block;
  margin-bottom: 16px;
}

.value-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 13px;
  padding: 0;
  color: var(--text-mid);
}

/* Leadership */
.leadership {
  width: 80%;
  margin: 80px auto;
  text-align: center;
}

.leadership h1 { margin-bottom: 10px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.team-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 24px;
  border: 1px solid #e0ede0;
  transition: 0.3s;
}

.team-card:hover {
  box-shadow: 0 10px 30px rgba(45,106,45,0.12);
  border-color: var(--green-light);
}

.team-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 32px;
  border: 3px solid var(--green-light);
}

.team-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-align: center;
}

.team-card .role {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 600;
  text-align: center;
  display: block;
}

/* ===== SERVICES PAGE ===== */
.services-hero-section {
  width: 80%;
  margin: 80px auto 40px;
  text-align: center;
}

.service-card-large {
  flex-basis: 48%;
  background: var(--white);
  border-radius: 14px;
  margin-bottom: 30px;
  padding: 36px;
  border: 1px solid #e0ede0;
  text-align: left;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card-large::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 5px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
}

.service-card-large:hover {
  box-shadow: 0 14px 44px rgba(45,106,45,0.15);
  transform: translateY(-5px);
}

.service-card-large .s-icon {
  font-size: 44px;
  margin-bottom: 16px;
  display: block;
}

.service-card-large h3 {
  text-align: left;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card-large p {
  padding: 0;
  font-size: 14px;
  line-height: 1.7;
}

.service-card-large ul {
  margin-top: 14px;
  padding-left: 18px;
  color: var(--text-mid);
  font-size: 14px;
  line-height: 2;
}

.fees-section {
  background: var(--text-dark);
  padding: 80px 10%;
  text-align: center;
  color: #fff;
}

.fees-section h1 {
  color: #fff;
  margin-bottom: 10px;
}

.fees-section > p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 50px;
}

.fees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.fee-card {
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 36px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}

.fee-card:hover {
  background: rgba(45,106,45,0.3);
  border-color: var(--green-light);
}

.fee-card .amount {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.fee-card .period {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  display: block;
}

.fee-card h4 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
  text-align: center;
}

.fee-card p {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  padding: 0;
}

/* ===== BLOG PAGE ===== */
.blog-content {
  width: 80%;
  margin: auto;
  padding: 60px 0;
}

.blog-left {
  flex-basis: 65%;
}

.blog-left h2 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 28px;
  margin: 24px 0 16px;
}

.blog-left p {
  color: var(--text-mid);
  padding: 0;
  margin-bottom: 14px;
}

.blog-left img {
  width: 100%;
  border-radius: 12px;
}

.blog-right {
  flex-basis: 30%;
}

.blog-right h3 {
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  color: #fff;
  padding: 12px 16px;
  font-size: 15px;
  margin-bottom: 16px;
  border-radius: 8px;
  text-align: left;
}

.blog-right div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 0;
  padding: 10px 12px;
  border-radius: 6px;
  transition: 0.3s;
  cursor: pointer;
}

.blog-right div:hover {
  background: var(--green-pale);
}

.blog-right div span {
  font-size: 14px;
  color: var(--text-mid);
}

.blog-right div span:last-child {
  background: var(--green-dark);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Comment box */
.comment-box {
  border: 1px solid #e0ede0;
  margin: 50px 0;
  padding: 28px;
  border-radius: 12px;
  background: var(--off-white);
}

.comment-box h3 {
  text-align: left;
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--text-dark);
}

.comment-box .comment-form input,
.comment-box .comment-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin: 10px 0;
  box-sizing: border-box;
  border: 1px solid #d0e4d0;
  border-radius: 6px;
  outline: none;
  background: #fff;
  font-size: 14px;
  transition: 0.3s;
}

.comment-box .comment-form input:focus,
.comment-box .comment-form textarea:focus {
  border-color: var(--green-mid);
}

.comment-form button {
  margin-top: 10px;
}

/* ===== CONTACT PAGE ===== */
.location {
  width: 80%;
  margin: auto;
  padding: 70px 0 40px;
}

.location iframe {
  width: 100%;
  border-radius: 12px;
}

.contact-us {
  width: 80%;
  margin: auto;
  padding-bottom: 60px;
}

.contact-col {
  flex-basis: 46%;
  margin-bottom: 30px;
}

.contact-col div {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
  gap: 18px;
}

.contact-col div .fa {
  font-size: 22px;
  color: var(--green-dark);
  margin-top: 4px;
}

.contact-col div h5 {
  font-size: 17px;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.contact-col div p {
  padding: 0;
  font-size: 14px;
}

.contact-col input,
.contact-col textarea {
  width: 100%;
  padding: 13px 16px;
  margin-bottom: 14px;
  outline: none;
  border: 1px solid #d0e4d0;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
  font-family: 'DM Sans', sans-serif;
}

.contact-col input:focus,
.contact-col textarea:focus {
  border-color: var(--green-mid);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
  body { overflow-x: hidden; }

  .text-box h1 { font-size: 32px; }
  .sub-header h1 { font-size: 26px; }

  .row { flex-direction: column; }

  .nav-links ul li { display: block; }
  .nav-links ul li:hover { translate: -8% 0; transition: 0.4s; }
  .nav-links {
    position: fixed;
    background: var(--green-dark);
    height: 100vh;
    width: 220px;
    top: 0; right: -220px;
    text-align: left;
    z-index: 2;
    transition: 0.5s;
    padding-top: 20px;
  }
  nav .fa { display: block; color: #fff; margin: 10px; font-size: 22px; cursor: pointer; }
  .nav-links ul { padding: 30px; }

  .footer-grid { grid-template-columns: 1fr; }
  .notices-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .fees-grid { grid-template-columns: 1fr; }
  .stats-bar { flex-direction: column; gap: 28px; }
  .cta h1 { font-size: 26px; }
}