@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

body {
  width: 100%;
  height: 100%;
  font-family: "Epilogue";
}

/* scrollbar */
.scrollbar-track-y {
  width: 10px !important;
  background-color: var(--bg-color-3) !important;
  z-index: 9 !important;
}

.scrollbar-thumb {
  background: var(--primary-color) !important;
  border-radius: 0 !important;
  width: 100% !important;
}

.bodrerb {
  border-bottom: 1px solid #fde15936;
  padding-bottom: 20px;
}

.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color-2);
  top: 0;
  left: 0;
  z-index: 10;
  display: grid;
  place-content: center;
}

.loader span {
  font-family: "Urbanist";
  font-size: 100px;
  text-transform: uppercase;
  color: var(--heading-color);
  font-weight: 900;
  display: block;
  position: relative;
  line-height: 1;
  text-align: center;
  background: linear-gradient(90deg,
      rgba(44, 195, 146, 1) 0%,
      rgba(44, 195, 146, 0) 100%);
  width: 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

#scroll-content {
  width: 100%;
  height: 100%;
}

.z-index-3 {
  z-index: 3;
}

header {
  width: 100%;
  min-height: 95vh;
  position: relative;
  padding: 10px 0;
  padding-top: 0;
}

.heroBG {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  overflow: hidden;

  z-index: 1;
}

.heroBG {
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.heroBG img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.starta-nav {
  width: 100%;
  padding: 35px 0;
  height: auto;
  position: relative;
  z-index: 5;
}

.transitionNav {
  transition: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.backToTop {
  width: 50px;
  height: 50px;
  font-size: 20px;
  display: grid;
  place-content: center;
  background: var(--primary-color);
  color: var(--heading-color);
  position: fixed;
  bottom: 50px;
  right: 50px;
  opacity: 0;
  border-radius: 50%;
  transform: translateY(100%);
  transition: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 5;
  cursor: pointer;
}

.sticky {
  background-color: var(--bg-color-3) !important;
  box-shadow: 0px 22px 65px 0px rgba(32, 28, 29, 0.14) !important;

  padding: 20px 0 !important;
  max-height: 90px !important;
}

.sticky .logo,
.sticky .starta-menu li a,
.sticky .starta-helpline article {
  color: var(--heading-color-3) !important;
  border-color: var(--heading-color-3);
}

.sticky .starta-helpline {
  border-color: var(--heading-color-3);
}

.logo {
  display: flex;
  align-items: center;
  height: auto;
  width: 150px;
  padding-right: 40px;
  position: relative;
  border-right: solid 2px var(--heading-color);

  font-size: 45px;
  color: var(--heading-color);
  font-weight: 900;
  line-height: 1;
}

.logo img {
  margin-right: 10px;
}

.logo span {
  color: var(--primary-color);
  display: inline-block;
}

.starta-menu {
  display: flex;
  flex: 1;
  padding: 0 60px;
  justify-content: start;
  gap: 35px;
  margin-bottom: 0;
}

.starta-menu li a {
  font-family: "Urbanist";
  color: var(--heading-color);
  font-weight: 500;
  text-decoration: none;
  font-size: 16px;
}

.starta-menu li a.active::before {
  width: 100%;
}

.menu-animation {
  position: relative;
}

.menu-animation::before {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 0;
  background-color: var(--primary-color);
  height: 2px;
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.menu-animation.hover::before {
  width: 100%;
  left: 0;
}

.starta-helpline {
  display: flex;
  align-items: end;
  gap: 8px;
  text-decoration: none;
  padding-left: 40px;
  border-left: solid 2px var(--heading-color);
}

.starta-helpline:hover i::after {
  top: 7px;
}

.starta-helpline i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: solid 3px var(--bg-color);
  background-color: var(--heading-color);
  box-shadow: 0px 7px 0px 0px rgba(44, 195, 146, 0.004);
  font-size: 18px;
  color: var(--bg-color);

  display: grid;
  place-content: center;
  position: relative;
  transform-style: preserve-3d;
}

.starta-helpline i::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--primary-color);
  transform: translateZ(-1px);
  transition: 0.25s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

.starta-helpline article {
  color: var(--heading-color);
  font-family: "Urbanist";
}

.starta-helpline article * {
  margin-bottom: 0;
  line-height: 1;
  margin-bottom: 5px;
}

.starta-helpline article h4 {
  font-weight: 900;
  font-size: 18px;
}

.starta-helpline article p {
  font-weight: 600;
  font-size: 20px;
}

/* mobile menu */
.starta-mobile-nav {
  display: none;
}

.menuIcon {
  border-radius: 50%;
  background-color: var(--bg-color-3);
  height: 60px;
  width: 60px;
  place-content: center;
  margin-left: 20px;
  cursor: pointer;
  position: absolute;
  top: 38px;
  right: 20px;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: none;
}

.menuIconSticky {
  background-color: var(--bg-color-3);
}

.menuIconSticky span {
  background-color: var(--bg-color);
}

.menuIcon span {
  background-color: var(--bg-color);
  width: 22px;
  height: 2px;
  display: block;
  margin: 0 auto;
  pointer-events: none;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(-5px);
}

.menuIcon span:nth-child(2) {
  transform: translateY(0px);
}

.menuIcon span:nth-child(3) {
  transform: translateY(5px);
}

.menuIcon:hover span:nth-child(1) {
  transform: translateY(-10px);
}

.menuIcon:hover span:nth-child(3) {
  transform: translateY(10px);
}

.menuIcon.close {
  background-color: var(--bg-color-3);
}

.menuIcon.close span:nth-child(1) {
  transform: rotate(-45deg);
}

.menuIcon.close span:nth-child(2) {
  opacity: 0;
  transform: translateX(-100%);
}

.menuIcon.close span:nth-child(3) {
  transform: rotate(45deg);
}

.close:hover span {
  transform: rotate(-45deg) translateY(0);
}

.close:hover span:nth-child(2) {
  transform: rotate(45deg) translateY(0);
}

/* Hero Trust Badges */
.hero-trust-badges-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-badge-top,
.hero-badge-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(44, 195, 146, 0.15);
  border: 1px solid rgba(44, 195, 146, 0.45);
  color: #fff;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.hero-trust-badge i {
  color: var(--primary-color);
}

.heroHeading {
  font-size: 65px;
  color: var(--heading-color);
  font-weight: 900;
  line-height: 1.1;
}

.heroDesc {
  font-size: 18px;
  font-family: "Urbanist";
  color: var(--text-color);
  font-weight: normal;
  width: 90%;
  line-height: 1.5;
  margin: 15px 0;
}

/* Hero Buttons Wrapper */
.hero-buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 50px;
}

.hero-btn-devis {
  margin-top: 0 !important;
}

.hero-btn-portfolio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 0 32px;
  border-radius: 30px;
  height: 50px;
  transition: 0.3s ease;
  white-space: nowrap;
}

.hero-btn-portfolio:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Hero Autoplay Video */
.hero-video-wrapper {
  width: 380px;
  border-radius: 24px;
  overflow: hidden;
  border-bottom: solid 7px var(--primary-color);
  position: relative;
}

.hero-autoplay-video {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block !important;
  border-radius: 22px;
}

.starta-button {
  background-color: var(--primary-color);
  border-radius: 30px;
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  border: 0;
  padding: 0 40px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.starta-button-hover {
  background-color: red;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  width: 0px;
  height: 0px;
  margin-left: 0px;
  margin-top: 0px;
  pointer-events: none;
}

.starta-button-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.starta-button span.position-relative,
.starta-button a.position-relative {
  z-index: 2;
}

.sideImg {
  border-radius: 10px;
  width: 100%;
  height: 400px !important;
  position: relative;
  border: solid 3px var(--bg-color);
  background-color: rgb(0, 0, 0);
  box-shadow: 0px 7px 0px 0px rgba(44, 195, 146, 0.004);
  transform-style: preserve-3d;
  display: grid;
  place-content: center;
  overflow: visible !important;
}

.sideImg::before {
  content: "";
  background-color: var(--primary-color);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 5px;
  border-radius: inherit;
  transform: translateZ(-1px);
  left: 0;
}

.sideImg img {
  overflow: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  opacity: 0.73;
  position: absolute;
  top: 0;
  left: 0;
}

.sideImg i {
  position: relative;
  /* z-index: 5; */
  font-size: 100px;
  cursor: pointer;
  color: var(--heading-color);
}

.shape {
  position: absolute;
}

.shapes {
  position: absolute;
  width: 100%;
  height: 80%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.shapes img {
  position: absolute;
}

.shapes img:nth-child(1) {
  bottom: 98%;
  left: 40%;
  transform: translateX(-50%);
}

.shapes img:nth-child(2) {
  left: 90%;
  top: 30%;
  transform: translateY(-50%);
}

.shapes img:nth-child(3) {
  top: 93%;
  left: 40%;
  transform: translateX(-50%);
}

/**/
/**/
/**/

.starta-icon {
  border-radius: 50%;
  background-color: var(--primary-color);
  width: 90px;
  height: 90px;
  display: grid;
  place-content: center;
  font-size: 55px;
  color: var(--bg-color);
}

.starta-h4 {
  font-size: 27px;
  font-weight: 900;
  color: var(--heading-color-4);
  margin-bottom: 15px;
  line-height: 1;
}

.starta-desc {
  font-size: 16px;
  font-family: "Urbanist";
  color: var(--text-color-2);
  line-height: 1.65;
  margin-bottom: 0;
}

.featureIcon {
  transition: 0.5s font-weight cubic-bezier(0.215, 0.61, 0.355, 1);
}

.featureSingle {
  cursor: default;
}

.featureSingle:hover .featureIcon {
  font-weight: 900;
}

.lineGap {
  background-color: rgb(248, 248, 248);
  border-radius: 4px;
  width: 100%;
  height: 10px;
}

.starta-block-img {
  width: 100%;
}

.starta-performance {
  margin-left: auto;
  width: 330px;
  margin-right: 45px;
  height: auto;
  border-radius: 10px;
  background-color: var(--heading-color);
  padding: 30px 25px;
  transform: translateY(-50%);
}

.performance-icon {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background-color: rgb(133, 226, 254);
  display: grid;
  place-content: center;
  font-size: 17px;
  color: var(--heading-color-3);
}

.starta-h4 i {
  color: rgb(0, 234, 12);
  font-size: 20px;
  margin-left: 2px;
}

.starta-h5 {
  font-size: 18px;
  font-weight: normal;
  color: var(--heading-color-3);
  display: flex;
  justify-content: space-between;
}

.bar {
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background-color: rgb(233, 233, 233);
}

.fill {
  background-color: var(--primary-color);
  width: 50%;
  height: 100%;
  border-radius: inherit;
}

.starta-heading {
  font-size: 20px;
  font-weight: bold;
  color: var(--heading-color-4);
  padding: 0 30px;
  height: 47px;
  width: max-content;
  border: 3px solid rgb(17, 17, 17);
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 7px 0px 0px rgba(31, 31, 31, 0.004);
  display: flex;
  align-items: center;
  border-radius: 27px;
  line-height: 1;
  margin-bottom: 0;
  margin-top: 20px;
  position: relative;
  transform-style: preserve-3d;
}

.starta-heading::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 7px;
  left: 0;
  border-radius: inherit;
  transform: translateZ(-1px);
  background-color: var(--bg-color-2);
}

.starta-heading i {
  font-size: 20px;
  margin-right: 10px;
  color: rgb(255, 180, 1);
}

.starta-h1,
.starta-h2 {
  font-weight: 900;
  font-size: 35px;
  color: var(--heading-color-3);
  line-height: 1.2;
  margin: 25px 0;
}

.starta-h2 {
  font-size: 40px;
}

.starta-desc a {
  font-weight: bold;
  text-decoration: underline;
  color: inherit;
}

.stars {
  width: max-content;
}

.stars i {
  margin-right: 3px;
  background-color: rgb(255, 180, 1);
  font-size: 20px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 10px;
}

.starta-h5.fw-bold {
  background-color: rgb(255, 245, 248);
  padding: 0 30px;
  height: 34px;
  border-radius: 17px;
  display: grid;
  place-content: center;
  width: max-content;
}

.starta-list li {
  font-weight: 900;
  font-size: 20px;
  color: var(--heading-color-4);
  margin-bottom: 30px;
}

.starta-list i {
  font-size: 16px;
  color: var(--primary-color);
  margin-right: 8px;
}

.featureslide {
  background-color: var(--bg-color-2);
  height: 100px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.featureslide marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slideInner {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 50px;
  width: 100%;
  height: 100%;
}

.slide {
  font-size: 50px;
  font-family: "Urbanist";
  font-weight: 800;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--heading-color);
  display: flex;
  gap: 50px;
  align-items: center;
  margin-bottom: 0;
  width: max-content;
}

.slide::after {
  content: "";
  display: inline-block;
  border: solid 2px rgb(4, 4, 4);
  background-color: rgb(95, 215, 255);
  width: 17px;
  transform: skew(320deg);
  margin-top: 10px;
  height: 18px;
}

.starta-servcies {
  width: 100%;
  height: auto;
  background-image: url("../../images/main/services/servicesBg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0 55px 0;
}

/* Services Badge & Title */
.services-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 26px;
  border: 2.5px solid #111111;
  border-radius: 50px;
  background-color: #ffffff;
  color: #111111;
  font-size: 15px;
  font-weight: 700;
  font-family: "Epilogue", sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  margin-bottom: 14px;
  letter-spacing: 0.2px;
}

.services-title {
  font-size: 52px;
  font-weight: 900;
  color: #111111;
  font-family: "Epilogue", sans-serif;
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: -0.8px;
  line-height: 1.15;
}

/* Services Video Slider */
.services-slider-wrapper {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 10px 0 20px 0;
}

.services-video-swiper {
  width: 100%;
  height: 450px;
  max-height: 450px;
  overflow: hidden;
  padding: 5px 0 15px 0;
}

.services-video-swiper .swiper-wrapper {
  height: 100%;
  align-items: center;
}

.services-video-swiper .swiper-slide {
  height: 430px;
  max-height: 430px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.service-video-card {
  width: 100%;
  height: 430px;
  max-height: 430px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background-color: #000000;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s cubic-bezier(0.215, 0.61, 0.355, 1), box-shadow 0.35s ease;
}

.service-video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 18px 40px rgba(0, 0, 0, 0.2);
}

.service-video-card video {
  width: 100%;
  height: 100%;
  max-height: 430px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  pointer-events: none;
}

/* Services Portfolio CTA Button */
.services-btn-portfolio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color, #20c997);
  color: #292828 !important;
  text-decoration: none !important;
  padding: 13px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-family: "Epilogue", sans-serif;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.14);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  letter-spacing: 0.2px;
  margin-top: 5px;
}

.services-btn-portfolio:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(32, 201, 151, 0.5);
  background-color: #88b51e;
  color: #ffffff !important;
}

/* ==========================================================================
   Starta Clients Scroll / Marquee Section
   ========================================================================== */
.starta-clients-section {
  width: 100%;
  padding: 45px 0 65px 0;
  background-color: #fbfcfd;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.clients-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 24px;
  border: 1px solid #111111;
  border-radius: 50px;
  background-color: #ffffff;
  color: #111111;
  font-size: 14px;
  font-weight: 700;
  font-family: "Epilogue", sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.clients-section-title {
  font-size: 27px;
  font-weight: 800;
  color: #111111;
  font-family: "Epilogue", sans-serif;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.clients-section-subtitle {
  font-size: 16px;
  color: #666666;
  font-family: "Epilogue", sans-serif;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Infinite Marquee Container */
.clients-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 30px 0 10px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-marquee-track {
  display: flex;
  width: max-content;
  user-select: none;
  animation: clientsInfiniteScroll 26s linear infinite;
}

.clients-marquee-wrapper:hover .clients-marquee-track {
  animation-play-state: paused;
}

.clients-marquee-group {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
  flex-shrink: 0;
}

.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 96px;
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid #ebeff3;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  padding: 18px 24px;
  transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
  cursor: pointer;
}

.client-logo-card img {
  max-width: 110px;
  max-height: 53px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* filter: grayscale(100%) opacity(0.65); */
  transition: all 0.35s ease;
}

.client-logo-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-color, #20c997);
  box-shadow: 0 12px 28px rgba(32, 201, 151, 0.16);
  background-color: #ffffff;
}

.client-logo-card:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.06);
}

@keyframes clientsInfiniteScroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.starta-block {
  border-radius: 20px;
  background-color: var(--heading-color);
  box-shadow: 0px 7px 95px 0px rgba(0, 0, 0, 0.07);
  transform: translateY(-145px);
  position: relative;
}

.starta-block .starta-h2 {
  width: 75%;
}

.starta-block .starta-desc {
  width: 80%;
}

.contact-line {
  position: absolute;
  bottom: -21px;
  left: 50%;
  transform: translateX(-50%);

  border-radius: 20px;
  background-color: var(--primary-color);
  width: 80%;
  margin: 0 auto;
  height: 42px;
  /* transform: translateY(-165px); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.contact-line a {
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
  color: inherit;
}

.video-block {
  border-radius: 20px;
  background-color: rgb(43, 44, 47);
  width: 100%;
  height: 555px !important;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;

  justify-content: center;
}

.video-block img {
  opacity: 0.46;
  position: absolute;
  top: 0;
  left: 0;
}

.playBtn {
  width: 140px;
  height: 140px;
  display: grid;
  place-content: center;
  background-color: transparent;
  position: relative;
  cursor: pointer;
}

.playBtn i {
  font-size: 20px;
  color: rgb(250, 100, 0);
}

#circle-text {
  position: absolute;
  top: -10%;
  left: 45%;
  width: auto;
  height: auto;
  font-size: 15px;
  transform: rotate(0deg);
  font-weight: 300;
  text-transform: uppercase;
  color: var(--heading-color);
}

.starta-plans .starta-h1 {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.plan {
  border: solid 1px var(--bg-color);
  border-radius: 20px;
  background-color: var(--bg-color-3);
  box-shadow: 0px 7px 0px 0px rgba(13, 22, 26, 0.004);
  height: auto;
  width: 100%;
  margin: 20px 0;
  padding: 57px;
  position: relative;
  transform-style: preserve-3d;
  min-height: 300px;
}

.plan::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--bg-color-2);
  position: absolute;
  transform: translateZ(-1px);
  top: 7px;
  left: 0;
  border-radius: inherit;
}

.plan .starta-icon {
  width: 100px;
  height: 100px;
  font-size: 50px;
}

.plan-heading .starta-h2 {
  font-size: 32px;
  margin: 0;
}

.plan-heading p {
  font-size: 19px !important;
  font-weight: 600;
}

.plan .starta-button {
  border: solid 1px #434445;
  background-color: var(--bg-color-3);
  box-shadow: 0px 7px 0px 0px rgba(13, 22, 26, 0.004);
  height: 55px;
  width: 100%;
  padding: 0;
  margin-top: 0;
  transform-style: preserve-3d;
  position: relative;
  overflow: visible;
}

.plan .starta-button::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--bg-color-2);
  position: absolute;
  transform: translateZ(-1px);
  top: 7px;
  left: 0;
  border-radius: inherit;
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.plan .starta-button:hover::before {
  top: 0;
}

.plan .starta-button a {
  font-size: 19px;
  color: rgb(13, 22, 26);
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.plan .starta-list {
  margin-top: 45px;
}

.plan .starta-list li {
  font-size: 15px;
  font-weight: 600;
  color: var(--bg-color-2);
}

.plan .starta-list li i {
  font-size: 16px;
  color: var(--bg-color-2);
}

.plan .starta-list li:last-child {
  margin-bottom: 0;
}

.discount {
  background-color: var(--bg-color);
  position: absolute;
  width: 80%;
  margin: 0 auto;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 17px;
  height: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  color: var(--heading-color);
  font-weight: 600;
}

/* Modern Plan Styles */
.plan-modern {
  border: 1px solid var(--primary-color);
  background-color: var(--heading-color);
  border-radius: 24px;
}

.plan-modern::before {
  display: none;
}

.best-plan {
  border: 2px solid var(--primary-color);
  background-color: rgb(20, 32, 37) !important;
}

.plan-badge-top {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: rgb(20, 32, 37);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.best-badge {
  background-color: var(--bg-color-2);
  color: var(--heading-color);
}

.plan-icon-top i {
  font-size: 40px;
  color: var(--bg-color-2);
}

.plan-title-modern {
  font-size: 28px;
  font-weight: 800;
  color: var(--bg-color-2);
  margin-bottom: 5px;
}

.best-plan .plan-title-modern {
  color: var(--heading-color);
}

.plan-subtitle-modern {
  font-size: 13px;
  font-weight: 700;
  color: #7b8893;
  letter-spacing: 1px;
}

.best-plan .plan-subtitle-modern {
  color: #aeb5bb;
}

.option-btn {
  background: transparent;
  border: 1px solid #d1d9e0;
  color: #4a5568;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.option-btn.active {
  background: var(--bg-color-2);
  color: var(--heading-color);
  border-color: var(--bg-color-2);
}

.option-btn:hover:not(.active) {
  border-color: var(--bg-color-2);
  color: var(--bg-color-2);
}

.best-plan .option-btn {
  border-color: #4a5568;
  color: #aeb5bb;
}

.best-plan .option-btn.active {
  background: var(--primary-color);
  color: var(--bg-color-2);
  border-color: var(--primary-color);
}

.best-plan .option-btn:hover:not(.active) {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.plan-price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  color: var(--bg-color-2);
}

.best-plan .plan-price-display {
  color: var(--heading-color);
}

.price-value {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.price-currency {
  font-size: 24px;
  font-weight: 800;
}

.price-tax {
  background: var(--bg-color-2);
  color: var(--heading-color);
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  position: relative;
  top: -15px;
}

.best-plan .price-tax {
  background: var(--primary-color);
}

.price-unit {
  font-size: 16px;
  color: #7b8893;
  font-weight: 500;
}

.best-plan .price-unit {
  color: #aeb5bb;
}

.plan-savings-display {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.savings-badge {
  background-color: var(--primary-color);
  color: var(--bg-color);
  border-radius: 20px;
  padding: 6px 16px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
}

.best-plan .savings-total {
  color: #aeb5bb !important;
}

.plan-divider {
  border-top: 1px solid #eaeef2;
  margin: 0;
  opacity: 1;
}

.best-plan .plan-divider {
  border-top-color: #2d3748;
}

.features-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--bg-color-2);
}

.best-plan .features-title {
  color: var(--heading-color);
}

.modern-list li {
  font-size: 15px;
  font-weight: 500;
  color: #4a5568 !important;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.best-plan .modern-list li {
  color: #e2e8f0 !important;
}

.modern-list li i {
  color: var(--bg-color-2) !important;
  font-size: 14px;
  margin-top: 3px;
}

.best-plan .modern-list li i {
  color: var(--primary-color) !important;
}

.best {
  background-color: rgb(20, 32, 37);
}

.best .starta-h2 {
  color: var(--heading-color);
}

.best .starta-desc {
  color: rgb(196, 196, 196);
  margin-bottom: 70px;
}

.best .starta-button {
  background-color: var(--primary-color);
  overflow: hidden;
  border: 0;
}

.best .starta-button a {
  color: var(--heading-color);
}

.best .starta-button::before {
  display: none;
}

.best .starta-list {
  margin-bottom: 45px;
}

.best .starta-list li {
  color: var(--heading-color);
}

.best .starta-list li i {
  color: var(--primary-color);
}

.best .discount {
  background-color: var(--primary-color);
}

.starta-progress {
  background-image: url("../../images/main/services/servicesBg.jpg");
  background-size: cover;
  min-height: 340px;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 100px;
}

.starta-progress .starta-h2 {
  font-size: 32px;
  margin: 0;
}

.progress-single {
  width: max-content;
  height: 100%;
  margin: 0 auto;
}

.progress-text {
  font-size: 75px;
  font-weight: 900;
  color: var(--text-color-3);
  line-height: 1;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.progress-single p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-color-3);
  margin-bottom: 0;
}

.progress-arrow {
  font-size: 16px;
  color: var(--text-color-3);
}

.progress-text.stroked {
  -webkit-text-stroke: 2px var(--text-color-3);
  -webkit-text-fill-color: transparent;
}

.member {
  background-color: rgba(255, 255, 255, 0);
  clip-path: inset(-100vw 0 0 0 round 50%);
  aspect-ratio: 1.5 / 1.5;
  position: relative;
  margin-bottom: 25px;
  margin-top: 70px;
}

.memberSingle:hover .member-social {
  transform: translateY(0);
  opacity: 1;
}

.member::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgb(236, 238, 255);
  position: absolute;
  top: 0;
  left: 0;
}

.member img {
  width: 115%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: visible;
  object-position: 0 -20px;
}

.member-name .starta-h4 {
  color: var(--heading-color-3);
  margin-bottom: 15px;
}

.member-name p {
  font-size: 16px;
  font-weight: normal;
  color: var(--heading-color-3);
}

.member-name {
  margin-bottom: 25px;
}

.member-social {
  display: flex;
  gap: 17px;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translateY(-50px);
  opacity: 0;
}

.member-social i {
  color: var(--bg-color-2);
  font-size: 24px;
  position: relative;
}

.member-social i::after {
  content: "";
  height: 2px;
  position: absolute;
  bottom: -10px;
  left: 0;
  background-color: var(--bg-color-2);
  margin: 0 auto;
  width: 0%;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.member-social i:hover::after {
  width: 60%;
}

.starta-about {
  width: 100%;
  position: relative;
  min-height: 500px;
}

.starta-about-bg {
  position: absolute;
  bottom: 0;
  top: auto;
  left: 0;
  width: 100%;
  height: 75%;
  z-index: 0;
}

.starta-about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.starta-about-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../../images/main/about/bgoverlay.png");
  width: 100%;
  opacity: 0.05;
  height: 100%;
}

.starta-about .video-block {
  height: 630px;
  position: relative;
}

.play-btn {
  position: relative;
  text-align: center;
}

.play-btn i {
  font-size: 100px;
  color: var(--heading-color);
  margin-bottom: 30px;
  cursor: pointer;
  position: relative;
  transform-style: preserve-3d;
}

.glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(-1px);
  width: 150%;
  height: 150%;
}

.glow::after,
.glow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(0.6);
  border: solid 5px var(--bg-color-3);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: scale(0.6);
  opacity: 1;
  box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75),
    0px 0px 25px 10px rgba(255, 255, 255, 0.75);
}

.play-btn .starta-desc,
.play-btn .starta-h2 {
  margin: 0 auto;
  color: var(--heading-color);
  text-align: center;
}

.video-block iframe,
.sideImg iframe,
.video-block video,
.sideImg video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  border-radius: inherit;
  display: none;
  z-index: 3;
}

.video-block .close,
.sideImg .close {
  font-size: 50px;
  color: var(--heading-color);
  position: absolute;
  bottom: 20px;
  left: 20px;
  cursor: pointer;
  z-index: 6;
}

.video-block .close,
.sideImg .close {
  display: none;
}

.starta-about .starta-h1 {
  color: var(--heading-color);
  margin: 10px 0 20px 0;
}

.starta-semi {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 800;
  margin-bottom: 0px;
}

.clients {
  border-radius: 70px;
  background-color: var(--primary-color);
  width: 670px;
  padding: 40px 50px;
  margin-top: 40px;
}

.client {
  border-radius: 30px;
  background-color: var(--bg-color-3);
  box-shadow: 0px 5px 65px 0px rgba(0, 0, 0, 0.03);
  aspect-ratio: 1 / 1;

  display: grid;
  place-content: center;
  margin-bottom: 20px;
}

.client img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.client-button {
  font-size: 18px;
  color: var(--heading-color);
  font-weight: 800;
  width: 100%;
  height: 50px;
  background-color: transparent;
  border: 0;
}

.starta-h3 {
  font-size: 33px;
  color: var(--heading-color);
  font-weight: 900;
  margin-bottom: 0;
}

.check {
  aspect-ratio: 1 /1;
  object-fit: cover;
}

.starta-about .starta-desc {
  color: var(--heading-color);
}

.starta-about .starta-list li {
  color: var(--heading-color);
}

.contact-box i {
  font-size: 24px;
  color: var(--heading-color);
  display: grid;
  place-content: center;
  aspect-ratio: 1 / 1;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.contact-box article {
  font-size: 19px;
  color: var(--heading-color-3);
  font-weight: normal;
}

.contact-box article a {
  font-weight: 900;
  text-decoration: underline;
  color: var(--heading-color-3);
}

.accordion {
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 50px;
}

.accordion::before {
  content: "";
  background-color: rgb(235, 241, 234);
  border-radius: 30px;
  width: 100%;
  height: calc(50% + 50px);
  position: absolute;
  bottom: 0;
  left: 0;
}

/* faqs */
.accordion-item {
  width: 90%;
  margin: 0 auto;
  border: 0;
  position: relative;
  background-color: transparent;
}

.accordion-header {
  padding: 12px 0;
  margin: 0;
}

.accordion-header button {
  width: 100%;
  background-color: var(--bg-color-3);
  height: 95px;
  border-radius: 48px;
  border: 0;
  background-color: rgb(235, 241, 234);
  font-size: 20px;
  font-weight: 700;
  padding: 0 65px;
  text-align: center;
  position: relative;
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.accordion-header button::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: inherit;
  color: inherit;
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(90deg);
}

button.collapsed {
  background-color: var(--bg-color-3) !important;
}

button.collapsed::after {
  transform: rotate(0deg) !important;
}

.accordion-body {
  padding: 50px 65px;
  margin: 12px 0;
  border: solid 1px var(--bg-color-2);
  border-radius: 56px;
  background-color: var(--bg-color-3);
}

.accordion-body .starta-block-img {
  border-radius: 20px;
  overflow: hidden;
  object-fit: cover;
}

.accordion-body .starta-h3 {
  color: var(--heading-color-3);
  margin-bottom: 15px;
  font-weight: 700;
}

.starta-testimonials {
  width: 100%;
  height: auto;
  background-image: url("../../images/main/services/servicesBg.jpg");
  background-size: cover;
  overflow: hidden;
}

.testimonialsSlides {
  width: 100%;
  height: 100%;
}

.testimonialsSlides .swiper-slide {
  width: 100%;
}

.testimonialSingle {
  width: 100%;
  height: auto;
  position: relative;
  transform-style: preserve-3d;
}

.testimonialSingle .starta-h2 {
  line-height: 1.5;
  font-weight: 800;
  width: 90%;
}

.testimonialSingle .qoute {
  width: 80px;
  vertical-align: top;
  object-fit: cover;
}

.testimonialSingle .testimonialClient {
  width: 130px;
  object-fit: cover;
}

.testimonialCircle {
  position: absolute;
  top: 0;
  left: 15%;
  transform: translateX(-20%) translateZ(-1px);
  background-color: var(--bg-color-3);
  border-radius: 50%;
}

/**/
/**/
/**/
/**/
/**/
.starta-stories .starta-h3 {
  color: var(--heading-color-3);
  text-decoration: none;
}

.instaFeed.swiper {
  width: 100%;
  height: 280px;
}

.instaFeed .swiper-material-wrapper {
  border-radius: 0 !important;
}

.instaFeed .swiper-slide-visible .swiper-material-wrapper {
  border-radius: 30px;
}

.instaFeed .swiper-slide img,
.instaFeed .swiper-slide video {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
}

.topSlide {
  padding-top: 20px;
}

.bottomSlide {
  padding-bottom: 20px;
}

.bottomSlide::after,
.topSlide::before {
  content: "";
  width: 100%;
  background-color: rgb(239, 239, 239);
  height: 7px;
  border-radius: 4px;

  position: absolute;
  left: 0;
}

.topSlide::before {
  top: 0;
}

.bottomSlide::after {
  bottom: 0;
}

.starta-footer {
  position: relative;
  background-color: #0b081e;
  background-image: url("../../images/hero/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding-top: 70px;
  padding-bottom: 35px;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.starta-footer .container {
  position: relative;
  z-index: 10 !important;
}

.footer-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none !important;
}

.footer-watermark {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Epilogue", sans-serif;
  font-size: clamp(140px, 24vw, 340px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: -6px;
  user-select: none;
  pointer-events: none !important;
  white-space: nowrap;
  z-index: 1;
  line-height: 1;
}

.footer-brand-logo {
  font-family: "Epilogue", sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: #ffffff !important;
  text-decoration: none;
  letter-spacing: -1.5px;
  display: inline-block;
  transition: 0.3s ease;
  opacity: 1 !important;
  position: relative;
  z-index: 12 !important;
}

.footer-brand-logo:hover {
  color: #ffffff !important;
  transform: scale(1.03);
}

.footer-brand-logo .dot {
  color: var(--primary-color, #5fd7ff) !important;
}

.footer-nav-menu {
  margin: 0 auto;
  position: relative;
  z-index: 12 !important;
}

.footer-nav-menu li a {
  font-family: "Urbanist", sans-serif;
  font-size: 17.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none;
  transition: 0.3s ease;
  padding: 6px 12px;
  display: inline-block;
  position: relative;
  z-index: 12 !important;
  cursor: pointer !important;
}

.footer-nav-menu li a:hover {
  color: #ffffff !important;
  transform: translateY(-1px);
}

.footer-contact-label {
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82) !important;
  position: relative;
  z-index: 12 !important;
}

.footer-social-icons {
  position: relative;
  z-index: 12 !important;
}

.footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
  font-size: 19px;
  transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 12 !important;
  cursor: pointer !important;
}

.footer-social-icons a:hover {
  background: #ffffff;
  color: #111111 !important;
  transform: translateY(-3px);
}

.footer-copyright-bar p {
  color: rgba(255, 255, 255, 0.65) !important;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  position: relative;
  z-index: 12 !important;
}

.footer-legal-links {
  position: relative;
  z-index: 12 !important;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.65) !important;
  text-decoration: none;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  transition: 0.3s ease;
  position: relative;
  z-index: 12 !important;
  cursor: pointer !important;
}

.footer-legal-links a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

margin-bottom: 0;
}

.footer-list li a {
  font-size: 16px;
  color: rgb(182, 189, 185);
  font-weight: bold;
  text-decoration: none;
}

.newsLetter {
  padding: 30px 35px;
  padding-bottom: 25px;
  border-radius: 28px;
  border: solid 3px var(--primary-color);
  box-shadow: 0px 7px 0px 0px rgba(44, 195, 146, 0.004);
  width: 100%;
  height: auto;
  position: relative;
  transform-style: preserve-3d;
  background-color: rgb(23, 23, 23);
}

.newsLetter::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  top: 7px;
  left: 0;
  background-color: var(--primary-color);
  transform: translateZ(-1px);
}

.newsLetter input[type="email"] {
  width: 100%;
  height: 40px;
  color: var(--heading-color);
  font-size: 15px;
  font-weight: normal;
  border: 0;
  border-bottom: solid 2px rgb(182, 189, 185);
  background-color: transparent;
}

.newsLetter input[type="email"]:focus {
  outline: none;
}

::placeholder {
  color: var(--heading-color);
  font-size: 15px;
  font-weight: normal;
}

.newsLetter .starta-button {
  width: 100%;
  margin-top: 30px;
}

.copyright {
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-family: "Urbanist";
  color: rgb(182, 189, 185);
  font-weight: bold;
}

/* Portfolio Load More Button */
.portfolio-load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #ffffff;
  border: 1px solid #111111;
  color: #111111;
  font-family: "Epilogue", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 40px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.portfolio-load-more-btn:hover {
  background-color: #111111;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.16);
}

.portfolio-load-more-btn i {
  transition: transform 0.5s ease;
}

.portfolio-load-more-btn:hover i {
  transform: rotate(180deg);
}

/* Video Category Tag */
.video-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(44, 195, 146, 0.85);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  z-index: 2;
  backdrop-filter: blur(5px);
  pointer-events: none;
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-video-card {
  position: relative;
  cursor: pointer;
}

/* Remove mask from video section */
.video-marquee-wrapper {
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

/* Video Popup Modal */
.video-popup {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}

.video-popup.active {
  display: flex;
}

.video-popup-content {
  position: relative;
  width: 90%;
  max-width: 450px;
  background: transparent;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.video-popup-content video {
  width: 100%;
  display: block;
  border-radius: 20px;
  max-height: 85vh;
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  z-index: 10;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  transition: transform 0.3s;
}

.close-popup:hover {
  transform: scale(1.1);
}

.type-toggle-btn {
  background: transparent;
  border: 1px solid #d1d9e0;
  color: #4a5568;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.type-toggle-btn.active {
  background: var(--primary-color);
  color: var(--heading-color-3);
  border-color: var(--primary-color);
}

.type-toggle-btn:hover:not(.active) {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float-btn:hover {
  background-color: #20b858;
  color: white;
  transform: scale(1.1);
}

.whatsapp-float-tooltip {
  position: absolute;
  left: 75px;
  background-color: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateX(-10px);
  pointer-events: none;
}

.whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent #333 transparent transparent;
}

.whatsapp-float-btn:hover .whatsapp-float-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}