/* ================================================== Hero Section ================================================== */
.io-hero-section {
    background: linear-gradient(to bottom, #ffffff, #f8e6ff, #f2d7ff);
    padding-top: 160px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.io-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1.3;
}

.io-gradient-text {
    background: linear-gradient(90deg, #a024ff, #ff3cac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.io-hero-subtext {
    color: #555;
    font-size: 1.1rem;
    max-width: 600px;
}

.io-hero-btn {
    background: linear-gradient(90deg, #a024ff, #ff3cac);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.io-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 61, 195, 0.3);
}

/* ================================
   RIGHT VIDEO CAROUSEL
  ================================ */
.io-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    overflow: visible;
    padding-left: 30px;
}

.io-hero-frame {
    padding: 4px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ff00b8, #b044ff);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 420px;
    height: 650px;
}

.io-hero-carousel {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 6px;
    box-sizing: border-box;
}

.io-carousel-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    animation: scrollVertical 28s linear infinite;
}

/* 🎬 Video wrapper fixed size and perfect shape */
.io-video-wrapper {
    width: 90%;
    height: 200px;
    /* fixed height for uniform look */
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: #000;
    flex-shrink: 0;
}

.io-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    transition: transform 0.3s ease;
}

.io-video-wrapper:hover video {
    transform: scale(1.05);
}

/* Pause scroll on hover */
.io-hero-carousel:hover .io-carousel-track {
    animation-play-state: paused;
}

/* Infinite smooth scroll */
@keyframes scrollVertical {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* ================================
   RESPONSIVE STYLES
  ================================ */
@media (max-width: 1199px) {
    .io-hero-title {
        font-size: 2.5rem;
    }

    .io-hero-subtext {
        font-size: 1.05rem;
    }

    .io-hero-image {
        height: 450px;
    }
}

@media (max-width: 1024px) {
    .io-hero-image {
        display: none !important;
    }

    .io-hero-content {
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .io-hero-section {
        padding: 150px 20px;
        text-align: center;
    }

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

    .io-hero-subtext {
        font-size: 0.95rem;
    }
}


/* =========================================== What We Offer Section ============================================== */
.hero-gradient-text {
    background: linear-gradient(90deg, #a024ff, #ff3cac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card styling with white bg and shadow */
.service-card-bootstrap {
    background: linear-gradient(135deg,
            rgba(233, 213, 255, 0.3) 0%,
            #ffffff 100%);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card-bootstrap:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
}

/* Image with rounded top corners only */
.service-image-fixed-height {
    height: 400px;
    object-fit: cover;
    border-radius: 3rem 3rem 0 0;
    /* top-left & top-right rounded */
    display: block;
}

.gradient-btn {
    background: linear-gradient(90deg, #a024ff, #ff3cac);
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
}

.gradient-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.25);
    opacity: 0.95;
}

/* Padding for large screens only */
@media (min-width: 992px) {
    #service-types-section .service-card-bootstrap img {
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Responsive: Stack images first on mobile */
@media (max-width: 991.98px) {
    .service-card-bootstrap {
        flex-direction: column !important;
    }

    .service-card-bootstrap img.service-image-fixed-height {
        width: 100% !important;
        height: auto !important;
        min-height: 250px;
        border-radius: 15px 15px 0 0 !important;
        padding: 0 !important;
    }

    .service-card-bootstrap .col-12.col-lg-6 {
        order: 0 !important;
    }
}


/* =========================================== Collaboration Section ============================================== */

.influencer-section {
    background: linear-gradient(135deg, #faf7ff, #f8f9ff);
}

.gradient-line {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #b249f8, #6f6af8);
}

.text-gradient {
    background: linear-gradient(90deg, #b249f8, #6f6af8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.influencer-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.influencer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.influencer-link {
    font-weight: 600;
    text-decoration: none;
}

.carousel-indicators [data-bs-target] {
    background-color: #b249f8;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.carousel {
    overflow: hidden;
}

/* ======================================== Collaboration Style Section =========================================== */

/* Section Base */
.collab-style-section {
    background: #fff;
}

/* Card Styling */
.collab-card {
    border-radius: 22px;
    color: #fff;
    text-align: left;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.collab-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* Background Overlay */
.collab-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg,
            rgba(178, 73, 248, 0.85),
            rgba(111, 106, 248, 0.85)),
        url("https://images.unsplash.com/photo-1607746882042-944635dfe10e?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.collab-card-bg.second {
    background: linear-gradient(135deg,
            rgba(178, 73, 248, 0.85),
            rgba(111, 106, 248, 0.85)),
        url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

/* Title & Line */
.collab-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
}

.collab-line {
    width: 50px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .collab-card {
        min-height: 280px;
        padding: 2rem;
    }

    .collab-card h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .collab-card {
        text-align: center;
        min-height: 260px;
    }

    .collab-line {
        margin: 0 auto 1rem;
    }
}

/* ================================================  Category Section ============================================== */
/* Gradient background for icons */
.icon-gradient-bg {
    background: linear-gradient(135deg, #a024ff, #ff3cac);
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(160, 36, 255, 0.2);
}

.icon-gradient-bg img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.youtuber-card {
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 2rem 1.5rem;
    background: #fff;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.youtuber-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.youtuber-card h5 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.youtuber-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

#youtuber-category-section .row {
    justify-content: center;
}

.desktop-grid {
    display: block;
}

.mobile-carousel {
    display: none;
}

@media (max-width: 767.98px) {
    .desktop-grid {
        display: none;
    }

    .mobile-carousel {
        display: block;
    }
}

/* Carousel dots */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(160, 36, 255, 0.3);
    transition: all 0.3s ease;
    margin: 0 5px;
    border: none;
}

.carousel-indicators .active {
    background: linear-gradient(135deg, #a024ff, #ff3cac);
    width: 12px;
    height: 12px;
    box-shadow: 0 0 8px rgba(160, 36, 255, 0.5);
}

.carousel-indicators {
    justify-content: center;
    gap: 6px;
}

/* ============================================= Leading Profile Section ============================================= */
/* Base Section */
.top-creators-section {
  text-align: center;
}

/* Gradient Title */
.gradient-text {
  background: linear-gradient(130deg, #9647f7, #e957b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top-creators-title {
  font-size: 2rem;
  font-weight: 700;
}

/* Card Styles */
.top-creator-card {
  border: 1px solid #e3d1ff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(200, 62, 242, 0.05);
  transition: all 0.3s;
}

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

.top-creator-img-wrapper {
  position: relative;
  padding: 12px;
}

.top-creator-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
}

.top-creator-icon {
  position: absolute;
  top: 20px;
  right: 22px;
  background: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Creator Info */
.top-creator-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  margin-bottom: 15px;
}

.top-creator-info h5 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.top-creator-info small {
  color: #777;
  font-size: 0.95rem;
  font-weight: 500;
}

.top-creator-followers {
  color: #c83ef2;
  font-weight: 700;
  text-align: right;
  font-size: 1.2rem;
  line-height: 1.1;
}

.top-creator-followers span {
  display: block;
  font-size: 0.85rem;
  color: #999;
  font-weight: 400;
}

/* Button Styles */
.top-creator-btn {
  width: 100%;
  border-radius: 25px;
  padding: 10px 0;
  font-weight: 500;
  color: #9647f7;
  background: transparent;
  border: 2px solid transparent;
  background-image: linear-gradient(white, white),
    linear-gradient(90deg, #9647f7, #e957b3);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  transition: all 0.3s ease;
}

.top-creator-btn:hover {
  color: #fff;
  background-image: linear-gradient(90deg, #9647f7, #e957b3);
  border-color: transparent;
}

/* Custom Carousel Buttons */
.btn-purple {
  background-color: #9647f7;
  color: #fff;
  border-radius: 25px;
  padding: 6px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.3s;
}

.btn-purple:hover {
  background-color: #e957b3;
  color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
  .top-creators-title {
    font-size: 1.6rem;
  }
  .top-creator-img {
    height: 200px;
  }
}


/* ===============================================  Our Process Section ============================================= */
/* Gradient for the pink text in the title */
.gradient-text {
    background: linear-gradient(130deg, #9647f7, #e957b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.process-title {
    font-size: 2.5rem;
    font-weight: 900;
}

/* Card Styling */
.process-card {
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: left;
    min-height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.process-card:hover {
    box-shadow: 0 10px 30px rgba(150, 71, 247, 0.1);
    transform: translateY(-5px);
}

.process-card-title {
    font-size: 1.25rem;
    color: #333;
}

.process-card-text {
    font-size: 0.95rem;
}

/* Icon Wrapper */
.process-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #a766f7, #f770a8);
    box-shadow: 0 5px 15px rgba(150, 71, 247, 0.4);
}

.process-icon {
    color: #fff;
    stroke-width: 2.5;
}

/* Read More Link */
.process-read-more {
    color: #c83ef2;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.process-read-more:hover {
    color: #9647f7;
}

/* Carousel Specific Styles */
.process-carousel .process-card {
    min-height: auto;
    margin: 0 auto;
}

.process-carousel .process-icon-wrapper {
    margin: 0 auto 1rem;
}

.process-carousel .carousel-inner {
    padding-bottom: 1rem;
}

/* Carousel Dots Styles */
.process-carousel .carousel-indicators {
    bottom: -20px;
}

.process-carousel .carousel-indicators [data-bs-target] {
    background-color: #c83ef2;
    opacity: 0.6;
}

.process-carousel .carousel-indicators .active {
    background-color: #9647f7;
    opacity: 1;
}

/* Responsiveness adjustments */
@media (max-width: 991px) {
    .process-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .process-title {
        font-size: 1.75rem;
    }
}