@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

:root {
  /* FONT FAMILY */
  --font-primary: 'Poppins', sans-serif;

  /* FONT SIZES */
  --fs-h1: 48px;
  --fs-h2: 38px;
  --fs-h3: 26px;
  --fs-h4: 20px;
  --fs-body: 16px;
  --fs-small: 14px;

  /* FONT WEIGHT */
  --fw-bold: 700;
  --fw-semi: 600;
  --fw-medium: 500;
  --fw-regular: 400;
}

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

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
}

h1 {
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
}

h2 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
}

h3 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-semi);
}

h4 {
  font-size: var(--fs-h4);
  font-weight: var(--fw-semi);
}

p {
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
}


*{margin:0;padding:0;box-sizing:border-box;font-family:Poppins,sans-serif}
body{scroll-behavior:smooth;color:#333}
.container{width:90%;max-width:1200px;margin:auto}

.header{
  position:fixed;
  top:0;
  width:100%;
  background:#fff;
  box-shadow:0 2px 8px rgba(0,0,0,.1);
  z-index:1000;
  background-color: #fff500;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
}

.logo{font-weight:700;font-size:20px}

.menu{
  list-style:none;
  display:flex;
   
      list-style: none;
  
    gap: 35px;
    float: left;
    margin-right: 11pc;
  
}

.menu li {
  position: relative; /* REQUIRED for ::after */
}

.menu a {
  text-decoration: none;
  color: #333;
  font-size: medium;
  font-weight: 600;
}

/* Active underline */
.menu li.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background-color: #ff5a1f; /* underline color */
  border-radius: 2px;
}

.hero{
  padding:160px 0;
  background:#f5f5f5;
  text-align:center;
}

.hero-mini{
  padding:120px 0;
  background:#fafafa;
  text-align:center;
}

.section{
  padding:80px 0;
  text-align:center;
}

.light{
  /* background:#001737 */
  /* background: #fff500; */
}

.btn{
    background: #ff5a1f;
    color: #fff; 
    padding: 14px 30px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    float: left;
    margin-top: 29pc;
    margin-left: 10pc;
}

.cards{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.card h3 {
  text-align: center;
}

.card p{
  margin-top: 20px;
}

.card{
  background:#fff500;;
  padding:25px;
  border-radius:6px;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
  width:325px;
}

.card-body{
  margin:0px;
  text-align:left;
  /* height:250px; */
}

.slider img{
  width:160px;
  margin:10px;
}

.contact-form{
  max-width:500px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.contact-form input,
.contact-form textarea{
  padding:12px;
  border:1px solid #ccc;
  border-radius:4px;
}

.footer{
  background:#222;
  color:#fff;
  text-align:center;
  padding:20px;
}

/* Animations */
.fade{
  opacity:0;
  transform:translateY(30px);
  transition:.8s;
}

.fade.show{
  opacity:1;
  transform:none;
}

@media(max-width:768px){
  .menu{display:none}
}


.hero.fade.show {
    /* Set the background color using a name, HEX, or RGB value */
    /* background-color: #333333; Dark gray color */
    /* color: white; Text color for contrast */
    /* padding: 20px; Space around the content */
    /* text-align: center; Center the text */
    /* height: 150px; Set a specific height for the banner */

background-image: url("../images/bannerbg.jpg"); /* 1. Set the image URL */
    background-color: #cccccc;                    /* 2. Fallback color */
    height: 700px;                                /* 3. Define the height */
    width: 100%;                                  /* 4. Define the width */
    background-size: cover;                       /* 5. Scale the image to cover the div */
    background-position: center;                  /* 6. Center the image */
    background-repeat: no-repeat;                 /* 7. Prevent the image from repeating */    
}


.seen-banner {
  padding: 40px 0;
  text-align: center;
  overflow: hidden;
}

.seen-banner h2 {
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 25px;
  font-weight: 600;
}
/* Centered visible area */
.logo-slider {
  width: 800px;              /* ≈ 3 images */
  margin: 15px auto;         /* center */
  overflow: hidden;
}

/* Track */
.logo-track {
  display: flex;
  gap: 30px;
  width: max-content;
}

.logo-track img {
  height: 50px;
  width: 120px;              /* control image width */
  object-fit: contain;
  opacity: 0.85;
}

/* Animations */
.left-to-right {
  animation: moveLTR 30s linear infinite;
}

.right-to-left {
  animation: moveRTL 30s linear infinite;
}

@keyframes moveLTR {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes moveRTL {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-slider {
    width: 300px;           /* 2–3 logos on mobile */
  }

  .logo-track img {
    width: 90px;
    height: 40px;
  }
}


.as-seen-wrapper {
          /* background behind section */
  padding: 60px 0;
}

.as-seen-inner {
  background: #fff;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 10px;

  /* LEFT EDGE SHADOW */
  box-shadow: 
    -18px 0 25px rgba(0, 0, 0, 0.25);

  position: relative;
}

/* ===============================
   TESTIMONIAL SECTION
================================ */
.testimonials {
  background: #000;
  color: #fff;
  padding: 90px 0;
    /* font-family: "Inter", sans-serif; */
}

.testimonials .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  /* gap: 60px; */
}

/* ===============================
   LEFT SIDE
================================ */
.testimonials-left {
  flex: 1;
}

.testimonials-left h2 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.testimonials-left span {
  color: #ff5a1f;
  position: relative;
  display: inline-block;
}

.testimonials-left span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  background: #ff5a1f;
  border-radius: 10px;
}

/* ===============================
   RIGHT SIDE
================================ */
.testimonials-right {
  flex: 1;
  overflow: hidden;
  position: relative;
}

/* ===============================
   CAROUSEL
================================ */
.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.7s ease-in-out;
  will-change: transform;
}

.review {
  min-width: 95%;
  border: 1px solid #ff5a1f;
  border-radius: 18px;
  padding: 26px;
  background: linear-gradient(180deg, #0a0a0a, #000);
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.15);
}

/* ===============================
   REVIEW HEADER
================================ */
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ccc;
  flex-shrink: 0;
}

.review h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.stars {
  font-size: 14px;
  color: #00ff88;
  margin-top: 2px;
}

/* ===============================
   REVIEW TEXT
================================ */
.review p {
  font-size: 15px;
  line-height: 1.6;
  color: #dcdcdc;
  margin: 0;
}

/* ===============================
   PAUSE STATE (optional visual)
================================ */
.testimonials-right.paused .review {
  opacity: 0.85;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .testimonials .container {
    flex-direction: column;
    text-align: center;
  }

  .testimonials-left h2 {
    font-size: 40px;
  }

  .carousel-track {
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .testimonials {
    padding: 60px 0;
  }

  .testimonials-left h2 {
    font-size: 32px;
  }

  .review {
    padding: 20px;
  }

  .review p {
    font-size: 14px;
  }
}


/* WHO SECTION */
.who-section {
  background: #000;
  color: #fff;
  padding: 100px 0;
}

.who-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
}

/* TITLE */
.who-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* SUB */
.who-sub {
  margin-bottom: 20px;
  font-size: 20px;
}

.highlight {
  color: #ff5a1f;
  border: 2px solid #ff5a1f;
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 600;
}

.subtext {
  margin-left: 10px;
}

/* DESCRIPTION */
.who-desc {
  color: #ccc;
  line-height: 1.7;
  max-width: 600px;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat h3 {
  color: #ff5a1f;
  font-size: 38px;
  font-weight: 700;
}

.stat p {
  color: #bbb;
}

/* IMAGE */
.who-image img {
  width: 100%;
  border-radius: 20px;
  border: 4px solid #ff5a1f;
}

/* CURVE ARROW */
.curve-arrow {
  margin-top: 20px;
  width: 180px;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .who-grid {
    grid-template-columns: 1fr;
  }

  .who-title {
    font-size: 32px;
  }

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

/* MASTERCLASS SECTION */
.masterclass-section {
  background: #f3f3f3;
  padding: 100px 0;
}

/* GRID */
.masterclass-grid {
  display: grid;
  /* grid-template-columns: 1.3fr 0.7fr; */
  align-items: center;
  gap: 30px;
}

/* TITLE */
.mc-title {
  font-size: 48px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin-bottom: 25px;
  max-width: 900px;
}

/* ORANGE TEXT */
.highlight-text {
  color: #ff5a1f;
  position: relative;
  white-space: nowrap; /* IMPORTANT */
}

/* WAVE UNDERLINE */
.highlight-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 8px;
  background: url("assets/images/wave.svg") repeat-x;
}

/* DESCRIPTION */
.mc-desc {
  font-size: 18px;
  color: #333;
  max-width: 650px;
  margin-bottom: 35px;
}

/* BOX */
.mc-box {
  border: 2px solid #ff5a1f;
  border-radius: 20px;
  padding: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  background: #f8f4f1;
  margin-bottom: 30px;
}

.mc-list p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* CTA */
.mc-btn {
  background: #ff5a1f;
  color: #fff;
  padding: 18px 34px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ARROW */
.mc-arrow img {
  width: 100%;
  max-width: 420px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .masterclass-grid {
    grid-template-columns: 1fr;
  }

  .mc-title {
    font-size: 32px;
  }

  .mc-box {
    grid-template-columns: 1fr;
  }

  .mc-arrow {
    text-align: center;
  }
}


/* ===== HOW WE WORK ===== */

.how-we-work {
  padding: 35px 0;
  background:#000;
  position: relative;
}

.work-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
  line-height: 1.3;
  color:#fff
}

.work-title span {
  color: #ff5a1f;
}


.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  height: 650px;
}


/* SVG curved lines */
.timeline-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  stroke: #ff5a1f;
  stroke-width: 2;
  fill: none;
  z-index: 1;
}


@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

/* STEP */
.step {
  position: absolute;
  width: 260px;
  z-index: 2;
}

/* Center Top */
.step[data-step="1"] {
  top: 0;
  left: 36%;
  transform: translateX(-50%);
}

/* Right Upper */
.step[data-step="2"] {
  top: 160px;
  right: 0;
}

/* Right Bottom */
.step[data-step="3"] {
  bottom: -38px;
  right: 120px;
}

/* Left Bottom */
.step[data-step="4"] {
  bottom: -15px;
  left: 120px;
}

/* Left Upper */
.step[data-step="5"] {
  top: 160px;
  left: 0;
}


/* CARD */
.step-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 2px solid #ff5a1f;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
  min-height: 170px;
}


/* GRADIENT HOVER GLOW */
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 90, 31, 0.4);
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,90,31,0.2), transparent);
  opacity: 0;
  transition: 0.4s;
}

.step-card:hover::before {
  opacity: 1;
}

/* TEXT */
.step-card h3 {
  color: #ff5a1f;
  /* font-size: 22px; */
  margin-bottom: 5px;
}

.step-card h4 {
  /* font-size: 16px; */
  margin-bottom: 10px;
}

.step-card p {
  /* font-size: 14px; */
  color: #555;
}


/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}


/* SERVICES HERO */
.services-hero {
  background: linear-gradient(180deg, #fafafa, #f3f3f3);
  padding: 150px 0 90px;
  text-align: center;
}

.services-hero h1 {
  /* font-size: 44px; */
  /* font-weight: 700; */
  margin-bottom: 15px;
}

.services-hero span {
  color: #ff5a1f;
}

.hero-sub {
  max-width: 700px;
  margin: 0 auto 30px;
  /* font-size: 18px; */
  color: #555;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-badges span {
  background: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid #eee;
  /* font-size: 14px; */
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.hero-cta {
  display: inline-block;
  margin-top: 25px;
  background: #ff5a1f;
  color: #fff;
  padding: 16px 34px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,90,31,0.3);
}

.services-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,90,31,0.12), transparent);
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(60px);
}

.services-hero {
  position: relative;
  overflow: hidden;
}

.hero h1,
.services-hero h1,
.hero-mini h1 {
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
}

.hero-sub {
  font-size: 18px;
}


@media (max-width: 992px) {
  .timeline {
    height: auto;
  }

  .timeline-lines {
    display: none;
  }

  .step {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    transform: none;
    margin-bottom: 30px;
  }

  .timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}


@media (max-width: 768px) {
  :root {
    --fs-h1: 34px;
    --fs-h2: 28px;
    --fs-h3: 22px;
  }
}


/* HERO SECTION */
.hero-new {
  padding: 160px 0 120px;
  background: #f4f4f4;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.hero-image img {
  width: 100%;
  max-width: 500px;
}

/* CONTENT */
.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
  margin-bottom: 20px;
}

.hero-content span {
  color: #ff5a1f;
}

.hero-sub {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  max-width: 500px;
  line-height: 1.6;
}

/* BUTTON */
.hero-btn {
  display: inline-block;
  background: #ff5a1f;
  color: #fff;
  padding: 18px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(255, 90, 31, 0.3);
  transition: 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(255, 90, 31, 0.4);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-image {
    order: -1;
  }
}


/* HERO IMAGE */
.hero-image {
  position: relative;
  width: 100%;
  height: 350px;
}

.hero-growth {
  padding: 160px 0 100px;
  background: linear-gradient(180deg, #fafafa, #f3f3f3);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
}

/* LEFT CONTENT */
.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content span {
  color: #ff5a1f;
}

.hero-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-btn {
  background: #ff5a1f;
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,90,31,0.3);
}

/* GRAPH */
.hero-graph svg {
  width: 100%;
  max-width: 520px;
}

/* 🔥 GLOW DOT */
.growth-dot {
  filter: drop-shadow(0 0 10px rgba(255,90,31,0.9));
  animation: pulseDot 1.3s infinite alternate;
}

@keyframes pulseDot {
  from { transform: scale(1); opacity: 0.8; }
  to { transform: scale(1.4); opacity: 1; }
}

/* PROFIT BADGE */
.profit-badge {
  transform: translate(-30px,-40px);
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.25));
}

/* LINE ANIMATION */
.growth-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 2.5s ease forwards;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

/* RESPONSIVE */
@media(max-width:900px){
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin: 0 auto 30px;
  }
}

/* ===== BRAND PARTNERS SECTION ===== */

.brand-partners {
  padding: 100px 0;
  background: #fff;
}

/* HEADER */
.brand-partners__header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
}

.brand-partners__header h2 {
  font-size: 42px;
  font-weight: 700;
}

.brand-partners__header span {
  color: #ff5a1f;
}

.brand-partners__header p {
  color: #666;
  margin-top: 15px;
  font-size: 18px;
}

/* GRID */
.brand-partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.brand-partners__card {
  background: #fafafa;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid #eee;
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.brand-partners__card:hover {
  transform: translateY(-8px);
  border-color: #ff5a1f;
  box-shadow: 0 10px 30px rgba(255,90,31,0.2);
}

.brand-partners__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,90,31,0.15), transparent);
  opacity: 0;
  transition: 0.4s;
}

.brand-partners__card:hover::before {
  opacity: 1;
}

/* ICON */
.brand-partners__icon {
  font-size: 40px;
  margin-bottom: 20px;
}

/* TEXT */
.brand-partners__card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.brand-partners__card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .brand-partners__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:600px){
  .brand-partners__grid {
    grid-template-columns: 1fr;
  }
}


/* ===== SCALE CTA SECTION ===== */

.scale-cta {
  background: linear-gradient(135deg, #ff5a1f, #ff5a1f);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* WRAPPER */
.scale-cta__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}

/* LEFT CONTENT */
.scale-cta__content {
  color: #fff;
}

.scale-cta__content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.scale-cta__content p {
  font-size: 18px;
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* BUTTON */
.scale-cta__btn {
  display: inline-block;
  background: #fff;
  color: #ff5a1f;
  padding: 16px 30px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.scale-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* RIGHT IMAGE */
.scale-cta__image img {
  width: 100%;
  max-width: 350px;
  display: block;
  margin-left: auto;
}

/* GLOW BACKGROUND */
.scale-cta::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.25), transparent);
  top: -120px;
  right: -100px;
  filter: blur(80px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .scale-cta__wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .scale-cta__content p {
    margin: 0 auto 25px;
  }

  .scale-cta__image img {
    margin: 20px auto 0;
  }
}
/* Floating Money Container */
.vvd-money-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Money Elements */
.vvd-money {
  position: absolute;
  font-size: 22px;
  font-weight: 600;
  color: #00ff9c;
  opacity: 0.8;
  animation: vvdFloat 10s linear infinite;
  text-shadow: 0 0 15px rgba(0, 255, 156, 0.8);
}

/* Different positions */
.vvd-money:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}
.vvd-money:nth-child(2) {
  left: 25%;
  animation-delay: 2s;
}
.vvd-money:nth-child(3) {
  left: 50%;
  animation-delay: 4s;
}
.vvd-money:nth-child(4) {
  left: 70%;
  animation-delay: 1s;
}
.vvd-money:nth-child(5) {
  left: 85%;
  animation-delay: 3s;
}

.vvd-money::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(0, 255, 156, 0.3);
  border-radius: 50%;
  filter: blur(10px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/* Floating animation */
@keyframes vvdFloat {
  0% {
    transform: translateY(100px) scale(0.8);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    transform: translateY(-200px) scale(1);
  }
  100% {
    transform: translateY(-500px) scale(1.2);
    opacity: 0;
  }
}


/* ===== FOOTER ===== */

.site-footer {
  background: #000;
  color: #fff;
  padding: 25px 0 0;
}

/* Wrapper */
.footer-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 0px;
}

/* Brand */
.footer-brand h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #ff5a1f;
}

.footer-brand p {
  color: #bbb;
  line-height: 1.6;
  max-width: 320px;
}

/* Headings */
.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Links */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #bbb;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ff5a1f;
}

/* Contact */
.footer-contact p {
  color: #bbb;
  margin-bottom: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 12px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  transition: 0.3s;
}

/* Hover Colors */
.footer-social a:hover {
  transform: translateY(-4px);
}

.footer-social a:nth-child(1):hover { background: #1877f2; } /* Facebook */
.footer-social a:nth-child(2):hover { background: #000; }   /* X */
.footer-social a:nth-child(3):hover { background: #25d366; } /* WhatsApp */
.footer-social a:nth-child(4):hover { background: #e4405f; } /* Instagram */


/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  color: #fff500;
  background: #000;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: auto;
  }
}


.contact-section {
  background: #f7f9fc;
  padding: 80px 20px;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.contact-info p {
  color: #555;
  margin-bottom: 30px;
}

.contact-points div {
  margin-bottom: 20px;
}

.contact-points h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Floating inputs */
.form-group {
  position: relative;
  margin-bottom: 0px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  font-size: 15px;
}

.form-group label {
  position: absolute;
  left: 12px;
  top: 14px;
  color: #888;
  font-size: 14px;
  transition: 0.3s;
  background: #fff;
  padding: 0 6px;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
  top: -8px;
  font-size: 12px;
  color: #ff5a1f;
}

.form-row {
  display: flex;
  gap: 10px;
}

.country-code {
  width: 120px;
}

.phone {
  flex: 1;
}

.contact-btn {
  width: 100%;
  background: #ff5a1f;
  color: #fff;
  padding: 15px;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #e64a14;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}


/* ===== CONTACT HERO ===== */
.contact-hero {
  position: relative;
  padding: 150px 0 100px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #fafafa, #f3f3f3);
}

/* Soft glow background */
.contact-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,90,31,0.15), transparent);
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(70px);
  z-index: 0;
}

/* Text */
.contact-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.contact-hero span {
  color: #ff5a1f;
}

/* Subtitle */
.contact-hero p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Badges */
.contact-hero-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.contact-hero-badges span {
  background: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid #eee;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Animation */
.contact-hero.fade {
  opacity: 0;
  transform: translateY(40px);
}

.contact-hero.fade.show {
  opacity: 1;
  transform: none;
  transition: 0.8s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-hero p {
    font-size: 16px;
  }
}
