@import url("https://fonts.cdnfonts.com/css/chunkfive");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --purple: #8149c8;
  --purple-dark: #732ee8;
  --lav: #f0e8ff;
  --orange: #fe8b4a;
  --green: #82c118;
  --black: #050505;
  --text: #1d1d1d;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

/* preloader css */

.preloader {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(254, 139, 74, 0.22),
      transparent 28%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(130, 193, 24, 0.22),
      transparent 30%
    ),
    linear-gradient(135deg, #efe2ff 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.loader-box img {
  width: 160px;
  height: auto;
  display: block;
  margin: 0 auto 14px;
}
.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-box {
  text-align: center;
  position: relative;
}

.loader-ring {
  width: 105px;
  height: 105px;
  margin: 0 auto 22px;
  position: relative;
}

.loader-ring span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 5px solid transparent;
  animation: loaderSpin 1.2s linear infinite;
}

.loader-ring span:nth-child(1) {
  border-top-color: #8149c8;
}

.loader-ring span:nth-child(2) {
  inset: 12px;
  border-right-color: #fe8b4a;
  animation-duration: 1.6s;
  animation-direction: reverse;
}

.loader-ring span:nth-child(3) {
  inset: 24px;
  border-bottom-color: #82c118;
  animation-duration: 1s;
}

.loader-box h2 {
  font-family: "ChunkFive", "Archivo Black", Impact, sans-serif;
  font-size: 38px;
  color: #000;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.loader-box p {
  font-size: 13px;
  font-weight: 700;
  color: #555;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.dot {
  animation: loaderDots 1s infinite;
}

.dot:nth-child(2) {
  animation-delay: 0.15s;
}

.dot:nth-child(3) {
  animation-delay: 0.3s;
}

.loader-line {
  width: 210px;
  height: 7px;
  background: #eadcff;
  border-radius: 30px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-line span {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(90deg, #8149c8, #fe8b4a, #82c118);
  animation: loaderLine 1.1s ease-in-out infinite;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderDots {
  0%,
  20% {
    opacity: 0;
  }
  50%,
  100% {
    opacity: 1;
  }
}

@keyframes loaderLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(230%);
  }
}
/* preloader css end */

body {
  font-family: Poppins, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #8149c8;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.3s ease;
  box-shadow: 0 12px 25px rgba(129, 73, 200, 0.28);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #fe8b4a;
}

.wrapper {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.eyebrow {
  width: 100%;
  background: #efe2ff;
  overflow: hidden;
  padding: 9px 0;
  border-bottom: 1px solid #eee;
  color: #111;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 18s linear infinite;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
}

.marquee-track span {
  display: inline-block;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 500;
  padding-right: 35px;
}

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

.navbar {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand {
  font-family: "ChunkFive", "Archivo Black", Impact, sans-serif;
  color: #000;
  text-decoration: none;
  font-size: 21px;
  position: relative;
  z-index: 20;
}

.brand img {
  width: 165px;
  height: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.menu {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.nav-btn {
  background: var(--purple);
  color: #fff;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 13px;
  transition: 0.3s ease;
}
.nav-btn:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
 
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: #80d21a;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 20;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  border-radius: 10px;
  transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .navbar {
    height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 105px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 28px 22px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
    z-index: 15;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .menu {
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }

  .menu a {
    font-size: 16px;
    color: #000;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
  }
}
.hero {
  text-align: center;
  position: relative;
  padding: 25px 0 35px;
  /* width: 85%; */
}

.hero h1,
.section-title-row h2,
.why h2,
.support h2,
.center-title h2,
.review-head h2,
.cta h2 {
  font-family: "ChunkFive", "Archivo Black", Impact, sans-serif;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 2px;
  color: #000;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(45px, 8vw, 78px);
}
.purple,
.orange,
.green {
  display: inline-block;
  color: white;
  padding: 0 0.16em;
  line-height: 1.02;
  /* font-size: 55px; */
}
.purple {
  background: var(--purple);
  padding-top: 2px;
}
.orange {
  background: var(--orange);
  padding-top: 2px;
}
.green {
  background: var(--green);
  padding-top: 2px;
}
.hero p {
  width: min(560px, 92%);
  margin: 16px auto 18px;
  font-size: 14px;
  line-height: 1.65;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 38px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  padding: 13px 24px;
}
.purple-btn {
  background: var(--purple);
  color: #fff;
  font-weight: 400;
  transition: 0.3s ease;
}
.purple-btn:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.light-btn {
  background: #f1eefc;
  color: #1a1a1a;
  margin-left: 12px;
  font-weight: 400;
}
.white-btn {
  background: #fff;
  color: var(--purple-dark);
  font-weight: 500;
  transition: 0.3s ease;
}

.white-btn:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.hero-stage {
  height: 345px;
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-card {
  height: 290px;
  border-radius: 28px;
  background: var(--lav);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-center {
  height: 300px;
  border-radius: 25px;
  background: var(--lav);
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
}

.hero-card img,
.hero-center img {
  width: 88%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Left image */
.card-left img {
  object-fit: cover;
  object-position: center;
}

/* Center image */
.hero-center img {
  height: 280px;
  width: auto;
  object-fit: contain;
  z-index: 2;
}

/* Right image */
.card-right img {
  object-fit: cover;
  object-position: center;
}
.tag {
  position: absolute;
  font-weight: 800;
  font-size: 13px;
  color: #000;
  border: 3px solid rgba(0, 0, 0, 0.08);
  padding: 9px 18px;
  border-radius: 30px;
  z-index: 3;
  white-space: nowrap;
}
.orange-tag {
  background: #ff7b1e;
  left: -38px;
  top: 75px;
  transform: rotate(-2deg);
  font-weight: 400;
}
.green-tag {
  background: #91ec16;
  right: -45px;
  top: 24px;
  transform: rotate(12deg);
  font-weight: 400;
}
.section-gap {
  padding-top: 95px;
}
.wide-gap {
  /* padding-top: 170px; */
}
.section-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}
.section-title-row h2 {
  font-size: clamp(37px, 5.6vw, 64px);
}
.mini-btn,
.pill {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 400;
  font-size: 14px;
  padding: 10px 19px;
  transition: 0.3s ease;
}

.mini-btn:hover,
.pill:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--lav);
  border-radius: 27px;
  padding: 28px;
  min-height: 330px;
}
.service-card img {
  width: 100%;
  border-radius: 14px;
  display: block;
  object-fit: cover;
}
.service-card h3 {
  font-weight: 900;
  color: #000;
  margin: 20px 0 16px;
  font-size: 20px;
}
.text-card img {
  margin-top: 30px;
}
.small-card {
  min-height: 300px;
}
/* .small-card img {
  height: 230px;
} */
.why {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
}
.photo-wrap,
.support-img {
  position: relative;
}

.photo-wrap img,
.support-img img {
  width: 100%;
  display: block;
  border-radius: 0 28px 28px 0;
}
.arc {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 8px solid var(--orange);
  border-right: 0;
  border-bottom: 0;
  border-radius: 100% 0 0 0;
  left: -43px;
  top: -8px;
  z-index: -1;
}
.why-copy h2 {
  font-size: clamp(39px, 5.2vw, 65px);
  margin-bottom: 20px;
  font-size: 60px;
  font-weight: 500;
}
.why-copy p,
.support-copy p {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}
.mini-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  margin-top: 42px;
}
.mini-columns h4 {
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 500;
}
.mini-columns p {
  font-size: 13px;
}
.btn.small {
  padding: 10px 20px;
  font-size: 14px;
}
.support {
  position: relative;
  padding-top: 40px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 55px;
  align-items: end;
}
.support-title {
  font-size: 60px !important;
  line-height: 1.15;
}

.support h2 {
  font-size: clamp(37px, 5vw, 61px);
}
.support-copy {
  padding-bottom: 80px;
}
.support-img {
  align-self: start;
}
/* .support-img img {
  border-radius: 30px;
  background: var(--lav);
} */
.orange-arc {
  left: -55px;
  top: -38px;
  transform: rotate(35deg);
}
.process-row {
  grid-column: 1/3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -28px;
}
.process-row article {
  min-height: 174px;
  padding: 25px 18px;
  border-radius: 13px;
  background: #f0e8ff;
}
.process-row article img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  margin-bottom: 18px;
}

.process-row span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  color: #fff;
  margin-bottom: 18px;
}
.process-row h3 {
  font-size: 15px;
  color: #000;
  margin-bottom: 8px;
}
.process-row p {
  font-size: 13px;
  line-height: 1.5;
}
.process-row .active {
  background: var(--purple);
  color: #fff;
}
.process-row .active h3,
.process-row .orange-card h3,
.process-row .green-card h3 {
  color: #fff;
}
.process-row .orange-card {
  background: var(--orange);
  color: #fff;
}
.process-row .green-card {
  background: var(--green);
  color: #fff;
}
.process-row .orange-card span,
.process-row .green-card span,
.process-row .active span {
  background: rgba(255, 255, 255, 0.25);
}

.marketing {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
  position: relative;
  padding-top: 120px;
}

.marketing-copy .small-label {
  display: inline-block;
  background: #efe2ff;
  color: #8149c8;
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.marketing-title {
  font-family: "ChunkFive", "Archivo Black", Impact, sans-serif;
  font-size: 52px;
  line-height: 1.18;
  letter-spacing: 2px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.marketing-copy p {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 28px;
  max-width: 520px;
}

.marketing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.marketing-card {
  min-height: 230px;
  background: #f0e8ff;
  border-radius: 22px;
  padding: 28px 24px;
  transition: 0.3s ease;
}

.marketing-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(83, 55, 129, 0.14);
}

.marketing-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #8149c8;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  margin-bottom: 26px;
}

.marketing-card h3 {
  font-family: "ChunkFive", "Archivo Black", Impact, sans-serif;
  font-size: 23px;
  color: #000;
  margin-bottom: 12px;
  font-weight: 500;
}

.marketing-card p {
  font-size: 13px;
  line-height: 1.65;
  color: #555;
}

.marketing-card.active {
  background: #8149c8;
}

.marketing-card.active h3,
.marketing-card.active p,
.marketing-card.orange-card h3,
.marketing-card.orange-card p,
.marketing-card.green-card h3,
.marketing-card.green-card p {
  color: #fff;
}

.marketing-card.active .marketing-icon,
.marketing-card.orange-card .marketing-icon,
.marketing-card.green-card .marketing-icon {
  background: rgba(255, 255, 255, 0.25);
}

.marketing-card.orange-card {
  background: #fe8b4a;
}

.marketing-card.green-card {
  background: #82c118;
}

@media (max-width: 900px) {
  .marketing {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .marketing-copy {
    text-align: center;
  }

  .marketing-copy p {
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .marketing {
    padding-top: 80px;
  }

  .marketing-title {
    font-size: 31px;
        text-align: left;

  }

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

  .marketing-card {
    min-height: auto;
  }
}
/* marketing section end  */



/* ///////////////////////////packges section css//////////////////// */
.packages {
  position: relative;
  padding-top: 120px;
}

.packages-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 65px;
}

.small-label {
  display: inline-block;
  background: #efe2ff;
  color: #8149c8;
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.packages-head h2 {
  font-family: "ChunkFive", "Archivo Black", Impact, sans-serif;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.18;
  letter-spacing: 2px;
  color: #000;
  text-transform: uppercase;
  font-size: 55px;
  font-weight: 500;
}

.packages-head p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  max-width: 560px;
  margin: 22px auto 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.package-card {
  position: relative;
  background: #f0e8ff;
  border-radius: 28px;
  padding: 34px 30px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(83, 55, 129, 0.14);
}

.package-icon {
  width: 52px;
  height: 52px;
  background: #8149c8;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 28px;
}
.package-icon-color{
  width: 52px;
  height: 52px;
  background:white;
  color: var(--purple);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 28px;
}

.package-card h3 {
  font-family: "ChunkFive", "Archivo Black", Impact, sans-serif;
  font-size: 30px;
  color: #000;
  margin-bottom: 12px;
  font-weight: 400;
}

.package-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}

.package-price {
  font-family: "ChunkFive", "Archivo Black", Impact, sans-serif;
  font-size: 44px;
  color: #000;
  margin-bottom: 25px;
}

.package-price span {
  font-family: Poppins, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #666;
}

.package-card ul {
  list-style: none;
  margin-bottom: 30px;
  flex: 1;
}

.package-card li {
  position: relative;
  font-size: 13px;
  color: #222;
  padding-left: 24px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.package-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #82c118;
  font-weight: 900;
}

.package-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #8149c8;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 400;
  transition: 0.3s ease;
}

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

.featured-package {
  background: #8149c8;
  color: #fff;
  transform: translateY(-22px);
}

.featured-package:hover {
  transform: translateY(-30px);
}

.featured-package h3,
.featured-package .package-price,
.featured-package li {
  color: #fff;
}

.featured-package .package-desc,
.featured-package .package-price span {
  color: rgba(255, 255, 255, 0.78);
}

.featured-package .package-icon {
  background: var(--purple);
}

.featured-package .package-btn {
  background: white;
  color: #050505;
}

.featured-package .package-btn:hover {
  background: var(--green);
  color: white;
}

.popular-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #fff;
  color: var(--purple);
  border-radius: 30px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .featured-package {
    transform: none;
  }

  .featured-package:hover {
    transform: translateY(-8px);
  }

  .package-card {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .packages {
    padding-top: 80px;
  }

  .packages-head h2 {
    font-size: 31px;
      text-align: left;

  }

  .package-card {
    padding: 28px 22px;
  }

  .package-price {
    font-size: 36px;
  }
}

/* ///////////// packges csss end //////////////// */
.projects {
  position: relative;
  padding-top: 95px;
  padding-bottom: 70px;
  overflow: hidden;
}

.projects .wrapper {
  position: relative;
  z-index: 2;
}

.center-title {
  text-align: center;
  margin-bottom: 65px;
}

.projects-title,
.projects .center-title h2 {
  font-family: "ChunkFive", "Archivo Black", Impact, sans-serif;
  font-size: clamp(42px, 5.6vw, 55px);
  line-height: 1.22;
  letter-spacing: 2px;
  color: #000;
  text-transform: uppercase;
  margin: 0 auto;
  text-align: center;
  font-weight: 800;
}

.projects-title .orange,
.projects .center-title h2 .orange {
  display: inline-block;
  background: #ff6b00;
  color: #fff;
  padding: 0 14px 6px;
  line-height: 1;
}

.project-box {
  background: #e7d8ff;
  border-radius: 34px;
  padding: 70px 38px 80px;
  overflow: hidden;
}

.project-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 58px;
}

.project-tab {
  border: 0;
  background: var(--purple);
  color: #fff;
  padding: 14px 30px;
  border-radius: 40px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.project-tab:hover,
.project-tab.active {
  background: #6f35c4;
  transform: translateY(-2px);
}

.project-slider {
  display: none;
  position: relative;
}

.project-slider.active {
  display: block;
}

.project-window {
  overflow: hidden;
  width: 100%;
}

.project-track {
  display: flex;
  gap: 34px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.project-card {
  flex: 0 0 calc((100% - 34px) / 2);
  height: 350px;
  background: #f3eaff;
  border: 9px solid #f3eaff;
  border-radius: 18px;
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background:var(--purple);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  z-index: 5;
  transition: 0.3s ease;
}

.project-arrow:hover {
  background: var(--purple-dark);
}

.project-prev {
  left: -18px;
}

.project-next {
  right: -18px;
}

@media (max-width: 900px) {
  .projects {
    padding-top: 75px;
  }

  .center-title {
    margin-bottom: 45px;
  }

  .project-box {
    padding: 55px 24px 65px;
  }

  .project-card {
    height: 300px;
  }
}

@media (max-width: 650px) {
  .projects-title,
  .projects .center-title h2 {
    font-size: 34px;
    line-height: 1.25;
    letter-spacing: 1px;
  }

  .projects-title .orange,
  .projects .center-title h2 .orange {
    padding: 0 8px 4px;
  }

  .project-card {
    flex: 0 0 100%;
    height: 260px;
  }

  .project-track {
    gap: 18px;
  }

  .project-tabs {
    margin-bottom: 38px;
  }

  .project-tab {
    padding: 11px 18px;
    font-size: 12px;
  }

  .project-prev {
    left: -8px;
  }

  .project-next {
    right: -8px;
  }
}

@media (max-width: 520px) {
  .projects-title,
  .projects .center-title h2 {
    font-size: 27px;
    line-height: 1.28;
    letter-spacing: 0.5px;
        text-align: left;

  }

  .projects-title .orange,
  .projects .center-title h2 .orange {
    padding: 0 6px 3px;
  }

  .project-box {
    padding: 40px 16px 50px;
    border-radius: 24px;
  }
}


.reviews {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
  background: #fff;
}

.review-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.review-head h2 {
  font-family: "ChunkFive", "Archivo Black", Impact, sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.18;
  color: #000;
  margin: 0;
}

.review-head .purple {
  display: inline-block;
  background: #8b4bd8;
  color: #fff;
  padding: 0 13px 3px;
}

.review-sub {
  font-size: 16px;
  font-weight: 600;
  color: #565656;
  margin: 24px 0 90px;
}

.arrows {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.arrows button {
  border: 0;
  background: transparent;
  color: #8b4bd8;
  width: 22px;
  height: 22px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.arrows button:last-child {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #8b4bd8;
  color: #fff;
  font-size: 22px;
}

.review-slider {
  overflow: visible;
  width: 100%;
}

.review-track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 54px) / 4);
  min-height: 198px;
  border: 1px solid #eee9fb;
  border-radius: 18px;
  padding: 28px 26px 24px;
  background: #fff;
  box-shadow: 0 22px 45px rgba(110, 81, 158, 0.08);
}

.review-card img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card h3 {
  font-family: "ChunkFive", "Archivo Black", Impact, sans-serif;
  font-size: 21px;
  margin: 28px 0 12px;
  color: #000;
  font-weight: 500;
}

.review-card p {
  font-size: 15px;
  line-height: 1.55;
  color: #6b6b6b;
  margin: 0 0 16px;
  max-width: 190px;
}

.stars {
  color: #ff9f00;
  letter-spacing: 3px;
  font-size: 16px;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 55px;
  margin-top: 45px;
}

.review-dots {
  display: flex;
  gap: 9px;
}

.review-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: #eadfcb;
  padding: 0;
  cursor: pointer;
}

.review-dots button.active {
  background: #8b4bd8;
}

.review-line {
  flex: 1;
  height: 1px;
  background: #eee;
}

.review-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.review-left-blob {
  width: 150px;
  height: 145px;
  background: #e3f5cf;
  border-radius: 0 70% 70% 0;
  left: 0;
  top: 165px;
}

.review-right-ring {
  width: 145px;
  height: 205px;
  border: 18px solid #c3a5f4;
  border-right: 0;
  border-radius: 120px 0 0 120px;
  right: -55px;
  top: 175px;
}

.reviews .wrapper {
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .review-card {
    flex-basis: calc((100% - 36px) / 3);
  }
}

@media (max-width: 768px) {
  .review-head {
    gap: 25px;
  }

  .review-sub {
    margin-bottom: 50px;
  }

  .review-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 520px) {
  .review-head {
    flex-direction: column;
  }

  .review-card {
    flex-basis: 85%;
  }

  .review-footer {
    gap: 25px;
  }
}

.cta {
  /* width: 90%;   */
  margin-top: 95px;
  min-height: 285px;
  border-radius: 11px;
  background: linear-gradient(135deg, #a458ff 0%, #7615ff 48%, #982fff 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  padding: 54px 30px;
}
.cta h2 {
  font-size: clamp(30px, 4.5vw, 54px);
  color: #fff;
}
.cta p {
  width: min(620px, 90%);
  margin: 18px auto 22px;
  font-size: 13px;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.9;
}
.shape.one {
  width: 150px;
  height: 150px;
  background: #b2ff5c;
  right: -45px;
  top: -38px;
}
.shape.two {
  width: 128px;
  height: 128px;
  background: #ff8b40;
  left: -48px;
  bottom: -54px;
}
.shape.three {
  width: 100px;
  height: 100px;
  background: #b76fff;
  right: 40px;
  bottom: -45px;
}

.footer-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.footer {
  padding: 90px 0 35px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.25fr;
  /* gap: 55px; */
  position: relative;
  z-index: 2;
}

.footer h3 {
  font-family: "ChunkFive", "Archivo Black", Impact, sans-serif;
  font-size: 28px;
  margin-bottom: 22px;
  color: #000;
}

.footer h4 {
  font-family: "ChunkFive", "Archivo Black", Impact, sans-serif;
  font-size: 18px;
  margin-bottom: 26px;
  color: #000;
  font-weight: 400;
}

.footer p,
.footer a {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  line-height: 1.9;
  font-weight: 400;
}

.footer a {
  margin-bottom: 13px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-item p {
  margin: 0;
  line-height: 1.55;
}

.contact-item p b {
  display: inline-block;
  margin-bottom: 2px;
  font-weight: 700;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid #111;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  color: #111;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: #111;
}

@media (max-width: 520px) {
  .contact-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .contact-icon svg {
    width: 16px;
    height: 16px;
  }
}

.footer-bottom {
  grid-column: 1 / 5;
  border-top: 1px solid #eee;
  padding-top: 25px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-policy-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-policy-links a,
.footer-policy-links span {
  font-size: 13px;
  color: #111;
  text-decoration: none;
  line-height: 1;
  margin: 0;
  font-weight: 400;
}

.footer-policy-links a:hover {
  color: var(--purple);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  margin: 0;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: var(--purple);
  border-color: var(--purple);
  transform: translateY(-2px);
}

.social-icons svg {
  width: 16px;
  height: 16px;
  fill: #000;
  transition: 0.3s ease;
}

.social-icons a:hover svg {
  fill: #fff;
}

@media (max-width: 600px) {
  .footer-bottom {
    grid-column: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-policy-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  .footer-bottom {
    grid-column: 1 / 3;
  }
}



@media (max-width: 900px) {
  .footer {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

 
}

@media (max-width: 600px) {
  .footer {
    grid-template-columns: 1fr;
    padding: 65px 20px 30px;
  }

 

  .footer-left-ring {
    left: -115px;
  }

  .footer-right-blob {
    right: -120px;
  }
}

@media (max-width: 820px) {
  .wrapper {
    width: min(92vw, 640px);
  }
  .navbar {
    height: auto;
    padding: 18px 0;
    gap: 16px;
    flex-wrap: wrap;
  }
  .menu {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
  }
  .nav-btn {
    padding: 10px 16px;
  }
  .hero-stage {
    height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-card {
    height: 150px;
    /* display: none; */
  }
  .hero-center {
    height: 300px;
  }
  .orange-tag {
    left: 8px;
  }
  .green-tag {
    right: 8px;
  }
  .section-title-row,
  .why,
  .support {
    display: block;
  }

  .support-title {
    font-size: 28px !important;
  }

 

  .service-grid,
  .review-row {
    grid-template-columns: 1fr;
  }
  .section-title-row h2 {
    margin-bottom: 20px;
  }
  .photo-wrap {
    margin-bottom: 35px;
  }
  .support-copy {
    padding-bottom: 25px;
  }
  .support-img {
    margin: 20px auto;
    max-width: 320px;
  }
  .process-row {
    grid-column: auto;
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
  }
  .book-row {
    gap: 25px;
    flex-wrap: wrap;
  }
  .book-row img,
  .featured-book {
    height: 205px !important;
  }
  .footer {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    grid-column: 1/3;
  }
  /* .wide-gap {
    padding-top: 90px;
  } */
  .section-gap {
    padding-top: 70px;
  }
}
@media (max-width: 520px) {
  .hero h1 {
    font-size: 21px;
  }
  .why-copy h2,
  .support h2,
  .center-title h2,
  .review-head h2,
  .section-title-row h2 {
    font-size: 31px;
  }
  .process-row,
  .mini-columns,
  .footer {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    grid-column: 1;
    display: block;
  }
  .review-head {
    display: block;
  }
  .arrows {
    margin-top: 18px;
  }
  .cta h2 {
    font-size: 25px;
  }
  .service-card {
    padding: 20px;
  }
  .page-decor {
    display: none;
  }
}

/* //////////////// privacy policy  csss /////////////// */



.inner-header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.policy-hero {
  text-align: center;
  padding: 95px 0 55px;
}

.policy-hero h1 {
  font-family: "ChunkFive", "Archivo Black", Impact, sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.15;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.policy-hero p {
  font-size: 14px;
  font-weight: 600;
  color: #555;
}

.policy-content {
  padding-bottom: 90px;
}

.policy-box {
  background: #f0e8ff;
  border-radius: 28px;
  padding: 55px 60px;
}

.policy-box h2 {
  font-family: "ChunkFive", "Archivo Black", Impact, sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #000;
  margin: 35px 0 12px;
}

.policy-box h2:first-child {
  margin-top: 0;
}

.policy-box p {
  font-size: 14px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 12px;
}

  .policy-list {
  margin: 12px 0 25px 22px;
  padding: 0;
}

.policy-list li {
  font-size: 14px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 8px;
}


.simple-footer {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 28px 0;
}

.simple-footer .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.simple-footer p {
  font-size: 13px;
  color: #333;
}

.simple-footer a {
  color: #111;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  margin-left: 18px;
}

.simple-footer a:hover {
  color: var(--purple);
}

@media (max-width: 768px) {
  .policy-hero {
    padding: 70px 0 40px;
  }

  .policy-box {
    padding: 35px 24px;
  }

  .policy-box h2 {
    font-size: 22px;
  }

  .simple-footer .wrapper {
    flex-direction: column;
    text-align: center;
  }

  .simple-footer a {
    margin: 0 8px;
  }
}

@media (max-width: 520px) {
  .policy-hero h1 {
    font-size: 34px;
  }

  .policy-box p {
    font-size: 13px;
  }
}









/* ////////////////////form css///////// */


.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  width: min(620px, 100%);
  background: #fff;
  border-radius: 28px;
  padding: 42px;
  position: relative;
  transform: translateY(25px) scale(0.96);
  transition: 0.35s ease;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.popup-overlay.show .popup-box {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f0e8ff;
  color: #111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s ease;
}

.popup-close:hover {
  background: var(--purple);
  color: #fff;
}

.popup-head {
  text-align: center;
  margin-bottom: 28px;
}

.popup-head .small-label {
  display: inline-block;
  background: #f0e8ff;
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.popup-head h2 {
  font-family: "ChunkFive", "Archivo Black", Impact, sans-serif;
  font-size: 42px;
  line-height: 1.1;
  color: #000;
  margin: 0 0 12px;
  font-weight: 400;
}

.popup-head p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.popup-form input,
.popup-form select,
.popup-form textarea {
  width: 100%;
  border: 1px solid #e1d8ee;
  background: #faf7ff;
  border-radius: 14px;
  padding: 15px 16px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 13px;
  color: #111;
  outline: none;
  transition: 0.3s ease;
}

.popup-form textarea {
  height: 130px;
  resize: none;
}

.popup-form input:focus,
.popup-form select:focus,
.popup-form textarea:focus {
  border-color: var(--purple);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(129, 73, 200, 0.1);
}

.popup-submit {
  border: 0;
  background: var(--purple);
  color: #fff;
  border-radius: 40px;
  padding: 15px 28px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.popup-submit:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

body.popup-active {
  overflow: hidden;
}

@media (max-width: 600px) {
  .popup-box {
    padding: 34px 22px;
    border-radius: 22px;
  }

  .popup-head h2 {
    font-size: 27px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .popup-form input,
  .popup-form select,
  .popup-form textarea {
    padding: 14px;
  }
}






.quote-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 35px;
}

.custom-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 15px 38px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
  /* box-shadow: 0 12px 25px rgba(129, 73, 200, 0.25); */
}

.custom-quote-btn:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-3px);
  /* box-shadow: 0 16px 30px rgba(130, 193, 24, 0.28); */
}