  /* ============================================================
   UNIHUNT – Global Styles
   ============================================================ */

* { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  color: #1a1a2e;
  background: #fff;
  margin: 0;
  padding: 0;
}

/* ---------- Color Variables ---------- */
:root {
  --navy:    #0f1d3b;
  --navy2:   #142040;
  --warning: #f06a3b;
  /* --warning: #f39b16; */
  --secondary-warning:#f39b16;
  --gray-bg: #f5f6fa;
  --text-muted: #6c757d;
  --radius: 12px;
}

/* ============================================================
   UTILITY
   ============================================================ */
.section-pad   { padding: 72px 0; }
.bg-light-gray { background: var(--gray-bg); }
.text-warning  { color: var(--warning) !important; }
.text-second-warning { color: var(--secondary-warning) !important; }
.btn-warning   { background: var(--warning); border-color: var(--warning); color: #fff; }
.btn-warning:hover { background: var(--secondary-warning); border-color: var(--secondary-warning); color: #fff; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warning);
  margin-bottom: 6px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a2e;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 640px;
}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95); /* bg-card/95 approx */
  backdrop-filter: blur(16px); /* backdrop-blur-lg */
  box-shadow: 0 1px 3px rgba(0,0,0,0.1); /* shadow-sm */
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar.scrolled .nav-link{
    color:var(--navy)  !important;
}
.navbar.transparent {
    background: var(--navy);
}
.uh-navbar {
    transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.brand-uni  { color: #fff; font-weight: 800; letter-spacing: -0.5px; }
.brand-hunt { color: var(--warning); font-weight: 800; letter-spacing: -0.5px; }

.uh-navbar .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82) !important;
  padding: 6px 4px;
  transition: color 0.2s;
}
.uh-navbar .nav-link:hover { color: var(--warning) !important; }
.navbar-brand img{
    width:150px;
}
/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  background: linear-gradient(135deg, #0b1a36 0%, #142952 60%, #0e2145 100%);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,193,7,0.12) 0%, transparent 70%);
  top: -80px; right: 10%;
  border-radius: 50%;
  pointer-events: none;
}

.hero-tagline { font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; }

.hero-heading {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

.hero-sub { font-size: 0.92rem; color: rgba(255,255,255,0.72); max-width: 480px; }

.hero-btn { border-radius: 6px; font-size: 0.875rem; padding: 10px 22px; }

/* Stat Cards */
.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 12px;
  text-align: center;
}
.stat-num   { font-size: 1.5rem; font-weight: 800; margin: 0; }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.6); margin: 0; }

/* Hero Image Card */
.hero-img-card {
  position: relative;
  border-radius: 18px;
  overflow: visible;
  max-width: 440px;
  width: 100%;
}

.hero-main-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}

.hero-badge-top {
  position: absolute;
  top: -16px; right: -16px;
  background: var(--warning);
  border-radius: 50%;
  width: 76px; height: 76px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.2;
  box-shadow: 0 4px 14px rgba(255,193,7,0.45);
  z-index: 2;
}

.hero-badge-bottom {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(15,29,59,0.88);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.12);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-card {
  background: #fff;
  border: 1px solid #e8ecf3;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.about-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(0,0,0,0.1); }

.about-icon {
  width: 48px; height: 48px;
  background: #fff8e1;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--warning);
}

.about-list { list-style: none; padding: 0; margin: 0; }
.about-list li { font-size: 0.875rem; padding: 4px 0; color: #444; }

/* ============================================================
   SERVICES
   ============================================================ */
.service-card {
  background: #fff;
  border: 1px solid #e8ecf3;
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.09); }

.service-icon {
  width: 56px; height: 56px;
  background: #fff8e1;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--warning);
  margin-bottom: 4px;
}

/* ============================================================
   EVENT PROMO
   ============================================================ */
.event-promo-card {
  background: linear-gradient(135deg, #0f1d3b 0%, #1a3366 100%);
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 16px 56px rgba(15,29,59,0.3);
  position: relative;
  overflow: hidden;
}

.event-promo-card::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,193,7,0.15) 0%, transparent 70%);
  bottom: -60px; right: 60px;
  border-radius: 50%;
  pointer-events: none;
}

.event-detail { font-size: 0.875rem; color: rgba(255,255,255,0.8); font-weight: 500; }

.event-img {
  width: 220px; height: 200px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
  border: 3px solid rgba(255,193,7,0.3);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 200px 200px;
  gap: 12px;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-item { overflow: hidden; border-radius: 10px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.gallery-item:hover img { transform: scale(1.06); }

.gi-large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 160px);
  }
  .gi-large { grid-column: 1 / 3; grid-row: 1; }
}

/* ============================================================
   REGISTER / COUNSELLING
   ============================================================ */
.register-section { background: var(--gray-bg); }

.register-list { list-style: none; padding: 0; margin: 0; }
.register-list li { font-size: 0.9rem; padding: 6px 0; color: #444; }

.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.09);
  border: 1px solid #e8ecf3;
}

.uh-input {
  border-radius: 8px;
  border: 1px solid #dde1ec;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fbfcff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.uh-input:focus {
  border-color: var(--warning);
  box-shadow: 0 0 0 3px rgba(255,193,7,0.2);
  outline: none;
  background: #fff;
}

/* ============================================================
   PROGRAMS
   ============================================================ */
.program-card {
  background: #fff;
  border: 1px solid #e8ecf3;
  border-radius: var(--radius);
  padding: 20px 12px 16px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.program-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: var(--warning);
}

.prog-icon {
  width: 46px; height: 46px;
  background: #fff8e1;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--warning);
  margin-bottom: 8px;
}

.prog-label { font-size: 0.78rem; font-weight: 600; margin: 0; color: #2a2a2a; line-height: 1.3; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works{
background:#fdf7f2;
}

.process-text{
font-size:14px;
font-weight:600;
letter-spacing:2px;
color:#ff7a00;
text-transform:uppercase;
}

.title{
font-size:36px;
font-weight:800;
margin-top:10px;
}

.step-box{
text-align:center;
position:relative;
}

.step-circle{
width:56px;
height:56px;
background:#5b2c83;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
margin:0 auto 15px;
position: relative;
}


.step-circle::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    background: var(--text-muted);
    height: 1px;
    width: 200px;
}
.step-circle-last-elem::after{
    display: none;
}
.step-box h3{
font-size:16px;
font-weight:700;
margin-bottom:5px;
}

.step-box p{
font-size:13px;
color:#6c757d;
}

/* ============================================================
   WHY CHOOSE / WHO CAN APPLY
   ============================================================ */
.why-list { list-style: none; padding: 0; margin: 0; }
.why-list li { font-size: 0.9rem; padding: 8px 0; color: #444; border-bottom: 1px solid #f0f0f0; }
.why-list li:last-child { border-bottom: none; }

/* ============================================================
   PARTNER
   ============================================================ */
.partner-card {
  background: #fff;
  border: 1px solid #e8ecf3;
  border-radius: var(--radius);
  padding: 28px 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.partner-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.09); }

.partner-icon {
  width: 52px; height: 52px;
  background: #fff8e1;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--warning);
}

/* ============================================================
   UNIVERSITY LOGOS
   ============================================================ */
.uni-logo-card {
    background: #fff;
    border: 1px solid #e8ecf3;
    border-radius: 10px;
    padding: 16px 12px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
    height: 150px;
    display: flex;
    align-items: center;
}
.uni-logo-card img{
    max-height: 100%;
    object-fit: contain;
}
.uni-logo-card:hover {
  border-color: var(--warning);
  box-shadow: 0 4px 14px rgba(255,193,7,0.2);
}

/* ============================================================
   CONTACT
   ============================================================ */
/* .contact-section {
  background: linear-gradient(135deg, #0b1a36 0%, #1a3366 100%);
  padding: 0;
} */

/* ============================================================
   FOOTER
   ============================================================ */
/* ── Contact Banner ── */
    .contact-banner {
      background: var(--secondary-warning);
      padding: 48px 60px 36px;
      border-bottom: 1px solid var(--gray-bg);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .contact-heading {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 7vw, 4.5rem);
      line-height: 1;
      color: transparent;
      -webkit-text-stroke: 2px #fff;
      letter-spacing: 0.02em;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .contact-heading .arrow-icon {
      font-size: clamp(2rem, 5vw, 4rem);
      color: #fff;
      -webkit-text-stroke: 0;
      transform: rotate(-30deg);
      display: inline-block;
      transition: transform 0.3s ease;
    }

    .contact-heading:hover .arrow-icon {
      transform: rotate(-30deg) scale(1.2);
    }

    .btn-get-in-touch {
      background: var(--navy2);
      color: #fff;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: none;
      border-radius: 50px;
      padding: 12px 28px;
      cursor: pointer;
      transition: background 0.25s, transform 0.2s;
      white-space: nowrap;
    }

    .btn-get-in-touch:hover {
      background: var(--warning);
      transform: translateY(-2px);
    }

    /* ── Main Footer ── */
    footer {
      background: var(--navy);
      padding: 52px 60px 0;
    }
    footer img{
        width: 150px;
    }
    /* Nav columns */
    .footer-col-title {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--secondary-warning);
      margin-bottom: 18px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      color: #fff;
      text-decoration: none;
      font-size: 0.82rem;
      letter-spacing: 0.03em;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--warning);
    }

    /* Address */
    .footer-address {
      font-size: 0.82rem;
      color: #fff;
      line-height: 1.8;
    }

    .footer-address a {
      color: #fff;
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-address a:hover { color: var(--warning); }

    /* Social Icons */
    .social-icons {
      display: flex;
      gap: 10px;
      margin-top: 16px;
    }

    .social-icons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--text-muted);
      color: var(--accent);
      font-size: 0.8rem;
      transition: background 0.25s, transform 0.2s;
      text-decoration: none;
    }

    .social-icons a:hover {
      background: var(--accent);
      color: #0d0d0d;
      transform: translateY(-3px);
    }

    /* ── Footer Bottom ── */
    .footer-bottom {
      border-top: 1px solid var(--text-muted);
      margin-top: 44px;
      padding: 18px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom span,
    .footer-bottom a {
      font-size: 0.72rem;
      color:#fff;
      letter-spacing: 0.05em;
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-bottom a:hover { color: var(--accent); }

    .footer-bottom .divider {
      color: var(--text-muted);
      margin: 0 10px;
    }

    @media (max-width: 768px) {
      .contact-banner { padding: 36px 24px; }
      footer { padding: 40px 24px 0; }
      .footer-bottom { padding: 18px 0; flex-direction: column; align-items: flex-start; }
    }

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
   @media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1280px;
    }
}
@media (max-width: 991px) {
  .section-pad { padding: 52px 0; }
  .hero-section { padding: 48px 0 40px; }
  .event-promo-card { padding: 36px 28px; }
}

@media (max-width: 767px) {
  .section-pad { padding: 44px 0; }
  .hero-heading { font-size: 2rem; }
  .event-promo-card { padding: 28px 20px; }
  .form-card { padding: 24px 18px; }
}
