:root {
  --primary: #D4AF37;
  --secondary: #6420A8;

  --text-dark: #111827;
  --text-light: #6B7280;

  --title-color: #0F172A;
  --subtitle-color: #475569;
  --body: #475569;
  --body-dark: #CBD5E1;

  --white: #ffffff;
  --overlay-dark: rgba(0, 0, 0, 0.6);

  --bg-light: #EDE9FE;
  --bg-soft: #F9FAFB;
  --bg-dark: #0F172A;
  --gradient-soft: linear-gradient(145deg, #FFFBF2, #F2F9FF, #EEEBFF);
  --gradient-purple: linear-gradient(135deg, #6420A8, #1E1B4B);
  --gradient-gold: linear-gradient(135deg, #D4AF37, #C49B2F);
  --gradient-imgbg: linear-gradient(135deg, #E8DFFB, #DCEBFA);
  --gradient-light: linear-gradient(145deg, #F2F9FF, #FFFFFF);

  --border: #E5E7EB;
  --border-dark: rgba(255, 255, 255, 0.08);
  --radius: 16px;

  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* =========================
    BASE
  ========================= */
body {
  font-family: 'Inter', sans-serif;
  color: var(--body);
  font-size: 16px;
}
@media (max-width: 1200px) {
  body {
    font-size: 14px;
  }
}

.section {
  padding: 100px 0;
}
@media (max-width: 992px) {
  .section{
    padding: 70px 0;
  }
}

.section-sm {
  padding: 70px 0;
}

.gradient-soft {
  background: var(--gradient-soft);
}
.gradient-light {
  background: var(--gradient-light);
}

.bg-soft {
  background: var(--bg-soft);
}

h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--title-color);
}

h1 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
}

h2 {
  font-size: 36px;
  font-weight: 600;
}

@media (max-width: 992px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }
}

.color-primary {
  color: var(--primary) !important;
}


/* ================= NAVBAR ================= */
.navbar-main {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}

/* Layout */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-weight: 700;
}
.logo img{
  max-width: 200px;
  max-height: 60px;
}

/* Nav Wrapper */
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Links */
.nav-links {
  display: flex;
  gap: 25px;
}
.nav-links ul.navigation {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1200px) {
  .nav-links ul.navigation {
    gap: 16px;
  }
}

.nav-links .navigation li {
  position: relative;
  padding: 12px 0;
  color: var(--title-color);
}
.nav-links .navigation li li {
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--title-color);
  transition: 0.3s;
}
  .nav-links a:hover {
    color: var(--primary);
  }
  .nav-links a.active{
    color: var(--primary);
  }

  /* ================= DROPDOWN ================= */

.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
  z-index: 999;
}

/* LINKS */
.dropdown-menu-custom li {
  list-style: none;
}

.dropdown-menu-custom a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text-dark);
  text-decoration: none;
}

.dropdown-menu-custom a:hover {
  background: var(--bg-soft);
  color: var(--primary);
}

/* DESKTOP HOVER */
@media (min-width: 992px) {
  .dropdown-menu-custom{
    background: var(--bg-soft);
  }
  .dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* CTA */
.nav-cta {
  display: flex;
  gap: 15px;
}
@media (max-width: 1200px) {
  .nav-cta{
    gap: 8px;
  }
}


/* Toggle */
.menu-toggle {
  display: none;
  font-size: 32px;
  cursor: pointer;
}

/* Close */
.close-btn {
  display: none;
}

/* Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay-dark);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 998;
}

/* ================= MOBILE ================= */
@media (max-width: 1024px) {

   .dropdown-menu-custom{
    background: var(--bg-light);
  }

  .menu-toggle {
    display: block;
  }

  .nav-wrapper {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    transition: 0.4s ease;
    z-index: 999;
    overflow-y: scroll;
    padding: 24px;
  }

  .nav-wrapper.active {
    left: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .nav-links li{
    text-align: center;    
  }
  .nav-links .navigation li {
  padding: 0;
}

  .nav-links ul.navigation {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .dropdown-menu-custom {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border: none;
    padding: 0;
  }

  .dropdown-menu-custom.active {
    display: block;
  }


  .nav-cta {
    align-items: center;
  }

   .nav-wrapper.active .close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    display: block;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

}

/* ================= FOOTER ================= */

.footer {
  background: var(--bg-soft);
  padding: 80px 0 30px;
}

/* TOP */
.footer-top {
  margin-bottom: 40px;
}

/* LOGO */
.footer .logo {
  font-weight: 600;
}

/* DESC */
.footer-desc {
  color: var(--text-light);
  margin: 15px 0 20px;
  max-width: 300px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: 0.3s;
}

.footer-social a:hover {
  background: var(--secondary);
  color: #fff;
}

.footer-social i img {
  width: 18px;
  height: 18px;
  display: flex;
}

/* HEADINGS */
.footer h6 {
  font-weight: 600;
  margin-bottom: 15px;
}

/* LINKS */
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: var(--secondary);
}

/* DIVIDER */
.footer-divider {
  height: 1px;
  background: var(--border);
  margin: 30px 0;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-light);
}

.footer-bottom span {
  color: red;
}

/* =========================
    HERO
  ========================= */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  color: var(--white);

  margin-top: 70px
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
    url('../imgs/hero-img.jpg') center/cover;
  z-index: -1;
}

.hero-content {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.hero-cta {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 992px) {
  .hero-cta{
    gap: 8px;
  }
}
@media (max-width: 576px) {
  .hero-cta{
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* =========================
    BUTTONS
  ========================= */
.btn {
  padding: 14px 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 999px;
  font-weight: 500;
}
@media (max-width: 992px) {
  .btn{
    padding: 10px 18px;
  }
}

.btn:hover {
  transform: scale(1.05);
}

.btn-main {
  background: var(--bg-light);
  color: var(--text-dark);
}

.btn-main:hover {
  background: var(--white);
  color: var(--title-color);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background: #511988;
  color: var(--white);
}

.btn-gold {
  background: var(--primary);
  color: var(--white);
}

.btn-gold:hover {
  background: #C69538;
  color: var(--white);
}

.btn-small {
  padding: 6px 18px;
}


/* =========================
    STATS
  ========================= */
.stats {
  background: var(--bg-soft);
}

.stat h3 {
  font-size: 28px;
  font-weight: 700;
}

.stat-box h3 {
  font-size: 32px;
  font-weight: 700;
}

.stat-box p {
  color: var(--text-light);
}

/* =========================
    CARD
  ========================= */
.card-custom {
  border-radius: var(--radius);
  padding: 30px;
  background: var(--bg-light);
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
}

.card-custom:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* =========================
    DARK SECTION
  ========================= */
.dark-section {
  background: var(--bg-dark);
  color: var(--white);
}

/* =========================
    HORIZONTAL SCROLL
  ========================= */
.scroll-x {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.scroll-x::-webkit-scrollbar {
  display: none;
}

.scroll-x .card-custom {
  min-width: 300px;
  scroll-snap-align: start;
}

/* =========================
    CTA
  ========================= */
.cta {
  background: var(--gradient-purple);
  color: var(--white);
  border-radius: 20px;
  padding: 80px;
}
@media (max-width: 992px) {
  .cta{
    padding: 40px 20px;
  }
}

.cta h2{
  color: var(--white);
}

/* =========================
    ANIMATION
  ========================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= HOW IT WORKS ================= */

/* SECTION */
.how-works {}

.section-head {
  position: relative;
  margin-bottom: 50px;
}

.section-title {
  font-size: 48px;
  font-weight: 600;
}
@media (max-width: 992px) {
  .section-title{
    font-size: 34px;
  }
}

.subtitle {
  color: var(--text-light);
  margin-top: 10px;
}

.dark-head .section-title{
  color: var(--white);
}

.dark-head .subtitle {
  color: rgba(255, 255, 255, 0.7);
}
.dark-head h1,
.dark-head h2,
.dark-head h3,
.dark-head h4,
.dark-head h5,
.dark-head h6,
.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section h5,
.dark-section h6 {
  color: var(--white);
}

/* CARD BASE */
.work-card {
  border-radius: 16px;
  padding: 40px 30px;
  /* border: 1px solid var(--border); */
  transition: 0.3s;
  text-align: center;
  /* background: var(--gradient-soft); */
}
@media (max-width: 1024px) {
  .work-card{
    padding: 16px;
  }
}

.work-card:hover {
  transform: translateY(-5px);
}

/* ICON */
.icon-box {
  background: var(--bg-light);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
}

/* TEXT */
.work-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.work-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ================= BRANDS SECTION ================= */

.brands-section {
  background: var(--gradient-soft);
}

/* Badge */
.badge-custom {
  display: inline-block;
  background: rgba(108, 77, 246, 0.1);
  color: var(--secondary);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}


/* List */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.check-item {
  display: flex;
  gap: 15px;
}

/* Icon */
.check-icon {
  min-width: 32px;
  height: 32px;
  font-size: 24px;
  border: solid 4px #D6AEFF;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-list.numbered .check-icon {
  font-size: 18px;
}
.check-list.numbered::before{
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  border: dashed 1px #D6AEFF;
  z-index: -1;
}

/* List Text */
.brand-item h6 {
  font-weight: 600;
  margin-bottom: 4px;
}

.brand-item p {
  font-size: 14px;
  margin: 0;
  color: var(--text-light);
}

/* Image */
.brand-image {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 1024px) {
  .brand-image{
    margin: 30px 0;
  }
}

.brand-image img {
  width: 100%;
  border-radius: 12px;
}

/* ================= IMPACT SECTION ================= */

.dark-section {
  background: radial-gradient(circle at top, #1e293b, #0f172a);
  color: #fff;
}

/* CARDS */
.impact-card {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 30px;
  text-align: left;
  transition: 0.3s;
}

.impact-card:hover {
  transform: translateY(-5px);
}

/* Numbers */
.impact-card h3 {
  font-size: 28px;
  font-weight: 700;
}

/* Text */
.impact-card p {
  margin-top: 5px;
  color: #94A3B8;
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 300;
}

/* ================= SUCCESS STORIES ================= */

.success-section {
  background: var(--bg-light);
}

/* CARD */
.success-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.success-card h1,
.success-card h2,
.success-card h3,
.success-card h4,
.success-card h5,
.success-card h6 {
  color: var(--white);
}

/* IMAGE */
.success-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
  aspect-ratio: 6 / 7.5;
}

/* OVERLAY */
.success-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(124, 58, 127, 0.95),
      rgba(124, 58, 127, 0),
      transparent);
}

/* CONTENT */
.success-card .content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
}
.success-card .content h3{
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* STATS */
.success-card .stats {
  background-color: transparent;
  display: flex;
  gap: 15px;
  font-size: 16px;
  margin: 0 0 16px;
  opacity: 0.9;
}
@media (max-width: 992px) {
  .success-card .stats {
    flex-direction: column;
    font-size: 14px;
    gap: 0;
  }
}



/* HOVER */
.success-card:hover img {
  transform: scale(1.05);
}

/* LINK */
.link-primary {
  color: var(--secondary) !important;
  font-weight: 500;
  text-decoration: none;
}

/* LABEL */
.label {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}

/* COLORS */
.label-gold {
  color: #E5B855;
}

.label-purple {
  color: #C084FC;
}

.label-blue {
  color: #60a5fa;
}

.label-green {
  color: #34d399;
}

/* ================= CAMPAIGN SECTION ================= */

/* SECTION */
.campaign-section {
  background: var(--bg-soft);
  position: relative;
}

/* SCROLL AREA */
.scroll-campaign {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  cursor: grab;
}

.scroll-campaign.dragging {
  cursor: grabbing;
}

/* HIDE SCROLLBAR */
.scroll-campaign::-webkit-scrollbar {
  display: none;
}

/* CARD */
.campaign-card {
  flex: 0 0 calc((100% - 40px) / 3.25);
  /* shows partial card */
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  transition: 0.3s;
}

.campaign-card:hover {
  box-shadow: var(--shadow-md);
  background: var(--bg-light);
}

/* TOP */
.campaign-top {
  background: rgba(108, 77, 246, 0.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

/* TAG */
.campaign-tag {
  background: var(--secondary);
  color: #fff;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 999px;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons i {
  background: var(--white);
  border-radius: 50%;
  padding: 6px;
  font-size: 18px;
  color: var(--secondary);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.soci-img img{
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.campaign-body {
  padding: 24px;
}

.campaign-body h5 {
  font-weight: 600;
}

.category {
  font-size: 13px;
  color: var(--text-light);
}

.campaign-body p {
  margin: 15px 0;
  font-size: 14px;
  color: var(--text-light);
}

.campaign-info {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 24px;
}

.campaign-info div {
  padding: 12px;
  flex: 1;
}

.campaign-info div:first-child {
  background: #f3f4f6;
  border-radius: 12px;
}

.campaign-info small {
  color: var(--text-light);
  display: block;
  font-size: 12px;
}

.campaign-info div:first-child strong {
  color: var(--secondary);
}

/* META */
.campaign-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.campaign-meta i {
  margin-right: 5px;
}

.btn-apply {
  display: block;
  text-align: center;
  background: var(--primary);
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
}

.nav-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  margin-top: 32px;
  gap: 16px;
}

.scroll-btn {
  background: #fff;
  border: none;
  box-shadow: var(--shadow-sm);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .campaign-card {
    flex: 0 0 70%;
  }

  .scroll-btn {
    display: none;
  }
}

@media (max-width: 576px) {
  .campaign-card {
    flex: 0 0 85%;
  }
}

/* PREVENT TEXT SELECTION */
.scroll-campaign,
.scroll-campaign * {
  user-select: none;
  -webkit-user-drag: none;
}

/* IMAGES (if any) */
.scroll-campaign img {
  pointer-events: none;
}

/* CURSOR */
.scroll-campaign {
  cursor: grab;
  scroll-behavior: smooth;
}

.scroll-campaign.dragging {
  cursor: grabbing;
}

/* ================= INNER HERO ================= */

.inner-hero {
  background: var(--gradient-soft);
  padding: 160px 0 80px;
}

/* TITLE */
.inner-title {
  font-size: 60px;
  font-weight: 700;
  color: var(--title-color);
  line-height: 1.2;
}

/* SUBTITLE */
.inner-subtitle {
  margin-top: 15px;
  color: var(--text-light);
}
.pb-200{
  padding-bottom: 200px;
}

/* IMAGE */
.inner-hero-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (max-width: 1024px) {
  .inner-hero-media{
    margin: 30px 0;
  }
}

.inner-hero-media img {
  width: 100%;
  display: block;
}

/* BADGE (BOTTOM OVERLAY) */
.hero-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
}

.badge-content {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge-content strong {
  font-size: 14px;
  display: block;
}

.badge-content span {
  font-size: 12px;
  color: var(--text-light);
}

/* PLAY BUTTON */
.play-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {

  .inner-hero {
    text-align: center;
  }

  .inner-title {
    font-size: 34px;
  }

  .inner-subtitle {
    margin: auto;
  }

  .inner-hero-media {
    margin-top: 30px;
  }
}

/* ================= DUAL SECTION ================= */

.dual-section {
  /* background: var(--gradient-soft); */
}

/* CARD */
.dual-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border);
  text-align: left;
  height: 100%;
  transition: 0.3s;
}

.dual-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}



/* ICON */
.dual-card .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
}

.dual-card .icon-box i {
  font-size: 20px;
}

/* COLORS */
.icon-purple {
  background: rgba(108,77,246,0.1);
  color: var(--secondary);
}

.icon-gold {
  background: rgba(212,175,55,0.15);
  color: var(--primary);
}

/* TEXT */
.dual-card h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.dual-card p {
  color: var(--text-light);
  font-size: 14px;
}

/* LIST */
.dual-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.dual-list li {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dual-list i {
  font-size: 14px;
}

.dual-card.purple i {
  color: var(--secondary);
}

.dual-card.gold i{
  color: var(--primary);
}

/* ================= RISE SECTION ================= */

.rise-section {
  background: var(--bg-soft);
}


/* DIVIDER */
.rise-divider {
  height: 1px;
  background: var(--border);
  margin: 25px 0;
}

/* STATS */
.rise-stats h3 {
  color: var(--primary);
  font-weight: 700;
  font-size: 28px;
}

.rise-stats p {
  font-size: 13px;
  color: var(--text-light);
}

/* IMAGE */
.rise-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (max-width: 1024px) {
  .rise-image{
    margin: 30px 0;
  }
}

.rise-image img {
  width: 100%;
  display: block;
}

/* ================= HOW WE WORK ================= */

.how-work {
}

/* CARD */
.work-card-simple {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
}


/* ICON */
.icon-box-simple {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #eef2f7;
  color: var(--title-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 24px;
}

.icon-box-simple i {
  font-size: 18px;
}

/* TEXT */
.work-card-simple h5 {
  font-weight: 600;
  margin-bottom: 24px;
}

.work-card-simple p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* RIGHT GRID */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.stat-card {
  background: var(--bg-soft);
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: solid 1px var(--border);
}

.stat-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--title-color);
}

.stat-card p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 0;
}

/* DARK CARD */
.stat-card.dark {
  background: var(--bg-dark);
  color: #fff;
}

.stat-card.dark h3,
.stat-card.dark p {
  color: #fff;
}

/* PURPLE CARD */
.stat-card.purple {
  background: rgba(108,77,246,0.25);
}

.section-overlap{
  position: relative;
  top: -110px;
}
.img-video{
  background: var(--gradient-imgbg);
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
}
.img-video img{
  width: 100%;
  border-radius: 12px;
}
.img-video video{
  width: 100%;
  border-radius: 12px;
}

/* LIST */
.list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.list li {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.list i {
  color: var(--secondary);
  font-size: 18px;
}

@media (max-width: 768px) {

  .card {
    text-align: center;
  }

}

/* CARD */
.trend-card {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--border);
  text-align: left;
  height: 100%;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* SOFT GRADIENT VERSION */
.gradient-purple {
  background: linear-gradient(135deg, rgba(108,77,246,0.08), #fff);
}

/* HOVER */
.trend-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* ICON */
.trend-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: rgba(108,77,246,0.15);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.trend-icon.gold {
  background: rgba(212,175,55,0.15);
  color: var(--primary);
}

/* TEXT */
.trend-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.trend-card p {
  font-size: 14px;
  color: var(--text-light);
}
.trend-card p:last-child {
  margin-bottom: 0;
}

/* CARD */
.platform-card {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 30px 20px;
  border: 1px solid var(--border);
  text-align: center;
  transition: 0.3s;
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

/* ICON */
.platform-icon {
  font-size: 22px;
  margin-bottom: 10px;
}

/* PLATFORM COLORS */
.platform-icon.instagram {
  color: var(--secondary);
}

.platform-icon.facebook{
  color: #000;
}

.platform-icon.youtube {
  color: #ff0000;
}

.platform-icon.twitter {
  color: #1da1f2;
}

/* VALUE */
.platform-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--title-color);
}

/* COLOR VARIATIONS */
.value.purple {
  color: var(--secondary);
}

.value.red {
  color: #ff0000;
}

.value.blue {
  color: #1da1f2;
}

/* TEXT */
.platform-card p {
  font-size: 13px;
  color: var(--text-light);
}
.platform-card p:last-child {
  margin-bottom: 0;
}

/* BADGES WRAPPER */
.cta-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BADGE */
.cta-badge {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
}

/* ICON COLORS */
.cta-badge i {
  color: var(--secondary);
}

.cta-badge:hover {
  background: var(--secondary);
  color: #fff;
  transition: 0.3s;
}

.cta-badge:hover i {
  color: #fff;
}

@media (max-width: 768px) {

  .cta-badges {
    gap: 10px;
  }

}

/* FILTER BAR */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 15px;
  background: var(--bg-soft);
  border-radius: 12px;
}

/* LEFT FILTERS */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filters select {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  font-size: 13px;
}

/* RIGHT */
.filter-right {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--text-light);
}

.reset {
  cursor: pointer;
}
.reset:hover {
  color: var(--secondary);
  transition: 0.3s;
}

/* ================= CONTACT ================= */

.contact-section {
  background: var(--gradient-light);
  padding: 160px 0 80px;
}

/* BOX */
.contact-box {
  display: flex;
  gap: 15px;
  background: var(--bg-soft);
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 15px;
  border: 1px solid var(--border);
}

.contact-box .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(108,77,246,0.15);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-box .icon.blue {
  background: rgba(59,130,246,0.15);
  color: #3b82f6;
}

.contact-box h6 {
  margin: 0;
}

.contact-box p {
  font-size: 13px;
  color: var(--text-light);
}

.contact-box address {
  font-size: 14px;
  color: var(--body);
}

.contact-box a {
  font-size: 14px;
  color: var(--secondary);
  text-decoration: none;
}

/* RESPONSE */
.contact-response {
  background: #e6f7ee;
  color: #047857;
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.contact-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 10px;
}

/* FORM */
.contact-form {
  background: var(--bg-soft);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.contact-form p {
  font-size: 13px;
  color: var(--text-light);
}

/* INPUTS */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-size: 13px;
  margin-bottom: 5px;
  display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 14px;
}

.form-group textarea {
  height: 120px;
  resize: none;
}

