:root {
  --black: #111111;
  --charcoal: #1b1b1b;
  --gold: #d8b45a;
  --gold-dark: #b68d35;
  --cream: #faf7ef;
  --white: #ffffff;
  --text: #1a1a1a;
  --muted: #666666;
  --border: #ece0bf;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  width: 100%;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

/* Topbar */
.topbar {
  background: #1f1f1f;
  color: #f5f5f5;
  font-size: 14px;
}

.topbar-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
}

.topbar-left {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar a i {
  margin-right: 8px;
  color: var(--gold);
}

/* Header */
.site-header {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 16px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-box {
  background: white;
  width: 165px;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.logo-border {
  border: 1px solid #222;
  text-align: center;
  padding: 8px 8px 4px;
}

.logo-main {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 3px;
}

.logo-main span {
  color: #b30723;
}

.logo-sub {
  font-size: 8px;
  letter-spacing: 3px;
  font-weight: 700;
  margin-top: 6px;
}

.logo-tagline {
  margin-top: 4px;
  text-align: center;
  font-size: 8px;
  color: #444;
  font-weight: 700;
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  color: white;
  font-weight: 800;
  font-size: 14px;
}

.main-nav a:hover {
  color: var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: #111;
  box-shadow: 0 12px 30px rgba(216, 180, 90, 0.28);
}

.btn-gold:hover {
  transform: translateY(-2px);
  background: #e4c56f;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
}

.btn-outline:hover {
  background: white;
  color: #111;
}

.btn-dark {
  background: #111;
  color: white;
}

.btn-dark:hover {
  background: var(--gold-dark);
  color: #111;
}

.btn-outline-white {
  border: 1px solid rgba(255,255,255,0.35);
  color: white;
}

.btn-outline-white:hover {
  background: white;
  color: #111;
}

.full-btn {
  width: 100%;
  border: none;
  font-size: 15px;
}

/* Hero */
.hero {
  min-height: 860px;
  background:
    linear-gradient(rgba(17,17,17,0.72), rgba(17,17,17,0.72)),
    url("images/hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left, rgba(255,255,255,0.08), transparent 30%),
    linear-gradient(90deg, rgba(17,17,17,0.88) 0%, rgba(17,17,17,0.66) 46%, rgba(17,17,17,0.42) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 420px;
  gap: 50px;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
}

.eyebrow,
.kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  font-weight: 900;
}

.kicker.light { color: #f5dca0; }

.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  margin-top: 14px;
}

.hero h1 span {
  color: var(--gold);
}

.hero-text {
  margin-top: 20px;
  color: #e6e6e6;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.9;
}

.hero-points {
  margin-top: 22px;
  display: grid;
  gap: 10px;
  color: #f0f0f0;
}

.hero-points i {
  color: var(--gold);
  margin-right: 10px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* Lead card */
.lead-card {
  background: rgba(255,255,255,0.96);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.card-kicker {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.lead-card h2 {
  margin-top: 10px;
  font-size: 30px;
  line-height: 1.15;
  font-family: Georgia, "Times New Roman", serif;
}

.card-text {
  margin-top: 10px;
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

.lead-form {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 700;
}

.form-group input,
.form-group select {
  width: 100%;
  height: 46px;
  border: 1px solid #dadada;
  border-radius: 10px;
  padding: 0 14px;
  outline: none;
  font-size: 14px;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(216,180,90,0.16);
}

/* Quick stats */
.quick-stats {
  margin-top: -46px;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  background: rgba(0,0,0,0.92);
  color: white;
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

.stat-card i {
  font-size: 34px;
  color: var(--gold);
}

.stat-card h3 {
  font-size: 24px;
  font-family: Georgia, "Times New Roman", serif;
}

.stat-card p {
  margin-top: 3px;
  color: #e1e1e1;
  font-size: 14px;
}

/* Generic sections */
.section {
  padding: 82px 0;
}

.alt-bg {
  background: var(--cream);
}

.dark-section {
  background: #111;
  color: white;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading.center {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.section-heading h2 {
  margin-top: 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  font-family: Georgia, "Times New Roman", serif;
}

.section-heading p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.dark-section .section-heading p {
  color: #d6d6d6;
}

/* Courses */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.course-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: 0.25s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.course-card img {
  height: 220px;
  object-fit: cover;
}

.course-card-body {
  padding: 24px;
}

.course-card h3 {
  font-size: 24px;
  font-family: Georgia, "Times New Roman", serif;
}

.course-card p {
  margin-top: 10px;
  color: #555;
  line-height: 1.7;
}

.course-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--gold-dark);
  font-weight: 800;
}

/* CTA band */
.cta-band {
  background: linear-gradient(90deg, #111 0%, #222 100%);
  color: white;
  padding: 55px 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cta-band h2 {
  margin-top: 12px;
  font-size: clamp(28px, 4vw, 42px);
  font-family: Georgia, "Times New Roman", serif;
  max-width: 760px;
}

/* Two col */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.image-box img {
  border-radius: 20px;
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: cover;
}

.content-box h2 {
  margin-top: 12px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.18;
  font-family: Georgia, "Times New Roman", serif;
}

.content-box p {
  margin-top: 14px;
  color: #555;
  line-height: 1.8;
}

.content-box .btn {
  margin-top: 22px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid img {
  border-radius: 16px;
  height: 260px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
}

.why-card i {
  font-size: 34px;
  color: var(--gold);
}

.why-card h3 {
  margin-top: 16px;
  font-size: 22px;
  font-family: Georgia, "Times New Roman", serif;
}

.why-card p {
  margin-top: 10px;
  color: #d8d8d8;
  line-height: 1.7;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  background: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.stars {
  color: var(--gold);
}

.testimonial-card p {
  margin-top: 14px;
  color: #555;
  line-height: 1.8;
}

.testimonial-card h4 {
  margin-top: 18px;
  font-size: 16px;
}

/* Placement logos */
.brand-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.logo-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: white;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-weight: 700;
}

/* Accreditation */
.accreditation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.accreditation-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fffdfa;
  font-weight: 700;
  color: #444;
}

/* Final CTA */
.final-cta {
  background: #111;
  color: white;
  padding: 72px 0;
}

.final-cta-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.final-cta h2 {
  margin-top: 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  font-family: Georgia, "Times New Roman", serif;
}

.final-cta p {
  margin-top: 14px;
  color: #ddd;
  line-height: 1.8;
}

.contact-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.contact-list i {
  color: var(--gold);
  margin-right: 10px;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Footer */
.footer {
  background: #0c0c0c;
  color: #d0d0d0;
  text-align: center;
  padding: 22px 0;
  font-size: 14px;
}

/* Mobile sticky */
.mobile-sticky {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  border-top: 1px solid #eee;
  padding: 10px;
  z-index: 100;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.12);
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 10px;
  border-radius: 10px;
  font-weight: 800;
}

.mobile-call {
  background: #111;
  color: white;
}

.mobile-enquire {
  background: var(--gold);
  color: #111;
}

/* Responsive */
@media (max-width: 1100px) {
  .main-nav { display: none; }

  .hero-grid,
  .two-col,
  .final-cta-box {
    grid-template-columns: 1fr;
  }

  .courses-grid,
  .gallery-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid,
  .why-grid,
  .brand-logos,
  .accreditation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  body { padding-bottom: 74px; }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 150px;
    padding-bottom: 60px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .header-btn {
    width: 100%;
  }

  .stats-grid,
  .courses-grid,
  .gallery-grid,
  .why-grid,
  .testimonial-grid,
  .brand-logos,
  .accreditation-grid {
    grid-template-columns: 1fr;
  }

  .topbar-inner,
  .topbar-left {
    justify-content: center;
    text-align: center;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .mobile-sticky {
    display: grid;
  }
}   



    .floating-btn{
      position:fixed;
      z-index:20;
      width:46px;
      height:46px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:20px;
      box-shadow:0 10px 24px rgba(0,0,0,.18);
      transition:.22s ease;
    }

    .floating-btn:hover{ transform:translateY(-2px); }

    .whatsapp-btn{
      left:16px;
      bottom:16px;
      background:#25d366;
    }

    .call-btn{
      right:16px;
      bottom:16px;
      background:#0a8f08;
    }

@media (max-width: 520px) {
  .floating-btn {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .whatsapp-btn {
    left: 12px;
    bottom: 12px;
  }

  .call-btn {
    right: 12px;
    bottom: 12px;
  }
}