@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&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');
/* font-family: "Poppins", sans-serif;
font-family: "DM Sans", sans-serif; */
:root {
    --bg-main: #05060c;
    --bg-card: #101019;
    --primary: #5cc09c;  
    --grad-1: #f36320;
    --grad-2: #ffb86c;
    --grad-3: #f80e6d;
    --primary-soft: rgba(255, 59, 127, 0.4);
    --accent: #ffb86c;
    --text-muted: #b0b0c0;

    --font-main: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	
	--theme-color-orang: #FF8C00;
    --bg-color: #212121;
    --theme-color: #151515;

    /* theme fonts */
    --font-dm : "DM Sans", sans-serif;
    --font-pop : "Poppins", sans-serif;

    --font-14 : 14px;
}

* {
      box-sizing: border-box;
    }
body {
      margin: 0;
      min-height: 100vh;
      background: radial-gradient(circle at top, #18192a 0, #05060c 50%, #020309 100%);
      color: #ffffff;
      font-family: var(--font-main);
      overflow-x: hidden;
}
.navbar {
      background: #0b0b0c;
      padding: 14px 0;
    }
    .navbar-brand img {
      height: 40px;
    }
/* default menu text */
.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 300;
    font-size: 20px;
    padding: 0 18px;
    transition: .35s;
}
/* hover → gradient text only */
.navbar-nav .nav-link:hover {
  background-image: linear-gradient(to right, var(--grad-1), var(--grad-2), var(--grad-3));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent !important; /* Firefox support fallback */
  -webkit-text-fill-color: transparent; /* Chrome / Safari / Edge fix */
}
/* Parent যেন reference হয় */
.dropdown {
  position: relative;
}
/* DROPDOWN MENU BASE */
.navbar .dropdown-menu {
    /* Bootstrap-এর display:none override */
    display: block;

    width: 330px;
    padding: 22px 34px;
    border: none;
    border-radius: 22px;

    background: #0b0c1a;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 12px;
    overflow: hidden;
    z-index: 1000;

    /* hidden state (animation er jonno) */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
}
.login-box{
    display: flex;
    gap: 10px;
}
.login-box .a-login{
	background: linear-gradient(136deg, #FF9800, #f80e6d);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    padding: 8px 22px;
    border-radius: 50px;
    cursor: pointer;
}
.login-box .a-login-artist{
	background: linear-gradient(136deg, #FF9800, #f80e6d);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    padding: 8px 22px;
    border-radius: 50px;
    cursor: pointer;
}
.login-box-mob{
    justify-content: center;
    position: fixed;
    width: 100%;
    bottom: 18px;
    left: 0;
    padding: 5px 33px;
}
.login-box.login-box-mob .a-login, .login-box.login-box-mob .a-login-artist{
    width: 100%;
    text-align: center;
}
/* HOVER এ open (desktop) */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Mobile / click এর জন্য Bootstrap .show class */
.navbar .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ---------- ANIMATED GLOW SHAPES (no extra HTML needed) ---------- */
.navbar .dropdown-menu::before, .navbar .dropdown-menu::after
 {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: .65;
    pointer-events: none;
    animation: floatShape 18s 
ease-in-out infinite alternate;
}
.navbar .dropdown-menu::before {
    width: 180px;
    height: 180px;
    background: rgb(105 0 170 / 38%);
    top: 0;
    left: -78px;
    filter: blur(14px);
}
.navbar .dropdown-menu::after {
    width: 120px;
    height: 120px;
    background: rgb(209 233 0 / 19%);
    bottom: -59px;
    right: 2px;
    animation-duration: 22s;
}

/* floating animation (physio project এর মতো) */
@keyframes floatShape {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(40px, -40px, 0) scale(1.05); }
}

/* MENU ITEMS */
.navbar .dropdown-menu .dropdown-item {
    color: #ffffff;
    padding: 10px 0;
    font-size: 14px;
    position: relative;
    z-index: 1; 
}

.navbar .dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: #ff6a00;
}
/* ====================
START BANNER SECTION
=================== */
.page-wrapper {
    min-height: 100vh;
    padding-bottom: 60px;
    background: radial-gradient(ellipse at top, rgb(255 59 127 / 0%), transparent 55%), radial-gradient(ellipse at top left, rgba(255, 184, 108, 0.2), transparent 55%), radial-gradient(circle at center, #05060c 0, #020309 60%);
}

    .overlay-arches {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: -1;
    }

    .overlay-arches::before,
    .overlay-arches::after {
      content: "";
      position: absolute;
      inset: 40px 14%;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.03);
    }

    .overlay-arches::after {
      inset: 90px 20%;
    }

    /* HERO SECTION */
    .hero {
      position: relative;
      padding: 60px 0 40px;
      background: radial-gradient(circle at top, rgba(255, 59, 127, 0.12), transparent 55%), radial-gradient(circle at bottom, rgba(255, 184, 108, 0.16), transparent 60%), #05060c;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    }
    .hero::after {
    /* content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
        rgba(255, 120, 170, 0.20),
        transparent 70%);
    filter: blur(40px);
    animation: glow 6s infinite ease-in-out alternate; */
}

@keyframes glow {
    from { opacity: .4; transform: scale(1); }
    to { opacity: .7; transform: scale(1.15); }
}
.banner-search-box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.banner-search-box>select{
    width: 35%;
    border-radius: 5px 0px 0px 5px;
    border: none;
    color: var(--text-muted);
    font-weight: 300;
    font-size: var(--font-14);
    min-height: 53px;
    background-color: transparent;
}
.banner-search-box>select.form-select:focus {
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}
.banner-search-box input {
    border-radius: 0;
    border: none;
    font-weight: 300;
    font-size: var(--font-14);
    min-height: 53px;
    color: var(--text-muted);
    border: none;
}
.banner-search-box input.form-control:focus {
    color: var(--bs-white);
    background-color: transparent;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}
.banner-search-box input::placeholder {
	color: var(--text-muted);
}
.banner-search-box button {
    background-color: transparent ;
    color: var(--theme-color-orang);
    width: 140px;
    border: none;
    padding: 6px;
    border-radius: 0px 5px 5px 0px;
    font-weight: 600;
    font-size: var(--font-14);
    min-height: 53px;
}
#suggestions {
    border: none;
    background-color: #ffffff;
    padding: 0px 0px;
    width: 100%;
    margin-top: 0px;
    position: absolute;
    top: 60px;
    z-index: 1;
    border-radius: 5px;
}
#suggestions>ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#suggestions>ul>li{
    list-style:none;
    padding: 0;
}
#suggestions>ul>li>a {
    text-decoration: none;
    display: block;
    color: var(--theme-color);
    padding: 8px 8px;
    border-bottom: none;
    transition: 0.3s;
    font-size: var(--font-14);
    font-weight: 600;
}
#suggestions>ul>li>a:hover {
    background-color: #e7e7e7;
}
/* for mobile */
#suggestionsMob {
    border: 0px solid #ccc;
    background-color: #ffffff;
    padding: 10px 0px;
    width: 100%;
    margin-top: 0px;
    position: absolute;
    top: 122px;
    z-index: 1;
}
#suggestionsMob>ul{
    list-style:none;
    padding: 0;
}
#suggestionsMob>ul>li{
    list-style:none;
    padding: 0;
}
#suggestionsMob>ul>li>a {
    text-decoration: none;
    display: block;
    color: var(--theme-color);
    padding: 8px 8px;
    border-bottom: 1px dashed #ffffff;
    transition: 0.3s;
    font-size: var(--font-14);
    font-weight: 600;
}
#suggestionsMob>ul>li>a:hover {
    background-color: #e7e7e7;
}

    .search-wrapper {
      max-width: 520px;
      margin: 0 auto 40px;
    }

    .search-bar {
      background-color: rgba(10, 10, 20, 0.95);
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      padding: 10px 18px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .search-bar input {
      border: none;
      background: transparent;
      color: #fff;
      width: 100%;
      outline: none;
      font-size: 0.9rem;
    }
    .search-icon {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      border: 2px solid rgba(255, 255, 255, 0.7);
      position: relative;
    }
    .search-icon::after {
      content: "";
      position: absolute;
      width: 8px;
      height: 2px;
      background: rgba(255, 255, 255, 0.7);
      border-radius: 999px;
      right: -5px;
      bottom: -1px;
      transform: rotate(40deg);
    }
    .hero-tagline {
      text-align: center;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    .hero-title>h1 {
        text-align: center;
        font-size: 100px;
        font-weight: 300;
        margin-bottom: 50px;
    }
.hero-title span {
    position: relative;
    display: inline-block;
    padding: 8px 105px;
    border-radius: 100px;
    border: 2px solid transparent;
    background: linear-gradient(#160c13, #170d13) padding-box, linear-gradient(144deg, #130a12, #130a12, #130a12, var(--accent)) border-box;
}
    .hero-title span::after {
        content: "";
        position: absolute;
        left: auto;
        right: 0;
        bottom: -10px;
        height: 1px;
        width: 50%;
        border-radius: 999px;
        /* background: linear-gradient(90deg, var(--primary), var(--accent)); */
        border-radius: 200px;
    }
    .svg-absolute{
      position: absolute;
      bottom: 0;
      left: 0;
    }
    .hero-subtitle {
      text-align: center;
      font-size: 1.1rem;
      color: #e5e5f0;
      margin-bottom: 36px;
    }

    .hero-subtitle .highlight {
      font-weight: 500;
      color: var(--accent);
    }

    /* ARTIST GRID */
    .artist-wrapper {
      /* max-width: 920px;
      margin: 0 auto;
      padding: 36px 32px 40px;
      border-radius: 36px;
      background: radial-gradient(circle at top, rgba(255, 59, 127, 0.12), transparent 55%),
        radial-gradient(circle at bottom, rgba(255, 184, 108, 0.16), transparent 60%),
        #05060c;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8); */
      position: relative;
    }

    .artist-grid {
      display: flex;
      /* flex-wrap: wrap; */
      justify-content: center;
      gap: 18px;
    }

    .artist-card {
      /* width: 160px;
      height: 240px;
      border-radius: 36px;
      overflow: hidden;
      background: #1a1b26;
      display: flex;
      align-items: stretch;
      justify-content: center; */
    }

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

    .artist-label {
      position: absolute;
      bottom: 18px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .artist-label span.logo-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--primary);
      display: inline-block;
    }
    .artist-inner-grid2{
      display: flex;
      gap: 18px;
    }
    .artist-card-height27{
      height: 27rem;
    }
    .artist-card-height16{
      height: 16rem;
    }
    .artist-card-height10{
      height: 10rem;
    }
    .artist-inner-grid1 .artist-card img{
      border-radius: 200px 200px 0px 0px;
    }
  .artist-inner-grid2 .artist-card {
      overflow: hidden;
      border-radius: 200px 200px 0px 200px;
  }
  .grid-radious{
    border-radius: 200px 0px 0px 200px;
    overflow: hidden;
  }

    /* START Section2 SECTION */
    .bg-section2 {
      padding: 100px 20px;
      position: relative;
      min-height: 100vh;
    }
    .section-title{
  
    }
.success-progress {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-top: 100px;
    align-items: center;
}
.success-count>h3 {
    font-size: 150px;
    font-weight: 300;
    margin-bottom: 8px;
}
.verify-pric a {
    background: linear-gradient(136deg, #FF9800, #f80e6d);;
    text-decoration: none;
    font-size: 22px;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 1px 3px 5px #00000059;
    min-width: 300px;
    justify-content: center;
}
.verify-pric a:hover{

}
.verify-pric a>i{
    font-size: 34px;
}
.section-title.style1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section-heading {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 10px;
}

    .section-text {
      font-size: 0.8rem;
      color: var(--text-muted);
      max-width: 260px;
      line-height: 1.6;
    }

    .section2-left-card {
      position: relative;
      margin-top: 40px;
      border-radius: 40px;
      background:
        radial-gradient(circle at top left, rgba(255, 59, 127, 0.2), transparent 55%),
        radial-gradient(circle at bottom right, rgba(255, 184, 108, 0.18), transparent 60%),
        rgba(5, 6, 12, 0.96);
      padding: 40px 32px 50px;
      max-width: 420px;
      overflow: hidden;
    }

    .section2-left-card::before {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.04);
      top: -70px;
      right: -60px;
    }
.section2-name {
    font-weight: 300;
    margin-bottom: 6px;
    font-size: 30px;
}

    .section2-name span {
      color: var(--accent);
    }

    .section2-text {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 320px;
    }

    /* Right tall card */
    .section2-right-wrapper {
      display: flex;
      justify-content: center;
      margin-top: 40px;
    }
.section2-card-outer {
    border-radius: 5px 5px 5px 52px;
    padding: 2px;
    background: linear-gradient(180deg, var(--grad-3), var(--primary), var(--accent));
    max-width: 320px;
    width: 100%;
    height: 100%;
    position: relative;
}
    .section2-card-inner {
      border-radius: 48px;
      background: #05060c;
      width: 100%;
      height: 100%;
      /* padding: 24px 18px; */
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: flex-end;
      overflow: hidden;
    }
    .section2-arrows {
      display: flex;
      gap: 12px;
      margin-bottom: 30px;
      margin-right: 8px;
    }
    .arrow-btn {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: #fff;
      cursor: default;
    }

    /* Badge */
.verified-badge {
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  margin: 0 auto;
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  left: -125px;
}

.verified-badge-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.img-base {
  width: 100%;
}

.img-spin-text {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: spin 15s linear infinite;
}
/* client slide */
.bg-our-clients{
  padding: 100px 50px;
}
.clients-logo-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  overflow: hidden;
}
.logo-row{
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: slide-left 25s linear infinite;
}
.row-2{
  animation-name: slide-right;
  animation-duration: 30s;
}
.row-3{
  animation-duration: 35s;
}
.logo-row:hover{
  animation-play-state: paused;
}
.client-logo img{
  max-height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.4));
}
.hilight-title {
    font-weight: 700;
    font-size: 100px;
    background-image: linear-gradient(to right, var(--grad-3), var(--grad-3),  var(--primary), var(--grad-1), var(--grad-1) ));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-bottom: 50px;
}
/* left direction */
@keyframes slide-left{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}
/* right direction */
@keyframes slide-right{
  from{
    transform: translateX(-50%);
  }
  to{
    transform: translateX(0);
  }
}
.bg-testimonial{
padding: 100px 50px;
}
.bg-testimonial .testi-item {
    text-align: center;
    max-width: 70%;
    margin: 0px auto;
    float: none;
}
.bg-testimonial .testi-item p{
    font-size: 30px;
    font-weight: 300;
    color: var(--text-muted);
}
.bg-testimonial .testi-item h3{
    font-size: 25px;
}
.title-padding-100{
  padding-bottom: 100px;
}
.bg-testimonial .owl-nav {
    display: flex;
    justify-content: space-between;
    margin-top: -59px;
    position: relative;
    z-index: 1;
}
/* ===============
STATUS SECTION
=============== */
/* section background */
.stats-section{
  background: #05060b;
  color: #f8fafc;
}

/* main big rounded box */
.stats-wrapper{
  background: radial-gradient(circle at top left, #151827 0%, #05060b 55%, #05060b 100%);
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 40px 80px rgba(0,0,0,0.7);
}

/* left text */
.stats-subtitle{
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
}

.stats-year{
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
}

/* right side grid */
.stats-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  grid-template-rows: auto auto auto;
  gap: 1.25rem;
}

/* common card style */
.stat-card{
  position: relative;
  padding: 1.6rem 1.8rem;
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.06), rgba(255,255,255,0.02) 40%, rgba(0,0,0,0.7) 100%);
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(18px);
}

.stat-number{
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.stat-label{
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.8;
}

/* grid placement (approx same layout) */
.stat-card:nth-child(1){       /* 12K+ */
  grid-column: 1 / 3;
}

.stat-card:nth-child(2){       /* 25K+ */
  grid-column: 1 / 2;
}

.stat-card:nth-child(3){       /* 30Cr+ */
  grid-column: 2 / 3;
  grid-row: 2 / 4;
}

.stat-card:nth-child(4){       /* 4M+ */
  grid-column: 1 / 2;
}

.stat-card:nth-child(5){       /* 100+ */
  grid-column: 1 / 2;
}

/* color accents */
.stat-card--pink{
  color: #fec6ff;
}

.stat-card--green{
  color: #7ef9c2;
}

.stat-card--orange{
  color: #ffdfb5;
}

.stat-card--red{
  color: #ffb3c1;
}

.stat-card--purple{
  color: #cbb2ff;
}

/* highlight card extra overlay & arrow */
.stat-card--highlight::before{
  content: "";
  position: absolute;
  width: 180%;
  height: 180%;
  left: -20%;
  top: -40%;
  background: radial-gradient(circle at 0% 0%, rgba(0,255,150,0.4), transparent 55%),
              radial-gradient(circle at 100% 50%, rgba(255,0,100,0.4), transparent 55%);
  opacity: 0.9;
  mix-blend-mode: screen;
}

.stat-card--highlight::after{
  content: "";
  position: absolute;
  right: 12%;
  bottom: 10%;
  width: 90px;
  height: 90px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: #ff7b9c;
  border-right-color: #ff7b9c;
  transform: rotate(35deg);
  opacity: 0.9;
}

/* text above overlays */
.stat-card--highlight > *{
  position: relative;
  z-index: 1;
}
/* ===================
start category section
=================== */
/* The container that remains pinned while animation runs */
    .pin-container {
      height: 500vh; /* total scroll space */
      position: relative;
    }

    .pin-section {
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 80px;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Circle */
    .circle-wrapper {
      width: 520px;
      height: 520px;
      position: relative;
    }

    .circle-bg {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: radial-gradient(circle at 0% 0%, var(--primary), var(--grad-2));
      position: relative;
      overflow: hidden;
    }
    .circle-image {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 90%;
      height: 90%;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      object-fit: cover;
    }

    .circle-stack {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .stack-item {
      width: 530px;
      height: 530px;
      border-radius: 50%;
      border: none;
    }
.stack-item.gradient {
    background: radial-gradient(circle at 0% 0%, var(--primary), var(--grad-2));
    opacity: 1;
}
    .category-section .label {
      position: absolute;
      top: 50%;
      left: -240px;
      transform-origin: right center;
      font-size: 58px;
      opacity: 0;
      transition: opacity 0.1s linear, transform 0.1s linear;
      white-space: nowrap;
      text-transform: capitalize;
    }

    /* Right panel */
    .category-section .right-text {
      max-width: 340px;
    }

    .category-section .subtext { color: #aaa; font-size: 24px; margin-bottom: 6px; }
    .category-section .title { font-size: 52px; margin-bottom: 14px; }
    .category-section .explore-link {
      display: inline-block;
      background: linear-gradient(to right, var(--primary), var(--grad-2), var(--grad-2));
      -webkit-background-clip: text;
      color: transparent;
      font-size: 30px;
      margin-top: 18px;
      cursor: pointer;
    }

    .after-pin-content {
      height: 200vh; /* content after animation */
      padding: 200px;
      font-size: 40px;
    }
    /*==================== 
    End Category Section 
    ====================*/
/* ------------ Popular ARTIST ------------ */
.popular-artist {
    padding: 100px 50px;
}
.item-card-artist {
    position: relative;
    margin-bottom: 15px;
}
.img-artist {
    border-radius: 10px;
    height: 415px;
    object-fit: cover;
}
.artist-overlay{
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 49%);
    color: var(--bs-white);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 15px;
}
.artist-name{
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-dm);
}
    /* ------------------------------------ *
       FOOTER STYLING
    * ------------------------------------ */

    .footer-section{
      background: #05060b;
      color: #f8fafc;
    }

    .footer-panel{
      background: #070814;
      border-radius: 32px 32px 0 0;
      box-shadow: 0 40px 80px rgba(0,0,0,0.8);
      overflow: hidden;
    }

    /* ----- HERO BLOB LEFT ----- */
    .footer-hero{
      position: relative;
      width: 100%;
      max-width: 520px;
      min-height: 420px;
      padding: 1px;
      border-radius: 0 340px 340px 340px;
      background: linear-gradient(to bottom, rgba(24,24,41,1), #000000ed);
      overflow: hidden;
      box-shadow: 0 40px 90px rgba(0,0,0,0.9);
    }

    .footer-hero-inner{
      position: relative;
      height: 100%;
      border-radius: inherit;
      background: #0b1025;
      backdrop-filter: blur(24px);
      display: flex;
      align-items: flex-start;
      padding: 3.4rem 2.4rem 2.4rem;
    }

    /* pink bottom-left glow */
    .footer-hero::before{
      content: "";
      position: absolute;
      width: 160%;
      height: 160%;
      left: -40%;
      bottom: -55%;
      border-radius: 50%;
      background: radial-gradient(circle at 20% 100%,
                  rgba(148,76,102,1) 0%,
                  rgba(9,2,7,0) 60%);
      opacity: .40;
    }

    /* golden circle on right */
    .footer-hero::after{
      content: "";
      position: absolute;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle at 50% 0,
                  rgba(183,131,17,1) 0%,
                  rgba(148,106,76,0) 70%);
      bottom: -140px;
      left: 60%;
      opacity: .35;
    }

    .footer-hero-title{
      font-size: clamp(1.9rem, 3.2vw, 2.5rem);
      line-height: 1.1;
      color: rgba(255,255,255,0.92);
      margin-bottom: 1rem;
    }
    .footer-hero-subtitle{
      font-size: 0.95rem;
      color: rgba(255,255,255,.7);
    }

    /* ----- RIGHT SIDE LISTS ----- */
    .footer-heading{
      font-size: 1.02rem;
      font-weight: 500;
      color: #f9fafb;
    }

    .footer-links a{
      display: block;
      font-size: 0.9rem;
      color: rgba(255,255,255,.65);
      text-decoration: none;
      margin-bottom: .45rem;
      transition: .2s;
    }
    .footer-links a:hover{
      color: #fff;
      transform: translateX(3px);
    }

    /* Social icons */
    .footer-social-link{
      color: rgba(255,255,255,.75);
      transition: .2s;
      font-size: 1.2rem;
      text-decoration: none;
    }
    .footer-social-link:hover{
      color: #fff;
      transform: translateY(-2px);
    }

    .footer-bottom{
      color: rgba(255,255,255,.55);
      font-size: .85rem;
    }
/* responsive tweak (optional) */
@media (max-width: 768px){

  .clients-logo-wrapper{
    gap: 1rem;
  }
  .client-logo img{
    max-height: 40px;
  }
}
/* end client slide */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

    .verified-badge-inner {}

    .verified-badge-inner span {
      display: block;
    }
    .section2-video{
      width: 100%;
      height: 500px;
    }

    /* =========================
    RESPONSIVE START
    ========================= */
    @media (max-width: 991.98px) {
      .hero-title {
        font-size: 2.4rem;
      }
      .artist-wrapper {
        padding: 0px;
      }
      .stats-wrapper{
        border-radius: 24px;
      }
      .artist-grid {
          gap: 9px;
      }
      .hero-title span{
          padding: 40px 66px;
          width: 100%;
      }
      .stats-grid{
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
      }

      /* reset grid placement on small screens */
      .stat-card:nth-child(1),
      .stat-card:nth-child(2),
      .stat-card:nth-child(3),
      .stat-card:nth-child(4),
      .stat-card:nth-child(5){
        grid-column: auto;
        grid-row: auto;
      }
      .bg-our-clients {
          padding: 0px;
      }
      .section-title.style1{
        flex-direction: column;
      }
      .verified-badge{
        position: initial;
      }
      .svg-absolute{
        width: 100%;
      }
      .success-progress{
        flex-direction: column;
      }
      .success-count>h3{
        font-size: 90px;
      }
      .section-heading.hilight-title{
        font-size: 60px;
      }
      .section-heading {
        font-size: 40px;
      }
      /* testimonial */
      .bg-testimonial {
          padding: 100px 0px 0px 0px;
      }
      .title-padding-100 {
        padding-bottom: 50px;
      }
      .bg-testimonial .testi-item p{
        font-size: 20px;
      }

      .bg-testimonial .owl-nav {
        display: flex;
        justify-content: center;
        margin: 30px 0px 30px 0px;
        position: relative;
        z-index: 1;
        gap: 15px;
    }
    /* category */
    .pin-section {
          position: sticky;
          top: 0;
          height: auto;
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding: 30px;
          max-width: 90%;
          margin: 0 auto;
          flex-direction: column;
      }
      .circle-wrapper {
          width: 320px;
          height: 320px;
          position: relative;
      }
      .popular-artist {
          padding: 60px 0px 0px 0px;
      }
      .img-artist {
          height: 250px;
      }
      .stat-card--highlight{
        min-height: 180px;
      }
      .footer-hero{
        margin: 0 auto 2rem auto;
        max-width: 420px;
        min-height: 360px;
        border-radius: 0 260px 260px 260px;
      }
      .footer-panel{ border-radius: 24px 24px 0 0; }
    }

    @media (max-width: 767.98px) {
      .hero {
        padding-top: 40px;
      }

      .hero-title {
        font-size: 2rem;
      }

      .artist-card {
        width: 100%;
        max-width: 100%;
      }

      .section2-left-card {
        max-width: 100%;
      }

      .section2-card-outer {
        max-width: 100%;
        height: 380px;
      }
    }

    @media (max-width: 575.98px) {
      .stats-wrapper{
        padding: 1.5rem;
      }

      .stat-card{
        padding: 1.3rem 1.4rem;
      }

      .stat-number{
        font-size: 1.6rem;
      }
      .search-wrapper {
        padding-inline: 16px;
      }

      .artist-wrapper {
        margin-inline: 8px;
      }


      .footer-panel{ padding-inline: 1.2rem !important; }
      .footer-hero{ min-height: 310px; }
      .footer-hero-title{ font-size: 1.7rem; }
    }

