:root {
  --primary: #e91e4f;
  --primary-dark: #b71540;
  --primary-light: #ff4d6d;
  --accent: #0d2c5e;
  --accent-dark: #081e44;
  --text: #1f2937;
  --text-light: #6b7280;
  --bg: #ffffff;
  --bg-alt: #fdf3f6;
  --bg-dark: #1a1a1a;
  --border: #e5e7eb;
  --success: #16a34a;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,.12);
  --radius: 8px;
  --radius-lg: 14px;
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }
h1, h2, h3, h4 { font-family: 'Poppins', 'Inter', sans-serif; line-height: 1.25; color: var(--text); font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: .75em; }
h3 { font-size: 1.25rem; margin-bottom: .5em; }
p { margin-bottom: 1em; color: var(--text-light); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* Top bar */
.topbar {
  background: #ffc72c;
  color: #1a1a1a;
  font-size: .9rem;
  padding: 10px 0;
  font-weight: 600;
}
.topbar a { color: #1a1a1a; }
.topbar a:hover { color: var(--primary); }
.topbar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; align-items: center; }
.topbar .social-mini { display: flex; gap: 8px; align-items: center; }
.topbar .social-mini a { width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; background: #1a1a1a; color: #fff; border-radius: 50%; font-size: .85rem; font-weight: 700; }
.topbar .social-mini a:hover { background: var(--primary); color: #fff; }
.topbar .follow-pill { background: var(--primary); color: #fff; padding: 4px 14px; border-radius: 20px; font-size: .8rem; font-weight: 600; }
.topbar-info span { margin-right: 18px; }
.topbar-info i { margin-right: 6px; }

/* Header */
.header {
  background: #fff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-top { display: none; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; background: #fff; }
.logo { display: flex; align-items: center; gap: 12px; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--primary); }
.logo img { height: 54px; width: auto; display: block; }
.footer .logo img { height: 64px; }
.logo-mark {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}
.logo-text { line-height: 1.1; color: var(--primary); }
.logo-text small { display: block; font-size: .72rem; color: var(--text-light); font-weight: 500; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 0; }
.nav > a, .nav > .has-dropdown > a {
  color: #1a1a1a; font-weight: 700; padding: 16px 20px;
  font-size: .92rem; text-transform: uppercase; letter-spacing: .5px;
  border-radius: 0;
}
.nav > a:hover, .nav > .has-dropdown:hover > a, .nav > a.active, .nav > .has-dropdown > a.active {
  color: #fff; background: var(--primary);
}
.nav .btn { margin-left: 14px; background: var(--primary); color: #fff; padding: 10px 22px; }
.nav .btn:hover { background: var(--primary-dark); color: #fff; }

.menu-toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--primary); padding: 6px 12px; font-weight: 700; }

/* Dropdown - same pink as nav active */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: .7rem; }
.dropdown {
  position: absolute; top: 100%; left: 0;
  background: #2e8b3d;
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 50;
  padding: 0;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  color: #fff;
  padding: 13px 22px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: #246e30; color: #fff; }
.dropdown-label { display: block; padding: 7px 16px 4px; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #888; background: #f3f4f6; pointer-events: none; border-bottom: 1px solid #e5e7eb; margin-top: 4px; }
.dropdown-label:first-child { margin-top: 0; }

/* Floating side buttons */
.float-side {
  position: fixed;
  right: 0;
  top: 35%;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.float-side a {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: var(--accent);
  color: #fff;
  padding: 16px 8px;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 1px;
  border-radius: 6px 0 0 6px;
  box-shadow: var(--shadow);
  text-transform: uppercase;
}
.float-side a:hover { color: #fff; background: var(--accent-dark); }
.float-side a.call { background: var(--primary); }
.float-side a.call:hover { background: var(--primary-dark); }

/* WhatsApp floating */
.whatsapp-float {
  position: fixed;
  left: 20px; bottom: 20px;
  width: 56px; height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  z-index: 90;
  animation: pulse 2s infinite;
}
.whatsapp-float svg { width: 32px; height: 32px; }
.whatsapp-float:hover { color: #fff; background: #1ebe5a; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 6px 28px rgba(37,211,102,.7); }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s;
  text-align: center;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-light { background: #fff; color: var(--primary); }
.btn-light:hover { background: var(--accent); color: #fff; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #0d2c5e 0%, #1e4d99 100%);
  color: #fff;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='80' cy='20' r='40' fill='%23ffffff' opacity='.05'/%3E%3Ccircle cx='90' cy='80' r='30' fill='%23ffc72c' opacity='.18'/%3E%3C/svg%3E") no-repeat center/cover;
  pointer-events: none;
}
.hero-badge { display: none; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; position: relative; z-index: 1; }
.hero h1 { color: #fff; margin-bottom: 16px; }
.hero h1 span { color: #ffc72c; }
.hero p { color: rgba(255,255,255,.9); font-size: 1.1rem; margin-bottom: 28px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image {
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
}
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.hero-stats .stat { text-align: center; }
.hero-stats .num { font-size: 2rem; font-weight: 800; color: #ffc72c; display: block; }
.hero-stats .lbl { font-size: .85rem; color: rgba(255,255,255,.85); }
.hero-image .feat-list li { color: rgba(255,255,255,.95); }
.hero-image hr { border: 0; border-top: 1px solid rgba(255,255,255,.15); margin: 24px 0; }

/* Sections */
section { padding: 50px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.section-head .eyebrow { color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: .85rem; margin-bottom: 10px; display: block; }
.section-head h2 { margin-bottom: 14px; }
.bg-alt { background: var(--bg-alt); }

/* Feature cards */
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card h3 { font-size: 1.1rem; }
.card p { font-size: .92rem; margin-bottom: 0; }
.card .icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.card.accent .icon { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }

/* Service / college cards w/ image */
.media-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.media-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.media-card .thumb {
  height: 110px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.8rem; font-weight: 800;
  letter-spacing: 1px;
}
.media-card .body { padding: 18px; }
.media-card .body h3 { margin-bottom: 6px; font-size: 1.05rem; }
.media-card .body p { font-size: .9rem; margin-bottom: 10px; }
.media-card .meta { font-size: .8rem; color: var(--text-light); margin-bottom: 10px; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-radius: var(--radius-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.95); font-size: 1.1rem; margin-bottom: 24px; }

/* Form */
.form { max-width: 720px; margin: 0 auto; background: #fff; padding: 36px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { margin-bottom: 18px; }
.form label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .9rem; }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  transition: border-color .2s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--primary);
}
.form textarea { resize: vertical; min-height: 130px; }

/* Footer */
.footer {
  background: var(--bg-dark);
  color: #cbd5e1;
  padding: 60px 0 20px;
  margin-top: 60px;
}
.footer h4 { color: #fff; margin-bottom: 18px; font-size: 1.05rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer a { color: #cbd5e1; }
.footer a:hover { color: var(--accent); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; font-size: .92rem; }
.footer p { color: #94a3b8; font-size: .92rem; }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.social a:hover { background: var(--accent); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  text-align: center;
  font-size: .88rem;
  color: #94a3b8;
}

/* Page banner */
.page-banner {
  background: linear-gradient(135deg, #0d2c5e 0%, #1e4d99 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.page-banner h1 { color: #fff; margin-bottom: 10px; }
.page-banner .crumbs { color: rgba(255,255,255,.85); font-size: .95rem; }
.page-banner .crumbs a { color: #ffc72c; }

/* Lists */
.feat-list { list-style: none; }
.feat-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--text-light);
}
.feat-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 10px;
  width: 22px; height: 22px;
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  font-size: .75rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

/* Article / college detail */
.article { max-width: 880px; margin: 0 auto; }
.article h2 { color: var(--primary); margin-top: 1.6em; padding-bottom: .4em; border-bottom: 2px solid var(--bg-alt); }
.article h3 { margin-top: 1.4em; color: var(--primary-dark); }
.article p { color: var(--text); }
.article ul { margin: 0 0 1em 1.4em; }
.article ul li { margin-bottom: .5em; color: var(--text); }
.article hr { border: 0; border-top: 1px solid var(--border); margin: 2.4em 0; }
.article table {
  width: 100%; border-collapse: collapse; margin: 1em 0;
  background: #fff; box-shadow: var(--shadow-sm); border-radius: var(--radius); overflow: hidden;
}
.article table th { background: var(--primary); color: #fff; text-align: left; padding: 12px 14px; font-weight: 600; font-size: .92rem; }
.article table td { padding: 11px 14px; border-bottom: 1px solid var(--border); font-size: .92rem; }
.article table tr:last-child td { border-bottom: 0; }
.article table tr:nth-child(even) td { background: var(--bg-alt); }
.article-intro { font-size: 1.05rem; color: var(--text); padding: 18px 22px; background: var(--bg-alt); border-left: 4px solid var(--primary); border-radius: 6px; margin: 1.5em 0; }

/* Blog */
.blog-card .thumb { height: 220px; background: linear-gradient(135deg, var(--primary-light), var(--primary)); }
.blog-card .tag { display: inline-block; background: var(--accent); color: #fff; padding: 3px 10px; border-radius: 20px; font-size: .75rem; font-weight: 600; margin-bottom: 10px; }
.blog-card .date { font-size: .85rem; color: var(--text-light); margin-bottom: 8px; }
.blog-content { max-width: 800px; margin: 0 auto; }
.blog-content h2, .blog-content h3 { margin-top: 1.5em; }
.blog-content p { color: var(--text); }

/* Contact info cards */
.contact-info { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 50px; }
.contact-info .card { text-align: center; }
.contact-info .icon { margin: 0 auto 18px; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner, .grid-3, .grid-4, .footer-grid, .form-row, .contact-info { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero { padding: 50px 0; }
  section { padding: 50px 0; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 999; background: #0d2c5e; flex-direction: column; padding: 0; box-shadow: var(--shadow); align-items: stretch; border-top: 0; max-height: 80vh; overflow-y: auto; }
  .nav.open { display: flex; }
  .nav > a, .nav > .has-dropdown > a { display: block; width: 100%; padding: 18px 24px; border-bottom: 1px solid rgba(255,255,255,.1); color: #fff; text-transform: uppercase; font-weight: 700; letter-spacing: .5px; position: relative; z-index: 2; }
  .nav > a:hover, .nav > .has-dropdown:hover > a, .nav > a.active, .nav > .has-dropdown > a.active { background: var(--primary); color: #fff; }
  .nav .has-dropdown { width: 100%; }
  .nav .dropdown { position: static; display: none; background: #2e8b3d; box-shadow: none; min-width: 0; width: 100%; }
  .nav .has-dropdown.open .dropdown { display: block; }
  .nav .has-dropdown > a { display: flex; justify-content: space-between; align-items: center; }
  .nav .has-dropdown > a::after { float: none; margin-left: auto; transition: transform .2s; }
  .nav .has-dropdown.open > a::after { transform: rotate(180deg); }
  .nav .dropdown a { color: #fff; padding: 14px 36px; border-bottom: 1px solid rgba(255,255,255,.15); }
  .nav .dropdown a:hover { background: #246e30; }
  .nav .btn { margin: 14px 24px; width: calc(100% - 48px); padding: 14px; }
  .header-inner { padding: 4px 0; position: relative; justify-content: space-between; }
  .menu-toggle { margin-left: auto; }
  .menu-toggle { display: block; }
  .topbar-info { display: none; }
  .form { padding: 24px; }
  /* Hide vertical side tabs on mobile — WhatsApp button covers the CTA */
  .float-side { display: none; }
  /* Dropdown section labels inside dark mobile nav */
  .nav .dropdown-label { background: rgba(0,0,0,.25); color: rgba(255,255,255,.6); border-bottom-color: rgba(255,255,255,.1); }
}
