/* =====================
   RESET & BASE
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Times New Roman', Times, serif;
  background: #ffffff;
  color: #0f172a;
  line-height: 1.6;
}

/* =====================
   UTILITIES
===================== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.highlight {
  color: #d4af37;
}

/* =====================
   BUTTONS
===================== */
.btn-primary {
  background: #020617;
  color: #ffffff;
  border: 0.1px solid rgba(255, 255, 255, 0.45);
  padding: 13px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 13px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-primary.full {
  width: 100%;
}

/* =====================
   HEADER / NAVBAR
===================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav {
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 110px;
  width: 110px;
  margin-top: 15px;
  transition: 0.3s ease;
}

.logo a:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
  position: relative;
}

@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #020617;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* =====================
   HAMBURGER
===================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #0f172a;
}

/* =====================
   MOBILE MENU
===================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: right 0.4s ease;
  z-index: 2000;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  text-decoration: none;
  font-size: 18px;
  color: #0f172a;
}

/* =====================
   HERO SECTION
===================== */
.hero {
  min-height: 100vh;
  padding-top: 70px;
  display: flex;
  align-items: center;
  position: relative;

  background:
    linear-gradient(
      to right,
      rgba(15, 23, 42, 0.85) 0%,
      rgba(15, 23, 42, 0.65) 45%,
      rgba(15, 23, 42, 0.35) 75%,
      rgba(15, 23, 42, 0.15) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(15, 23, 42, 0.55),
      rgba(15, 23, 42, 0.15)
    ),
    url("../assets/lib.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.hero-text {
  max-width: 620px;
}

/* Hero Badge */
.hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease forwards;
}

.hero-text h1 {
  font-size: 52px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
  animation: fadeUp 1s ease forwards;
}

.hero-text p {
  font-size: 18px;
  color: #e5e7eb;
  margin-bottom: 30px;
  animation: fadeUp 1.2s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  animation: fadeUp 1.4s ease forwards;
}

/* =====================
   FEATURED CTA BUTTON
===================== */
.featured-action {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.btn-dark {
  background: #020617;
  color: #ffffff;
  border: none;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.25);
}

.btn-dark span {
  transition: transform 0.3s ease;
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.35);
}

.btn-dark:hover span {
  transform: translateX(4px);
}


/* =====================
   STATS STRIP
===================== */
.stats {
  background: #020617;
  padding: 70px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  color: #ffffff;
}

.stat-icon {
  font-size: 26px;
  color: #d4af37;
  margin-bottom: 12px;
  display: inline-block;
}

.stat-item h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 15px;
  color: #cbd5f5;
}

/* =====================
   FEATURED INTRO
===================== */
.featured-intro {
  padding: 120px 20px 80px;
  text-align: center;
  background: #fdfcf8;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1.6px;
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 14px;
}

.featured-intro h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.featured-intro p {
  max-width: 650px;
  margin: auto;
  font-size: 17px;
  color: #475569;
}

/* =====================
   WHY  
===================== */
.why-section {
  padding: 120px 0;
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.why-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 14px 0 20px;
}

.why-intro {
  font-size: 17px;
  color: #475569;
  max-width: 520px;
  margin-bottom: 40px;
}

/* POINTS */
.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
}

.why-point {
  display: flex;
  gap: 14px;
}

.why-point h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.why-point p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

.check {
  color: #d4af37;
  font-size: 18px;
  margin-top: 2px;
}

/* RIGHT IMAGE */
.why-image {
  position: relative;
}

.why-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* EXPERIENCE BADGE */
.experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #d4af37;
  color: #020617;
  padding: 22px 26px;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.experience-badge strong {
  font-size: 28px;
  display: block;
  font-weight: 700;
}

.experience-badge span {
  font-size: 14px;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-content {
    text-align: center;
  }

  .why-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .why-points {
    grid-template-columns: 1fr;
  }

  .why-image {
    margin-top: 40px;
  }

  .experience-badge {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* =====================
   CTA
===================== */
.cta {
  background: #020617;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 20px;  
}

/* =====================
   FOOTER
===================== */
.footer {
  background: #020617;
  color: #cbd5f5;
  padding: 90px 20px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 60px;
}

/* BRAND */
.footer-brand img {
  height: 100px;
  margin-top: 0px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5f5;
}

/* COLUMNS */
.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 22px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: #cbd5f5;
  font-size: 15px;
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #d4af37;
}

/* CONTACT */
.footer-contact {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact span {
  color: #d4af37;
  font-size: 16px;
  margin-top: 2px;
}

.footer-contact p {
  font-size: 15px;
  line-height: 1.6;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 70px;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* =====================
   FOOTER RESPONSIVE
===================== */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer {
    padding-top: 70px;
  }

  .footer-bottom {
    margin-top: 40px;
  }
}

/* =====================
   ANIMATIONS
===================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {

  .nav-links,
  .btn-primary {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    background:
      linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.85),
        rgba(15, 23, 42, 0.4)
      ),
      url("../assets/lib.jpg");
  }

  .hero-text {
    text-align: center;
    margin: auto;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }

  .featured-intro h2 {
    font-size: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   TESTIMONIALS
===================== */
.testimonials {
  padding: 120px 0;
  background: #f8fafc;
  text-align: center;
}

.section-tag.center {
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
}

/* GRID */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.testimonial-card {
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* TEXT */
.testimonial-text {
  font-size: 16px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 26px;
  font-style: italic;
}

.testimonial-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial-meta {
  font-size: 14px;
  color: #d4af37;
  font-weight: 500;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .section-title {
    font-size: 32px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-card {
    text-align: center;
  }
}

/* =====================
   WHATSAPP FLOATING CTA
===================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 3000;

  display: flex;
  align-items: center;
  gap: 10px;

  background: #25d366;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 50px;

  text-decoration: none;
  font-size: 15px;
  font-weight: 600;

  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.6);
}

.wa-icon {
  font-size: 18px;
  line-height: 1;
}

.wa-text {
  white-space: nowrap;
}

/* Mobile optimization */
@media (max-width: 900px) {
  .whatsapp-float {
    bottom: 18px;
    left: 18px;
    padding: 14px;
  }

  .wa-text {
    display: none; /* icon-only on mobile */
  }
}

/* ABOUT HERO */
.page-hero {
  padding: 160px 0 100px;
  background: #020617;
  color: #fff;
  text-align: center;
}

/* MISSION */
.mission { padding: 100px 0; }
.mission-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; }

.mission-card {
  background: #fdfcf8;
  padding: 40px;
  border-radius: 14px;
}

.mv-header { display: flex; gap: 16px; align-items: center; margin-bottom: 14px; }
.mv-header img { width: 48px; background: #f5f1e6; padding: 10px; border-radius: 12px; }

/* VALUES */
.values-section { background: #fdfcf8; padding: 120px 0; }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; margin-top: 60px; }

.value-card {
  background: #fff;
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}

/* =====================
   OUR JOURNEY / TIMELINE
===================== */
.journey-section {
  padding: 120px 0;
  background: #ffffff;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 80px auto 0;
}

/* Vertical line */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #e5e7eb;
  transform: translateX(-50%);
}

/* Timeline item */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 30px 40px;
}

/* Positioning */
.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

/* Dot */
.timeline-dot {
  position: absolute;
  top: 40px;
  right: -9px;
  width: 14px;
  height: 14px;
  background: #d4af37;
  border-radius: 50%;
  border: 3px solid #ffffff;
  z-index: 2;
}

.timeline-item.right .timeline-dot {
  left: -9px;
  right: auto;
}

/* Card */
.timeline-card {
  background: #fdfcf8;
  padding: 28px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  display: inline-block;
  max-width: 320px;
}

.timeline-year {
  display: block;
  font-weight: 700;
  font-size: 18px;
  color: #d4af37;
  margin-bottom: 8px;
}

.timeline-card p {
  font-size: 15px;
  color: #334155;
  line-height: 1.6;
}

/* =====================
   TIMELINE RESPONSIVE
===================== */
@media (max-width: 900px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
    text-align: left;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
  }

  .timeline-dot {
    left: 14px;
    right: auto;
  }

  .timeline-card {
    max-width: 100%;
  }
}

.timeline-card {
  background:#fdfcf8;
  padding:28px;
  border-radius:12px;
  max-width:320px;
}

.timeline-year { font-weight:700; color:#d4af37; }

.timeline-item.current .timeline-card {
  border:2px solid #d4af37;
  box-shadow:0 0 0 6px rgba(212,175,55,.15);
}

/* RESPONSIVE */
@media(max-width:900px){
  .mission-grid,.values-grid{grid-template-columns:1fr}
  .timeline::before{left:20px}
  .timeline-item{width:100%;padding-left:60px;text-align:left}
  .timeline-item.left,.timeline-item.right{left:0}
  .timeline-dot{left:14px}
}

/* =========================
   SERVICES – EXACT MATCH
========================= */

.services-section {
  background: #ffffff;
  padding: 90px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.service-card {
  background: #fdfbf7;
  border-radius: 18px;
  padding: 34px 32px;
  border: 1px solid #eee9dc;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

/* ICON BOX */
.service-icon-box {
  width: 42px;
  height: 42px;
  background: #020617;
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 18px;
  margin-bottom: 22px;
}

/* TITLE */
.service-card h3 {
  font-family: "Georgia", serif;
  font-size: 20px;
  font-weight: 600;
  color: #020617;
  margin-bottom: 12px;
}

/* DESCRIPTION */
.service-desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* LIST */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  font-size: 14.5px;
  color: #334155;
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

/* GOLD CHECK */
.service-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4af37;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 28px 24px;
  }

}
.service-card {
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover,
.service-card:active {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

/* =========================
   OUR PROCESS SECTION
========================= */

.process-section {
  background: #ffffff;
  padding: 120px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 70px;
}

/* CARD */
.process-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 34px;
  position: relative;
  border: 1px solid #eef2f7;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* LIFT ON HOVER / TOUCH */
.process-card:hover,
.process-card:active {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}

/* STEP NUMBER */
.process-step {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 44px;
  font-weight: 600;
  color: rgba(212, 175, 55, 0.25);
  font-family: "Georgia", serif;
}

/* TITLE */
.process-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #020617;
  font-family: "Georgia", serif;
}

/* DESCRIPTION */
.process-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    padding: 30px 26px;
  }

  .process-step {
    font-size: 36px;
  }
}

/* =========================
   COLLEGES – PROFESSIONAL
========================= */

.colleges-section {
  padding: 100px 0;
  background: #ffffff;
}

.colleges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.college-card {
  background: #ffffff;
  border: 1px solid #eef2f7;
  border-radius: 18px;
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.college-card:hover {
  border-color: #d4af37;
  transform: translateY(-3px);
}

/* HEADER */
.college-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.college-header img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.college-header h3 {
  font-family: "Georgia", serif;
  font-size: 18px;
  margin: 0 0 4px;
}

.college-header span {
  font-size: 13px;
  color: #64748b;
}

/* FEATURES */
.college-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.college-features li {
  font-size: 14px;
  padding-left: 18px;
  margin-bottom: 8px;
  position: relative;
  color: #020617;
}

.college-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

/* LINK */
.college-link {
  font-size: 14px;
  font-weight: 500;
  color: #020617;
  text-decoration: none;
}

.college-link:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .colleges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .colleges-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   CONTACT PAGE
========================= */

.contact-page {
  padding: 120px 0;
  background: #ffffff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
}

/* LEFT */
.contact-left h2 {
  font-family: "Georgia", serif;
  margin-bottom: 12px;
}

.contact-desc {
  color: #475569;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.icon-box {
  width: 44px;
  height: 44px;
  background: #fdf6e3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
}

.contact-item a {
  color: #020617;
  text-decoration: none;
}

/* TRUST BOX */
.trust-box {
  margin-top: 40px;
  background: #fdfbf7;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid #eee9dc;
}

.trust-box h3 {
  font-family: "Georgia", serif;
  margin-bottom: 14px;
}

.trust-box ul {
  list-style: none;
  padding: 0;
}

.trust-box li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* RIGHT FORM */
.contact-right {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #eef2f7;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.contact-right h2 {
  font-family: "Georgia", serif;
  margin-bottom: 24px;
}

.enquiry-form label {
  font-size: 14px;
  font-weight: 500;
}

.enquiry-form label span {
  color: #dc2626;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: #d4af37;
}

/* SUBMIT BUTTON */
.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #020617, #111827);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.btn-submit:hover {
  opacity: 0.95;
}

.form-note {
  font-size: 12px;
  color: #64748b;
  margin-top: 12px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   COLLEGE DETAIL PAGES – PROFESSIONAL
================================ */

/* HERO */
.college-hero {
  background: #020617;
  color: #ffffff;
  padding: 140px 0 90px;
}

.college-hero h1 {
  font-family: "Georgia", serif;
  font-size: 40px;
  margin-bottom: 8px;
}

.college-city {
  font-size: 15px;
  color: #cbd5f5;
  margin-bottom: 18px;
}

.college-sub {
  max-width: 680px;
  font-size: 16px;
  line-height: 1.7;
  color: #e5e7eb;
}

/* CONTENT */
.college-content {
  padding: 90px 0;
  background: #ffffff;
}

.college-block {
  max-width: 900px;
  margin-bottom: 60px;
}

.college-block h2 {
  font-family: "Georgia", serif;
  font-size: 26px;
  margin-bottom: 14px;
  color: #020617;
}

.college-block p {
  font-size: 16px;
  line-height: 1.75;
  color: #334155;
}

/* FEATURES LIST */
.college-features {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.college-features li {
  font-size: 15px;
  color: #020617;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.college-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-size: 18px;
  line-height: 1;
}

/* CTA */
.college-cta {
  background: #f8fafc;
  padding: 70px 20px;
  text-align: center;
  border-top: 1px solid #e5e7eb;
}

.college-cta h2 {
  font-family: "Georgia", serif;
  font-size: 30px;
  margin-bottom: 10px;
  color: #020617;
}

.college-cta p {
  font-size: 16px;
  color: #475569;
  margin-bottom: 24px;
}

/* CTA BUTTON GROUP */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .college-hero h1 {
    font-size: 32px;
  }

  .college-sub {
    font-size: 15px;
  }

  .college-block h2 {
    font-size: 22px;
  }

  .college-cta h2 {
    font-size: 24px;
  }
}
