*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family:'Poppins',sans-serif; background:#f2f2f2; color:#222; overflow-x:hidden; }
a    { text-decoration:none; color:inherit; }
img  { max-width:100%; }

:root {
  --blue:    #2ea6cc;
  --orange:  #f28c3c;
  --dark:    #06202B;
  --light:   #f2f2f2;
  --white:   #fff;
}

/* ── BUTTON BOUNCE ── */
@keyframes bounce {
  0%   { transform:translateY(0) scale(1); }
  30%  { transform:translateY(-10px) scale(1.05); }
  50%  { transform:translateY(0) scale(0.98); }
  70%  { transform:translateY(-5px) scale(1.02); }
  100% { transform:translateY(0) scale(1); }
}
button:active { animation:bounce 0.4s; }

/* ── SLIDE-UP (hero, runs immediately) ── */
@keyframes slideUp {
  from { opacity:0; transform:translateY(40px); }
  to   { opacity:1; transform:translateY(0); }
}
.slide-up { opacity:0; animation:slideUp .7s ease forwards; }
.delay-1  { animation-delay:.15s; }
.delay-2  { animation-delay:.35s; }
.delay-3  { animation-delay:.55s; }

/* ── SCROLL REVEAL classes (triggered by JS) ── */
.reveal-up, .reveal-left, .reveal-right {
  opacity:0; transition: opacity .65s ease, transform .65s ease;
}
.reveal-up    { transform:translateY(40px); }
.reveal-left  { transform:translateX(-40px); }
.reveal-right { transform:translateX(40px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity:1; transform:none;
}
.delay-1.visible { transition-delay:.1s; }
.delay-2.visible { transition-delay:.25s; }
.delay-3.visible { transition-delay:.40s; }


/*NAVBAR*/
.navbar {
  position: fixed;
  top: 20px; left: 0; right: 0;
  margin: 0 60px;
  height: 90px;
  background: white;
  border-radius: 50px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 36px rgba(0,0,0,0.09);
  z-index: 1000;
  transition: top .3s, height .3s, box-shadow .3s;
}
/* shrink on scroll */
.navbar.scrolled { top:10px; height:70px; box-shadow:0 6px 24px rgba(0,0,0,.13); }

.nav-inner {
  width:100%; display:flex; align-items:center;
  justify-content:space-between; padding:0 36px;
}
.logo img { height:54px; width:auto; transition:height .3s; }
.navbar.scrolled .logo img { height:42px; }

/* nav links */
.navbar-nav              { flex-direction:row; gap:8px; align-items:center; }
.navbar .nav-link        { color:#38a8c8 !important; font-weight:500; font-size:15px; padding:6px 10px; }
.navbar .nav-link:hover  { color:#2f545f !important; }
.active-link             { color:#ff8c38 !important; }

.btn-apply-nav {
  display:inline-block; background:#f28c3c; color:#fff !important;
  padding:9px 22px; border-radius:8px; font-weight:600;
  font-size:14px; margin-left:8px; transition:background .2s;
}
.btn-apply-nav:hover { background:#e07e2a; color:#fff !important; }

/* dropdown */
.navbar .dropdown-menu {
  border:none; border-radius:12px;
  box-shadow:0 12px 32px rgba(0,0,0,.12);
  padding:10px 0; margin-top:8px;
}
.navbar .dropdown-item { color:#062C33; font-size:14px; padding:10px 20px; }
.navbar .dropdown-item:hover { background:#f5f5f5; color:var(--blue); }


/* HERO*/
.about-hero {
  position: relative;
  height: 88vh; min-height: 500px;
  background: url(images/about\ hero.png) center/cover no-repeat;
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding: 0 80px 80px;
}

.hero-overlay {
  position:absolute; inset:0;
  background: linear-gradient(170deg, rgba(6,32,43,.3) 0%, rgba(6,32,43,.82) 100%);
  border-bottom-left-radius:60px;
  border-bottom-right-radius:60px;
}

/* floating label top-right */
.hero-label {
  position:absolute; top:130px; right:80px;
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.22);
  color:white; font-size:11px; font-weight:600;
  letter-spacing:2px; padding:7px 18px; border-radius:30px;
  z-index:1;
}

.hero-content {
  position:relative; z-index:1;
  color:white; max-width:640px;
}

.hero-eyebrow {
  font-size:13px; font-weight:600; letter-spacing:2.5px;
  text-transform:uppercase; color:var(--orange);
  margin-bottom:14px;
}

.hero-content h1 {
  font-family:'Abril Fatface';
  font-size:clamp(52px, 8vw, 100px);
  line-height:1;
  margin-bottom:18px;
  color:white;
}
.hero-content h1 span { color:var(--orange); }

.hero-sub { font-size:17px; opacity:.85; line-height:1.6; max-width:480px; }

/* scroll cue */
.scroll-cue {
  position:absolute; bottom:32px; left:50%;
  transform:translateX(-50%); z-index:1;
}
.scroll-cue span {
  display:block; width:2px; height:44px;
  background:linear-gradient(to bottom, rgba(255,255,255,0), white);
  margin:0 auto; animation:scrollPulse 1.8s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:.3; transform:scaleY(1); }
  50%     { opacity:1; transform:scaleY(1.3); }
}


/* ABOUT INTRO */
.about-intro {
  background:var(--blue);
  padding:80px 0;
}

.intro-inner {
  max-width:1100px; margin:0 auto; padding:0 60px;
}

.intro-badge {
  display:inline-flex; align-items:center; gap:10px;
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.3);
  color:white; font-size:12px; font-weight:600;
  letter-spacing:1px; padding:7px 18px; border-radius:30px;
  margin-bottom:48px;
}
.intro-badge i { color:rgba(255,255,255,.8); }

.intro-grid {
  display:grid; grid-template-columns:1fr auto;
  gap:60px; align-items:start;
}

.section-eyebrow {
  display:block; font-size:12px; font-weight:700;
  letter-spacing:2.5px; text-transform:uppercase;
  color:rgba(255,255,255,.7); margin-bottom:10px;
}

.intro-text h2 {
  font-family:'Abril Fatface';
  font-size:clamp(28px,3.5vw,44px);
  color:white; line-height:1.1; margin-bottom:24px;
}

.intro-text p {
  color:rgba(255,255,255,.88);
  font-size:15px; line-height:1.8; margin-bottom:14px;
}

/* Stats */
.intro-stats {
  display:grid; grid-template-columns:1fr 1fr;
  gap:16px; width:280px; flex-shrink:0;
}

.stat-card {
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.2);
  border-radius:16px; padding:24px 18px;
  text-align:center;
  transition:background .3s, transform .3s;
}
.stat-card:hover { background:rgba(255,255,255,.22); transform:translateY(-4px); }
.stat-card.accent { background:rgba(242,140,60,.25); border-color:rgba(242,140,60,.4); }

.stat-card strong {
  display:block; font-size:2rem; font-weight:700;
  color:white; line-height:1; margin-bottom:6px;
}
.stat-card span { font-size:12px; color:rgba(255,255,255,.75); font-weight:500; }


/* MISSION*/
.mission-section {
  position:relative;
  padding:100px 0;
  overflow:hidden;
}

.mission-bg {
  position:absolute; inset:0;
  background:url(images/about\ 1.png) center/cover no-repeat;
}
.mission-overlay {
  position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(6,32,43,.88) 0%, rgba(6,32,43,.72) 100%);
}

.mission-inner {
  position:relative; z-index:1;
  max-width:1100px; margin:0 auto; padding:0 60px;
}

.mission-label {
  display:inline-block;
  font-size:11px; font-weight:700; letter-spacing:3px;
  text-transform:uppercase; color:var(--orange);
  border:1px solid rgba(242,140,60,.4);
  padding:6px 18px; border-radius:30px;
  margin-bottom:48px;
}

.mission-grid {
  display:grid; grid-template-columns:1fr 1.4fr;
  gap:80px; align-items:start;
}

.mission-heading h2 {
  font-family:'Abril Fatface';
  font-size:clamp(28px,3.5vw,46px);
  color:white; line-height:1.1; margin-bottom:18px;
}
.mission-heading h2 span { color:var(--orange); }
.mission-heading p { color:rgba(255,255,255,.7); font-size:15px; line-height:1.7; }

/* value items */
.mission-values { display:flex; flex-direction:column; gap:20px; }

.value-item {
  display:flex; align-items:flex-start; gap:18px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px; padding:18px 20px;
  transition:background .3s, transform .3s;
}
.value-item:hover { background:rgba(255,255,255,.13); transform:translateX(6px); }

.value-icon {
  width:44px; height:44px; border-radius:12px;
  background:linear-gradient(135deg,var(--orange),#e07e2a);
  display:flex; align-items:center; justify-content:center;
  color:white; font-size:18px; flex-shrink:0;
}
.value-item h4 { font-size:15px; font-weight:600; color:white; margin-bottom:4px; }
.value-item p  { font-size:13px; color:rgba(255,255,255,.72); line-height:1.5; margin:0; }


/* VISION & CORE VALUES*/
.vision-section {
  background:var(--orange);
  padding:80px 0;
}

.vision-block {
  max-width:1000px; margin:0 auto; padding:0 60px;
  display:grid; grid-template-columns:auto 1fr;
  gap:50px; align-items:center;
}

.vision-icon-wrap {
  width:90px; height:90px; border-radius:24px;
  background:rgba(255,255,255,.2);
  border:2px solid rgba(255,255,255,.3);
  display:flex; align-items:center; justify-content:center;
  font-size:36px; color:white; flex-shrink:0;
}

.vision-text .section-eyebrow { color:rgba(255,255,255,.7); }
.vision-text h2 {
  font-family:'Abril Fatface',cursive;
  font-size:clamp(26px,3vw,38px);
  color:var(--dark); line-height:1.1; margin-bottom:16px;
}
.vision-text p { font-size:15px; color:rgba(6,32,43,.82); line-height:1.8; }

.divider {
  max-width:1000px; margin:60px auto;
  height:1px; background:rgba(255,255,255,.25);
}

.values-block { max-width:1000px; margin:0 auto; padding:0 60px; }
.values-block h2 {
  font-family:'Abril Fatface';
  font-size:clamp(24px,3vw,36px);
  color:var(--dark);
}

.values-pills {
  display:flex; flex-wrap:wrap; gap:12px;
  justify-content:center;
}

.pill {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.25);
  border:1px solid rgba(255,255,255,.4);
  color:white; padding:10px 20px; border-radius:30px;
  font-size:14px; font-weight:500;
  transition:all .3s; cursor:default;
}
.pill:hover { background:rgba(255,255,255,.40); transform:translateY(-3px); }
.pill i { color:rgba(255,255,255,.8); font-size:13px; }

.accent-pill {
  background:rgba(6,32,43,.18);
  border-color:rgba(6,32,43,.25);
}


/* MOTTO / SLOGAN / ACCREDIT */
.motto-section {
  position:relative;
  padding:100px 0;
  overflow:hidden;
}

.motto-bg {
  position:absolute; inset:0;
  background:url(images/about\ 2.png) center/cover no-repeat;
}
.motto-overlay {
  position:absolute; inset:0;
  background:rgba(6,32,43,.78);
}

.motto-inner {
  position:relative; z-index:1;
  max-width:1100px; margin:0 auto; padding:0 60px;
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.motto-card {
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:20px; padding:40px 32px;
  text-align:center;
  transition:background .35s, transform .35s, border-color .35s;
}
.motto-card:hover {
  background:rgba(255,255,255,.14);
  transform:translateY(-8px);
  border-color:rgba(255,255,255,.28);
}
.motto-card.featured-card {
  background:rgba(242,140,60,.15);
  border-color:rgba(242,140,60,.35);
  transform:translateY(-12px);
}
.motto-card.featured-card:hover { transform:translateY(-18px); }

.motto-card-icon {
  width:56px; height:56px; border-radius:16px;
  background:rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
  font-size:22px; color:rgba(255,255,255,.8);
  margin:0 auto 20px;
}
.featured-icon { background:rgba(242,140,60,.35); color:var(--orange); }

.motto-card h3 {
  font-size:13px; font-weight:700; letter-spacing:2px;
  text-transform:uppercase; color:var(--orange);
  margin-bottom:16px;
}
.motto-card p {
  font-size:16px; color:rgba(255,255,255,.88);
  line-height:1.6;
}
.motto-card p strong { color:var(--orange); }


/* CTA STRIP */
.cta-strip {
  background:var(--blue);
  padding:60px 0;
}
.cta-inner {
  max-width:1100px; margin:0 auto; padding:0 60px;
  display:flex; align-items:center;
  justify-content:space-between; gap:40px; flex-wrap:wrap;
}
.cta-inner h2 {
  font-family:'Abril Fatface',cursive;
  font-size:clamp(22px,3vw,34px);
  color:white; margin-bottom:8px;
}
.cta-inner p { color:rgba(255,255,255,.82); font-size:15px; }

.cta-btns { display:flex; gap:14px; flex-wrap:wrap; }

.cta-btn-primary {
  display:inline-block; background:var(--orange);
  color:white; padding:14px 34px; border-radius:8px;
  font-weight:600; font-size:15px;
  box-shadow:0 8px 24px rgba(242,140,60,.35);
  transition:all .3s;
}
.cta-btn-primary:hover { background:white; color:var(--orange); transform:translateY(-2px); }

.cta-btn-outline {
  display:inline-block;
  background:transparent; color:white;
  border:2px solid rgba(255,255,255,.6);
  padding:13px 32px; border-radius:8px;
  font-weight:600; font-size:15px;
  transition:all .3s;
}
.cta-btn-outline:hover { background:white; color:var(--blue); border-color:white; transform:translateY(-2px); }


/*FOOTER */
footer {
  background:var(--dark); color:white;
  padding:70px 60px; margin-top:0;
}
footer h3 { font-size:17px; margin-bottom:16px; }

.footer-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:60px; }

.footer-about p { font-size:14px; line-height:1.7; opacity:.8; }

.social-icons { margin-top:18px; display:flex; gap:12px; flex-wrap:wrap; }
.social-icons a {
  width:38px; height:38px; border-radius:50%; background:#247a9f;
  display:flex; align-items:center; justify-content:center;
  color:white; font-size:15px; transition:.3s;
}
.social-icons a:hover { background:var(--orange); transform:translateY(-3px); }

.footer-links ul { list-style:none; padding:0; margin:0; }
.footer-links ul li { margin-bottom:10px; }
.footlink, .footer-links ul a { color:rgba(255,255,255,.75); font-size:14px; transition:color .2s; display:block; }
.footlink:hover, .footer-links ul a:hover { color:var(--orange); }

.footer-contact p { font-size:14px; line-height:1.8; opacity:.8; }

.newsletter { margin-top:50px; padding-top:40px; border-top:1px solid rgba(255,255,255,.1); text-align:center; }
.newsletter h3 { font-size:15px; font-weight:500; margin-bottom:16px; }
.newsletter-form {
  display:flex; flex-wrap:wrap; gap:10px;
  justify-content:center; max-width:680px; margin:0 auto;
}
.newsletter-form input {
  padding:12px 16px; border-radius:6px; border:none;
  font-family:'Poppins',sans-serif; font-size:.9rem;
  flex:1; min-width:170px; outline:none; transition:box-shadow .2s;
}
.newsletter-form input:focus { box-shadow:0 0 0 3px rgba(251,150,62,.4); }
.newsletter-form button {
  padding:12px 26px; background:var(--orange); color:white;
  border:none; border-radius:6px; font-weight:600;
  font-family:'Poppins',sans-serif; cursor:pointer; transition:background .2s;
}
.newsletter-form button:hover { background:#e07e2a; }


/* RESPONSIVE — TABLET (≤ 991px) */
@media (max-width:991px) {

  /* navbar */
  .navbar { margin:0 20px; height:70px; top:12px; border-radius:20px; }
  .navbar.scrolled { height:58px; top:8px; }
  .logo img { height:44px; }
  .navbar-nav { display:none; }
  /* Bootstrap collapse shows on mobile */
  .navbar-collapse .navbar-nav { display:flex; flex-direction:column; }

  /* hero */
  .about-hero { height:70vh; padding:0 30px 60px; border-bottom-left-radius:36px; border-bottom-right-radius:36px; }
  .hero-overlay { border-bottom-left-radius:36px; border-bottom-right-radius:36px; }
  .hero-label { top:90px; right:30px; }
  .hero-content h1 { font-size:54px; }

  /* intro */
  .intro-inner { padding:0 30px; }
  .intro-grid { grid-template-columns:1fr; gap:40px; }
  .intro-stats { width:100%; grid-template-columns:repeat(4,1fr); }

  /* mission */
  .mission-inner { padding:0 30px; }
  .mission-grid { grid-template-columns:1fr; gap:40px; }
  .mission-heading { text-align:center; }

  /* vision */
  .vision-block { grid-template-columns:1fr; gap:30px; text-align:center; padding:0 30px; }
  .vision-icon-wrap { margin:0 auto; }
  .values-block { padding:0 30px; }

  /* motto */
  .motto-inner { grid-template-columns:1fr; gap:20px; padding:0 30px; }
  .motto-card.featured-card { transform:none; }

  /* cta */
  .cta-inner { flex-direction:column; text-align:center; padding:0 30px; }
  .cta-btns { justify-content:center; }

  /* footer */
  footer { padding:50px 24px; }
  .footer-grid { grid-template-columns:1fr; gap:36px; }
  .footer-about { text-align:center; }
  .social-icons { justify-content:center; }
  .footer-links, .footer-contact { text-align:center; }
  .newsletter-form { flex-direction:column; align-items:stretch; }
  .newsletter-form input, .newsletter-form button { width:100%; min-width:unset; }
}

/* ── MOBILE (≤ 575px) ── */
@media (max-width:575px) {

  .about-hero { height:60vh; padding:0 20px 48px; border-bottom-left-radius:24px; border-bottom-right-radius:24px; }
  .hero-overlay { border-bottom-left-radius:24px; border-bottom-right-radius:24px; }
  .hero-label { display:none; }
  .hero-content h1 { font-size:40px; }

  .intro-inner { padding:0 20px; }
  .intro-stats { grid-template-columns:1fr 1fr; }

  .mission-inner, .motto-inner { padding:0 20px; }

  .vision-block, .values-block { padding:0 20px; }
  .values-pills { gap:8px; }
  .pill { font-size:13px; padding:8px 14px; }

  .cta-inner { padding:0 20px; }
  .cta-btn-primary, .cta-btn-outline { width:100%; text-align:center; }

  footer { padding:40px 16px; }
  .footer-grid { gap:28px; }
}