/* ============================================
   ACHIEVERS LEARNING CENTER — Global Styles
   ============================================ */

:root {
  --navy: #061A33;
  --navy-deep: #031227;
  --gold: #D9A900;
  --gold-light: #F2D675;
  --white: #FFFFFF;
  --bg: #F5F7FA;
  --surface: #FFFFFF;
  --dark: #172033;
  --gray: #667085;
  --gray-light: #E4E7EC;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 12px 40px rgba(6,26,51,0.08);
  --shadow-hover: 0 20px 50px rgba(6,26,51,0.14);
  --font-display: "League Spartan";
  --font-body: "League Spartan";
  --max-width: 1200px;
  --header-height: 80px;
}

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

html { scroll-behavior: smooth; }

body {
  overflow-x: hidden;
  margin: 0; padding: 0;
  font-family: var(--font-body);
  color: var(--dark); background: var(--bg);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

::selection { background: rgba(217,169,0,0.2); color: var(--navy); }

/* Typography */
.h1, .h2, .h3, .h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; color: var(--navy); margin: 0 0 0.35em; letter-spacing: -0.02em; }
/* .h1 { font-size: clamp(2rem, 6vw, 4.4rem); }
.h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); } */
.p-large { font-size: 1rem; color: var(--gray); line-height: 1.7; }
.p-small { font-size: 0.92rem; color: var(--gray); }

/* Utilities */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.flex { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }
.gap-12 { gap: 12px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.grid { display: grid; gap: 24px; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 50px; font-weight: 600; text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  border: 2px solid transparent; font-family: var(--font-body); font-size: 0.95rem; letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: #c28d00; border-color: #c28d00; }
.btn-secondary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy-deep); border-color: var(--navy-deep); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-gold-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: var(--navy); }

/* Sections */
.section { padding: 100px 0;  }
.section-alt { background: var(--navy); color: var(--white); }
.section-alt .h2, .section-alt .h3 { color: var(--white); }
.section-alt .p-large { color: #c8cdd6; }

.section-header { max-width: 720px; margin-bottom: 56px;    justify-self: center; }
.section-header .label { display: inline-block; padding: 6px 14px; border-radius: 50px; background: rgba(217,169,0,0.1); color: var(--gold); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.section-header .label-white { background: rgba(255,255,255,0.1); color: #F2D675; }

/* Cards */
.card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid rgba(6,26,51,0.05);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }





/* Section bg patterns */
.pattern-grid { background-image: radial-gradient(circle at 2px 2px, rgba(6,26,51,0.06) 1px, transparent 0); background-size: 28px 28px; }

/* About section two column */
/* .about-two { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { position: relative; }
.about-img img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-img .badge-float { position: absolute; top: 24px; right: -20px; background: var(--gold); color: var(--navy); border-radius: var(--radius-sm); padding: 16px 22px; box-shadow: 0 12px 30px rgba(217,169,0,0.3); }
.about-img .badge-float .big { font-family: var(--font-display); font-size: 2rem; line-height: 1; font-weight: 700; }
.about-img .badge-float .small { font-size: 0.78rem; font-weight: 600; } */

/* Features */
/* .features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.feature-card { padding: 36px 32px; border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); border: 1px solid rgba(6,26,51,0.05); transition: transform .2s ease, box-shadow .2s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.feature-card .icon-wrap { width: 60px; height: 60px; border-radius: 14px; background: linear-gradient(135deg, #061A33 0%, #0d3052 100%); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-card .icon-wrap svg { width: 28px; height: 28px; color: var(--gold); } */

/* Courses */
/* .courses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.course-card { border-radius: var(--radius); overflow: hidden; background: var(--surface); box-shadow: var(--shadow); border: 1px solid rgba(6,26,51,0.05); transition: transform .25s ease, box-shadow .25s ease; display: flex; flex-direction: column; }
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.course-card .thumb { height: 220px; overflow: hidden; position: relative; }
.course-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.course-card:hover .thumb img { transform: scale(1.05); }
.course-card .thumb .tag { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--navy); font-weight: 700; font-size: 0.75rem; padding: 4px 10px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.06em; }
.course-card .body { padding: 26px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.course-card h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 10px; }
.course-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.6; margin-bottom: 14px; flex: 1; }
.course-meta { display: flex; gap: 14px; font-size: 0.8rem; color: var(--gray); margin-bottom: 18px; }
.course-meta span { display: flex; align-items: center; gap: 6px; } */

/* Stats */
/* .stats-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.stat-box { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 36px 28px; text-align: center; }
.stat-box .num { font-family: var(--font-display); font-size: 3.2rem; color: var(--gold); line-height: 1; }
.stat-box .label { color: #c8cdd6; font-weight: 600; margin-top: 10px; font-size: 0.95rem; } */



/* Testimonials slider */
/* .testimonial-slider { position: relative; max-width: 900px; margin: 0 auto; }
.testimonial-track { display: flex; transition: transform .5s ease; }
.testimonial-slide { min-width: 100%; padding: 24px; }
.t-card { background: var(--surface); border-radius: var(--radius); padding: 36px 32px; box-shadow: var(--shadow); border: 1px solid rgba(6,26,51,0.05); }
.t-card .quote { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); margin-bottom: 20px; line-height: 1.45; }
.t-card .author { display: flex; align-items: center; gap: 14px; }
.t-card .author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.t-card .author .name { font-weight: 700; color: var(--navy); }
.t-card .author .meta { font-size: 0.82rem; color: var(--gray); }
.t-nav { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 24px; }
.t-nav button { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--gray-light); background: var(--surface); color: var(--navy); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: .2s; }
.t-nav button:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.t-dots { display: flex; gap: 8px; }
.t-dots button { width: 10px; height: 10px; border-radius: 50%; border: none; background: var(--gray-light); cursor: pointer; transition: .2s; }
.t-dots button.active { background: var(--gold); width: 28px; border-radius: 10px; } */



/* Lightbox */
/* .lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(6,26,51,0.92); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.active { display: flex; }
.lightbox-inner { position: relative; max-width: 1100px; max-height: 90vh; }
.lightbox-inner img { max-width: 100%; max-height: 85vh; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.lightbox-btn { position: absolute; top: -48px; right: 0; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; transition: .2s; }
.lightbox-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; transition: .2s; }
.lightbox-nav:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.lightbox-nav.prev { left: -60px; }
.lightbox-nav.next { right: -60px; } */

/* Blog cards */
/* .blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.blog-card { background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(6,26,51,0.05); transition: transform .2s ease; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-card .thumb { height: 220px; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .thumb img { transform: scale(1.05); }
.blog-card .body { padding: 26px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card .meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--gray); margin-bottom: 8px; }
.blog-card h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 10px; line-height: 1.3; }
.blog-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.6; flex: 1; } */

/* Forms */
/* .form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--gray-light); border-radius: 10px; font-family: inherit; font-size: 0.95rem; color: var(--dark); background: var(--surface); transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(217,169,0,0.15); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-validation { color: #b91c1c; font-size: 0.82rem; margin-top: 4px; display: none; }
.form-validation.show { display: block; }
.success-msg { background: #ecfdf5; color: #166534; padding: 16px 20px; border-radius: 10px; font-weight: 600; border: 1px solid #a7f3d0; display: none; }
.success-msg.show { display: block; } */

/* Tables */
/* .table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid rgba(6,26,51,0.06); }
.table-wrap table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.table-wrap thead th { background: var(--navy); color: #fff; padding: 14px 16px; text-align: left; font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; }
.table-wrap tbody td { padding: 14px 16px; border-bottom: 1px solid rgba(6,26,51,0.06); color: var(--dark); }
.table-wrap tbody tr:hover { background: rgba(217,169,0,0.06); }
.table-wrap tbody tr:last-child td { border-bottom: none; } */

/* FAQ accordion */
/* .faq-item { border: 1px solid rgba(6,26,51,0.08); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 14px; background: var(--surface); }
.faq-q { width: 100%; padding: 18px 24px; background: none; border: none; text-align: left; font-family: inherit; font-size: 1.05rem; font-weight: 600; color: var(--navy); display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-q:hover { color: var(--gold); }
.faq-q .arrow { transition: transform .25s ease; flex-shrink: 0; margin-left: 12px; color: var(--gold); }
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 20px; }
.faq-a p { margin: 0; color: var(--gray); font-size: 0.95rem; line-height: 1.65; } */



/* Scroll reveal */
/* .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); } */

/* Responsive */
/* @media (max-width: 1024px) {
  .nav { display: none; }
  .mobile-menu-btn { display: block; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero .h1 { font-size: 2.6rem; }
  .about-two { grid-template-columns: 1fr; }
  .about-img .badge-float { right: 12px; top: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .faculty-grid { grid-template-columns: 1fr; }
  .lightbox-nav.prev { left: 10px; }
  .lightbox-nav.next { right: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-inner { padding: 0 16px; }
  .hero .container { padding: 100px 16px; }
  .hero-trust { justify-content: center; }
  .container { padding: 0 20px; }
  .course-card .body { padding: 20px 22px 24px; }
  .t-card { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .stats-strip { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-visual .hero-float { display: none; }
  .logo-link img { height: 42px; }
  .btn { padding: 12px 22px; font-size: 0.9rem; }
} */
