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

:root {
  --navy: #0a1628;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #faf7f2;
  --white: #ffffff;
  --text: #1a2540;
  --muted: #6b7a99;
  --border: #e2ddd6;
  --accent: #e85d26;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-logo span { color: var(--gold); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; }

/* FOOTER */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 3rem 5% 1.5rem;
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.88rem; line-height: 1.7; margin-top: 0.75rem;
  max-width: 280px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900; color: white;
  text-decoration: none;
}
.footer-logo span { color: var(--gold); }

.footer-col h4 {
  color: var(--gold); font-size: 0.8rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.65);
  text-decoration: none; font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 600; font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer; border: none;
  transition: all 0.25s;
  letter-spacing: 0.3px;
}

.btn-gold {
  background: var(--gold); color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }

.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: #162140; transform: translateY(-2px); }

/* SECTION HELPERS */
.section-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
}

.section-title.light { color: white; }

/* BADGE */
.badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.78rem; font-weight: 600;
}

/* CARD */
.card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.card:hover { box-shadow: 0 12px 40px rgba(10,22,40,0.1); transform: translateY(-4px); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}


/* =========================
   NAVBAR
========================= */

.navbar{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5%;
  background: #0d1b3e;
  position: relative;
  z-index: 1000;
}


/* =========================
   LOGO
========================= */

.nav-logo{
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.nav-logo span{
  color: #d4af37;
}


/* =========================
   NAV LINKS
========================= */

.nav-links{
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links li{
  list-style: none;
}

.nav-links a{
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active{
  color: #d4af37;
}


/* =========================
   HAMBURGER
========================= */

.hamburger{
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span{
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 5px;
}


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

@media (max-width: 768px){

  .navbar{
    padding: 15px 20px;
  }

  .hamburger{
    display: flex;
  }

  .nav-links{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0d1b3e;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 18px;
    display: none;
  }

  .nav-links.active{
    display: flex;
  }

  .nav-logo{
    font-size: 24px;
  }

  .nav-links a{
    font-size: 14px;
  }

}

/* =========================
   TOP DISCLAIMER BAR
========================= */

.top-disclaimer{
  background: #d4af37;
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 10px;
  line-height: 1.5;
  font-weight: 500;
}


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

@media (max-width: 768px){

  .top-disclaimer{
    font-size: 9px;
    padding: 8px 15px;
    line-height: 1.4;
  }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px){

  .top-disclaimer{
    font-size: 9px;
    padding: 7px 12px;
  }

}




/* =========================
   HERO SECTION
========================= */

.page-hero{
  background: linear-gradient(135deg,#0d1b3e 0%,#162d62 60%,#0a2050 100%);
  padding: 90px 5%;
  position: relative;
  overflow: hidden;
}


/* =========================
   HERO WRAPPER
========================= */

.hero-wrapper{
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}


/* =========================
   LEFT CONTENT
========================= */

.hero-left{
  flex: 1;
}


/* =========================
   BREADCRUMB
========================= */

.breadcrumb{
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
}

.breadcrumb a{
  color: #d4af37;
  text-decoration: none;
}

.breadcrumb span{
  color: rgba(255,255,255,0.6);
}


/* =========================
   BADGE
========================= */

.badge{
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 20px;
}


/* =========================
   HEADING
========================= */

.college-header h1{
  font-size: 56px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}


/* =========================
   DESCRIPTION
========================= */

.hero-desc{
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 650px;
}


/* =========================
   META TAGS
========================= */

.college-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.meta-tag{
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
}


/* =========================
   RIGHT FORM
========================= */

.hero-form{
  width: 400px;
}


/* =========================
   FORM CARD
========================= */

.form-card{
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}

.form-card h3{
  font-size: 24px;
  margin-bottom: 22px;
  color: #111;
}


/* =========================
   FORM GROUP
========================= */

.form-group{
  margin-bottom: 7px;
}

.form-group input{
  width: 100%;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0 15px;
  font-size: 14px;
  outline: none;
}

.form-group input:focus{
  border-color: #0d1b3e;
}


/* =========================
   DISCLAIMER
========================= */

.disclaimer-text{
  font-size: 9px;
  line-height: 1.6;
  color: #666;
  margin: 12px 0 18px;
}


/* =========================
   BUTTON
========================= */

.submit-btn{
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 10px;
  background: #0d1b3e;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}


/* =========================
   NOTE
========================= */

.form-note{
  font-size: 12px;
  color: #777;
  line-height: 1.6;
  text-align: center;
  margin-top: 16px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px){

  .hero-wrapper{
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-form{
    width: 100%;
  }
  

  .form-card{
    width: 100%;
  }

  .college-header h1{
    font-size: 46px;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px){

  .page-hero{
    padding: 299px 20px 50px;
  }

  .hero-wrapper{
    gap: 35px;
  }

  .college-header h1{
    font-size: 34px;
    line-height: 1.2;

  }

  .hero-desc{
    font-size: 14px;
    line-height: 1.7;
  }

  .college-meta{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .meta-tag{
    font-size: 13px;
    padding: 8px 12px;
  }

  .form-card{
    padding: 22px;
    border-radius: 14px;
  }

  .form-card h3{
    font-size: 22px;
  }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px){

  .college-header h1{
    font-size: 28px !important;
        margin-top: -274px !important;
  }

  .hero-desc{
    font-size: 13px;
  }

  .college-meta{
    grid-template-columns: 1fr;
  }

}


