/* =========================================
   ADMINT CONSULTING — STYLESHEET
   ========================================= */

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

:root {
  --navy:       #0f1f5c;
  --blue:       #1e3a8a;
  --accent:     #4d65ff;
  --accent-dark:#3a50d9;
  --light-blue: #eef1ff;
  --text:       #1a1a2e;
  --text-muted: #5a6380;
  --border:     #e2e6f0;
  --white:      #ffffff;
  --bg-soft:    #f7f8fc;
  --gold:       #f59e0b;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06);
  --shadow:     0 4px 20px rgba(15,31,92,0.10);
  --shadow-lg:  0 12px 48px rgba(15,31,92,0.14);

  --font-body:  'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;

  --max-width:  1160px;
  --nav-h:      72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
}

/* ---- UTILITIES ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }

.overline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header h2 { margin-bottom: 16px; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); }
h5 { font-size: 0.85rem; font-weight: 700; font-family: var(--font-body); letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }

p { color: var(--text-muted); }

a { color: inherit; text-decoration: none; }

em { font-style: italic; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(77,101,255,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--light-blue);
  transform: translateY(-1px);
}

.btn-sm { padding: 10px 22px; font-size: 0.875rem; }
.btn-lg { padding: 16px 38px; font-size: 1.05rem; }


/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.15s;
}
.nav-links a:not(.btn):hover { color: var(--accent); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* =========================================
   HERO
   ========================================= */
.hero {
  margin-top: var(--nav-h);
  min-height: calc(100vh - var(--nav-h));
  background: linear-gradient(135deg, #f0f3ff 0%, #e8eeff 50%, #f7f8fc 100%);
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-text .overline { margin-bottom: 20px; }

.hero-text h1 {
  margin-bottom: 24px;
  color: var(--navy);
}

.hero-text h1 em {
  color: var(--accent);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-image { display: flex; justify-content: center; }

.hero-img {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}


/* =========================================
   SOCIAL PROOF
   ========================================= */
.social-proof {
  background: var(--white);
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  max-width: 200px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

.schools-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ---- Marquee logo strip ---- */
.marquee-track {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 8px;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  padding: 20px 0;
}

.college-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.2s, filter 0.2s;
  flex-shrink: 0;
  margin-right: 56px;
}

.marquee-inner:hover { animation-play-state: paused; }

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}
.college-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}


/* =========================================
   ABOUT
   ========================================= */
.about { background: var(--bg-soft); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.img-placeholder {
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: block;
}

.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }
.about-text .btn { margin-top: 8px; }


/* =========================================
   PHILOSOPHY
   ========================================= */
.philosophy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #2a4fba 100%);
  color: var(--white);
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.philosophy-left .overline { color: rgba(255,255,255,0.6); }
.philosophy-left h2 { color: var(--white); margin-bottom: 20px; }
.philosophy-left p { color: rgba(255,255,255,0.7); line-height: 1.75; }

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.philosophy-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 28px;
  background: rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.philosophy-card:hover { background: rgba(255,255,255,0.09); }


.philosophy-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
}

.philosophy-card p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}


/* =========================================
   SERVICES
   ========================================= */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.service-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 12px;
}

.service-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--light-blue);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

.service-desc {
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.service-features li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 22px;
  position: relative;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { gap: 8px; }


/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials { background: var(--bg-soft); }

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover { box-shadow: var(--shadow); }

.testimonial-photo {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.placeholder-photo {
  background: linear-gradient(135deg, var(--blue), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.testimonial-schools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.school-badge {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--light-blue);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

blockquote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}


/* =========================================
   FOUNDER / TEAM SLIDER
   ========================================= */
.founder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #2a4fba 100%);
  color: var(--white);
  position: relative;
}

.founder-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.founder-track::-webkit-scrollbar { display: none; }

.founder-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.founder-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-bottom: 36px;
}

.founder-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  padding: 0;
}
.founder-dot.active {
  background: var(--white);
  border-color: var(--white);
}

.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.founder-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.founder-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 80px 28px 28px;
  background: linear-gradient(to top, rgba(15,31,92,0.92) 0%, rgba(15,31,92,0.5) 50%, transparent 100%);
}

.founder-name {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.founder-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  display: block;
  transform: scale(1.2);
  transform-origin: top center;
}

.founder-text h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.founder-text p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}

.founder-quote {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 28px 0 32px;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}


/* =========================================
   FAQ
   ========================================= */
.faq { background: var(--white); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--bg-soft); }

.faq-icon {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 28px 24px;
}
.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
}


/* =========================================
   CONTACT / CTA
   ========================================= */
.contact { background: var(--bg-soft); }

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 0 24px;
}

.step-num {
  width: 52px; height: 52px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 18px;
}

.step h4 { color: var(--navy); margin-bottom: 10px; }
.step p { font-size: 0.9rem; line-height: 1.65; }

.step-arrow {
  font-size: 1.5rem;
  color: var(--accent);
  opacity: 0.4;
  margin-top: 14px;
  flex-shrink: 0;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.contact-details {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-details a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}
.contact-details a:hover { color: var(--accent); }


/* =========================================
   FOOTER
   ========================================= */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  padding-top: 64px;
  padding-bottom: 48px;
}

.footer-brand .logo { color: var(--white); margin-bottom: 14px; display: block; }
.footer-brand .logo span { color: var(--accent); }
.footer-brand p { font-size: 0.9rem; line-height: 1.65; max-width: 280px; margin-bottom: 24px; }

.social-icons {
  display: flex;
  gap: 16px;
}
.social-icons a {
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.social-icons a:hover { color: var(--white); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col h5 { color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.825rem; color: rgba(255,255,255,0.35); }

.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.15s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.75); }


/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-inner,
  .about-inner,
  .founder-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-image { order: -1; }
  .hero-img-placeholder { max-width: 320px; aspect-ratio: 1/1; }

  .about-img { aspect-ratio: 16/9; }

  .founder-inner { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .stats-row { gap: 24px; }
  .stat-divider { display: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .section-pad { padding: 64px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 0 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
  }
  .nav-links .btn {
    margin: 8px 24px 0;
    width: calc(100% - 48px);
    justify-content: center;
  }

  .hamburger { display: flex; }

  .steps-row { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; }

  .contact-details { flex-direction: column; align-items: center; gap: 12px; }

  .footer-links { grid-template-columns: 1fr 1fr; }

  .college-logo { height: 36px; }
}
