@font-face {
  font-family: "Birthlong";
  src: url("../Fonts/Birthlong.otf") format("opentype");
  font-weight: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../Fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "Poppins-Medium";
  src: url("../Fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Poppins-Bold";
  src: url("../Fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: bold;
}
@font-face {
  font-family: "Delight";
  src: url("../Fonts/delight-regular.otf") format("opentype");
  font-weight: normal;
}
@font-face {
  font-family: "Delight_Medium";
  src: url("../Fonts/delight-medium.otf") format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: "Delight_Bold";
  src: url("../Fonts/delight-bold.otf") format("opentype");
  font-weight: bold;
}

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

html {
  scroll-behavior: smooth;

}

body {
  background: #000000;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  /* overflow-x: hidden; */
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

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

/* ───────────── TOKENS ───────────── */
:root {
  --black: #000000;
  --dark: #111111;
  --card: #181818;
  --border: #2a2a2a;
  --yellow: #e6b800;
  --yellow2: #e6b800;
  --white: #ffffff;
  --muted: #999999;
  --radius: 14px;
  --px: 8%;
}

/* ═══════════════ NAVBAR ═══════════════ */
nav {
  position: absolute;
  width: 100%;
  padding: 20px var(--px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  gap: 20px;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: var(--yellow);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: #fff;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--yellow);
}

.nav-cta {
  background: var(--yellow);
  color: #000;
  padding: 9px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  border: var(--yellow);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}

.nav-cta:hover {
  background: var(--yellow2);
}

.dot {
  color: #000;
  font-size: 10px;
}

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  min-height: 100vh;
  background: url("../Images/Home Main img.jpg") no-repeat center / cover;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px var(--px) 200px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.18));
}

.hero-content {
  position: relative;
  max-width: 820px;
}

.hero h1 {
    font-size: 45px;
    font-family: 'Delight';
    width: 80%;
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1.2;
}

.hero .script {
  color: var(--yellow2);
  font-family: "Birthlong", cursive;
}

.hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: #ddd;
  margin-bottom: 30px;
  max-width: 580px;
}

/* ═══════════════ STATS BAR ═══════════════ */
.stats-bar {
  position: absolute;
  margin-top: -10%;
  left: 0;
  width: 100%;
  padding: 34px var(--px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  gap: 50px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item .num {
  font-size: 22px;
  font-weight: 700;
  color: var(--yellow);
}

.stat-item .label {
  font-size: 12px;
  color: #bbb;
  margin-top: 2px;
}

.star-rating {
  width: auto;
  height: 28px;
  display: block;
  margin: 0 auto 4px;
}

/* ═══════════════ GLOBAL BUTTON ═══════════════ */
.btn-primary {
  display: inline-block;
  background: var(--yellow2);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--yellow2);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  cursor: pointer;
  border-radius: 55px;
  text-decoration: none;

  /* Glass Effect */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  /* Border + Glow */
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 0 10px rgba(255, 255, 255, 0.15);

  /* Smooth */
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.03);

  /* Highlight on hover */
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.4);

  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.3),
    inset 0 0 12px rgba(255, 255, 255, 0.25);
}



/* ═══════════════ SCRIPT GLOBAL ═══════════════ */
.script {
  color: var(--yellow);
  font-family: "Birthlong", cursive;

}

.script-heading {
  color: var(--yellow2);
  font-family: "Birthlong", cursive;
  font-size: 40px;

}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #000;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 100px 74px;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 15px;
    margin: 0 auto;
}

.tab {
  padding: 10px 25px;
  border-radius: 30px;
  border: none;
  background: #ddd;
  color: #000;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.tab:hover {
  background: var(--yellow);
}

/* Layout */
.hero-about {
  padding-top: 37px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.left {
  flex: 1;
}

.right {
  flex: 1;
}

/* Heading */
h1 {
    font-size: 49px;
    line-height: 56px;
    margin-bottom: 30px;
    font-family: 'Delight';
}


/* Images */
.main-img {
  width: 100%;
  border-radius: 20px;
  width: 580px;
  height: 563px;
  object-fit: cover;
}

/* Right text */
.top-text {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 89px;
}

/* Card */
.about-card {
  background: #111;
  padding: 15px;
  border-radius: 20px;
}

.about-card-img {
  width: 674px;
  height: 309px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 15px;
}

.about-card p {
  font-size: 13px;
  color: #bbb;
  margin-bottom: 20px;
}

/* Button */
.about-explore-btn {
  background: var(--yellow);
  color: #000;
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.about-explore-btn span {
  background: #000;
  color: #fff;
  padding: 5px;
  border-radius: 50%;
  font-size: 12px;
}

.about-explore-btn:hover {
  transform: scale(1.05);
}

.arrow-icon {
  width: 12px;
  height: 12px;
  object-fit: contain;
  filter: invert(1); /* makes icon white */
}









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

    /* :root {
      --black: #0a0a0a;
      --yellow-soft: #d4dc1e;
      --white: #f5f5f0;
      --card-bg: #141414;
      --card-border: #2a2a2a;
      --text-muted: #aaa;
      --radius: 16px;
    } */

    body {
      
    }

    /* Subtle grid background */
   
   
    /* body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(232,240,42,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232,240,42,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
      z-index: 0;
    } */

    .wrapper-main{
      background: var(--black);
      color: var(--white);
      font-family: 'Syne', sans-serif;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
      overflow-x: hidden;
      padding-top: 100px;
    }

    .wrapper {
      position: relative;
      z-index: 1;
      max-width: 780px;
      width: 100%;
    }

    /* ── TOP BAR ── */
    .top-bar {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 36px;
      opacity: 0;
      transform: translateY(-20px);
      animation: fadeUp 0.6s ease forwards;
    }

    .tagline {
      font-size: 16px;
      font-weight: 400;
      color: var(--text-muted);
      max-width: 312px;
      line-height: 1.6;
      letter-spacing: 0.02em;
    }

    .hero-title {
      text-align: right;
      line-height: 1.05;
    }

    .hero-title .why {
      font-family: 'Syne', sans-serif;
      font-size: clamp(36px, 7vw, 60px);
      font-weight: 700;
      color: var(--white);
    }

    .hero-title .choose {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: clamp(36px, 7vw, 60px);
      color: var(--yellow);
      display: inline-block;
      position: relative;
    }

    /* Underline squiggle effect */
    .hero-title .choose::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0; right: 0;
      height: 3px;
      background: var(--yellow);
      border-radius: 2px;
      transform: scaleX(0);
      transform-origin: left;
      animation: scaleIn 0.6s 0.5s ease forwards;
    }

    .hero-title .brand {
      display: block;
      font-family: 'Syne', sans-serif;
      font-size: clamp(36px, 7vw, 60px);
      font-weight: 800;
      color: var(--white);
    }

    /* ── GRID ── */
    .grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto auto;
      gap: 14px;
    }

    /* ── CARDS ── */
    .why-card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: var(--radius);
      padding: 22px 22px 20px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      /* opacity: 0; */
      transform: translateY(24px);
      cursor: default;
    }

    .why-card:hover {
      border-color: var(--yellow);
      transform: translateY(-3px);
      box-shadow: 0 0 30px rgba(232,240,42,0.08);
    }

    .why-card.span-col {
      grid-column: 1 / 3;
    }

    .icon {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(232,240,42,0.07);
      border-radius: 10px;
      border: 1px solid rgba(232,240,42,0.15);
    }

    .icon svg {
      width: 22px;
      height: 22px;
      fill: var(--yellow);
    }

    .why-card-body {}

    .why-card-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 6px;
      letter-spacing: 0.01em;
    }

    .why-card-desc {
      font-size: 12.5px;
      font-weight: 400;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ── IMAGE CARD ── */
    .image-card {
      border-radius: var(--radius);
      overflow: hidden;
      grid-row: 1 / 3;
      grid-column: 2;
      position: relative;
      min-height: 300px;
      opacity: 0;
      transform: scale(0.96);
      border: 1px solid var(--card-border);
      transition: border-color 0.3s ease;
    }

    .image-card:hover { border-color: rgba(232,240,42,0.3); }

    .image-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(0.9) saturate(1.1);
      transition: transform 0.5s ease, filter 0.3s ease;
    }

    .image-card:hover img {
      transform: scale(1.04);
      filter: brightness(1) saturate(1.2);
    }

    /* Yellow gradient overlay on image */
    .image-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(232,240,42,0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .experienced-icon, .performance-icon, .solutions-icon, .service-icon {
      width: 22px;
      height: 22px;
      object-fit: contain;
    }

    /* ── BOTTOM ROW ── */
    .bottom-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      grid-column: 1 / 3;
    }

    /* ── CTA ── */
    .cta-wrap {
      display: flex;
      justify-content: center;
      margin-top: 32px;
      opacity: 0;
      transform: translateY(16px);
    }

    .cta-btn {
      font-family: 'Poppins';
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--yellow);
      color: #0a0a0a;
      font-size: 15px;
      font-weight: 700;
      padding: 14px 28px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      letter-spacing: 0.01em;
      transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
      text-decoration: none;
    }

    .cta-btn:hover {
      background: var(--yellow);
      transform: scale(1.04);
      box-shadow: 0 6px 32px rgba(232,240,42,0.35);
    }

    .cta-btn:active { transform: scale(0.98); }

    .cta-btn .arrow {
      width: 26px;
      height: 26px;
      background: #0a0a0a;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease;
    }

    .cta-btn:hover .arrow { transform: rotate(45deg); }

    .cta-btn .arrow svg {
      width: 13px;
      height: 13px;
      fill: var(--yellow);
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes scaleIn {
      to { transform: scaleX(1); }
    }

    .card.animated, .image-card.animated, .cta-wrap.animated {
      animation: fadeUp 0.55s ease forwards;
    }








    .projects {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  color: #fff;
}

/* Top Button */
.top-btn {
width: 11%;
    margin: 0 auto;
}

.small-btn {
  background: var(--yellow);
  color: #000;
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  font-size: 12px;
  font-weight: 600;
}

/* Heading */
.section-title {
    text-align: center;
    font-size: 50px;
    font-family: 'Delight';
    margin-bottom: 50px;
}

.section-title span {
  color: var(--yellow);
  font-style: italic;
}

/* Grid */
.project-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
}

/* Card */
.project-card {
  max-width: 520px;
}

/* Image Box */
.image-box {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 25px;
}

/* Tags */
.tags {
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: flex;
  gap: 10px;
}

.tags span {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  border: 1px solid rgba(255,255,255,0.3);
}

/* Title */
.project-card h3 {
margin-top: 15px;
    font-size: 28px;
    font-family: 'Delight';
    letter-spacing: 1px;
}

.project-card h3 span {
  color: var(--yellow);
  font-style: italic;
}

/* Text */
.project-card p {
  font-size: 13px;
  color: #bbb;
  margin: 10px 0 15px;
  line-height: 1.6;
}

/* Learn Button */
.learn-btn {
  font-size: 12px;
  color: var(--yellow);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 7px;
  border-radius: 20px;
}

/* Bottom Button */
.bottom-btn {
  text-align: center;
  margin-top: 50px;
}

/* Your existing explore button works here */








/* SECTION */
.testimonials {
  max-width: 1200px;
  margin: auto;
  padding: 100px 20px;
  text-align: center;
}

/* TITLE */
.testimonial-title {
    font-size: 51px;
    font-family: 'Delight';
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1.2;
}

.testimonial-title span {
  color: var(--yellow);
  font-style: italic;
  font-weight: 600;
}

/* SUBTITLE */
.subtitle {
  color: #aaa;
  font-size: 14px;
  margin: 0 0 70px;
  line-height: 1.7;
}

/* WRAPPER OUTER — clips overflow */
.testimonial-outer {
  width: calc(350px * 3 + 30px * 2); /* 3 cards + 2 gaps */
  margin: auto;
  overflow: hidden;
}

/* WRAPPER — scrollable track */
.testimonial-wrapper {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* CARD */
.testimonial-card {
  flex: 0 0 350px;
  width: 350px;

  background: linear-gradient(145deg, #1a1a1a, #111);
  padding: 35px 25px;
  border-radius: 20px;
  transition: transform 0.3s ease;
  cursor: default;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

/* AVATAR — placeholder initials circle */
.user-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 12px;
  object-fit: cover;
  display: block;
  background: #2a2a2a;
  border: 2px solid #333;
}

/* .avatar-placeholder {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  border: 2px solid #333;
  flex-shrink: 0;
} */

/* NAME */
.testimonial-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 3px;
}

/* ROLE */
.role {
  font-size: 12px;
  color: #888;
  display: block;
  margin-bottom: 15px;
}

/* TEXT */
.testimonial-card p {
  font-size: 12px;
  color: #ccc;
  line-height: 1.8;
  margin: 0 0 20px;
}

/* STARS */
.stars {
  color: #f4a940;
  font-size: 18px;
  letter-spacing: 2px;
}

/* NAV BUTTONS */
.nav-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #666;
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.nav-btn:disabled:hover {
  border-color: #666;
  color: #fff;
}

/* .user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
  object-fit: cover;
} */




/* ═══════════════ CTA BANNER ═══════════════ */
.cta-banner {
  margin: 60px var(--px);
  height: 260px;
  border-radius: 20px;
  background: url("../Images/contact-sub-img.jpg") no-repeat center / cover;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 50px;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.15));
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content span {
  color: #ccc;
  font-size: 13px;
  letter-spacing: 1px;
}

.cta-content h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin: 10px 0 22px;
  font-family: "Delight", serif;
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
background: var(--yellow);
    padding: 60px var(--px) 20px;
    color: #000;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer .logo {
  font-family: "Birthlong", cursive;
  font-size: 40px;
  color: #000;
}

.footer-brand p {
  margin: 18px 0;
  line-height: 1.7;
  max-width: 300px;
  font-size: 14px;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.footer-socials a:hover {
  opacity: 0.75;
}

.footer-socials img {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #000;
  font-size: 14px;
  transition: opacity 0.3s;
}

.footer-col ul li a:hover {
  opacity: 0.6;
}

.footer-col p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: #000;
  font-size: 13px;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.6;
}

/* ═══════════════ REVEAL ANIMATIONS ═══════════════ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left  { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.reveal-left.active,
.reveal-right.active {
  transform: translateX(0);
}

/* Hero & Nav load animations */
/* ═══════════════ HERO BLUR REVEAL ANIMATION ═══════════════ */

@keyframes blurReveal {
  from {
    opacity: 0;
    filter: blur(16px);
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
    transform: translateX(0px);
  }
}

.hero-content {
  opacity: 1;
}

/* Script text (yellow cursive) */
.hero .script {
  display: inline-block;
  opacity: 0;
  animation: blurReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

/* H1 heading */
.hero h1 {
  opacity: 0;
  animation: blurReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}

/* Paragraph */
.hero p {
  opacity: 0;
  animation: blurReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

/* Buttons / CTA — any anchor or button inside hero-content */
.hero-content a,
.hero-content button {
  opacity: 0;
  animation: blurReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.95s forwards;
}

nav {
  opacity: 0;
  transform: translateY(-20px);
  animation: navFade 0.8s ease forwards;
}

@keyframes navFade {
  to { opacity: 1; transform: translateY(0); }
}







/* ── SECTION ── */
.services-section {
  background: #000000;
  padding: 56px 100px 64px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
}

/* ── BADGE ── */
.badge {
  margin: 0 auto;
  display: inline-block;
  background: var(--yellow);
  color: #111;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 0.5rem 1.3rem;
  width: fit-content;
}

/* ── TOP ROW ── */
.top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.section-heading {
    font-family: 'Delight';
    font-size: clamp(2.2rem, 4.5vw, 49px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 1px;
}


.section-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  font-weight: 300;
  max-width: 420px;
}

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* ── SERVICE CARD ── */
.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: #1a1a1a;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
  filter: brightness(0.82);
}
.service-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

/* Arrow button top-right */
.card-arrow {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.card-arrow svg {
  width: 14px; height: 14px;
  color: #111;
}
.service-card:hover .card-arrow {
  background: var(--yellow);
  transform: scale(1.08);
}

/* Card label bottom-left */
.card-label {
  position: absolute;
  bottom: 1rem; left: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  z-index: 2;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* Gradient overlay */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.1) 45%,
    transparent 100%
  );
  z-index: 1;
}

/* ── VIEW MORE BUTTON ── */
.view-more-wrap {
  display: flex;
  justify-content: center;
}
.btn-view-more {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--yellow);
  color: #111;
  border: none;
  border-radius: 50px;
  padding: 0.45rem 0.45rem 0.45rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-view-more:hover { background: #c8dc30; transform: translateY(-2px); }
.btn-view-more .arrow-circle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #111;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-left: 0.7rem;
}
.btn-view-more .arrow-circle svg {
  width: 11px; height: 11px;
  color: var(--yellow);
}



/* ── SECTION ── */
.process-section {
  min-height: 100vh;
  background: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 3rem 3rem;
  position: relative;
  overflow: hidden;
}

/* subtle radial glow top-center */
.process-section::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(212,232,74,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── HEADING ── */
.section-heading {
  text-align: center;
  margin-bottom: 0.6rem;
}
.section-heading h2 {
font-family: 'Delight';
    font-size: 48px;
    /* font-size: clamp(2.2rem, 5vw, 3.2rem); */
    font-weight: 800;
    color: #fff;
    line-height: 47px;
    letter-spacing: 0px;
}

.section-heading p {
letter-spacing: 0px;
    /* font-family: ui-monospace; */
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    /* line-height: 1.7; */
    font-weight: 300;
    margin-top: 1rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto
}

/* ── THREE COLUMN LAYOUT ── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 2.5rem 0 2rem;
}

/* ── LEFT / RIGHT COLUMNS ── */
.col-left, .col-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.col-right { align-items: flex-end; text-align: right; }

/* ── STEP CARD ── */
.step { display: flex; flex-direction: column; gap: 0.6rem; max-width: 280px; }
.col-right .step { align-items: flex-end; }

.step-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--yellow);
  color: #111;
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.step-title {
font-size: 35px;
    font-weight: 800;
    width: 89%;
    color: #fff;
    font-family: 'Delight';
    line-height: 1.2;
    letter-spacing: 1px;

}
.step p {
  font-size: 15px;
}
.step-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  font-weight: 300;
}

/* ── CENTER IMAGE ── */
.center-img-wrap {
  width: 340px;
  flex-shrink: 0;
  position: relative;
}
.arch-frame {
  width: 340px;
  height: 500px;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  background: #1a1a1a;
}
.arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.9) contrast(1.05);
}

/* ── FOOTER LINE ── */
.footer-line {
  text-align: center;
  font-size: 30px;
  color: #fff;
  font-weight: 400;
  letter-spacing: -0.01em;
  padding-top: 1rem;
  font-family: 'Birthlong';
}
.footer-line .script {
  font-family: 'Birthlong';
  color: var(--yellow);
  font-size: 1.3em;
  font-weight: 700;
}

.turbines {
      position: relative;
      width: 100vw;
      height: clamp(160px, 28vw, 280px);
      overflow: visible;
    }

    /* ── Background image ── */
    .turbines__bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
      animation: zoomIn 9s ease forwards;
    }
    @keyframes zoomIn {
      from { transform: scale(1.04); }
      to   { transform: scale(1); }
    }

    /* ── Yellow Badge Bar ── */
    .turbines__badge {
    position: absolute;
    bottom: clamp(6px, -3vw, -16px);
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    max-width: 92vw;
    height: clamp(54px, 8vw, 78px);
    background: #FFD600;
    display: flex;
    align-items: center;
    padding: 0 clamp(10px, 2vw, 24px);
    gap: 0;
    border-radius: clamp(8px, 1.5vw, 16px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
    border: 2px solid rgba(255, 255, 255, 0.85);
    animation: slideUp 0.55s cubic-bezier(.22, .68, 0, 1.2) 0.15s both;
    white-space: nowrap;
    }
    @keyframes slideUp {
      from { transform: translateX(-50%) translateY(110%); opacity: 0; }
      to   { transform: translateX(-50%) translateY(0);    opacity: 1; }
    }

    /* Each logo slot */
    .logo-slot {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 clamp(8px, 1.6vw, 20px);
      height: 100%;
      flex-shrink: 0;
    }
    /* Logo images */
    .logo-slot img {
      display: block;
      height: clamp(28px, 4.5vw, 52px);
      width: auto;
      max-width: clamp(60px, 10vw, 130px);
      object-fit: contain;
      image-rendering: -webkit-optimize-contrast;
    }





/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .top-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .services-section { padding: 3rem 2rem; }
}
@media (max-width: 560px) {
  .cards-grid { grid-template-columns: 1fr; }
  .services-section { padding: 2.5rem 1.2rem; }
}







/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .top-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .services-section { padding: 3rem 2rem; }
}
@media (max-width: 560px) {
  .cards-grid { grid-template-columns: 1fr; }
  .services-section { padding: 2.5rem 1.2rem; }
}

/* ═══════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE STYLES — 320px to max
   ═══════════════════════════════════════════════════ */

/* ── NAV HAMBURGER MENU ── */
@media (max-width: 768px) {
  nav {
    padding: 16px 5%;
    position: fixed;
    background: rgba(0,0,0,0.9) !important;
    backdrop-filter: blur(10px) !important;
  }

  .hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 150;
    animation: menuFadeIn 0.3s ease forwards;
  }

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

  .nav-links a {
    font-size: 22px;
    font-weight: 600;
  }

  @keyframes menuFadeIn {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
  }

  /* Hamburger X animation */
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ── HERO ── */
@media (max-width: 768px) {
  .hero {
    padding: 100px 5% 160px;
    min-height: 100svh;
  }

  .hero h1 {
    font-size: clamp(26px, 7vw, 38px);
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 14px;
    margin-bottom: 24px;
    width: 68%;
  }

  .hero p br { display: none; }

  .btn-primary,
  .btn-secondary {
    font-size: 13px;
    padding: 12px 22px;
    margin-bottom: 8px;
    width: 68%;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 90px 5% 180px;
  }
  .hero p {
        text-align: center;
    width: 100%;
  }

  .hero h1 {
    text-align: end;
        padding-top: 29px;
        font-size: clamp(22px, 8vw, 30px);
    font-size: clamp(22px, 8vw, 30px);
  }
  .stats-bar{
        margin-top: -38%;
  }

  .star-rating {
    width: auto;
    height: 17px;
    display: block;
    margin: 0 auto 4px;
  }

  .image-card {
    margin-top: 24px;
  }
      .btn-primary, .btn-secondary {
        margin: 8px auto;
      }
  


}





/* ── STATS BAR ── */
@media (max-width: 768px) {
  .stats-bar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    padding: 20px 5%;
    margin-top: -11%;
  }
  .star-rating {
    width: auto;
    height: 18px;
    display: block;
    margin: 0 auto 4px;
}

  .stat-item {
    flex: 1 1 120px;
    min-width: 100px;
  }

  .stat-item .num {
    font-size: 18px;
  }

  .stat-item .label {
    font-size: 11px;
  }
}

@media (max-width: 400px) {
  .stats-bar {
    gap: 0px 20px;
    padding: 16px 5%;
    margin-top: -38%;
  }

  .stat-item {
            flex: 5 22 120px;

  }
}
@media (max-width: 320px) {
  .stats-bar {
    gap: 0px 20px;
    padding: 16px 5%;
    margin-top: -42%;
  }
}
@media (max-width: 426px) {
  .stats-bar {
    margin-top: -38%;
  }
}
@media (max-width: 468px) {
  .stats-bar {
    margin-top: -38%;
  }
}
@media (max-width: 496px) {
  .stats-bar {
    margin-top: -38%;
  }
}
@media (max-width: 400px) {
    .star-rating {
        width: auto;
        height: 14px;
        display: block;
        margin: 0 auto 4px;
    }
}
@media (max-width: 672px) {
    .stats-bar {
      margin-top: -13%;
    }
    
    .star-rating {
    width: auto;
    height: 19px;
    display: block;
    margin: 0 auto 4px;
}
}
@media (max-width: 576px) {
    .stats-bar {
      margin-top: -17%;
    }
    
    .star-rating {
    width: auto;
    height: 16px;
    display: block;
    margin: 0 auto 4px;
}
}
@media (max-width: 466px) {
    .stats-bar {
      margin-top: -33%;
    }
  

    
}
@media (max-width: 320px) {
  .stats-bar {
    gap: 0px 20px;
    padding: 16px 5%;
    margin-top: -42%;
  }
}

/* ── ABOUT SECTION ── */
@media (max-width: 900px) {
  .hero-about {
    flex-direction: column;
    gap: 24px;
  }

  .left, .right {
    flex: unset;
    width: 100%;
  }

  .main-img {
    width: 100% !important;
    height: 260px !important;
  }

  .about-card-img {
    width: 100% !important;
    height: 200px !important;
  }

  .top-text {
    margin-bottom: 24px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 30px 5%;
  }

  .tabs {
    margin-left: 0;
    flex-wrap: wrap;
    gap: 10px;
  }

  .tab {
    padding: 8px 18px;
    font-size: 13px;
  }

  h1 {
    font-size: clamp(24px, 7vw, 36px) !important;
  }

  .main-img {
    height: 220px !important;
  }

  .about-card-img {
    height: 170px !important;
  }

  .top-text {
    font-size: 13px;
    margin-bottom: 20px;
  }
}

/* ── SERVICES SECTION ── */
@media (max-width: 900px) {
  .services-section {
    padding: 3rem 5%;
  }

  .top-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .services-section {
    padding: 2.5rem 5%;
    gap: 1.8rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    aspect-ratio: 16/9;
  }

  .section-heading {
    font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
  }

  .section-desc {
    font-size: 0.88rem;
  }
}

@media (max-width: 400px) {
  .services-section {
    padding: 2rem 4%;
  }
}

/* ── TURBINES / LOGO BAR ── */
@media (max-width: 600px) {
  .turbines__badge {
    gap: 0;
    padding: 0 clamp(6px, 2vw, 12px);
    border-radius: 10px;
    flex-wrap: wrap;
    height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
    justify-content: center;
  }

  .logo-slot {
    padding: 4px clamp(4px, 1.5vw, 10px);
  }

  .logo-slot img {
    height: clamp(22px, 4vw, 36px);
    max-width: clamp(50px, 12vw, 90px);
  }
}

@media (max-width: 380px) {
  .turbines {
    height: clamp(120px, 25vw, 180px);
  }

  .logo-slot img {
    height: 20px;
    max-width: 50px;
  }
}

/* ── WHY CHOOSE SECTION ── */
@media (max-width: 900px) {
  .wrapper-main {
    padding: 40px 5%;
    margin-top: 60px;
  }

  .top-bar {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }

  .tagline {
    max-width: 100%;
    font-size: 14px;
  }

  .hero-title {
    text-align: left;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .image-card {
    grid-row: auto;
    grid-column: auto;
    min-height: 220px;
    margin-top: 24px;
  }
}

@media (max-width: 600px) {
  .wrapper-main {
    padding: 30px 5%;
    margin-top: 50px;
  }

  .why-card {
    padding: 18px;
    gap: 14px;
  }

  .why-card-title {
    font-size: 14px;
  }

  .why-card-desc {
    font-size: 12px;
  }

  .image-card {
    min-height: 180px;
  }
}

@media (max-width: 400px) {
  .wrapper-main {
    padding: 24px 4%;
    margin-top: 40px;
  }

  .grid {
    gap: 10px;
  }

  .why-card {
    padding: 14px;
  }
}

/* ── PROCESS SECTION ── */
@media (max-width: 900px) {
  .process-section {
    padding: 3rem 5%;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .center-img-wrap {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .arch-frame {
    width: 100%;
    height: 360px;
  }

  .col-left,
  .col-right {
    gap: 2rem;
    align-items: flex-start;
    text-align: left;
  }

  .col-right .step {
    align-items: flex-start;
  }

  .step {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .process-section {
    padding: 2.5rem 5%;
  }

  .arch-frame {
    height: 420px;
  }

  .step-title {
    font-size: 1.2rem;
  }

  .step-desc {
    font-size: 0.8rem;
  }

  .section-heading h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
  }

  .footer-line {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
  }
}

@media (max-width: 400px) {
  .process-section {
    padding: 2rem 4%;
  }

  .arch-frame {
    height: 392px;
  }
}

/* ── PROJECTS SECTION ── */
@media (max-width: 900px) {
  .project-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .project-card {
    max-width: 100%;
    width: 100%;
  }

  .section-title {
    font-size: clamp(28px, 7vw, 42px);
    margin-bottom: 32px;
  }
}

@media (max-width: 600px) {
  .projects {
    padding: 50px 5%;
  }

  .section-title {
    font-size: clamp(22px, 7vw, 32px);
    margin-bottom: 24px;
  }

  .image-box img {
    height: 220px;
  }

  .project-card h3 {
    font-size: 17px;
    margin-top: 12px;
  }

  .project-card p {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .projects {
    padding: 40px 4%;
  }

  .image-box img {
    height: 180px;
  }
}

/* ── TESTIMONIALS ── */
@media (max-width: 900px) {
  .testimonial-outer {
    width: calc(300px * 2 + 20px);
    overflow: hidden;
  }

  .testimonial-card {
    flex: 0 0 300px;
    width: 300px;
    padding: 25px 18px;
  }
}

@media (max-width: 700px) {
  .testimonial-outer {
    width: 100%;
    max-width: 340px;
  }

  .testimonial-wrapper {
    gap: 16px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
  }

  .testimonial-title {
    font-size: clamp(26px, 8vw, 38px);
    margin-bottom: 10px;
  }

  .subtitle {
    font-size: 13px;
    margin-bottom: 40px;
  }

  .subtitle br { display: none; }
}

@media (max-width: 400px) {
  .testimonials {
    padding: 60px 4%;
  }

  .testimonial-outer {
    max-width: 100%;
  }

  .testimonial-title {
    font-size: clamp(22px, 8vw, 28px);
  }
}

/* ── CTA BANNER ── */
@media (max-width: 768px) {
  .cta-banner {
    margin: 40px 5%;
    height: auto;
    padding: 40px 30px;
    border-radius: 16px;
  }

  .cta-content h2 {
    font-size: clamp(20px, 6vw, 28px);
    margin: 8px 0 18px;
  }
}

@media (max-width: 480px) {
  .cta-banner {
    margin: 30px 4%;
    padding: 32px 20px;
  }

  .cta-content span {
    font-size: 12px;
  }

  .cta-content h2 {
    font-size: clamp(18px, 7vw, 24px);
    margin: 6px 0 16px;
  }

  .btn-primary {
    font-size: 13px;
    padding: 11px 20px;
    margin-bottom: 8px;
  }
}

/* ── FOOTER ── */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 40px 5% 16px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer .logo {
    font-size: 28px;
  }

  .footer-brand p {
    font-size: 13px;
    margin: 12px 0;
  }

  .footer-col h4 {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .footer-col ul li a,
  .footer-col p {
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .footer {
    padding: 32px 4% 12px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 28px;
  }

  .footer-links {
    gap: 16px;
  }
}

/* ── CTA BUTTON (global) ── */
@media (max-width: 480px) {
  .cta-btn {
    font-size: 13px;
    padding: 12px 22px;
  }

  .cta-wrap {
    margin-top: 24px;
  }


}

/* ── GENERAL OVERFLOW PROTECTION ── */
* {
  min-width: 0;
}

img {
  max-width: 100%;
}

/* Prevent horizontal scroll everywhere */
section, .container, .wrapper, .wrapper-main {
  /* max-width: 100vw; */
  overflow-x: hidden;
}



/* Lock scroll while loading */
body.loading {
  overflow: hidden;
}
 
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
 
.site-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
 
/* ── Rotating sun rays background ── */
.loader-rays {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  animation: raysRotate 12s linear infinite;
}
 
.loader-rays span {
  position: absolute;
  width: 2px;
  height: 55vmax;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 216, 77, 0.07) 40%,
    rgba(255, 216, 77, 0.12) 50%,
    rgba(255, 216, 77, 0.07) 60%,
    transparent 100%
  );
  transform-origin: center center;
}
 
.loader-rays span:nth-child(1) { transform: rotate(0deg); }
.loader-rays span:nth-child(2) { transform: rotate(30deg); }
.loader-rays span:nth-child(3) { transform: rotate(60deg); }
.loader-rays span:nth-child(4) { transform: rotate(90deg); }
.loader-rays span:nth-child(5) { transform: rotate(120deg); }
.loader-rays span:nth-child(6) { transform: rotate(150deg); }
 
@keyframes raysRotate {
  to { transform: rotate(360deg); }
}
 
/* ── Center content ── */
.loader-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: 0 20px;
}
 
/* ── Logo ── */
.loader-logo {
  font-size: clamp(42px, 12vw, 80px);
  font-family: "Brush Script MT", cursive;
  color: var(--yellow);
  letter-spacing: 2px;
  animation: logoPulse 2s ease-in-out infinite;
  text-shadow: 0 0 40px rgba(255, 216, 77, 0.4);
}
 
@keyframes logoPulse {
  0%, 100% { opacity: 1;   text-shadow: 0 0 40px rgba(255,216,77,0.4); }
  50%       { opacity: 0.7; text-shadow: 0 0 80px rgba(255,216,77,0.7); }
}
 
/* ── Progress bar ── */
.loader-bar-track {
  width: clamp(200px, 55vw, 360px);
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
}
 
.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--yellow), #fff59d);
  border-radius: 99px;
  transition: width 0.15s ease;
  box-shadow: 0 0 10px rgba(255, 216, 77, 0.6);
}
 
/* ── Percentage ── */
.loader-pct {
  font-size: 13px;
  font-family: "Poppins-Medium", sans-serif;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  min-height: 18px;
}
 
/* ── Tagline ── */
.loader-tagline {
  font-size: clamp(11px, 3vw, 14px);
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  animation: taglineFade 1.5s ease-in-out infinite alternate;
}
 
@keyframes taglineFade {
  from { opacity: 0.3; }
  to   { opacity: 0.7; }
}
 
/* ── Sun orb above logo ── */
.loader-inner::before {
  content: '';
  display: block;
  width: clamp(48px, 14vw, 90px);
  height: clamp(48px, 14vw, 90px);
  border-radius: 50%;
  background: radial-gradient(circle, #ffe566 0%, #ffd84d 40%, rgba(255,216,77,0) 75%);
  box-shadow:
    0 0 30px 10px rgba(255,216,77,0.25),
    0 0 80px 20px rgba(255,216,77,0.12);
  animation: orbPulse 2s ease-in-out infinite;
  margin-bottom: -8px;
}
 
@keyframes orbPulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 30px 10px rgba(255,216,77,0.25), 0 0 80px 20px rgba(255,216,77,0.12); }
  50%       { transform: scale(1.08); box-shadow: 0 0 50px 20px rgba(255,216,77,0.35), 0 0 100px 30px rgba(255,216,77,0.18); }
}
 
/* ── Page body fade-in after load ── */
body > *:not(.site-loader) {
  opacity: 0;
  transition: opacity 0.6s ease 0.1s;
}
body.loaded > *:not(.site-loader) {
  opacity: 1;
}
 

/* ═══════════════════════════════════════════════
   PAGE TRANSITION — Smooth fade between pages
   ═══════════════════════════════════════════════ */

/* Overlay element — fixed on top of everything */
#page-transition-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#page-transition-overlay.fade-out {
  opacity: 1;
  pointer-events: all;
}

/* Page fade-in on load */
body {
  animation: pageFadeIn 0.45s ease forwards;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}





/* ═══ SCROLL REVEAL ANIMATION ═══ */
.blur-reveal {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.blur-reveal.active {
  opacity: 1;
  transform: translateX(0px);
  will-change: auto;
}
