
    :root {
      --maroon: #7B1C1C;
      --maroon-dark: #5c1414;
      --maroon-light: #9e2a2a;
      --orange: #E87722;
      --orange-light: #f5a043;
      --pink-light: #fdf0f0;
      --pink-mid: #fce4e4;
      --white: #ffffff;
      --text-dark: #2d1a1a;
      --text-mid: #5c3a3a;
      --text-light: #8a5c5c;
      --card-shadow: 0 8px 32px rgba(123,28,28,0.10);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Nunito', sans-serif;
      color: var(--text-dark);
      background: var(--white);
      font-size: 17px;
      line-height: 1.7;
    }

    /* ── NAVBAR ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 999;
      background: var(--white);
      box-shadow: 0 2px 18px rgba(123,28,28,0.10);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 6%;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .nav-logo img {
      height: 54px;
      width: auto;
    }

    .nav-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--maroon);
      line-height: 1.1;
    }

    .nav-brand span { color: var(--orange); }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text-dark);
      font-weight: 600;
      font-size: 1rem;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--maroon); }

    .nav-cta {
      background: var(--maroon);
      color: var(--white) !important;
      padding: 10px 22px;
      border-radius: 50px;
      font-weight: 700 !important;
      transition: background 0.2s, transform 0.2s !important;
    }

    .nav-cta:hover {
      background: var(--orange) !important;
      color: var(--white) !important;
      transform: translateY(-2px);
    }

    /* hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 26px;
      height: 3px;
      background: var(--maroon);
      border-radius: 3px;
      transition: all 0.3s;
    }

    /* ── HERO ── */
    #hero {
      background: var(--white);
      padding: 80px 6% 70px;
      display: flex;
      align-items: center;
      gap: 60px;
      min-height: 88vh;
      position: relative;
      overflow: hidden;
    }

    #hero::before {
      content: '';
      position: absolute;
      right: -120px;
      top: -120px;
      width: 560px;
      height: 560px;
      background: radial-gradient(circle, #fce4e4 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    #hero::after {
      content: '';
      position: absolute;
      left: -80px;
      bottom: -80px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, #fff3e8 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-text {
      flex: 1;
      position: relative;
      z-index: 2;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--pink-mid);
      color: var(--maroon);
      font-weight: 700;
      font-size: 0.9rem;
      padding: 8px 18px;
      border-radius: 50px;
      margin-bottom: 24px;
      letter-spacing: 0.03em;
    }

    .hero-badge::before {
      content: '●';
      color: var(--orange);
      font-size: 0.7rem;
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0%,100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 4.5vw, 3.4rem);
      font-weight: 800;
      color: var(--maroon);
      line-height: 1.18;
      margin-bottom: 20px;
    }

    .hero-title span { color: var(--orange); }

    .hero-sub {
      font-size: 1.15rem;
      color: var(--text-mid);
      max-width: 520px;
      margin-bottom: 36px;
      font-weight: 500;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--maroon);
      color: var(--white);
      padding: 15px 32px;
      border-radius: 50px;
      font-size: 1.05rem;
      font-weight: 700;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 6px 20px rgba(123,28,28,0.25);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-primary:hover {
      background: var(--maroon-light);
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(123,28,28,0.30);
    }

    .btn-secondary {
      background: transparent;
      color: var(--maroon);
      padding: 14px 30px;
      border-radius: 50px;
      font-size: 1.05rem;
      font-weight: 700;
      text-decoration: none;
      border: 2.5px solid var(--maroon);
      cursor: pointer;
      transition: all 0.25s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-secondary:hover {
      background: var(--maroon);
      color: var(--white);
      transform: translateY(-3px);
    }

    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 48px;
      flex-wrap: wrap;
    }

    .stat {
      text-align: center;
    }

    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--maroon);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.85rem;
      color: var(--text-light);
      font-weight: 600;
      margin-top: 4px;
    }

    .hero-image {
      flex: 0 0 420px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 2;
    }

    .hero-img-wrap {
      background: var(--pink-light);
      border-radius: 50%;
      width: 400px;
      height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 20px 60px rgba(123,28,28,0.15);
      animation: float 4s ease-in-out infinite;
    }

    @keyframes float {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-14px); }
    }

    .hero-img-wrap img {
      width: 310px;
      height: auto;
    }

    /* ── SECTION COMMONS ── */
    section { padding: 80px 6%; }

    .section-label {
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 10px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3.2vw, 2.6rem);
      font-weight: 800;
      color: var(--maroon);
      margin-bottom: 16px;
      line-height: 1.22;
    }

    .section-sub {
      color: var(--text-mid);
      font-size: 1.05rem;
      max-width: 560px;
      font-weight: 500;
    }

    .section-header { margin-bottom: 52px; }

    .section-header.center {
      text-align: center;
    }

    .section-header.center .section-sub { margin: 0 auto; }

    /* ── SERVICES ── */
    #services {
      background: var(--pink-light);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
      gap: 28px;
    }

    .service-card {
      background: var(--white);
      border-radius: 20px;
      padding: 36px 30px;
      box-shadow: var(--card-shadow);
      transition: transform 0.25s, box-shadow 0.25s;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--orange), var(--maroon));
      border-radius: 20px 20px 0 0;
      transform: scaleX(0);
      transition: transform 0.3s;
    }

    .service-card:hover::before { transform: scaleX(1); }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 18px 50px rgba(123,28,28,0.15);
    }

    .service-icon {
      font-size: 2.4rem;
      margin-bottom: 18px;
      background: var(--pink-light);
      width: 64px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
    }

    .service-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--maroon);
      margin-bottom: 10px;
    }

    .service-desc {
      color: var(--text-mid);
      font-size: 0.97rem;
      line-height: 1.65;
    }

    /* ── WHY CHOOSE US ── */
    #why {
      background: var(--white);
    }

    .why-layout {
      display: flex;
      gap: 70px;
      align-items: center;
    }

    .why-text { flex: 1; }

    .why-grid {
      flex: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }

    .why-card {
      background: var(--pink-light);
      border-radius: 18px;
      padding: 28px 24px;
      transition: transform 0.2s;
    }

    .why-card:hover { transform: translateY(-5px); }

    .why-icon {
      font-size: 2rem;
      color: var(--maroon);
      margin-bottom: 12px;
    }

    .why-card-title {
      font-weight: 800;
      font-size: 1rem;
      color: var(--maroon);
      margin-bottom: 6px;
    }

    .why-card-desc {
      font-size: 0.9rem;
      color: var(--text-mid);
      line-height: 1.6;
    }

    /* ── HOW IT WORKS ── */
    #how {
      background: var(--pink-light);
    }

    .steps-row {
      display: flex;
      gap: 0;
      position: relative;
    }

    .steps-row::before {
      content: '';
      position: absolute;
      top: 52px;
      left: calc(12.5% + 36px);
      right: calc(12.5% + 36px);
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--maroon));
      border-radius: 3px;
    }

    .step {
      flex: 1;
      text-align: center;
      padding: 0 20px;
      position: relative;
    }

    .step-circle {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--orange), var(--maroon));
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 22px;
      font-size: 1.9rem;
      box-shadow: 0 6px 24px rgba(123,28,28,0.25);
      position: relative;
      z-index: 2;
      transition: transform 0.3s;
    }

    .step:hover .step-circle { transform: scale(1.12); }

    .step-num {
      position: absolute;
      top: -8px;
      right: -8px;
      width: 26px;
      height: 26px;
      background: var(--white);
      color: var(--maroon);
      font-size: 0.8rem;
      font-weight: 800;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--maroon);
    }

    .step-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.12rem;
      font-weight: 700;
      color: var(--maroon);
      margin-bottom: 8px;
    }

    .step-desc {
      font-size: 0.92rem;
      color: var(--text-mid);
      line-height: 1.6;
    }

    /* ── CTA ── */
    #cta {
      background: var(--maroon);
      padding: 80px 6%;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #cta::before {
      content: '';
      position: absolute;
      left: -100px;
      top: -100px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
    }

    #cta::after {
      content: '';
      position: absolute;
      right: -80px;
      bottom: -80px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
    }

    #cta .section-label { color: var(--orange-light); }

    #cta .section-title {
      color: var(--white);
      margin-bottom: 14px;
    }

    #cta p {
      color: rgba(255,255,255,0.80);
      font-size: 1.05rem;
      margin-bottom: 40px;
      font-weight: 500;
    }

    .cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-orange {
      background: var(--orange);
      color: var(--white);
      padding: 16px 36px;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 700;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.25s;
      box-shadow: 0 6px 24px rgba(232,119,34,0.4);
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-orange:hover {
      background: var(--orange-light);
      transform: translateY(-3px);
      box-shadow: 0 10px 32px rgba(232,119,34,0.5);
    }

    .btn-outline-white {
      background: transparent;
      color: var(--white);
      padding: 15px 34px;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 700;
      text-decoration: none;
      border: 2.5px solid rgba(255,255,255,0.6);
      cursor: pointer;
      transition: all 0.25s;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-outline-white:hover {
      background: rgba(255,255,255,0.12);
      border-color: var(--white);
      transform: translateY(-3px);
    }

    /* ── ABOUT STRIP ── */
    #about {
      background: var(--white);
      display: flex;
      gap: 70px;
      align-items: center;
    }

    .about-content { flex: 1; }

    .about-list {
      list-style: none;
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .about-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 1rem;
      color: var(--text-mid);
      font-weight: 500;
    }

    .about-list li::before {
      content: '✔';
      color: var(--orange);
      font-weight: 800;
      font-size: 1rem;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .about-card-block {
      flex: 0 0 380px;
      background: var(--pink-light);
      border-radius: 24px;
      padding: 40px 36px;
      box-shadow: var(--card-shadow);
    }

    .mission-item { margin-bottom: 30px; }
    .mission-item:last-child { margin-bottom: 0; }

    .mission-label {
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 6px;
    }

    .mission-text {
      font-size: 0.97rem;
      color: var(--text-mid);
      line-height: 1.65;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--maroon-dark);
      color: var(--white);
      padding: 60px 6% 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand img {
      height: 60px;
      margin-bottom: 14px;
      filter: brightness(0) invert(1);
    }

    .footer-brand p {
      color: rgba(255,255,255,0.70);
      font-size: 0.93rem;
      line-height: 1.7;
      max-width: 260px;
    }

    .footer-motto {
      font-style: italic;
      color: var(--orange-light);
      font-size: 0.9rem;
      margin-top: 14px;
      font-weight: 600;
    }

    .footer-col h4 {
      font-size: 1rem;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 18px;
      letter-spacing: 0.04em;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col ul a {
      text-decoration: none;
      color: rgba(255,255,255,0.65);
      font-size: 0.93rem;
      transition: color 0.2s;
      font-weight: 500;
    }

    .footer-col ul a:hover { color: var(--orange-light); }

    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.70);
      font-size: 0.93rem;
      margin-bottom: 12px;
    }

    .footer-contact-item span:first-child {
      font-size: 1.1rem;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.12);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p {
      color: rgba(255,255,255,0.50);
      font-size: 0.88rem;
    }

    .footer-bottom a {
      color: rgba(255,255,255,0.50);
      text-decoration: none;
      font-size: 0.88rem;
    }

    .footer-bottom a:hover { color: var(--orange-light); }

    /* ── FLOATING WHATSAPP ── */
    .floating-wa {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 58px;
      height: 58px;
      background: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(0,0,0,0.20);
      z-index: 999;
      text-decoration: none;
      transition: transform 0.2s;
      animation: wa-pop 0.5s ease 1s backwards;
    }

    @keyframes wa-pop {
      from { transform: scale(0); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    .floating-wa:hover { transform: scale(1.1); }

    .floating-wa svg { width: 32px; height: 32px; }

    /* ── PAGE ENTRY ANIMATIONS ── */
    .fade-in {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: none;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero-image { flex: 0 0 320px; }
      .hero-img-wrap { width: 300px; height: 300px; }
      .hero-img-wrap img { width: 230px; }
      .why-layout { flex-direction: column; }
      .about { flex-direction: column; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

    @media (max-width: 768px) {
      #hero { flex-direction: column; padding: 52px 6%; min-height: auto; text-align: center; }
      .hero-sub { margin: 0 auto 28px; }
      .hero-buttons { justify-content: center; }
      .hero-stats { justify-content: center; }
      .hero-image { order: -1; }
      .hero-img-wrap { width: 220px; height: 220px; }
      .hero-img-wrap img { width: 170px; }
      .steps-row { flex-direction: column; gap: 32px; }
      .steps-row::before { display: none; }
      .why-grid { grid-template-columns: 1fr; }
      .about-card-block { flex: none; width: 100%; }
      #about { flex-direction: column; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0; right: 0;
        background: var(--white);
        box-shadow: 0 8px 24px rgba(0,0,0,0.10);
        padding: 24px 6%;
        gap: 18px;
      }
    }
  .certification-logos {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap; /* for mobile */
}

.certification-logos img {
  width: 20px;
  height:20px;
  object-fit: contain;
}