

/* Hero Section */
.hero-section {
    background: #fdfdfe;
    padding: 0 50px 80px 50px;
    position: relative;
}

.hero-img-container {
    position: relative;
}

.floating-icon {
    position: absolute;
    background: white;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    font-size: 24px;
}

.floating-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Brands & Stats */
/* .brand-marquee {
    padding: 0 50px 0 50px;
}

.brand-marquee .marq-cont{
    background-color: #f8f2fd;
    background: #f8f2fd;
    border-radius: 15px;
}
.brand-marquee .marq-cont .marq-title{
    width: 20%;
    
}
.brand-marquee .marq-cont .marq-logo{
    width: 80%;
    background: white;
    padding: 10px 0 10px 0;
    border-radius: 10px;
}

.brand-logo {
    max-height: 40px;
    opacity: 0.8;
    filter: grayscale(100%);
    transition: 0.3s;
}

.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.stats-box {
    border-right: 1px solid #e0e0e0;
}

.stats-box:last-child {
    border-right: none;
} */

/* Why Choose Cards */
.feature-card {
    border: 1px solid #f0eaff;
    border-radius: 15px;
    padding: 30px 20px;
    transition: 0.3s;
    background: #fff;
}

.feature-card:hover {
    box-shadow: 0 15px 30px rgba(111, 50, 229, 0.1);
    transform: translateY(-5px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

/* How it works */
.step-container {
    position: relative;
}

.step-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    border-top: 2px dashed #d1c4e9;
    z-index: -1;
}

.step-item:last-child .step-line {
    display: none;
}

.step-num {
    width: 30px;
    height: 30px;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 14px;
    font-weight: bold;
}

/* Categories */
.category-box {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    background: #fff;
    font-weight: 500;
    transition: 0.3s;
    cursor: pointer;
}

.category-box:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

/* Creators Section */
.creator-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background: #fff;
    text-align: center;
    padding: 25px;
}

.creator-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
}

/* Newsletter */
.newsletter-bar {
    border-radius: 20px;
    padding: 40px;
}


/* ==============================
   Trusted Brands Section
============================== */

.trusted-brands-section{
    background: #ffffff;
    overflow: hidden;
}

.trusted-brands-wrapper{
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #eee8f7;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(123, 47, 247, 0.04);
    background: #faf5ff;
}

/* Left Side */

.trusted-left{
    min-width: 260px;
    background: #faf5ff;
    padding: 40px 35px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.trusted-left h4{
    font-size: 30px;
    line-height: 1.5;
    font-weight: 700;
    color: #111111;
    margin: 0;
}

/* Moving Logos */

.trusted-logos{
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
    height: stretch;
    display: flex;
    border-radius: 20px;
    background: white;
}

.logo-track{
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.logo-item{
    margin: 0 45px;
    flex-shrink: 0;
}

.logo-item img{
    max-height: 42px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: 0.3s ease;
}

.logo-item img:hover{
    opacity: 1;
    transform: scale(1.05);
}

/* Animation */

@keyframes marquee {

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-50%);
    }

}

/* ==============================
   Responsive
============================== */

@media(max-width:991px){

    .trusted-brands-wrapper{
        flex-direction: column;
    }

    .trusted-left{
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 28px 20px;
    }

    .trusted-left h4{
        font-size: 26px;
    }

    .logo-item{
        margin: 0 28px;
    }

}

@media(max-width:576px){

    .trusted-left h4{
        font-size: 22px;
    }

    .logo-item img{
        max-height: 30px;
    }

}

/* =========================================
   Top Categories Section
========================================= */

.top-categories-section{
    /* padding: 90px 0; */
    background: #ffffff;
}




/* Categories Wrapper */

.categories-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

/* Card */

.category-card{
    width: 100%;
    max-width: 178px;
    min-height: 150px;
    border: 1px solid #eee7fb;
    border-radius: 24px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    transition: 0.3s ease;
    cursor: pointer;
}

.category-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(123, 47, 247, 0.08);
    border-color: #d9c4ff;
}

/* Icon */

.category-icon{
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 18px;
}

/* Background Colors */

.fashion{
    background: #f3e7ff;
}

.beauty{
    background: #ffe8f1;
}

.tech{
    background: #eef1ff;
}

.fitness{
    background: #f0e7ff;
}

.lifestyle{
    background: #e9fff1;
}

.food{
    background: #fff4dd;
}

.travel{
    background: #e8f7ff;
}

.gaming{
    background: #efe8ff;
}

.meme{
    background: #fff2d9;
}

/* Text */

.category-card h4{
    font-size: 20px;
    font-weight: 500;
    color: #111111;
    margin: 0;
}

/* =========================================
   Responsive
========================================= */

@media(max-width:991px){

    .section-heading h2{
        font-size: 42px;
    }

    .category-card{
        width: 120px;
        min-height: 140px;
    }

}

@media(max-width:576px){

    .top-categories-section{
        padding: 70px 0;
    }

    .section-heading h2{
        font-size: 34px;
    }

    .categories-wrapper{
        gap: 15px;
    }

    .category-card{
        width: 46%;
        min-height: 130px;
    }

    .category-icon{
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .category-card h4{
        font-size: 18px;
    }

}


/* =========================================
   Stats Section
========================================= */

.stats-section{
    background: #ffffff;
    /* padding: 80px 0; */
}

.stats-wrapper{
    background: #ffffff;
    border: 1px solid #eee7fb;
    border-radius: 24px;
    padding: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 40px rgba(123, 47, 247, 0.04);
    overflow: hidden;
}

/* Item */

.stats-box{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 18px 30px;
    border-right: 1px solid #f0e9ff;
}

/* Remove Last Border */

.border-none{
    border-right: none;
}

/* Icon */

.stats-icon{
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

/* Icon Colors */

.purple-bg{
    background: #f2e8ff;
    color: var(--primary-purple);
}

.light-purple-bg{
    background: #f5efff;
    color: var(--primary-purple);
}

.pink-bg{
    background: #f5efff;
    color: var(--primary-purple);
}

.blue-bg{
    background: #f5efff;
    color: var(--primary-purple);
}

/* Content */

.stats-content h2{
    font-size: 35px;
    font-weight: 500;
    color: #7b2ff7;
    margin-bottom: 4px;
    line-height: 1;
}

.stats-content p{
    font-size: 22px;
    color: #444;
    font-weight: 500;
    margin: 0;
}

/* =========================================
   Responsive
========================================= */

@media(max-width:991px){

    .stats-wrapper{
        flex-wrap: wrap;
    }

    .stats-box{
        width: 50%;
        flex: unset;
        border-right: none;
        border-bottom: 1px solid #f0e9ff;
        justify-content: flex-start;
    }

    .stats-content h2{
        font-size: 42px;
    }

}

@media(max-width:576px){

    .stats-box{
        width: 100%;
        padding: 22px 18px;
    }

    .stats-content h2{
        font-size: 36px;
    }

    .stats-content p{
        font-size: 18px;
    }

    .stats-icon{
        width: 62px;
        height: 62px;
        font-size: 24px;
    }

}

/* =========================================
   Creator Showcase Section
========================================= */

.creator-showcase-section{
    background: #faf7ff;
    overflow: hidden;
}

/* Left Content */

.creator-left-content h2{
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
    color: #111111;
    margin-bottom: 22px;
}

.creator-left-content h2 span{
    display: block;
    color: #7b2ff7;
}

.creator-left-content p{
    font-size: 20px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 35px;
}

/* Button */

.creator-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border: 2px solid #7b2ff7;
    border-radius: 16px;
    text-decoration: none;
    color: #7b2ff7;
    font-size: 18px;
    font-weight: 700;
    transition: 0.3s ease;
}

.creator-btn:hover{
    background: #7b2ff7;
    color: #ffffff;
}

/* Card */

.creator-card{
    background: #ffffff;
    border: 1px solid #eee7fb;
    border-radius: 28px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.3s ease;
    min-height: 430px;
    position: relative;
}

.creator-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(123, 47, 247, 0.08);
}

/* Highlight Card */

.active-card{
    background: linear-gradient(180deg,#fff7ff 0%, #ffffff 100%);
}

/* Image */

.creator-img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto auto 22px;
    background: #f4efff;
}

.creator-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pink-bg{
    background: #ffe6f1;
}

/* Content */

.creator-card h4{
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 12px;
}

.creator-card p{
    font-size: 20px;
    color: #666666;
    margin-bottom: 14px;
}

.creator-card h5{
    font-size: 16px;
    color: #111111;
    font-weight: 700;
    margin-bottom: 24px;
}

/* Platform Icon */

.platform-icon{
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: auto; */
    font-size: 28px;
}

.instagram{
    background: #fff0f6;
    color: #ff3d8d;
}

.youtube{
    background: #fff0f0;
    color: #ff0000;
}

.facebook{
    background: #eef5ff;
    color: #1877f2;
}

/* Arrow */

.creator-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid #e9ddff;
    background: #ffffff;
    color: #7b2ff7;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 2;
}

.creator-arrow:hover{
    background: #7b2ff7;
    color: #ffffff;
}

.left-arrow{
    left: 0px;
}

.right-arrow{
    right: 0px;
}

/* =========================================
   Responsive
========================================= */

@media(max-width:1399px){

    .left-arrow{
        left: -15px;
    }

    .right-arrow{
        right: -15px;
    }

}

@media(max-width:991px){

    .creator-left-content{
        text-align: center;
    }

    .creator-left-content h2{
        font-size: 44px;
    }

    .creator-card{
        min-height: auto;
    }

}

@media(max-width:576px){

    .creator-showcase-section{
        padding: 70px 0;
    }

    .creator-left-content h2{
        font-size: 36px;
    }

    .creator-left-content p{
        font-size: 17px;
    }

    .creator-btn{
        width: 100%;
        justify-content: center;
    }

    .creator-arrow{
        display: none;
    }

}

.creatorSwiper{
    overflow: hidden;
    padding-left: 25px;
    padding-right: 25px;
}

/* =========================================
   Newsletter Section
========================================= */

.newsletter-section{
    background: #ffffff;
}

/* Wrapper */

.newsletter-wrapper{
    background: linear-gradient(90deg,#7b2ff7 0%, #5f1ddf 100%);
    padding: 45px;
    overflow: hidden;
    position: relative;
}

/* Glow Effect */

.newsletter-wrapper::before{
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    left: -80px;
    top: -80px;
}

/* Left Content */

.newsletter-content{
    gap: 24px;
    position: relative;
    z-index: 2;
}

/* Icon */

.newsletter-icon{
    width: 110px;
    height: 110px;
    min-width: 110px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);

    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-icon i{
    font-size: 42px;
    color: #ffffff;
}

/* Text */

.newsletter-text h2{
    font-size: 35px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.newsletter-text p{
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin: 0;
    max-width: 500px;
}

/* Input */

.newsletter-input{
    height: 45px;
    border-radius: 5px;
    border: none;
    padding: 0 24px;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    box-shadow: none !important;
}

/* Button */

.newsletter-btn{
    height: 45px;
    border: none;
    border-radius: 5px;
    background: #ffffff;
    color: #7b2ff7;
    font-size: 18px;
    font-weight: 700;
    transition: 0.3s ease;
}

.newsletter-btn:hover{
    background: #111111;
    color: #ffffff;
}

/* =========================================
   Responsive
========================================= */

@media(max-width:991px){

    .newsletter-wrapper{
        padding: 35px 25px;
    }

    .newsletter-content{
        flex-direction: column;
        align-items: flex-start !important;
    }

}

@media(max-width:576px){

    .newsletter-text h2{
        font-size: 26px;
    }

    .newsletter-text p{
        font-size: 15px;
    }

    .newsletter-icon{
        width: 85px;
        height: 85px;
        min-width: 85px;
    }

    .newsletter-icon i{
        font-size: 32px;
    }

}

@media only screen and (max-width:576px){
    /* hero section start */
    .hero-section{
        padding: 10px 10px 30px 10px;
        text-align: center;
    }
    .hero-section h1{
        font-size: 26px;
    }
    .hero-section p{
        font-size: 16px !important;
    }
    .hero-section .banner-btns{
        display: block !important;
    }
    .hero-section .banner-btns button{
        width: 80%;
        border-radius: 10px;
    }
    .hero-section .banner-btns button:first-child{
        margin-bottom: 10px;
    }
    /* hero section end  */

    /* truested brands start */
    .trusted-brands-wrapper{
        border-radius: 10px;
    }
    .trusted-left{
        padding: 15px 5px;
    }
    .trusted-left h4{
        font-size: 16px;
    }
    .trusted-left br {
        display: none;
    }
    /* trusted brands end */

    /* stats start */
    .stats-section{
        padding-top: 35px;
    }
    .stats-wrapper{
        padding: 20px 5px;
    }
    .stats-box{
        width: 50%;
        padding: 20px 3px;
    }
    .stats-content h2{
        font-size: 25px;
    }
    .stats-content p{
        font-size: 13px;
    }
    .stats-box:nth-child(3),.stats-box:nth-child(4){
        border: none;
    }
    .stats-icon{
        width: 50px;
        height: 50px;

    }

    /* why choose start */
    .feature-card{
        display: flex;
        text-align: left;
        gap: 25px;
        align-items: center;
    }
    .icon-circle{
        margin: 0;
        min-width: 70px;
        min-height: 70px;
        height: 70px;
        width: 70px;
    }

    /* top categories start */
    .categories-wrapper{
        gap: 15px;
    }
    .category-card{
        width: 28%;
        min-width: 85px;
        padding: 6px 15px;
        min-height: 120px;
    }
    .category-icon{
        margin-bottom: 13px;
    }
    .category-card h4{
        font-size: 16px;
        font-weight: 500;
    }


    .creator-left-content h2{
        font-size: 27px;
    }
    .creator-left-content h2 span{
        display: unset;
    }
    .creatorSwiper{
        padding-left: 0;
        padding-right: 0;
    }
    .creator-img{
        width: 100px;
        height: 100px;
    }
    .creator-card h4{
        font-size: 14px;
    }
    .creator-card p{
        font-size: 13px;
    }
    .creator-card h5{
        font-size: 14px;
    }
    .creator-left-content p{
        margin-bottom: 5px;
    }
    .creator-card{
        
    }
}

/* =========================================
   Brand Form Section
========================================= */

.brand-form-section {
    background: linear-gradient(135deg, #ffffff 0%, #faf7ff 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.brand-form-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 1;
}

.brand-form-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
    z-index: 1;
}

.min-vh-70 {
    min-height: 70vh;
}

/* Left Content */
.brand-form-left {
    position: relative;
    z-index: 2;
    /* background: linear-gradient(125deg, rgba(247, 239, 255, 0.48) 0%, rgba(253, 253, 253, 1) 100%); */
    /* background: linear-gradient(125deg, rgba(247, 239, 255, 0.48) 0%, rgb(253 253 253 / 70%) 100%); */
    padding: 60px 40px;
}

.brand-left-content {
    width: 100%;
    /* max-width: 480px; */
}

.brand-content-wrapper {
    position: relative;
}

.badge-label {
    display: inline-block;
    background: #f0e7ff;
    color: #7b2ff7;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.brand-left-content h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    color: #111111;
    margin-bottom: 20px;
}

.brand-left-content h2 span {
    color: #7b2ff7;
}

.brand-left-content p {
    font-size: 18px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}

.benefits-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f0e7ff;
    color: #7b2ff7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.benefits-list h5 {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 6px;
}

.benefits-list p {
    font-size: 14px;
    color: #888888;
    line-height: 1.6;
    margin: 0;
}

/* Brand Stats */
.brand-stats {
    display: flex;
    gap: 32px;
    align-items: center;
    padding-top: 30px;
    border-top: 2px solid rgba(123, 47, 247, 0.1);
}

.stat-item h4 {
    font-size: 28px;
    font-weight: 800;
    color: #7b2ff7;
    margin-bottom: 6px;
}

.stat-item p {
    font-size: 14px;
    color: #888888;
    margin: 0;
}

/* Right Form */
.brand-form-right {
    position: relative;
    z-index: 2;
    /* background: #ffffff; */
    padding: 60px 40px;
}

.brand-form-wrapper {
    width: 100%;
    /* max-width: 420px; */
}

.form-header-section h3 {
    font-size: 32px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 8px;
}

.form-header-section p {
    font-size: 16px;
    color: #888888;
    margin: 0;
}

.custom-input {
    height: 48px;
    border: 1.5px solid #e8e0f7;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s ease;
    background: #ffffff;
}

.custom-input:focus {
    border-color: #7b2ff7;
    box-shadow: 0 0 0 0.2rem rgba(123, 47, 247, 0.12);
    background: #ffffff;
}

.custom-input::placeholder {
    color: #c9c0d8;
}

.custom-textarea {
    min-height: 100px;
    border: 1.5px solid #e8e0f7;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    resize: vertical;
    background: #ffffff;
}

.custom-textarea:focus {
    border-color: #7b2ff7;
    box-shadow: 0 0 0 0.2rem rgba(123, 47, 247, 0.12);
}

.form-label {
    font-size: 14px;
    color: #111111;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-check {
    /* padding-left: 0; */
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    border: 2px solid #e8e0f7;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s ease;
}

.form-check-input:checked {
    background-color: #7b2ff7;
    border-color: #7b2ff7;
}

.form-check-label {
    margin-left: 10px;
    font-size: 14px;
    color: #666666;
    cursor: pointer;
}

.form-check-label a {
    text-decoration: none;
    color: #7b2ff7;
    transition: 0.3s ease;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.btn-primary {
    background: linear-gradient(90deg, #7b2ff7 0%, #5f1ddf 100%);
    border: none;
    border-radius: 10px;
    height: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(123, 47, 247, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #6a1de3 0%, #5415d0 100%);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(123, 47, 247, 0.3);
    transform: translateY(-2px);
}

/* =========================================
   Brand Form Responsive
========================================= */


/* =========================================
   Brand Page Start
========================================= */

.brand-banner{
    background: #f7f4fc;
}
.brand-banner .floating-card{
    top: 60px;
    bottom: unset;
}
.brand-banner .floating-card2{
    position: absolute;
    bottom: 90px;
    right: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.case-studies-section{
    background:#fff;
}

.section-title h2{
    font-size:2rem;
    font-weight:800;
    color:#111;
}

.section-title span{
    color:#7b2ff7;
}

.case-card{
    background:#fff;
    border:1px solid #ece7f7;
    border-radius:24px;
    padding:35px;
    height:100%;
    transition:.3s;
}

.case-card:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 50px rgba(123,47,247,.08);
}

.brand-logo{
    max-height:40px;
    width:auto;
}
.brand-logo-realmsquare{
    filter: drop-shadow(2px 4px 6px black);
}

.industry-tag{
    background:#f4ecff;
    color:#7b2ff7;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.stats-row{
    display:flex;
    gap:25px;
    margin-bottom:25px;
}

.stats-row h3{
    font-size:25px;
    font-weight:800;
    margin-bottom:5px;
    color:#111;
}

.stats-row span{
    color:#666;
    font-size:16px;
}

.case-card p{
    color:#555;
    line-height:1.8;
    margin:0;
}

.product-img{
    /* max-width:170px; */
    max-height: 170px;
}

.case-prev,
.case-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:52px;
    height:52px;
    background:#fff;
    border:1px solid #ece7f7;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:5;
    cursor:pointer;
    color:#7b2ff7;
}

.case-prev{
    left:-25px;
}

.case-next{
    right:-25px;
}

.case-prev:hover,
.case-next:hover{
    background:#7b2ff7;
    color:#fff;
}

@media(max-width:991px){

    .section-title h2{
        font-size:34px;
    }

    .stats-row{
        gap:25px;
    }

    .stats-row h3{
        font-size:25px;
    }

    .case-prev,
    .case-next{
        display:none;
    }

}


/* =========================================
   Brand Page End
========================================= */


/* =========================================
   Influencer Page start
========================================= */
.influencer-banner{
    background: #EFE3FA;
    background: linear-gradient(90deg, rgba(239, 227, 250, 1) 0%, rgba(239, 227, 250, 1) 50%, rgba(221, 201, 243, 1) 100%);
    padding: 0 50px 0px 50px;
}

.platform-support-section{
    background:#fff;
}

.platform-box{

    background:
    linear-gradient(
    90deg,
    #06032f,
    #09054a,
    #06032f
    );

    border-radius:20px;

    padding:50px 40px;

    position:relative;

    overflow:hidden;
}

/* Decorative Waves */

.platform-box::before{
    content:"";

    position:absolute;

    bottom:-60px;
    left:-60px;

    width:350px;
    height:200px;

    border:2px solid rgba(130,100,255,.15);

    border-radius:50%;

    transform:rotate(-15deg);
}

.platform-box::after{
    content:"";

    position:absolute;

    bottom:-60px;
    right:-60px;

    width:350px;
    height:200px;

    border:2px solid rgba(130,100,255,.15);

    border-radius:50%;

    transform:rotate(15deg);
}

.platform-heading{

    color:#fff;

    text-align:center;

    font-size:42px;

    font-weight:700;

    margin-bottom:40px;
}

.platform-item{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    border-right:
    1px dashed rgba(255,255,255,.25);

    padding:10px;
}

.platform-icon{

    width:65px;
    height:65px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    color:#fff;

    flex-shrink:0;
}

/* Colors */

.instagram{
    background:
    linear-gradient(
    45deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
    );
}

.youtube{
    background:#ff0000;
}

.facebook{
    background:#1877f2;
}

.meme{
    background:#ffc107;
    font-size:32px;
}

.platform-content h5{

    color:#fff;

    font-size:28px;

    font-weight:600;

    margin-bottom:4px;

    text-align:left;
}

.platform-content p{

    color:#fff;

    opacity:.9;

    font-size:16px;

    margin:0;

    text-align:left;
}

.creator-showcase-section .creator-benefits .benefits-list{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}
.creator-showcase-section .creator-benefits .benefits-list p{
    font-weight: 600;
    font-size: 16px;
}
.creator-showcase-section .creator-benefits .benefits-list i{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #6f32e526;
    border-radius: 100%;
    color: #6f32e5;
}

.collaboration-section{

    background:#efe5ff;
    border-radius:20px;
}

.section-title{

    /* font-size:42px; */
    font-weight:700;
    color:#16153b;
    margin-bottom:10px;
}

.section-subtitle{

    color:#666;
    font-size:18px;
}

.opportunities-wrapper{

    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
}

.opportunity-item{

    display:flex;
    align-items:center;
    gap:15px;
}

.opportunity-item h6{

    font-size:20px;
    font-weight:600;
    margin-bottom:4px;
    color:#222;
}

.opportunity-item p{

    margin:0;
    color:#555;
    font-size:18px;
}

.opportunity-icon{

    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;

    border-radius:50%;
}

.product{
    color:#ffb300;
}

.fashion{
    color:#6f7cff;
}

.tech{
    color:#3b82f6;
}

.meme{
    font-size:38px;
}

.event{
    color:#ff8c00;
}

.divider{

    width:1px;
    height:55px;
    background:#d7c9ff;
}

.collaboration-section .opportunities-wrapper{
    justify-content: space-between;
}

.faq-form-section{
    background:#fff;
}

.faq-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:30px;
    color:#101235;
}

/* FAQ */

.custom-faq .accordion-item{

    border:1px solid #ececec;
    border-radius:15px !important;
    overflow:hidden;
    margin-bottom:15px;
}

.custom-faq .accordion-button{

    background:#fff;
    font-size:18px;
    font-weight:500;
    padding:22px 25px;

    box-shadow:none;
}

.custom-faq .accordion-button:not(.collapsed){

    background:#fff;
    color:#6d28ff;
}

.custom-faq .accordion-button::after{
    display:none;
}

.custom-faq .accordion-button::before{

    content:"+";

    margin-right:20px;

    font-size:26px;

    font-weight:700;

    color:#22154c;
}

.custom-faq .accordion-button:not(.collapsed)::before{
    content:"−";
}

/* Form */

.join-form-card{

    background:
    linear-gradient(
    135deg,
    #fbf7ff,
    #f6eefd
    );

    border:1px solid #eee;

    border-radius:20px;

    padding:40px;

    position:relative;
}

.join-form-card h2{

    color:#5b21b6;

    font-size:40px;

    font-weight:700;

    margin-bottom:10px;
}

.join-form-card p{

    color:#666;
    margin-bottom:25px;
}

.custom-input{

    height:58px;

    border-radius:10px;

    border:1px solid #ececec;
}

.custom-input:focus{

    box-shadow:none;

    border-color:#7b2ff7;
}

.submit-btn{

    width:100%;

    height:60px;

    border:none;

    border-radius:10px;

    color:#fff;

    font-size:18px;

    font-weight:600;

    background:
    linear-gradient(
    90deg,
    #7b2ff7,
    #9d4dff
    );

    transition:.3s;
}

.submit-btn:hover{

    transform:translateY(-2px);
}

.arrow-icon{

    position:absolute;

    top:40px;

    right:25%;

    font-size:40px;

    color:#222;

    opacity:.7;
}
@media(max-width:991px){

    .platform-item{

        justify-content:flex-start;

        border-right:none;

        border-bottom:
        1px dashed rgba(255,255,255,.2);

        padding:25px 0;
    }

    .platform-heading{
        font-size:30px;
    }
        .opportunities-wrapper{

        flex-direction:column;
        align-items:flex-start;
    }

    .divider{

        width:100%;
        height:1px;
    }

    .section-title{

        font-size:32px;
    }
}
@media(max-width:768px){
    .arrow-icon{
        display: none;
    }
}
@media(max-width:576px){
    .creator-showcase-section .creator-benefits .benefits-list p{
        font-size: 13px;
    }
    .influencer-banner{
        padding: 20px 0 0 0;
    }
    .influencer-banner .floating-card2{
        padding: 5px 10px;
        bottom: 5px;
        right: 5px;
    }
    .platform-heading{
        font-size: 24px;
    }
    .platform-icon{
        width: 55px;
        height: 55px;
    }
    .platform-content h5{
        font-size: 18px;
    }
    
}
/* =========================================
   Influencer Page end
========================================= */

/* =========================================
   About Page start
========================================= */

/* ==========================
   ABOUT HERO
========================== */

.about-hero-section{
    
    padding-top:40px;
    padding-bottom:80px;
}

.about-content{
    padding:60px 80px;
    border-radius: 0 0 80px 0;
    height:100%;
}

.about-content h1{
    font-size:45px;
    font-weight:700;

    line-height:1.15;

    color:#101235;

    margin-bottom:25px;
}

.about-content h1 span{

    display:block;

    color:#7b2ff7;
}

.about-content p{

    font-size:16px;

    line-height:1.9;

    color:#666;

    /* max-width:650px; */

    margin-bottom:40px;
}

.about-btn{

    display:inline-flex;

    align-items:center;

    padding:16px 32px;

    border-radius:12px;

    text-decoration:none;

    background:
    linear-gradient(
    90deg,
    #7b2ff7,
    #9c5cff
    );

    color:#fff;

    font-weight:600;
}

.about-btn:hover{

    color:#fff;
}

.about-image{

    overflow:hidden;
    text-align: right;
}

.about-image img{
    /* width:100%;
    height:100%;
    object-fit:cover; */
    border-radius: 120px 0 0 120px;
}
.about-hero-section{
    background: linear-gradient(
    135deg,
    #faf7ff,
    #ffffff
    );
}

/* ==========================
   MISSION SECTION
========================== */

.mission-section{

    background:#fff;
}

/* Tag */

.section-tag{

    display:inline-block;

    color:#7b2ff7;

    font-weight:700;

    letter-spacing:1px;

    font-size:14px;

    margin-bottom:15px;
}

/* Heading */

.mission-title{

    font-size:40px;

    font-weight:800;

    color:#101235;

    margin-bottom:25px;
}

.mission-title span{

    color:#7b2ff7;
}

/* Description */

.mission-desc{

    color:#666;

    font-size:16px;

    line-height:1.9;

    margin-bottom:30px;
}

/* List */

.mission-list{

    list-style:none;

    padding:0;

    margin:0 0 35px;
}

.mission-list li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:18px;

    font-size:16px;

    color:#222;
}

.mission-list i{

    color:#7b2ff7;

    font-size:20px;
}

/* Button */

.mission-btn{

    display:inline-flex;

    align-items:center;

    text-decoration:none;

    padding:12px 24px;

    border-radius:12px;

    background:
    linear-gradient(
    90deg,
    #7b2ff7,
    #9c5cff
    );

    color:#fff;

    font-weight:600;
}

.mission-btn:hover{

    color:#fff;
}

/* Image Card */

.mission-image-card{

    position:relative;

    overflow:hidden;

    border-radius:25px;
}

.mission-image-card img{

    width:100%;

    border-radius:25px;
}

/* Floating Card */

.mission-floating-card{

    position:absolute;

    bottom:25px;

    left:25px;

    display:flex;

    align-items:center;

    gap:15px;

    background:#fff;

    padding:18px 22px;

    border-radius:18px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.12);
}

.mission-section .floating-icon{
    position: relative;
    width:55px;
    height:55px;

    border-radius:50%;

    background:#f2e8ff;

    color:#7b2ff7;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;
}

.mission-floating-card h5{

    margin:0;

    font-size:18px;

    font-weight:700;

    color:#101235;
}

.mission-floating-card p{

    margin:0;

    color:#666;

    font-size:14px;
}

/* ==========================
   ABOUT STATS
========================== */

.about-stats-section{

    background:#fff;
}

.about-stats-section .stats-wrapper{

    background: linear-gradient(90deg,#7b2ff7,#8d3cff,#9c5cff);
    border-radius:25px;
    overflow:hidden;
    box-shadow: 0 20px 40px rgba(123,47,247,.25);
    padding: unset;
    display: block;
}

.about-stats-section .stat-item{
    padding:25px 15px;
    border-right:
    1px solid rgba(255,255,255,.20);
}

.about-stats-section .stat-icon{
    font-size:40px;
    color:#fff;
    margin-bottom:15px;
}

.about-stats-section .stat-item h2{
    color:#fff;
    font-size:35px;
    font-weight:800;
    margin-bottom:8px;
}

.about-stats-section .stat-item p{
    color:rgba(255,255,255,.95);
    font-size:18px;
    margin-bottom:0;
}


/* ==========================
   OUR VALUES
========================== */

.our-values-section{

    background:#ffffff;

    padding-top:80px;
    padding-bottom:80px;
}

/* Heading */

.values-title{

    font-size:40px;

    font-weight:800;

    color:#101235;

    margin-bottom:10px;
}

.values-title span{

    color:#7b2ff7;
}

.values-subtitle{

    color:#666;

    font-size:18px;
}

/* Cards */

.value-card{

    background:#fff;

    border:1px solid #efefef;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    transition:.35s;

    box-shadow:
    0 10px 30px rgba(0,0,0,.03);
}

.value-card:hover{

    transform:translateY(-10px);

    border-color:#d8c0ff;

    box-shadow:
    0 25px 50px rgba(123,47,247,.12);
}

/* Icon */

.value-icon{

    width:90px;
    height:90px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #f4ecff,
    #efe4ff
    );

    color:#7b2ff7;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:36px;
}

/* Title */

.value-card h4{

    font-size:21px;

    font-weight:700;

    color:#101235;

    margin-bottom:15px;
}

/* Description */

.value-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:0;
}
/* =========================================
   About Page end
========================================= */



@media(max-width:991px) {
    .min-vh-70 {
        min-height: auto;
    }

    .brand-form-left {
        padding: 50px 30px;
        /* background: linear-gradient(135deg, #f7efff 0%, #ffffff 100%); */
    }

    .brand-form-right {
        padding: 50px 30px;
    }

    .brand-left-content h2 {
        font-size: 36px;
    }

    .brand-left-content p {
        font-size: 16px;
    }

    .benefits-list li {
        margin-bottom: 20px;
    }

    .brand-stats {
        gap: 24px;
    }

    .stat-item h4 {
        font-size: 24px;
    }

    .form-header-section h3 {
        font-size: 28px;
    }
}

@media(max-width:768px) {
    .brand-form-section::before {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -80px;
    }

    .brand-form-section::after {
        width: 250px;
        height: 250px;
        bottom: -60px;
        left: -60px;
    }

    .brand-form-left {
        padding: 40px 20px;
        min-height: auto;
    }

    .brand-form-right {
        padding: 40px 20px;
    }

    .brand-left-content h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .badge-label {
        font-size: 12px;
        padding: 6px 12px;
    }

    .brand-left-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .benefits-list {
        margin-bottom: 30px;
    }

    .benefits-list li {
        gap: 12px;
        margin-bottom: 18px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .benefits-list h5 {
        font-size: 15px;
    }

    .benefits-list p {
        font-size: 13px;
    }

    .brand-stats {
        gap: 16px;
        padding-top: 20px;
    }

    .stat-item h4 {
        font-size: 22px;
    }

    .stat-item p {
        font-size: 13px;
    }

    .brand-form-wrapper {
        max-width: 100%;
    }

    .form-header-section h3 {
        font-size: 26px;
    }

    .custom-input {
        height: 45px;
        font-size: 14px;
    }

    .custom-textarea {
        min-height: 90px;
    }

    .btn-primary {
        height: 48px;
        font-size: 15px;
    }
    .stats-brand-section .stats-box:nth-child(3), .stats-brand-section .stats-box:nth-child(4){
        border-bottom: 1px solid #f0e9ff !important;
    }
    .stats-brand-section .stats-box:nth-child(5){
        border: none;
    }
    .brand-banner .floating-card2{
        bottom: 0;
        right: 0;
    }
}

@media(max-width:576px) {
    .brand-form-section {
        padding: 30px 0;
    }

    .brand-form-left,
    .brand-form-right {
        padding: 30px 16px;
    }

    .brand-left-content h2 {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .brand-left-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .benefits-list li {
        margin-bottom: 16px;
    }

    .benefit-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .benefits-list h5 {
        font-size: 14px;
    }

    .benefits-list p {
        font-size: 12px;
    }

    .brand-stats {
        gap: 12px;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 calc(50% - 6px);
    }

    .stat-item h4 {
        font-size: 20px;
    }

    .stat-item p {
        font-size: 12px;
    }

    .form-header-section h3 {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .form-header-section p {
        font-size: 14px;
    }

    .custom-input {
        height: 44px;
        font-size: 13px;
    }

    .custom-textarea {
        min-height: 80px;
        font-size: 13px;
    }

    .form-label {
        font-size: 13px;
    }

    .form-check-label {
        font-size: 13px;
    }

    .btn-primary {
        height: 46px;
        font-size: 14px;
    }

    /* about */
.about-content{

        padding:50px 25px;

        border-radius:25px;
    }

    .about-content h1{

        font-size:48px;
    }

    .about-content p{

        font-size:16px;
    }

    .about-image{

        border-radius:25px;

        margin-top:20px;
    }
    .mission-title{

        font-size:30px;
    }

    .mission-desc{

        font-size:16px;
    }

    .mission-list li{

        font-size:16px;
    }

    .mission-floating-card{

        position:relative;

        left:auto;
        bottom:auto;

        margin-top:20px;
    }

    .values-title{

        font-size:30px;
    }

    .value-card{

        padding:30px 20px;
    }
    .about-hero-section .row{
        flex-direction: column-reverse;
    }
    .about-content h1{
        font-size: 30px;
    }
    .about-image img{
        border-radius: 5px;
    }
    .about-hero-section{
        padding: 0;
    }
    .about-stats-section .stat-icon{
        font-size: 30px;
    }
    .about-stats-section .stat-item h2{
        font-size: 25px;
    }
    .about-stats-section .stat-item p{
        font-size: 16px;
    }

}

