@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --font-family: "Poppins", sans-serif;
  --primary-color: #db7669;
  --secondary-color: #aed6dc;
  --background-color: #fff5f4;
  --card-background: #ffe0dc;
  --text-color: #4a536b;
  --white: #ffffff;
  --yellow: #f8a401;
  /* shadow */
  --primary-shadow: #db76694f;
  --card-shadow: 0px 0px 8px 1px #db76694f;
  --card-shadow2: 0px 2px 4px 0px #002c3d4a;
  --dark-shadow: #00000040;

  /* fonts */
  --font80: clamp(42px, 6vw, 80px);
  --font60: clamp(34px, 5vw, 60px);
  --font50: clamp(30px, 4.5vw, 50px);
  --font48: clamp(28px, 4.2vw, 48px);
  --font40: clamp(24px, 3.6vw, 40px);
  --font38: clamp(23px, 3.4vw, 38px);
  --font36: clamp(22px, 3.2vw, 36px);
  --font34: clamp(21px, 3vw, 34px);
  --font32: clamp(20px, 2.8vw, 32px);
  --font28: clamp(18px, 2.4vw, 28px);
  --font30: clamp(19px, 2.6vw, 30px);
  --font25: clamp(17px, 2.2vw, 25px);
  --font24: clamp(16px, 2vw, 24px);
  --font20: clamp(14px, 1.7vw, 20px);
  --font18: clamp(13px, 1.5vw, 18px);
  --font16: clamp(12px, 1.3vw, 16px);
  --font14: clamp(11px, 1.1vw, 14px);
  --w900: 900;
  --w800: 800;
  --w700: 700;
  --w600: 600;
  --w500: 500;
  --w400: 400;
  --h200: 200%;
  --h25: 25px;
  --h130: 130%;
  --h125: 125%;
  --h122: 122%;
  --h100: 100%;
  --h36: clamp(24px, 2.5vw, 36px);
}

/* Typography */
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-family);
  color: var(--text-color);
  font-size: var(--font18);
  line-height: 28px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
  scroll-behavior: auto; /* default */
}
.scroll-section {
  will-change: transform, opacity;
}
[data-scroll-container] {
  min-height: 100vh;
}
* {
  font-family: var(--font-family);
  line-height: 28px;
}
a {
  text-decoration: none;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

/* Border Radius */
.r30 {
  border-radius: clamp(10px, 3vw, 30px);
}
.r40 {
  border-radius: clamp(14px, 4vw, 40px);
}

.r20 {
  border-radius: clamp(8px, 2vw, 20px);
}

.r60 {
  border-radius: clamp(20px, 5vw, 60px);
}

/* Perfect circle — keep as is */
.r50 {
  border-radius: 50%;
}

/* Spacing */
.mt50 {
  margin-top: clamp(20px, 5vw, 50px);
}

.mb50 {
  margin-bottom: clamp(20px, 5vw, 50px);
}

/* Container */
.container-fluid {
  padding: 0 100px;
}
/* Colors */
.primary-bg {
  background-color: var(--primary-color);
}
.primary-text {
  color: var(--primary-color) !important;
}
.secondary-bg {
  background-color: var(--secondary-color);
}
.secondary-text {
  color: var(--secondary-color);
}
.bg {
  background-color: var(--background-color);
}
.yellow-color {
  color: var(--yellow);
}
.text-color {
  color: var(--text-color);
}
/* buttons */
button {
  border: 0;
  background-color: transparent;
}
.btn-fill,
.btn-outline {
  position: relative;
  overflow: hidden;
  transition: 0.35s ease-in-out;
  cursor: pointer;
  padding: 13px 28px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: var(--font18);
}
.btn-fill {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}
.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 30px;
  background-color: transparent;
}
/* Hover Scale Effect */
.btn-fill:hover,
.btn-outline:hover {
  transform: translateY(0px) scale(1);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.12);
}

/* Shine Effect */
.btn-fill::before,
.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: 0.5s;
}

/* Shine Movement */
.btn-fill:hover::before,
.btn-outline:hover::before {
  left: 100%;
}

/* Color Transitions */
.btn-fill:hover {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Font Size */
.font80 {
  font-size: var(--font80);
}
.font60 {
  font-size: var(--font60);
}
.font50 {
  font-size: var(--font50);
}
.font48 {
  font-size: var(--font48);
}
.font40 {
  font-size: var(--font40);
}
.font38 {
  font-size: var(--font38);
}
.font36 {
  font-size: var(--font36);
  line-height: var(--h125);
}
.font34 {
  font-size: var(--font34);
}
.font32 {
  font-size: var(--font32);
}
.font30 {
  font-size: var(--font30);
}
.font28 {
  font-size: var(--font28);
}
.font25 {
  font-size: var(--font25);
}
.font24 {
  font-size: var(--font24);
}
.font20 {
  font-size: var(--font20);
}
.font18 {
  font-size: var(--font18);
}
.font16 {
  font-size: var(--font16);
}
.font14 {
  font-size: var(--font14);
}
/* Font Weight */
.w900 {
  font-weight: var(--w900);
}
.w800 {
  font-weight: var(--w800);
}
.w700 {
  font-weight: var(--w700);
}
.w600 {
  font-weight: var(--w600);
}
.w500 {
  font-weight: var(--w500);
}
.w400 {
  font-weight: var(--w400);
}
/* Line Height */
.h200 {
  line-height: var(--h200);
}
.h130 {
  line-height: var(--h130);
}
.h125 {
  line-height: var(--h125);
}
.h122 {
  line-height: var(--h122);
}
.h100 {
  line-height: var(--h100);
}
.h25 {
  line-height: var(--h25);
}
.h36 {
  line-height: clamp(24px, 2.5vw, 36px);
}
/* padding */
.py70 {
  padding-top: 70px;
  padding-bottom: 70px;
}
.py35 {
  padding-top: 35px;
  padding-bottom: 35px;
}
.pt35 {
  padding-top: 35px;
}
.pb35 {
  padding-bottom: 35px;
}
/* gap */
.gap20 {
  gap: 20px;
}
/* Header */
header {
  position: absolute;
  overflow: hidden;
  width: 100%;
  z-index: 10;
  transition: transform 0.4s ease;
  z-index: 100;
}

.header.header-show {
  position: fixed;
  transform: translateY(0);
  transition: transform 0.4s ease;
  top: 0;
}
.header.header-hide {
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.bg-body-tertiary {
  background-color: #ffffff1f !important;
  position: relative;
  overflow: hidden;
  z-index: 10;
  transition: transform 0.4s ease;
}

.header.header-show .bg-body-tertiary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  z-index: -1;
  transition: transform 0.4s ease;
}
.navbar-nav .menu-item .nav-link.active {
  color: var(--primary-color);
  position: relative;
}
.navbar-nav .menu-item .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 5px;
}

/* Fullscreen mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 20px;
  z-index: 9999;
  transition: all 0.4s ease;
}
.mobile-menu-overlay .btn-fill{
  width: max-content;
  font-size: var(--font28);
}

.mobile-menu-overlay.active {
  right: 0;
}

/* .mobile-menu-header .mobile-logo {
  width: 130px;
} */

.close-menu {
  font-size: 40px;
  background: none;
  border: none;
  line-height: 1;
}

.mobile-menu-list {
  list-style: none;
  padding-left: 0;
}

.mobile-menu-list li {
  margin-bottom: 25px;
}

.mobile-menu-list a {
  font-size: var(--font28);
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

/* Hide Bootstrap default menu on mobile */
@media (max-width: 991px) {
  #navbarTogglerDemo01 {
    display: none !important;
  }

  .mobile-menu-btn {
    border: none;
  }
}

/* Header */

/* Hero sectino */
.hero-section {
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  z-index: 1;
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 0;
}

.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  z-index: -1;
  opacity: 0.9;
}

.marquee-bar {
  width: 100%;
  background: #de7a6d; /* fixed bg */
  overflow: hidden;
}

/* .influencer-slider .swiper-wrapper {
  transition-timing-function: linear !important;
  will-change: transform;
  transform: translate3d(0,0,0);
}

.influencer-slider .swiper-slide {
  width: auto !important;
  backface-visibility: hidden;
}

 */

.influencer-slider {
  overflow: hidden;
  width: 100%;
  --items: 4; /* number of visible items */
  --gap: 20px;
}

.influencer-slider .swiper-wrapper {
  display: flex;
  gap: var(--gap);
  width: max-content;
  will-change: transform;
}

.influencer-slider .swiper-slide {
  flex: 0 0 calc((100vw - (var(--items) - 1) * var(--gap)) / var(--items));
}

.influencer-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.influencer-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

.influencer-item {
  flex: 0 0 auto;
}

.influencer-item img {
  display: block;
  max-width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  width: 100%;
  max-height: 450px;
  height: 100%;
}

/* Large laptops (≤ 1440px) */
@media (max-width: 1440px) {
  .influencer-item img {
    max-height: 300px;
  }
}

/* Laptops / small desktops (≤ 1200px) */
@media (max-width: 1200px) {
  .influencer-item img {
    max-height: 280px;
  }
}

/* Tablets (≤ 991px) */
@media (max-width: 991px) {
  .influencer-item img {
    max-height: 220px;
  }
}

/* Large mobiles (≤ 767px) */
@media (max-width: 767px) {
  .influencer-item img {
    max-height: 180px;
  }
}

/* Small mobiles (≤ 480px) */
@media (max-width: 480px) {
  .influencer-item img {
    max-height: 140px;
  }
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-track .marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 10px 15px;
}
.marquee-track span {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}
/* .marquee-bar:hover .marquee-track {
  animation-direction: reverse;
  animation-play-state: running;
} */

@keyframes marquee {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.client-marquee {
  width: 100%;
  overflow: hidden;
}

.client-row {
  overflow: hidden;
  padding: 10px 0;
  white-space:nowrap;
}

.client-track {
  display: flex;
  gap: 30px;
  width: max-content;
  flex-wrap: nowrap;
  will-change: transform;
}

/* 🔥 FIXED CARD */
.client-card {
  flex: 0 0 auto;              /* STOP SHRINK */
  width: 160px;                /* ONE width only */
  height: 100px;
  padding: 0 20px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-card img {
  height: 52px;
  width: 100%;
  max-width: none;
  object-fit: contain;
}

.client-row-1 .client-track {
  animation: marquee-ltr 40s linear infinite;
  will-change: transform;
}

.client-row-2 .client-track {
  animation: marquee-rtl 40s linear infinite;
  will-change: transform;
}

@keyframes marquee-rtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-ltr {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}



/* We Offer */
.offer-card {
  background-color: var(--card-background);
  box-shadow: var(--card-shadow2);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: var(--text-color);
  cursor: pointer;
}
.offer-card .card-img {
  max-height: 230px;
  min-height: 230px;
  height: 100%;
  overflow: hidden;
}
.offer-card .card-img img {
  object-fit: fill;
  object-position: top;
  height: 100%;
  width: 100%;
  transition: transform 0.5s ease;
}
.offer-card:hover .card-img img {
  transform: scale(1.05);
  transition: transform 0.5s ease;
}
.we-offer .left-block {
  width: 30% !important;
  position: relative;
}
.we-offer .left-block > div {
  z-index: 5;
  position: relative;
  border-radius: 30px 0 0 30px;
}
.we-offer .left-block::before,
.we-offer .left-block::after {
  content: "";
  position: absolute;
  background-color: #ff93c5;
  width: 150px;
  height: 200px;
  border-radius: 0 50% 0 0;
  top: -40%;
  left: 0;
}
.we-offer .left-block::after {
  left: auto;
  top: auto;
  right: 0px !important;
  bottom: -40%;
  background-color: #bc9cff;
  border-radius: 0 0 15px 50%;
}
.we-offer .right-block {
  width: 70% !important;
  margin-left: 0px !important;
  z-index: 10;
}
.case-studies {
  position: relative;
  padding: 70px 0;
}

.case-left {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.scroll-cards {
  position: relative;
  /* overflow: hidden;   */
}

.case-study-banners {
  position: relative;
}
.case-content-sticky {
  position: sticky;
  top: 0;
  padding-top: 6rem;
}

/* Why Choose Us */
.choose-us-card {
  position: sticky;
  background-color: #03001d;
  overflow: hidden;
  padding-left: 40px;
  top: 80px;
  z-index: 1;
}
.wy-choose-cards .choose-us-card:nth-child(2) {
  background-color: #f3b81a;
  position: relative;
  position: sticky;
  z-index: 2;
  padding: 20px 0;
  padding-left: 40px;
  top: 80px;
}
.wy-choose-cards .choose-us-card:nth-child(2)::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background-color: #d29903;
  height: 80px;
  width: 100%;
  z-index: -1;
}
.wy-choose-cards .choose-us-card:nth-child(3) {
  background-color: #2343b0;
  position: relative;
  position: sticky;
  padding: 20px 0;
  padding-left: 40px;
  z-index: 3;
  top: 80px;
}
.wy-choose-cards .choose-us-card:nth-child(3)::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background-color: #193184;
  height: 80px;
  width: 100%;
  z-index: -1;
}
.pawor-marketing {
  background-color: #e9fffd;
  background-image: url(../images/why-banner-bg.webp);
  background-repeat: no-repeat;
  padding-left: 40px;
}
.category-card {
  background-color: var(--card-background);
  box-shadow: var(--card-shadow2);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  height: 100%;
  text-align: center;
}
/* Testimonial */
.testimonial-wrapper {
  border: 1px solid var(--primary-color);
  border-radius: 60px;
  max-height: 1000px;
  overflow: hidden;
}
.testimonial-review,
.google-review {
  position: relative;
  padding: 0 25px;
}
.testimonial-review::after,
.google-review::after {
  position: absolute;
  left: 0;
  top: 150px;
  content: "";
  background: url(../images/gradient-border.png) no-repeat;
  width: 100%;
  height: 352px;
  z-index: 9999;
  background-size: contain;
}
.google-review::after {
  bottom: 150px;
  top: auto;
}
.testimonial-middle .swiper {
  height: 1000px;
  overflow: hidden;
}
.review-swiper .swiper-wrapper,
.google-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
/* .swiper-slide {
  height: auto !important;
} */

.testimonial-middle .swiper .swiper-slide {
  height: auto !important;
}

.review-swiper .swiper-wrapper,
.google-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.review-card {
  border: 1px solid var(--primary-color);
  border-radius: 30px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: #fff5f4;
  min-height: 280px;
}
.testimonial-left {
  padding-top: 100px;
}
.testimonial-right {
  height: fit-content;
  margin-top: auto;
  padding-bottom: 100px;
}
/* Contact */
.form-check-input {
  width: 37px;
  height: 37px;
  margin-top: 0;
  background: transparent;
  border: 2.5px solid var(--primary-color);
  border-radius: 6px;
}
.contact-details .icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.form-control {
  border: 1px solid var(--primary-color);
  height: 56px;
  display: flex;
  align-items: center;
}
.form-checkbox p .wpcf7-list-item {
  width: calc(50% - 20px);
  margin-left: 0;
}
.form-checkbox p .wpcf7-list-item label {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: var(--font16);
  font-weight: 400;
}
.form-checkbox p .wpcf7-list-item label input {
  width: 20px;
  height: 20px;
  margin-top: 0;
  background: transparent;
  border: 2.5px solid var(--primary-color);
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 5px;
}
.form-checkbox p .wpcf7-list-item label input:checked {
  accent-color: var(--primary-color);
}

.form-check-input:checked {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}
.form-check-input:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
/* Faq */
.accordion-item {
  border: 0;
  border-bottom: 1px solid var(--primary-color) !important;
  border-top: 1px solid var(--primary-color) !important;
  border-radius: 0 !important;
}
.accordion-button::after {
  margin-right: auto;
  margin-left: 0;
  position: absolute;
  left: 0;
  transform: rotate(-90deg);
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
}

/* .accordion-item:first-child{
  
  
} */
.accordion-button:not(.collapsed) {
  background-color: transparent;
  /* box-shadow: var(--card-shadow); */
  box-shadow: none;
}
/* blog */

.blog-card {
  background-color: var(--white);
  box-shadow: var(--card-shadow);
  border-radius: 42px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  color: var(--text-color);
  height: 100%;
}
.blog-img {
  max-height: 300px;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 30px;
  min-height: 300px;
}
.blog-detail-banner {
  height: 100vh !important;
  background: linear-gradient(
    81.33deg,
    #5b27ad 1.2%,
    #db7669 51.23%,
    #fd3a48 99.37%
  ) !important;
}
.blog-detail-banner .banner-img {
  height: 100%;
  padding-top:1.5rem;
}
.blog-detail-banner .banner-img img {
  height: 100%;
}
.blog-img img {
  height: 100%;
  width: 100%;
  transition: transform 0.5s ease;
  border-radius: 30px;
}
.blog-card:hover .blog-img img {
  transform: scale(1.05);
  transition: transform 0.5s ease;
}
.blog-card:hover :is(h3, span) {
  color: var(--primary-color);
  transition: transform 0.5s ease;
}

/* Footer */
.social-icons a {
  border: 4px solid #db766954;
  border-radius: 50%;
}
.social-icons a i {
  background-color: #9f584f;
  color: #fff;
  border: 4px solid #db766954;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  border-radius: 50%;
}

.step-lines svg {
  width: 100%;
  height: 100%;
}
.categoryu-icon {
  max-width: 75px;
  max-height: 75px;
  margin: auto;
}
.case-card-inner img {
  width: 100%;
}

/* Brand page css */
.hero-inner {
  background: linear-gradient(
    90deg,
    #ffe0db 0%,
    #ffffff 28.99%,
    #ffffff 71.27%,
    #ffe0db 100%
  );
  /* min-height: 100vh; */
  height: 100%;
  padding-top: 120px !important;
}
.brand-hero {
  background: linear-gradient(
    90deg,
    #e5fcff 0%,
    #ffffff 28.99%,
    #ffffff 71.27%,
    #e5fcff 100%
  );
}
.work-card {
  position: relative;
  border: 5px solid #ffc465;
  max-height: 500px;
  height: 100%;
}

.work-card > img {
  border-radius: 25px !important;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.detail-block {
  position: absolute;
  top: 0;
}
.detail-block .user-name,
.follower {
  width: 10ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.swiper-navigation-icon {
  display: none;
}
.swiper-button-next,
.swiper-button-prev {
  background: #ffffffbd;
  color: var(--primary-color);
  border-radius: 0 10px 10px 0;
  left: 0 !important;
}
.swiper-button-next {
  border-radius: 10px 0px 0px 10px;
  left: auto !important;
  right: 0 !important;
}
.work-slider .swiper-slide {
  transition: transform 0.45s ease, opacity 0.45s ease;
  max-height: 400px;
  height: 100%;
  overflow: hidden;
}

/* Next slide becomes taller only */
/* .work-slider .swiper-slide-next {
  transform: scaleY(1.18);
  max-height: auto; 
  opacity: 1;
} */
.work-slider {
  padding: 70px 0;
}
.work-slider .swiper-slide .work-card {
  max-height: 400px;
  overflow: hidden;
}
.work-slider .swiper-slide-next .work-card {
  border: 5px solid #db7669;
  max-height: 400px;
  overflow: hidden;
}
/* Base */
.work-slider .swiper-slide {
  transition: transform 0.35s ease;
}

.work-slider .swiper-slide {
  transition: transform 0.35s ease;
}

/* zoom effect */
.work-slider .swiper-slide.is-active-hover {
  transform: scaleY(1.18);
  opacity: 1;
  z-index: 6;
}

/* about us */
.about-wrapper {
  background-color: var(--background-color);
  padding: clamp(24px, 5vw, 60px) clamp(32px, 8vw, 120px);
  box-shadow: 0px 4px 4px 0px #700d004a;
}
.who-cards {
  background: #3a5b72;
  padding: clamp(16px, 3vw, 30px) clamp(20px, 5vw, 60px);
}
.timeline-wrapper .timeline-block {
  position: relative;
  flex: 1;
  height: 100%;
}
.timeline-wrapper .timeline-block:not(:last-child)::after {
  position: absolute;
  left: 30%;
  top: 18%;
  content: "";
  width: 100%;
  height: 20px;
  background-color: #fed150;
  transform: rotate(-26deg);
  z-index: -1;
}
.timeline-wrapper .timeline-block:nth-child(even)::after {
  transform: rotate(27deg);
  left: 50%;
  top: 83%;
}
.timeline-wrapper .timeline-block:nth-child(2)::after {
  background-color: #ff9139;
}
.timeline-wrapper .timeline-block:nth-child(3)::after {
  background-color: #ed4962;
}
.timeline-wrapper .timeline-block:nth-child(4)::after {
  background-color: #8e1341;
}
.timeline-wrapper .timeline-block:nth-child(5)::after {
  background-color: #5ad6d9;
}
.timeline-wrapper .timeline-block:nth-child(6)::after {
  background-color: #3ab0e4;
}
.timeline-wrapper .timeline-block:nth-child(odd) {
  margin-top: 250px;
  position: relative;
  height: fit-content;
}
.timeline-wrapper .timeline-block:nth-child(even) {
  height: fit-content;
}
.timeline-wrapper .timeline-block .timeline-icon {
  position: relative;
  /* width: 130px;
  height: 130px; */
  flex-shrink: 0;
}
.timeline-content.p-2 p {
  min-height: 90px;
  max-height: 140px;
  overflow: hidden;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;

  text-align: center;
  line-height: 1.5;

  word-break: normal;
  overflow-wrap: break-word;
}
.timeline-wrapper .timeline-block:not(:last-child)::after {
  top: 15%;
}
.timeline-wrapper .timeline-block:nth-child(even)::after {
  top: 88%;
}

/* CUstom tabs */
/* ========== WRAPPER ========== */
.custom-tabs {
  margin: auto;
  background: #fff;
}
.tab-item {
  display: none;
}
.tab-item.active {
  display: block;
}

/* ========== DESKTOP TABS ========== */
.tab-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.tab-btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.tab-btn.active {
  background: var(--primary-color);
  color: #fff;
}

/* ========== CONTENT / ACCORDION ========== */
.tab-contents {
  margin-top: 25px;
}

/* accordion title */
.accordion-title {
  display: none;
  cursor: pointer;
  padding: 16px;
  font-weight: 600;
  background: #f9f9f9;
  border-radius: 10px;
  transition: 0.3s;
}

.accordion-title.active {
  background: #000;
  color: #fff;
}

/* smooth accordion content */
.tab-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.3s ease;
  padding: 2px 16px;
}

/* open state */
.tab-content.active {
  opacity: 1;
}
.influencer-category-card {
  background-color: var(--white);
  box-shadow: var(--card-shadow);
  padding: 30px;
  height: 100%;
}
.userimg {
  width: 150px;
  height: 150px;
  border: 4px solid var(--primary-color);
  margin-top: -70px;
  margin-left: 15px;
  border-radius: 50%;
  z-index: 10;
  position: relative;
}
.userimg img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.category-card-banner img {
  border-radius: 15px 15px 0 0;
}

/* Stats */
.stats-wrapper {
  background-color: var(--card-background);
  padding: clamp(24px, 5vw, 60px) clamp(32px, 8vw, 120px);
  box-shadow: 0px 4px 4px 0px #700d004a;
}
.team-img {
  max-height: 550px;
  height: 100%;
}
.team-img img {
  height: 100%;
}
@media (min-width: 769px) {
  .tab-content {
    max-height: none !important;
    opacity: 1;
    display: none;
  }

  .tab-content.active {
    display: block;
  }
}

/* ========== MOBILE MODE ========== */
@media (max-width: 768px) {
  .tab-buttons {
    display: none;
  }

  .accordion-title {
    display: block;
  }
}

/* blog detail */
/* Reset */
.case-content ol,
.case-content ul {
  padding-left: 0;
  margin-left: 0;
}

/* =========================
   Chapter Counter (1, 2, 3)
========================= */
.chapter-list {
  counter-reset: chapter;
  list-style: none;
}

.chapter-list > li {
  counter-increment: chapter;
  margin-bottom: 32px;
}
.chapter-list > li > h3 {
  font-size: var(--font28);
  font-weight: var(--w600);
}
.chapter-list > li > h3::before {
  content: "Chapter " counter(chapter) ": ";
  font-weight: 600;
}

/* =========================
   Sub Chapter Counter (1.1, 1.2)
========================= */
.sub-chapter-list {
  counter-reset: subchapter;
  list-style: none;
  margin-top: 16px;
}

.sub-chapter-list > li {
  counter-increment: subchapter;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.sub-chapter-list > li > h4 {
  font-size: var(--font24);
  font-weight: var(--w500);
}

.sub-chapter-list > li > h4::before {
  content: counter(chapter) "." counter(subchapter) " ";
  font-weight: 600;
}
.sub-chapter-list > li > p {
  font-size: var(--font24);
  font-weight: var(--w400);
  letter-spacing: 0.52px;
  line-height: 100%;
}
/* =========================
   Bullet List Styling
========================= */
.bullet-list {
  margin-top: 10px;
  padding-left: 2rem !important;
}

.bullet-list li {
  margin-bottom: 8px;
  list-style: disc;
  font-size: var(--font24);
  font-weight: var(--w400);
  line-height: var(--h36);
}

.markdown.prose.dark\:prose-invert.w-full.break-words.light.markdown-new-styling {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}
.markdown.prose.dark\:prose-invert.w-full.break-words.light.markdown-new-styling ol {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.markdown.prose.dark\:prose-invert.w-full.break-words.light.markdown-new-styling
  h2
  strong {
  font-size: 20px;
}
.markdown.prose.dark\:prose-invert.w-full.break-words.light.markdown-new-styling
  h2 {
  line-height: var(--h122) !important;
  font-size: var(--font28) !important;
}
.markdown.prose.dark\:prose-invert.w-full.break-words.light.markdown-new-styling
  :is(p strong, p) {
  font-size: 16px !important;
  line-height: var(--h122);
}
.markdown.prose.dark\:prose-invert.w-full.break-words.light.markdown-new-styling p strong{
  margin-bottom: 5px;
  display: inline-flex;
}
.blog-detail-block :is(p strong, p) {
  font-size: 16px !important;
  line-height: var(--h122);
}
.blog-detail-block :is(h2 strong, h2) {
  font-size: var(--font28);
  color: var(--text-color);
}
.blog-detail-block h2 a{
  color: var(--text-color);
}
.blog-detail-block :is(h3 strong, h3) {
  font-size: var(--font20);
}
.pagination-wrapper.text-center.mt-4 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px !important;
}
.page-numbers {
  font-size: var(--font24);
  font-weight: var(--w600);
  color: var(--text-color);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-numbers.current {
  background-color: var(--primary-color);
  color: var(--white);
}
.prev,
.next {
  background-color: var(--primary-color);
  padding: 8px 15px;
  color: var(--white);
  width: auto;
  height: auto;
}
.contact-detail-block {
  border: 1px solid var(--primary-color);
  height: 100%;
}

.widget_text.widget.widget_custom_html {
  height: 100%;
  list-style: none;
}
.textwidget.custom-html-widget {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

figure.wp-caption {
  width: 100% !important;
}
figure.wp-caption img {
  width: 100% !important;
}

.blog-detail-block .detail-content > :is(ul, ol, ul li> ul){
  display:flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 0;
}

.col-md-12.text-end{
  text-align: center !important;
}
.btn-close{
  background-color: var(--card-background);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-color);
  opacity: 1;
  background-image: none;
}
.btn-close i{
  font-size: var(--font28);
  color: var(--primary-color);
}
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 1200px;
        margin-right: auto;
        margin-left: auto;
        padding: 0 .5rem;
    }
}
#staticBackdrop .form-control{
      height: 45px;
}
#staticBackdrop  textarea{
  height: auto;
}
#staticBackdrop .banner-img img{
  max-height: 650px;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.ad-banner {
  position: sticky !important;
  top: 40px;          /* gap from top */
  z-index: 10;
}
.hero-inner.service-banner{
  background: linear-gradient(90deg, #FFE0DB 0%, #FFFFFF 28.99%, #FFFFFF 71.27%, #DCD8EE 94.71%);
}
.hero-inner .banner-img img{
  mix-blend-mode: multiply;
}

.hero-inner.service-banner .banner-img img{
  mix-blend-mode: normal;
}
h2.font50.w700,h2.font80.w700{
  text-transform: capitalize;
}
.influencer-detail{
  padding-top: 150px;
}