/* === Default Setup === */

:root {
  /* Font Family */

  --plus-jakarta: "Plus Jakarta Sans", sans-serif;
  --poppins: "Poppins", sans-serif;
  --clash-display: "ClashDisplay";
  --circular-std: "Circular-Std";
  --Delicious-Handrawn: "Delicious Handrawn";

  /* Colors */

  --pure-black: #000000;
  --primary-black: #191a19;
  --main-pink: #d63484;
  --pure-white: #ffffff;
  --bg-color: #f1f1f1;
  --text-color-1: #2c313f;
  --text-color-2: #4b4b4b;
  --text-color-3: #d6d6d6;
  --text-color-4: #cecece;
  --border-color-1: #afafaf;
  --border-color-2: #bebebe;
  --border-color-3: #ededed;
  --border-color-4: #cccccc;
  --border-color-5: #404145;
  --border-color-6: #cccccc;
}

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

body {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--poppins);
  background-color: var(--bg-color);
}

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

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Loader */
#preloader {
  background-color: #000;
  width: 100%;
  height: 100vh;
  display: grid;
  place-items: center;
  position: fixed;
  z-index: 999;
}

.loader {
  width: 65px;
  aspect-ratio: 1;
  position: relative;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  border-radius: 50px;
  box-shadow: 0 0 0 3px inset #fff;
  animation: l5 2.5s infinite;
}

.loader:after {
  animation-delay: -1.25s;
  border-radius: 0;
}

@keyframes l5 {
  0% {
    inset: 0 35px 35px 0
  }

  12.5% {
    inset: 0 35px 0 0
  }

  25% {
    inset: 35px 35px 0 0
  }

  37.5% {
    inset: 35px 0 0 0
  }

  50% {
    inset: 35px 0 0 35px
  }

  62.5% {
    inset: 0 0 0 35px
  }

  75% {
    inset: 0 0 35px 35px
  }

  87.5% {
    inset: 0 0 35px 0
  }

  100% {
    inset: 0 35px 35px 0
  }
}

/* === Common Stuff === */

.container {
  max-width: 1250px;
  margin-inline: auto;
}

.common-cta button,
.common-cta a {
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 21px;
  min-width: 202px;
  height: 62px;
  border-radius: 31px;
  background-color: var(--main-pink);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--pure-white);
  text-transform: uppercase;
  padding: 6px 6px 6px 32px;
  overflow: hidden;
  position: relative;
}

.common-cta .arrow-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--pure-white);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
}

.common-cta button:hover .arrow-icon,
.common-cta a:hover .arrow-icon {
  rotate: 45deg;
}

.common-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.common-title .inner-title h2 {
  font-family: var(--clash-display);
  font-size: 80px;
  font-weight: 700;
  line-height: 98.4px;
  letter-spacing: 1px;
  color: var(--primary-black);
  position: relative;
}

.common-title .inner-title h2 span {
  width: 15px;
  height: 15px;
  background-color: var(--main-pink);
  display: inline-block;
}

.common-title .para p {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: var(--primary-black);
  opacity: 60%;
}

/* === Smooth Scroll === */

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* === Full Nav === */

.full-nav {
  width: 100%;
  height: 100vh;
  background-color: var(--primary-black);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
}

.full-nav .top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.full-nav .top-content h5 {
  font-size: 24px;
  font-weight: 400;
  line-height: 28.8px;
  letter-spacing: -0.01em;
  color: var(--text-color-4);
}

.full-nav .top-content .close-btn {
  display: flex;
  align-items: center;
  gap: 16px;
}

.full-nav .top-content .close-btn h6 {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: var(--pure-white);
}

.full-nav .top-content .close-btn button {
  background-color: transparent;
  border: none;
  outline: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border-color-5);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.full-nav .middle-content .nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.full-nav .middle-content .nav-list .nav-item a {
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: -0.02em;
  color: var(--pure-white);
}

.full-nav .bottom-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.full-nav .bottom-content .left-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.full-nav .bottom-content .left-content .contact-link {
  font-size: 24px;
  font-weight: 400;
  line-height: 28.8px;
  letter-spacing: -0.01em;
  color: var(--pure-white);
  text-decoration: underline;
}

.full-nav .bottom-content .right-content .social-list {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: column;
}

.full-nav .bottom-content .right-content .social-list .social-item a {
  font-size: 22px;
  font-weight: 400;
  line-height: 26.4px;
  letter-spacing: -0.01em;
  color: var(--pure-white);
}

/* === Navbar === */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-color);
  padding: 35px 0px 26px 0px;
  border-bottom: 1px solid #2c313f;
  max-width: 1380px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 998;
  transition: all 0.3s ease;
}

.header.active {
  padding: 15px 20px;
  max-width: 100%;
}

.header-left span {
  font-family: var(--circular-std);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.02em;
  color: var(--primary-black);
}

.header-center .logo img {
  max-width: 142px;
}

.header-right .hamburger {
  width: 63px;
  height: 44px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  cursor: pointer;
}

.header-right .hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--primary-black);
}

.header-right .hamburger span:nth-child(2) {
  width: 41px;
}

/* === Hero Sec === */

.hero-sec {
  padding-top: 200px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.hero-sec .main-heading .container {
  max-width: 1315px;
}

.hero-sec .main-heading .sub-title h5 {
  font-size: 22px;
  font-weight: 500;
  line-height: 33px;
  color: var(--primary-black);
  text-transform: uppercase;
}

.hero-sec .main-heading .title-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3.5px;
  margin-bottom: 5px;
}

.hero-sec .main-heading .title-1 .inner-title span {
  font-family: var(--clash-display);
  font-size: 90px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 1px;
  color: var(--primary-black);

}

.hero-sec .main-heading .title-1 .inner-title span p {
  display: inline;
  position: relative;
}

/* 
.hero-sec .main-heading .title-1 .inner-title span p::before {
  content: '';
  display: block;
  width: 18px;
  height: 13px;
  position: absolute;
  top: 18px;
  left: 2px;
  background-color: var(--main-pink);
} */

.hero-sec .main-heading .title-2 span {
  font-family: var(--clash-display);
  font-size: 90px;
  font-weight: 300;
  line-height: 100px;
  letter-spacing: 1px;
  color: var(--primary-black);
  text-transform: uppercase;
}

.hero-sec .main-heading .title-3 {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.hero-sec .main-heading .title-3 .inner-content {
  display: inline-flex;
  align-items: center;
}

.hero-sec .main-heading .title-3 .tagline {
  max-width: 450px;
  width: 100%;
  height: 101px;
  padding: 17px 45px 16px 53px;
  background-color: var(--primary-black);
  display: inline-flex;
  align-items: center;
}

.hero-sec .main-heading .title-3 .tagline p {
  font-family: var(--plus-jakarta);
  font-size: 22px;
  font-weight: 700;
  line-height: 34px;
  color: var(--pure-white);
  text-transform: uppercase;
}

.hero-sec .main-heading .title-3 .shape {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.hero-sec .main-heading .title-3 .shape .inner-shape {
  height: 101px;
  background-color: var(--main-pink);
}

.hero-sec .main-heading .title-3 .shape .inner-shape:nth-child(1) {
  width: 34px;
  margin-left: 8px;
}

.hero-sec .main-heading .title-3 .shape .inner-shape:nth-child(2) {
  width: 20px;
  margin-left: 5px;
}

.hero-sec .main-heading .title-3 .shape .inner-shape:nth-child(3) {
  width: 7px;
  margin-left: 8px;
}

.hero-sec .main-heading .title-3 .shape .inner-shape:nth-child(4) {
  width: 3px;
  margin-left: 10px;
}

.hero-sec .main-heading .title-3 .inner-title span {
  font-family: var(--clash-display);
  font-size: 90px;
  font-weight: 700;
  line-height: 100px;
  letter-spacing: 1px;
  color: var(--primary-black);
  text-transform: uppercase;
}

.hero-sec .hero-content .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #afafaf;
}

.hero-sec .hero-content .hero-content-left h4 {
  font-size: 22px;
  font-weight: 500;
  line-height: 33px;
  color: var(--primary-black);
  max-width: 234px;
  text-transform: uppercase;
}

.hero-sec .hero-content .hero-content-right p {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: var(--primary-black);
  max-width: 478px;
  opacity: 60%;
}

.hero-sec .main-heading .mobile-cta {
  display: none;
  margin-top: 70px;
}

/* === Project Sec === */
.project-sec .common-cta {
  position: relative;
}

.project-sec .price {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: -74px;
  left: -10px;
}

.project-sec .price img {
  width: 30px;
  height: 30px;
}

.project-sec .price span {
  width: fit-content;
  padding: 8px 9px;
  border-radius: 5px;
  background-color: rgba(219, 219, 219, 1);
  font-family: var(--Delicious-Handrawn);
  font-size: 18px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
  color: var(--pure-black);
  margin-bottom: 5px;
  rotate: 9.7deg;
}

.project-sec .common-title .para {
  display: none;
}

.project-sec .project-container {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding: 40px 0 56px 0;
  border-top: 1px solid var(--border-color-1);
  border-bottom: 1px solid var(--border-color-1);
}

.project-sec .project-container .project-left {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.project-sec .project-container .project-right {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 86px;
}

.project-sec .project-container .project-frame {
  max-width: 610px;
  height: auto;
}

.project-sec .project-container .project-frame a {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-sec .project-container .project-frame .image {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.project-sec .project-container .project-frame .hover-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: all .3s ease-in;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.project-sec .project-container .project-frame:hover .hover-content {
  opacity: 1;
}
.project-sec .project-container .project-frame .hover-content .hover-btn{
  padding: 11px 32px;
  border: 0.5px solid rgba(255, 255, 255, 1);
  background: rgba(0, 0, 0, 0.3);
  font-family: var(--poppins);
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  text-align: center;
  border-radius: 30px;
  color: var(--pure-white);
  backdrop-filter: blur(16px);
  text-transform: uppercase;
}
.project-sec .project-container .project-frame .hover-content .study-btn {
  padding: 11px 32px;
  border: 0.5px solid rgba(255, 255, 255, 1);
  background: rgba(0, 0, 0, 0.3);
  font-family: var(--poppins);
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  text-align: center;
  border-radius: 30px;
  color: var(--pure-white);
  backdrop-filter: blur(16px);
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.project-frame .hover-content .study-btn span {
  display: block;
  transition: transform .35s, opacity .35s, top .35s;
  transition-timing-function: cubic-bezier(.66, 0, .34, 1);
  pointer-events: none;
}

.project-frame .hover-content .study-btn span:nth-child(2) {
  position: absolute;
  top: 150%;
  left: 11%;
  opacity: 0;
}

.project-frame .hover-content .study-btn:hover span:nth-child(1) {
  transform: translate(0px, -140%);
  opacity: 0;
}

.project-frame .hover-content .study-btn:hover span:nth-child(2) {
  opacity: 1;
  top: 11px;
  transition-delay: 0.1s;
}

.project-frame .hover-content .arrow-icon {
  background-color: var(--main-pink);
  width: 50px;
  height: 50px;
  white-space: nowrap;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  position: relative;
}

.project-frame .hover-content .arrow-icon:hover {
  /* rotate: 45deg; */
}

.arrow-btn {
  background: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}

.tooltiptext {
  padding: 5px 7px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.3);
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(14px);
  font-family: var(--poppins);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
  color: var(--pure-white);
  position: absolute;
  z-index: 1;
  top: 60px;
  left: -25px;
  opacity: 0;
  transition: opacity .5s ease;
}

.project-frame .hover-content .arrow-icon:hover .tooltiptext {
  opacity: 1;
}

.project-sec .project-container .project-frame .content {
  display: flex;
  margin-top: 20px;
  flex-direction: column;
}

.project-sec .project-container .project-frame .content h3 {
  font-family: var(--clash-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 27.06px;
  letter-spacing: 1px;
  color: var(--pure-black);
  text-transform: uppercase;
}

.project-sec .project-container .project-frame .content h5 {
  font-family: var(--poppins);
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: var(--pure-black);
  text-transform: uppercase;
}

.project-sec .view-more-btn {
  padding-bottom: 60px;
  margin-top: -120px;
  position: relative;
  width: auto;
}

.project-sec .view-more-btn .price {
  display: flex;
  flex-direction: column;
  opacity: 0;
  top: -41px;
  left: 220px;
  transition: opacity .5s ease;
}

.project-sec .view-more-btn .price span {
  rotate: 17deg;
}

.project-sec .view-more-btn:hover .price {
  opacity: 1;
}

.project-sec .see-price-btn {
  text-align: center;
  display: none;
  margin-top: 12px;
}

.project-sec .see-price-btn a {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--main-pink);
  text-transform: uppercase;
  text-decoration: underline;
}



/* === Work Sec === */

.work-sec .container {
  padding-top: 120px;
  padding-bottom: 120px;
}

.work-sec .work-container {
  display: flex;
  justify-content: space-between;
}

.work-sec .work-container .work-frame:nth-child(1) {
  width: 366px;
}

.work-sec .work-container .work-frame:nth-child(2) {
  width: 726px;
}

.work-sec .work-container .work-frame hr {
  width: 120px;
  border: 1px solid var(--text-color-1);
}

.work-sec .work-container .work-frame .msg-1 {
  font-size: 22px;
  font-weight: 500;
  line-height: 33px;
  color: var(--text-color-1);
  margin-top: 30px;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.work-sec .work-container .work-frame .rating-star img {
  max-width: 176px;
}

.work-sec .work-container .work-frame .client-avatar {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 100px;
}

.work-sec .work-container .work-frame .client-avatar .frame {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: -20px;
}

.work-sec .work-container .work-frame .client-avatar .frame.more {
  background-color: rgba(44, 49, 63, 1);
  display: flex;
  align-items: center;
  border: 1px solid rgba(241, 241, 241, 1);
  justify-content: center;
}

.work-sec .work-container .work-frame .client-avatar .frame.more span {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
  color: rgba(255, 157, 0, 1);
}

.work-sec .work-container .work-frame .client-avatar .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-sec .work-container .work-frame .msg-2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  color: var(--text-color-1);
}

.work-sec .work-container .work-frame .highlight-text {
  display: flex;
  gap: 50px;
  margin-top: 30px;
}

.work-sec .work-container .work-frame .highlight-text .frame {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.work-sec .work-container .work-frame .highlight-text .frame h2 {
  font-size: 140px;
  font-weight: 500;
  line-height: 140px;
  letter-spacing: -5px;
  color: var(--text-color-1);
}

.work-sec .work-container .work-frame .highlight-text .frame span {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 1px;
  color: var(--text-color-1);
  text-transform: uppercase;
}

/* === Services Sec === */

.services-sec {
  background-color: var(--primary-black);
  padding: 80px 0px;
}

.services-sec .container {
  max-width: 1263px;
}

.services-sec .services-container {
  display: flex;
  gap: 104px;
  align-items: center;
}

.services-sec .services-container .services-frame:nth-child(1) {
  width: 613px;
}

.services-sec .services-container .services-frame:nth-child(2) {
  width: 626px;
}

.services-sec .services-container .services-frame .common-title .inner-title h2 {
  color: var(--pure-white);
}

.services-sec .services-container .services-frame .common-title .inner-title h2::before {
  top: -5px;
  left: 232px;
}

.services-sec .services-container .services-frame .common-title .para p {
  color: var(--pure-white);
  opacity: 60%;
}

.services-sec .services-container .services-frame .common-title {
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
}

.services-sec .services-container .services-frame .cus-tabs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.services-sec .services-container .services-frame .cus-tabs button {
  outline: none;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid var(--border-color-6);
  border-radius: 100px;
  max-width: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 30px;
  transition: all 0.3s ease;
}

.services-sec .services-container .services-frame .cus-tabs button .text {
  display: flex;
  align-items: center;
  gap: 18px;
}

.services-sec .services-container .services-frame .cus-tabs button .text span {
  font-family: var(--clash-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 24.6px;
  letter-spacing: 0.01em;
  color: var(--pure-white);
}

.services-sec .services-container .services-frame .cus-tabs button .text h4 {
  font-family: var(--clash-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 24.6px;
  letter-spacing: 0.01em;
  color: var(--pure-white);
}

.services-sec .services-container .services-frame .cus-tabs button .arrow-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--pure-white);
}

.services-sec .services-container .services-frame .cus-tabs button.active {
  background-color: var(--pure-white);
}

.services-sec .services-container .services-frame .cus-tabs button.active .text span {
  color: var(--primary-black);
}

.services-sec .services-container .services-frame .cus-tabs button.active .text h4 {
  color: var(--primary-black);
}

.services-sec .services-container .services-frame .cus-tabs button.active .arrow-icon {
  background-color: var(--primary-black);
}

.services-sec .services-container .services-frame .cus-tabs button.active .arrow-icon svg path {
  fill: var(--pure-white);
}

.services-sec .services-container .services-frame .swiper {
  width: 100%;
}

.services-sec .services-container .services-frame .card {
  display: flex;
  flex-direction: column;
  gap: 25.13px;
  user-select: none;
}

.services-sec .services-container .services-frame .card .card-image {
  border-radius: 10px;
  overflow: hidden;
}

.services-sec .services-container .services-frame .card .card-content ul {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 4px;
  row-gap: 8px;
  flex-wrap: wrap;
}

.services-sec .services-container .services-frame .card .card-content ul li {
  border-radius: 40px;
  border: 1px solid var(--border-color-4);
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: var(--pure-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* === Project Scroller Sec === */

.project-scroller-sec {
  padding-top: 120px;
}

.project-scroller-sec .swiper {
  width: 100%;
  pointer-events: none;
}

.project-scroller-sec .swiper-wrapper {
  transition-timing-function: linear !important;
}

.project-scroller-sec .swiper-slide {
  width: 400px;
  border-radius: 20px;
  overflow: hidden;
}

/* === Client Sec === */

.client-sec {
  padding-top: 120px;
  padding-bottom: 120px;
}

.client-sec .common-title .inner-title {
  max-width: 605px;
}

.client-sec .common-title .para {
  max-width: 466px;
}

.client-sec .common-title .para .common-cta {
  margin-top: 30px;
}

.client-sec .common-title .inner-title h2 {
  line-height: 75px;
}

.client-sec .common-title .inner-title h2::before {
  display: none;
}

.client-sec .common-title .inner-title h2 span {
  color: var(--main-pink);
}

.client-sec .scroller:nth-child(2) {
  margin-top: 60px;
  margin-bottom: 30px;
}

.client-sec .swiper {
  width: 100%;
  pointer-events: none;
}

.client-sec .swiper-wrapper {
  transition-timing-function: linear !important;
}

.client-sec .scroller .scroller-in .frame {
  width: 400px;
  height: auto;
  padding: 25px 20px;
  border-radius: 30px;
  background-color: var(--pure-white);
  display: flex;
  flex-direction: column;
  gap: 15px;
  user-select: none;
}

.client-sec .scroller .scroller-in .frame .top-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-sec .scroller .scroller-in .frame .top-content .image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.client-sec .scroller .scroller-in .frame .top-content .dets h5 {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--primary-black);
}

.client-sec .scroller .scroller-in .frame .top-content .dets h6 {
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
  color: var(--primary-black);
}

.client-sec .scroller .scroller-in .frame .bottom-content p {
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
  color: var(--primary-black);
  max-width: 357px;
}

.client-sec .common-cta-mobile {
  text-align: center;
  margin-top: 40px;
}

/* === Plan Sec === */

.plan-sec .common-title .inner-title {
  max-width: 605px;
}

.plan-sec .common-title .para {
  max-width: 556px;
}

.plan-sec .common-title .inner-title h2 {
  line-height: 75px;
}

.plan-sec .common-title .inner-title h2::before {
  display: none;
}

.plan-sec .common-title .inner-title h2 span {
  color: var(--main-pink);
}

.plan-sec .card-container {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 50px;
}

.plan-sec .card-container:nth-child(3) {
  display: none;
}

.plan-sec .card-container .card-frame {
  max-width: 402px;
  width: 100%;
  border-radius: 32px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color-3);
  background-color: var(--pure-white);
}

.plan-sec .card-container .card-frame:nth-child(3) ul {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color-3);
}

.plan-sec .card-container .card-frame .vector {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.plan-sec .card-container .card-frame h4 {
  font-family: var(--clash-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.01em;
  color: var(--primary-black);
  margin-top: 24px;
  margin-bottom: 4px;
}

.plan-sec .card-container .card-frame p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--text-color-2);
}

.plan-sec .card-container .card-frame .price {
  margin-top: 32px;
  margin-bottom: 40px;
}

.plan-sec .card-container .card-frame .price h3 {
  font-family: var(--clash-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 56px;
  color: var(--primary-black);
}

.plan-sec .card-container .card-frame .price span {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #191a19cc;
  text-transform: lowercase;
  margin-left: 8px;
}

.plan-sec .card-container .card-frame .start-btn {
  max-width: 322px;
  width: 100%;
  height: 44px;
  border-radius: 32px;
  border: 1px solid var(--border-color-4);
  box-shadow: 0px 0px 10px 2px #ffffff52 inset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--primary-black);
}

.plan-sec .card-container .card-frame .features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.plan-sec .card-container .card-frame .features h5 {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: var(--primary-black);
}

.plan-sec .card-container .card-frame .features ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-sec .card-container .card-frame .features ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--primary-black);
}

.plan-sec .card-container .highlight-frame {
  border-color: var(--main-pink);
  border-width: 3px;
  background-color: var(--primary-black);
}

.plan-sec .card-container .highlight-frame h4 {
  color: var(--pure-white);
}

.plan-sec .card-container .highlight-frame p {
  color: var(--text-color-3);
}

.plan-sec .card-container .highlight-frame .price h3 {
  color: var(--pure-white);
}

.plan-sec .card-container .highlight-frame .price span {
  color: var(--text-color-3);
}

.plan-sec .card-container .highlight-frame .start-btn {
  background-color: var(--main-pink);
  border-color: transparent;
  color: var(--pure-white);
}

.plan-sec .card-container .highlight-frame .features h5 {
  color: var(--pure-white);
}

.plan-sec .card-container .highlight-frame .features ul li {
  color: var(--text-color-3);
}

.plan-sec .swiper {
  width: 100%;
  padding-bottom: 50px;
}

.plan-sec .swiper-pagination-bullet {
  background-color: var(--main-pink);
}

.plan-sec .queries {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  margin-top: 120px;
}

.plan-sec .queries h4 {
  font-family: var(--clash-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 49.2px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.plan-sec .card-frame .add-ons {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color-3);
  margin-top: 20px;
}

.plan-sec .card-frame .add-ons h5 {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--primary-black);
}

.plan-sec .highlight-frame .add-ons h5 {
  color: var(--pure-white);
}

.plan-sec .card-frame .add-ons .tag {
  width: 62px;
  height: 26px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #402b3a;
}

.plan-sec .highlight-frame .add-ons .tag {
  background-color: #414141;
  color: var(--pure-white);
}

.plan-sec .card-frame .add-ons .switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
}

.plan-sec .card-frame .add-ons .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.plan-sec .card-frame .add-ons .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--pure-white);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.plan-sec .card-frame .add-ons .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 1px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: var(--main-pink);
}

.plan-sec .card-frame .add-ons input:checked+.slider {
  background-color: var(--main-pink);
}

.plan-sec .card-frame .add-ons input:checked+.slider::before {
  background-color: var(--pure-white);
}

.plan-sec .card-frame .add-ons input:focus+.slider {
  box-shadow: 0 0 0 5px #d9d9d966;
}

.plan-sec .card-frame .add-ons input:checked+.slider:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}

/* Rounded sliders */
.plan-sec .card-frame .add-ons .slider.round {
  border-radius: 34px;
  border: 1px solid var(--main-pink);
}

.plan-sec .card-frame .add-ons .slider.round:before {
  border-radius: 50%;
}

/* Popup-code */
.popup-container .popup-box {
  max-width: 776px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 30px;
  padding: 35px 36px;
}

.popup-box .subscription-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.subscription-top .close-img {
  cursor: pointer;
  width: 26px;
  height: 26px;
}

.popup-box .head h3 {
  font-family: var(--clash-display);
  letter-spacing: 1px;
  font-size: 32px;
  font-weight: 400;
  color: #191A19;
  line-height: 39px;
  margin-bottom: 4px;
}

.popup-box .head p {
  color: #191A19;
  font-family: var(--poppins);
  font-size: 16px;
  opacity: 80%;
}

.popup-box .plan {
  margin: 25px 0;
  padding: 24px;
  border-radius: 10px;
  background: #F1F1F1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.popup-box .plan .price {
  margin-bottom: 10px;
}

.popup-box .plan .price h3 {
  font-family: var(--clash-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 49px;
  color: var(--main-pink);
}

.popup-box .plan .price h3 span {
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  color: #191a19cc;
  text-transform: lowercase;
  letter-spacing: 1px;
}

.popup-box .plan h4 {
  font-family: var(--clash-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 24.6px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(25, 26, 25, 1);
}

.popup-box .plan p {
  line-height: 28px;
  font-weight: 400;
}

.popup-box form {
  padding-top: 25px;
  border-top: 1px solid #191A19;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popup-box .field-column {
  width: 100%;
  display: flex;
  gap: 15px;
}

.popup-box .field-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.popup-box .field-row input {
  border: 1px solid #CCCCCC;
  outline: none;
  padding: 18px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  font-family: var(--poppins);
  color: #7B7B7B;
  text-align: left;
}

.popup-box .field-row label {
  font-size: 16px;
  font-family: var(--poppins);
  font-weight: 400;
  line-height: 22px;
  color: #191A19;
}

.popup-box form .common-cta button {
  cursor: pointer;
  padding: 15px 4px 15px 32px;
  background-color: #DFDFDF;
  margin-top: 23px;
}

.popup-box form .common-cta button span {
  color: var(--pure-black);
}

.popup-box form .common-cta button .arrow-icon {
  background-color: var(--pure-black);
}

/* === Custom Sec === */

.custom-sec {
  width: 100%;
  padding: 30px 0 0 0;
}

.custom-sec .custom-inner {
  max-width: 1098px;
  margin: 0 auto;
  border-radius: 30px;
  background: linear-gradient(95.88deg, #D63484 -15.35%, #191A19 66.66%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 100px;
  position: relative;
  overflow: hidden;
}

.custom-sec .custom-inner::after {
  position: absolute;
  right: -141px;
  bottom: -41px;
  content: '';
  width: 236px;
  height: 236px;
  background-image: url(../images/1\ 1.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.custom-sec .custom-inner::before {
  position: absolute;
  left: -162px;
  bottom: -66px;
  content: '';
  width: 236px;
  height: 236px;
  background-image: url(../images/1\ 1.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.cs-left-content {
  width: 53%;
}

.cs-left-content h1 {
  color: var(--pure-white);
  font-family: var(--clash-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 49.2px;
  letter-spacing: 1px;
  text-align: left;
}

.cs-left-content p {
  font-family: var(--poppins);
  color: var(--pure-white);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: left;
}

.custom-sec .common-cta a {
  background-color: transparent;
  border: 1px solid var(--pure-white);
}

.custom-sec .common-cta .arrow-icon {
  background-color: var(--main-pink);
}

/* === Message Sec === */

.message-sec .container {
  padding-top: 120px;
  padding-bottom: 120px;
}

.message-sec .msg-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.message-sec .msg-container .msg-frame {
  background-color: var(--pure-white);
  border-radius: 30px;
  padding: 40px 53px;
}

.message-sec .msg-container .msg-frame .top-img {
  position: relative;
  left: -30px;
}

.message-sec .msg-container .msg-frame h4 {
  font-family: var(--clash-display);
  font-size: 30px;
  font-weight: 600;
  line-height: 36.9px;
  letter-spacing: 0.01em;
  color: var(--pure-black);
  margin-top: 22px;
  margin-bottom: 50px;
}

.message-sec .msg-container .msg-frame ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--pure-black);
  padding-top: 11px;
}

.message-sec .msg-container .msg-frame ul li h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--pure-black);
}

.message-sec .msg-container .msg-frame ul li span {
  display: none;
}

.message-sec .msg-container .msg-frame ul li:nth-child(1) {
  display: flex;
  align-items: center;
  gap: 5px;
}

.message-sec .msg-container .msg-frame ul li img {
  width: 30px;
  height: 30px;
}



.team-sec {
  width: 100%;
  padding-bottom: 120px;
}

.team-sec .common-title .inner-title {
  max-width: 605px;
}

.team-sec .common-title .inner-title h2 {
  line-height: 75px;
}

.team-sec .common-title .para {
  max-width: 556px;
}

.post-box {
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  padding: 24px;
  border-radius: 30px;
  margin-top: 40px;
}

.post-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.post-title img {
  width: 40px;
  height: 40px;
}

.post-title h3 {
  font-family: var(--clash-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 29.52px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.tm-required {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tm-required h4 {
  padding: 6px 10px;
  border-radius: 10px;
  background-color: rgba(241, 241, 241, 1);
  font-family: var(--poppins);
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(25, 26, 25, 1);
}

.post-box .pl-box {
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-box .pl-box span {
  padding: 6px 10px;
  border: 1px solid rgba(241, 241, 241, 1);
  display: flex;
  gap: 6px;
  align-items: center;
  border-radius: 10px;
  font-family: var(--poppins);
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(25, 26, 25, 1);
}

.post-box .pl-box span img {
  width: 12px;
  height: 12px;
  aspect-ratio: 1/1;
}

.post-box .pl-box span:nth-child(1) {
  border: 1px solid rgba(214, 52, 132, 1);
}

.post-main-content {
  padding: 20px;
  background-color: rgba(241, 241, 241, 1);
  border-radius: 10px;
  margin-bottom: 20px;
}

.post-main-content h3 {
  margin-top: 20px;
  font-family: var(--poppins);
  font-size: 12px;
  font-weight: 600;
  line-height: 16.8px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(25, 26, 25, 1);
}

.post-main-content .disc p {
  font-family: var(--poppins);
  font-size: 12px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(25, 26, 25, 1);
}

.post-main-content ul li {
  font-family: var(--poppins);
  font-size: 12px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(25, 26, 25, 1);
}

.team-sec .common-cta button,
.common-cta a {
  min-width: 209px;
  height: 58px;
}

.submit-popup {

  /* Hidden by default */


  margin: auto;
  max-width: 776px;
  padding: 35px 36px;
  background: rgba(255, 255, 255, 1);
  border-radius: 30px;

  height: fit-content;
  overflow: auto;
  z-index: 999999999999;
  position: relative;
}

.submit-popup form .field-column .field-row input:is(:focus),
.submit-popup form .field-column .field-row select:is(:focus) {
  border-color: #ff3464;
}

.modal-holder {
  display: none;
  position: fixed;

  pointer-events: all !important;
  left: 0;
  right: 0;
  z-index: 999999999999;

  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: auto;
  background-color: #ffffff83;
  backdrop-filter: blur(5px);
  padding: 15px;
}

.submit-popup {
  padding: 20px;
}

.error-message {
  color: #ff4444;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

input.error,
select.error {
  border-color: #ff4444 !important;
}

button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

::-webkit-scrollbar {
  width: 8px;
  background-color: rgba(241, 241, 241, 1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background-color: #d63484;
  border-radius: 4px;
}

::-webkit-scrollbar-track {
  background-color: rgba(241, 241, 241, 1);
  border-radius: 4px;
}

.modal-holder.active {
  animation: fadeIn 0.3s ease-in-out;
  pointer-events: all;
}

body:has(.modal-holder.active) {
  overflow: hidden !important;
  height: 100%;
}

.remove-file {
  opacity: 0;
  transition: 0.3s;
  background-color: white;
  border: transparent !important;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.remove-file:hover {
  opacity: 1;
}

#fileName {

  margin: 10px;
  font-size: 12px;
}

.preview-content {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  margin-top: 10px;
}

#previewImage {
  border-radius: 20px;
  object-fit: cover;

}

.select2-container--default .select2-selection--single {
  height: 45px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 45px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  padding: 8px;
  border: 1px solid #ccc;
}

.select2-results__option {
  padding: 8px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.sumb-top {
  display: flex;
  align-items: flex-start;
}

.sumb-top .head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sumb-top .head h1 {
  font-family: var(--clash-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 39.36px;
  letter-spacing: 1px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(25, 26, 25, 1);
}

.sumb-top .head p {
  font-family: var(--poppins);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(25, 26, 25, 1);
}

.sumb-top .close-icon {
  cursor: pointer;
  width: 26px;
  height: 26px;
}

.main-submit-box {
  width: 100%;
  padding: 24px;
  border-radius: 10px;
  background-color: rgba(241, 241, 241, 1);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 25px 0;
}

.main-submit-box .smb-left {
  width: calc(100% - 50px);
}

.main-submit-box .right-icon img {
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
}

.main-submit-box .smb-left h3 {
  font-family: var(--clash-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 24.6px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(25, 26, 25, 1);
}

.main-submit-box .smb-left .tm-required {
  margin: 10px 0;
}

.main-submit-box .smb-left .tm-required h4 {
  font-size: 12px;
  background-color: rgba(255, 255, 255, 1);
}

.main-submit-box .pl-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-submit-box .pl-box span {
  padding: 6px 10px;
  display: flex;
  gap: 6px;
  align-items: center;
  border-radius: 10px;
  font-family: var(--poppins);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgb(53, 61, 53);
  background-color: rgba(255, 255, 255, 1);
}

.main-submit-box .pl-box span:nth-child(1) {
  border: 1px solid var(--main-pink);
}

.submit-popup form {
  padding-top: 25px;
  border-top: 1px solid rgba(25, 26, 25, 0.6);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.submit-popup form .field-column {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.submit-popup form .field-column .field-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.submit-popup form .field-column .field-row label {
  font-family: var(--poppins);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(25, 26, 25, 1);
}

.submit-popup form .field-column .field-row input,
.submit-popup form .field-column .field-row select {
  color: rgba(123, 123, 123, 1);
  font-family: var(--poppins);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: 18px;
  border: 1px solid rgba(204, 204, 204, 1);
  border-radius: 8px;
}

.submit-popup form .field-column .field-row input:focus {
  outline: none;
}

.submit-popup form .field-column:nth-child(4) .field-row:nth-child(2) {
  max-width: 127px;
}

.submit-popup input.select-btn {
  padding: 18px !important;
  background: rgba(223, 223, 223, 1) !important;
  font-family: var(--poppins);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(0, 0, 0, 1) !important;
  cursor: pointer;
}


.submit-popup form .common-cta button {
  cursor: pointer;
  padding: 15px 4px 15px 32px;
  background-color: #DFDFDF;
  margin-top: 15px;
}

.submit-popup form .common-cta button span {
  color: var(--pure-black);
}

.submit-popup form .common-cta button .arrow-icon {
  background-color: var(--pure-black);
}


.file-upload-wrapper {
  position: relative;
  width: 100%;
  min-height: 120px;
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
  background: #fafafa;
  transition: all 0.3s ease;
}

.file-upload-wrapper:hover {
  border-color: #2196f3;
  background: #f5f5f5;
}

.file-upload-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
  text-align: center;
  gap: 8px;
}

.file-upload-text svg {
  color: #757575;
  margin-bottom: 8px;
}

.file-upload-text span {
  color: #424242;
  font-size: 14px;
}

.browse-btn {
  color: #2196f3;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.file-upload-text small {
  color: #757575;
  font-size: 12px;
}




/* === Footer === */

.footer {
  background-color: var(--primary-black);
}

.footer .container {
  padding-top: 80px;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.footer .top-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.footer .top-footer .left-content h3 {
  font-family: var(--clash-display);
  font-size: 136px;
  font-weight: 400;
  line-height: 136px;
  letter-spacing: 0.01em;
  color: var(--pure-white);
  margin-bottom: 32px;
}

.footer .top-footer .left-content h3 span {
  color: var(--main-pink);
}

.footer .top-footer .left-content p {
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: -0.01em;
  color: var(--pure-white);
  max-width: 620px;
}

.footer .top-footer .right-content .common-cta a {
  background-color: transparent;
  border: 1px solid var(--pure-white);
}

.footer .top-footer .right-content .common-cta .arrow-icon {
  background-color: var(--main-pink);
}

.footer hr {
  border: 1px solid var(--border-color-5);
}

.footer .bottom-footer {
  display: flex;
  justify-content: space-between;
}

.footer .bottom-footer .left-content {
  display: flex;
  gap: 112px;
}

.footer .bottom-footer .left-content .footer-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer .bottom-footer .left-content .footer-list .footer-item a {
  font-size: 24px;
  font-weight: 400;
  line-height: 28.8px;
  letter-spacing: -0.01em;
  color: var(--pure-white);
}

.footer .bottom-footer .right-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer .bottom-footer .right-content .social-list {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 64px;
}

.footer .bottom-footer .right-content .social-list .social-item a {
  font-size: 24px;
  font-weight: 400;
  line-height: 28.8px;
  letter-spacing: -0.01em;
  color: var(--pure-white);
}

.footer .bottom-footer .right-content .contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.footer .bottom-footer .right-content .contact-link {
  font-size: 24px;
  font-weight: 400;
  line-height: 28.8px;
  letter-spacing: -0.01em;
  color: var(--pure-white);
  text-decoration: underline;
}

/* === Fade Animtion Css === */

.masker {
  -webkit-mask-image: linear-gradient(90deg, #fff 33.33%, transparent 66.66%);
  mask-image: linear-gradient(90deg, #fff 33.33%, transparent 66.66%);
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
  -webkit-mask-size: 300% 100%;
  mask-size: 300% 100%;
  transition: mask-position var(--duration, 2s) ease var(--delay, 0s),
    -webkit-mask-position var(--duration, 2s) ease var(--delay, 0s);
}

/* Reveal animation - moves the mask to show the content */
.reveal {
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
}


.thank-you-sec {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 15px 80px 15px;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.check-icon {
  margin-bottom: 30px;
}

.thank-you-content h1 {
  font-family: var(--clash-display);
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--pure-black);
}

.thank-you-content p {
  font-family: var(--poppins);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(25, 26, 25, 0.8);
  margin-bottom: 40px;
}

.next-steps {
  background: rgba(241, 241, 241, 1);

  border-radius: 10px;
  margin-bottom: 20px;
  text-align: left;
}

.next-steps h3 {
  font-family: var(--poppins);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--pure-black);
}

.next-steps ul {
  list-style: none;
  padding: 0;
}

.next-steps ul li {
  font-family: var(--poppins);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(25, 26, 25, 0.8);
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
}

.next-steps ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--main-pink);
  border-radius: 50%;
}

.submit-popup form .field-column .field-row input,
.submit-popup form .field-column .field-row select {
  width: 100%;
}

@media (max-width: 768px) {
  .thank-you-content h1 {
    font-size: 36px;
  }

  .thank-you-content p {
    font-size: 14px;
  }
}





/* Parking Maniac */
/* About-sec */

.ex-title h5 {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
}
.in-title span{
  font-size: 120px !important;
  line-height: 88px !important;
}
.hero-sec .main-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 11.5px;
}

.hero-sec .main-content .main-lf-cntn {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-sec .main-content .main-lf-cntn h5 {
  font-family: var(--poppins);
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--primary-black);
  text-transform: uppercase;
}

.hero-sec .main-content .main-lf-cntn .des-holder {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-sec .main-content .main-lf-cntn .des-holder span {
  padding: 10px 12px;
  border-radius: 13px;
  border: 1px solid #DCDADA;
  font-family: var(--poppins);
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--primary-black);
  background-color: #FFFFFF4D;
}

.hero-sec .main-content .main-lf-cntn .tech-holder {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-sec .main-content .main-lf-cntn .tech-holder span{
  padding: 8px 12px;
  border-radius: 10px;
  font-family: var(--poppins);
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--primary-black);
  background-color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hero-sec .main-content .main-lf-cntn .tech-holder span img{
  width: 20px;
  height: 20px;
}
.hero-sec .main-content .main-lf-cntn .tech-holder span:nth-child(3) img{
  height: 17px;
}

  .about_PM-sec {
    width: 100%;
  }

  .about-web {
    padding-top: 120px;
    padding-bottom: 45px;
    border-top: 1px solid #AFAFAF;
  }

  .about-cntn {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
  }

  h3.sec-heading {
    font-family: var(--clash-display);
    font-size: 44px;
    font-weight: 600;
    line-height: 54.12px;
    letter-spacing: 1px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #191A19;
  }

  p.disc {
    font-family: var(--poppins);
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #191A1999;
  }

  p.disc span {
    font-weight: 600;
    color: #191A19;
  }

  .about-main-img {
    width: 100%;
    height: 688px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
  }

  .about-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
  }

  .about-main-img .image-cntn {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 10.32%, rgba(0, 0, 0, 0.7) 79.36%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 30px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 15px;
  }

  .about-main-img .image-cntn h4 {
    font-family: var(--clash-display);
    font-size: 24px;
    font-weight: 600;
    line-height: 29.52px;
    letter-spacing: 1px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
  }

  .about-main-img .image-cntn p {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFFCC;
  }

  .feature-cntn {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
    padding: 45px 0 60px 0;
  }


  .ft-heading {
    font-family: var(--clash-display);
    font-size: 24px;
    font-weight: 600;
    line-height: 29.52px;
    letter-spacing: 1px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #191A19;
    margin-bottom: 15px;
  }
.feature-detail{
  width: 50%;
}
  .feature-detail ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .feature-detail ul li {
    font-family: var(--poppins);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #191A1999;
    position: relative;
    padding-left: 20px;
  }

  .feature-detail ul li span {
    font-weight: 600;
    color: #191A19;
  }

  .feature-detail ul li::before {
    width: 5px;
    height: 5px;
    content: '';
    position: absolute;
    top: 9px;
    left: 3px;
    background-color: #000;
    border-radius: 50%;
  }

  .feature-img {
    width: 100%;
    max-width: 624px;
    height: 383px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
  }

  .feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
  }

  .feature-img .absolute-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000099;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .feature-img .absolute-img img {
    max-width: 154px;
    height: 53px;
  }

  .impact-sec {
    width: 100%;
    padding: 45px 0 65px 0;
  }

  .sol-cntn .imp-image {
    width: 100%;
    height: 602px;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    margin-top: 50px;
  }

  .sol-cntn .imp-image .imp-back-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
  }

  .imp-logo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000099;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .imp-logo-img img {
    max-width: 300px;
    height: 103px;
  }

  .theme-cntn {
    padding: 40px 0;
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
  }

  .left-th-img {
    width: 50%;
    max-width: 614px;
    height: 597px;
    overflow: hidden;
  }

  .left-th-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: 80px;
  }

  .right-th-cl {
    width: 50%;
  }

  .right-th-cl ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 22px;
  }

  .right-th-cl ul li {
    background-color: #2EABE3;
    width: 100%;
    max-width: 296px !important;
    height: 286px;
    border-radius: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .right-th-cl ul li span {
    font-family: var(--poppins);
    font-size: 40px;
    font-weight: 600;
    line-height: 60px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
  }

  .dashboard-img {
    width: 100%;
    height: 689px;
    border-radius: 20px;
    overflow: hidden;
  }

  .dashboard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
  }

  .experience-sec {
    width: 100%;
    padding: 65px 0 60px 0;
  }

  .highlight-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 23px;
  }

  .high-left-detail {
    width: 50%;
  }

  .high-left-detail ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .high-left-detail ul li {
    font-family: var(--poppins);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #191A1999;
    padding-left: 20px;
    position: relative;
  }

  .high-left-detail ul li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 3px;
    width: 5px;
    height: 5px;
    background-color: #191A1999;
    border-radius: 50%;
  }


  .high-left-detail img {
    width: 100%;
    max-width: 615px;
    height: 597px;
    border-radius: 80px;
    margin-top: 30px;
  }

  .high-right-img {
    width: 50%;
    max-width: 614px;
    height: 812px;
    overflow: hidden;
    border-radius: 80px;
  }

  .high-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
  }

  .result-sec {
    width: 100%;
    padding: 60px 0;
  }

  .re-bt-img {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
  }

  .re-bt-img .bt-left-img {
    width: 50%;
    max-width: 612px;
    height: 688px;
    overflow: hidden;
    border-radius: 20px;
  }

  .re-bt-img .bt-left-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
  }

  .re-bt-img .bt-right-img {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .re-bt-img .bt-right-img img {
    width: 100%;
    height: 330px;
  }

  .tech-sec {
    width: 100%;
    padding: 60px 0;
  }

  .tech-sec h3.sec-heading {
    text-align: center;
  }

  .tech-box-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
  }

  .tech-box-holder .tech-box {
    padding: 15px 23px;
    background-color: var(--pure-white);
    border-radius: 10px;
  }

  .tech-box-holder .tech-box img {
    width: 38px;
    height: 38px;
  }

  .tech-box-holder .tech-box:nth-child(3) img {
    width: 43px;
    height: 43px;
  }

  .tech-box-holder .tech-box:nth-child(4) img {
    width: 43px;
    height: 43px;
  }

  .consult-sec {
    width: 100%;
    padding: 60px 0 120px 0;
  }

  .consult-cntn {
    width: 100%;
    padding: 60px 98px 60px 97px;
    background-color: var(--pure-white);
    border-radius: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
  }

  .consult-cntn h4 {
    font-family: var(--clash-display);
    font-size: 34px;
    font-weight: 500;
    line-height: 41.82px;
    letter-spacing: 1px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--main-pink);
  }

  .consult-cntn h1 {
    font-family: var(--clash-display);
    font-size: 64px;
    font-weight: 300;
    line-height: 78.72px;
    letter-spacing: 1px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #191A19;
  }

  .consult-cntn p {
    font-family: var(--poppins);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #191A19;
    margin-bottom: 15px;
  }