﻿:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --accent-color: #fd79a8;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --gradient-primary: linear-gradient(135deg, #6c5ce7 99%, #a29bfe 100%);
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --radius-md: 10px;
    --radius-lg: 20px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    /* Gold */
    --bg-color: #FFFFFF;
    --alt-bg-color: #F8F9FA;
    --text-color: #333333;
    --light-text: #666666;
    --container-width: 1100px;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Prevent horizontal overflow */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

* {
    max-width: 100%;

}

h1,
h2 {
    background: linear-gradient(to right, #2d3436, #6c5ce7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;

}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
      max-width: 100%;
    margin: 0 auto;
    padding: 0 50px !important;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-1 {
    gap: 1rem;
}

.gap-2 {
    gap: 2rem;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);

}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.nav-menu {
    display: flex;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    transition: none;
}

.nav-menu ul {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    height: 120px;
}

header.header.scrolled {
    background: transparent;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 1.8rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.search-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-dark);
    margin-right: 15px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    padding: 160px 0 0px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    gap: 4rem;
}


.hero-content h2 {
    font-size: 40px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #2d3436, #6c5ce7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-btns {
    margin-bottom: 40px;
}

.hero-stats {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -15px;
}

.avatar:first-child {
    margin-left: 0;
}

video.hero-video {
    border-radius: 12px;
}

.image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 52px;
    overflow: hidden;
    width: 400px;
    height: 500px;
    box-shadow: var(--shadow-md);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 40px;
    left: 0px;
}

.card-2 {
    bottom: 60px;
    right: 0px;
    animation-delay: 1.5s;
}

.float-card i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Background Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.6;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    top: -50px;
    right: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    bottom: -50px;
    left: -50px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */


/* Trusted By Section */
.trusted-by {
    padding: 0px 0 70px;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trusted-by p {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.logo-section,
.company-section,
.creator-section {

    overflow: visible !important;
    /* Changed from hidden */
}

.logo-section .container,
.company-section .container,
.creator-section .container {
    width: 100%;
    padding: 0;
    overflow: hidden;
    margin: 0;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
}

.logo-slider,
.company-slider,
.creator-slider {
    margin-top: 50px;
    visibility: visible !important;
    opacity: 1 !important;
}

.slick-track {
    display: flex !important;
    align-items: center !important;
}

.slick-slide {
    display: block !important;
    height: auto !important;
}

.logo-slide,
.company-card,
.creator-card-img {
    padding: 0 20px !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    outline: none;
    height: 125px;
}

.creator-card-img {
    height: 100% !important;
}

.logo-slide img {
    width: 150px !important;
    height: 80px !important;
    max-width: 150px !important;
    object-fit: contain !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.company-card img {
    width: 200px !important;
    height: 190px !important;
    max-width: 150px !important;
    object-fit: contain !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.company-slider {
    margin-top: 0;
}

.creator-card-img img {
    width: 200px !important;
    height: 200px !important;
    max-width: 200px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    object-fit: cover !important;
}

.creator-section {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}


section.company-section {
     display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

section.logo-section {
    display: flex;
    justify-content: center;
}

/* About Section */
.about-section {
    padding: 0px 0 70px;
}

.about-image {
    flex: 1;
    position: relative;
    padding-left: 20px;
}

.about-image img {
    border-radius: 52px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    object-fit: cover;
}



.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.years {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.about-content {
    flex: 1;
    padding-left: 50px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.check-list {
    margin: 30px 0;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.check-list i {
    color: var(--white);
    background: var(--primary-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive About */
@media (max-width: 992px) {
    .about-section .container {
        flex-direction: column;
    }

    .about-content {
        padding-left: 0;
        margin-top: 50px;
        text-align: center;
    }

    .check-list li {
        justify-content: center;
    }
}

/* Services Section */
.services-section {
    padding: 0px 0 70px;
}
.services-section .section-subtitle {
    font-weight: bold;
}
.services-section .section-header.text-center h2{
font-weight: 400;
}
.client-section h1.section-subtitle {
   font-weight: bold; 
}
.client-section .section-header.text-center h2 {
font-weight: 400;
}
.creators-section h1.creator-heading{
       font-weight: bold; 
}
.creators-section .section-header.text-center h2{
font-weight: 400;
}
.next-section{
    margin-top: 20px;
}
.section-header {
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.client-section {
    padding: 0px 0 0px;
}

p.grown-text {
    font-size: 40px;
    font-weight: bold;
    max-width: 100%;
    color: #8c52ff;
    margin-bottom: 20px;
}

a.btn.btn-primary.call-us {
    margin-top: 40px;
}

.section-subtitle {
      color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    display: block;
    margin-top: 50px;
}

.section-header h2 {
      font-size: 2.5rem;
    margin-bottom: 40px;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    padding-top: 50px;
}

.service-card {
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    background: #6652ff;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    color: #fff !important;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #fff !important;
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 10px;
}

/* Card Variants */
.card-pink .service-icon {
    background: rgba(253, 121, 168, 0.1);
    color: #fd79a8;
}

.card-pink .service-link {
    color: #fd79a8;
}

.card-pink:hover {
    border-bottom: 4px solid #fd79a8;
}

.card-blue .service-icon {
    background: rgba(116, 185, 255, 0.1);
    color: #74b9ff;
}

.card-blue .service-link {
    color: #74b9ff;
}

.card-blue:hover {
    border-bottom: 4px solid #74b9ff;
}

.card-yellow .service-icon {
    background: rgba(253, 203, 110, 0.1);
    color: #fdcb6e;
}

.card-yellow .service-link {
    color: #fdcb6e;
}

.card-yellow:hover {
    border-bottom: 4px solid #fdcb6e;
}

.card-green .service-icon {
    background: rgba(85, 239, 196, 0.1);
    color: #00b894;
}

.card-green .service-link {
    color: #00b894;
}

.card-green:hover {
    border-bottom: 4px solid #00b894;
}

.mt-4 {
    margin-top: 40px;
}

/* Value Proposition Section */
.value-prop {
    padding: 0px 0 70px;
    text-align: center;
}

.value-content {
      flex: 1;
}

.value-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.value-grid {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(191px, 1fr));
    gap: 30px;
    padding-top: 70px;
    padding-bottom: 70px;
    align-items: start !important; /* Add this - very important! */
}

.value-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.value-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.value-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.value-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.image-wrapper-square {
    width: 450px;
    height: 550px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.image-wrapper-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stat-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
}

.dots-pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(#a29bfe 2px, transparent 2px);
    background-size: 20px 20px;
    bottom: -30px;
    right: 30px;
    z-index: 1;
}

/* Responsive Value Prop */
@media (max-width: 992px) {
    .value-prop .container {
        flex-direction: column-reverse;
    }

    .value-content {
        padding-right: 0;
        margin-top: 50px;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 0px 0 70px;

}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(108, 92, 231, 0.1);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* Testimonials Section */
.testimonials-section {
    padding: 0px 0 70px;
}
.testimonials-section h1.section-subtitle {
    font-weight: bold;
}
.testimonials-section .section-header.text-center h2{
font-weight: 400;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-top: 50px;
}

.testimonial-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    background: #6c5ce791;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    color: #fff;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
    color: #fff;
}

.client-info span {
    font-size: 0.85rem;
    color: #fff;
}

.testimonial-text {
    margin: 20px 0;
    font-style: italic;
    color: #fff;
    line-height: 1.6;
}

.rating {
    color: #fdcb6e;
    font-size: 0.9rem;
}

/* Blog Section */
/* Blog Section - Fixed for Slick Slider */
.blog-section {
    padding: 0px 0 70px;
    position: relative;
}
.blog-section h1.section-subtitle {
    font-weight: bold;
}
.blog-section .section-header.text-center h2{
font-weight: 400;
}

.blog-image a {
    width: 800px !important;
    height: 100% !important;
    display: block !important;
}

/* Remove conflicting flex display from blog-grid */
.blog-grid {
    padding-top: 50px;
}

/* Slick slider overrides */
.blog-slider .slick-slide {
    /* padding: 0 15px; */
    /* This creates the gap between slides */
    height: auto;
}
.g-recaptcha {
    padding-bottom: 20px;
}
.blog-slider .slick-list {
    margin: 0 -15px;
    /* Compensate for padding */
    overflow: visible;
    /* Allow cards to show shadow */
}

.blog-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100% !important;
    /* Ensure consistent height */
    display: flex !important;
    /* Important for slick */
    flex-direction: column;
    margin-left: 20px;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

/* Blog Image */
.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    flex-shrink: 0;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
}

/* Blog Content */
.blog-content {
    padding: 25px;
    background: #fdffc9;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.4;
    min-height: 60px;
    /* Ensures consistent title height */
}

.blog-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
}

.read-more {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
    font-size: 1rem;
    margin-top: auto;
    /* Pushes to bottom */
}

.read-more:hover {
    gap: 12px;
}

.blog-section .container {
 
    overflow: hidden !important;
}

.blog-slider {
    margin-top: 50px;
}
button.btn.btn-primary.w-100.send-msg {
    display: block;
}
/* ================= GRID ================= */




/* .blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
   transition: all 0.3s ease;
    height: 100%; 
    display: flex !important;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    width: 100% !important;
  

}

.blog-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
} */


/* ================= HOVER ================= */
/* .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

/* ================= IMAGE ================= */
/* .blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
} */
*/
/* ================= CONTENT ================= */
/* .blog-content {
    padding: 25px;
    background: #fdffc9;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.blog-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.read-more {
    font-weight: 600;
    color: var(--primary-color);
} */


/* Contact Section */
.contact-section {
    padding: 0px 0 70px;
}

.contact-wrapper {
    display: flex;

    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-info {
    flex: 1;
    background: var(--primary-color);
    padding: 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.contact-info::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: 50px;
    left: 50px;
}

.contact-info .badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    color: #fff !important;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-form-wrapper {
    flex: 1.5;
    padding: 60px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #fff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.contact-form-wrapper {
    background: #6c5ce791;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
}

.w-100 {
    width: 100%;
}

/* Responsive Contact */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info {
        padding: 40px;
    }

    .contact-form-wrapper {
        padding: 40px;
    }
}

/* Footer */
.footer {
    background: #1e1e2f;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.footer-col .footer-logo {
    width: 200px;
    display: block;
    margin: 0;
    /* removes auto centering */
}

.footer-col .footer-a {
    display: inline-block;
    /* prevent full-width stretching */
    margin-left: -30px;
}

.footer-col {
    text-align: left;
    /* forces same start point */
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 30px;
}

.newsletter-form input {
    flex: 1;
    background: none;
    border: none;
    padding: 10px 20px;
    color: var(--white);
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: var(--primary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ============================================ */
/* COMPREHENSIVE RESPONSIVE DESIGN */
/* ============================================ */

/* Tablet - Large (992px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .image-wrapper {
        width: 350px;
        height: 450px;
    }



    .circle-bg {
        width: 400px;
        height: 400px;
    }

    .image-wrapper-square {
        width: 400px;
        height: 500px;
    }
}

/* Tablet - Standard (768px - 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0;

    }

    /* Typography */
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content h2,
    .value-content h2,
    .contact-info h2 {
        font-size: 2rem;
    }

    /* Section Spacing */
    section {
        padding: 60px 0 !important;
    }

    .hero {
        padding: 140px 0 60px;
    }

    /* Header */
    .header-actions .search-btn {
        margin-right: 10px;
    }

    /* Hero Section */
    .hero-container {
        gap: 3rem;
    }

    .image-wrapper {
        width: 300px;
        height: 400px;
    }

    .float-card {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .card-1 {
        top: 30px;
        left: -30px;
    }

    .card-2 {
        bottom: 40px;
        right: -20px;
    }



    .circle-bg {
        width: 350px;
        height: 350px;
    }

    .experience-badge {
        bottom: 30px;
        right: 30px;
        padding: 15px;
    }

    .years {
        font-size: 2rem;
    }

    /* Value Proposition */
    .image-wrapper-square {
        width: 350px;
        height: 450px;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;

    }

    .service-card {
        padding: 30px 25px;
        opacity: inherit !important;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }


}



.logos-grid {
    flex-wrap: wrap;
    justify-content: center;
}

.company-logo {
    font-size: 1.3rem;
}

/* About Section */
.about-image {
    padding-left: 0;
    display: flex;
    justify-content: center;
}



.circle-bg {
    width: 320px;
    height: 320px;
}

.experience-badge {
    bottom: 20px;
    right: 20px;
    padding: 12px;
}

.years {
    font-size: 1.75rem;
}

.experience-badge span:not(.years) {
    font-size: 0.85rem;
}

.about-content {
    margin-top: 40px;
}

/* Services */
/* .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    } */

.service-card {
    padding: 25px 20px;
}

.service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
}




.image-wrapper-square {
    width: 100%;
    max-width: 320px;
    height: 400px;
}

.dots-pattern {
    width: 150px;
    height: 150px;
    background-size: 15px 15px;
}



.benefit-card {
    padding: 30px 25px;
}

.benefit-number {
    font-size: 3rem;
}



.testimonial-card {
    padding: 25px;
    opacity: inherit !important;
}



.blog-image {
    height: 220px;
}

/* Contact */
.contact-info h2 {
    font-size: 1.75rem;
}

.contact-info,
.contact-form-wrapper {
    padding: 35px 25px;
}

.info-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    padding: 60px 0 25px;
}

.footer-top {
    gap: 35px;
    margin-bottom: 45px;
}




i.fa-solid.fa-arrow-right {
    margin-left: 10px;
}

.float-card.card-2.team-2 {
    right: 0px !important;
}

.float-card.card-1.team-1 {
    left: 0px !important;
}

.card-orange:hover {
    border-bottom: 4px solid orange;
}

.card-orange .service-icon {
    background: rgb(255 166 0 / 13%);
    color: orange;
}

img.logo-img {
    width: 200px;
}

.container.flex.justify-between.items-center.header-container {
    height: 120px;
}

.why-choose-us.card-value {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    border-radius: 80px;
    background: #6652ff;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: visible;
    /* Remove min-height from here */
    height: auto;
    color: #fff;

    &:hover {
        transform: translateY(-10px);
        background: #5ba0ffd6;
    }
}
.why-choose-us.card-value:has(.view-more-btn) {
    min-height: 290px;
}


.text-clamp {
   display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    transition: all 0.3s ease;
}

.text-clamp.expanded {
 display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}
.why-choose-us.card-value.expanded {
    min-height: 400px; /* Or whatever height you need */
    
}
.why-choose-us.card-value:nth-child(1),
.why-choose-us.card-value:nth-child(2),
.why-choose-us.card-value:nth-child(3) {
   min-height: 340px;
}
.view-more-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    margin-top: 8px;
    font-size: 14px;
    padding: 0;
    text-align: left;
    border: 3px solid #fff;
    border-radius: 18px;
    padding: 10px;
}

.client-grid .slider-track .creator-card img {
    object-fit: contain !important;
}

.why-choose-us.card-value i.fa-solid {
    color: #fff;
    font-size: 40px;
}





section.influencer-section {
    padding-bottom: 70px;
    overflow: hidden;
}

.client-grid {
    width: 100%;
    overflow: hidden;
}

section.next-section,
.creators-section {
    text-align: center;
    padding: 0px 0 70px;
}

.creator-grid,
.brand-grid {
    text-align: center;
    padding: 50px 0;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    display: flex;

}

/* Card styling */
.creator-card h2 {
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
}

.creator-card h2 span {
    font-size: 64px;
}

.creator-card p {
    margin-top: 10px;
    font-size: 22px;
    color: #000;
    font-weight: 500;
    letter-spacing: .5px;
}

/* Card styling */
.brand-card h2 {
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
}

.brand-card h2 span {
    font-size: 64px;
}

.brand-card p {
    margin-top: 10px;
    font-size: 22px;
    color: #000;
    font-weight: 500;
    letter-spacing: .5px;
}

/* main container */

.influencer-photos {
    padding-bottom: 50px;
}




/* ---------- FAQ SECTION ---------- */

.faq-section {
    padding: 0px 0px 70px;

    display: flex;
    justify-content: center;
}

/* ---------- CONTAINER ---------- */

.faq-container {
    max-width: 800px;
    width: 100%;
    background: #6c5ce791;
    border-radius: 18px;
    padding: 40px 28px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

/* ---------- HEADING ---------- */

.faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    /* background: linear-gradient(135deg, #6c5ce7 99%, #a29bfe 100%); */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
    color: #fff;
}

.faq-subtitle {
    text-align: center;
    font-size: 14px;
    color: #fff;
    margin-bottom: 28px;
}

/* ---------- FAQ ITEM ---------- */

.faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #abaabb;
    margin-bottom: 12px;
    overflow: hidden;
}

/* ---------- QUESTION ---------- */

.faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 16px 18px;
    font-weight: 600;
    font-size: 15px;
    position: relative;
}

/* hide default marker */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* active gradient bar */
.faq-item summary::before {
    content: "";
    width: 4px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #6c5ce7 99%, #a29bfe 100%);
    opacity: 0;
    transition: 0.2s;
}

.faq-item summary:hover::before,
.faq-item[open] summary::before {
    opacity: 1;
}

/* ---------- ICON ---------- */

.faq-icon {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #6c5ce7 99%, #a29bfe 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 700;
}

.faq-icon:before {
    content: "+";
}

.faq-item[open] .faq-icon:before {
    content: "−";
}

/* ---------- ANSWER ---------- */

.faq-content {
    padding: 0 18px 16px 18px;
}

.faq-content p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}



section#contact {
    margin-bottom: 70px;
}


/* Video Section Container */
.video-section {
    padding: 0px 0 70px;
    overflow: hidden;
}

.video-section .container {
    /* width: 90%;
    max-width: 1390px;
    margin: 0 auto;
    overflow: hidden; */
    margin: 0 auto;
    overflow: hidden;
}
.video-section .slick-list.draggable {
margin: 0 auto;
}

/* Video Slider */
.video-slider {
    margin-top: 50px;
    position: relative;
}

/* Slick Track for Videos */
.video-slider .slick-track {
    display: flex !important;
    align-items: center !important;
    gap: 0;
}

.video-slider .slick-slide {
    display: block !important;
    height: auto !important;
    padding: 0 15px;
    min-width: 331px;
}

.video-slider .slick-list {
    margin: 0 -15px;
    /* Compensates for padding */
    overflow: hidden;
}

/* Video Card */
.video-card {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column;
    position: relative;
}

.video-card video {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    object-fit: cover;
    display: block;
}

.video-card:hover video {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}



/* Disabled state */
.video-slider .slick-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}





.about-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #2d3436, #6c5ce7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h1.creator-heading {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}









.creator-card {
    width: 180px;
    height: 180px;
    flex: 0 0 auto;

}

.creator-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}







/* Sections General */
.section-about-us {
      padding-bottom: 40px;
    width: 90%;
    margin: 0 auto;
    padding-top: 170px;
}
section#what-sets-us-apart, section#who-we-are, section#our-commitment, section#core-values  {
 
padding-bottom: 70px;
}
.section#mission-vision{
    margin-bottom: 70px;
}
.alt-bg {
    background-color: var(--alt-bg-color);
}

/* Who We Are */
.text-content {
   
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
}

.text-content p {
    margin-bottom: var(--spacing-md);
}

.section-about-us .container.fade-in {
    /* width: 90%; */
    max-width: inherit;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-card {
    color: #fff;
    background: #6c5ce791;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

#mission-vision {

    color: #fff;
    margin-bottom: 70px;
}

.card-icon {
      font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: var(--spacing-sm);
}

.grid-3 {
      display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--spacing-md);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-body {
    background: #fff
}

.highlight-box {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-style: italic;
    position: relative;
}

.highlight-box::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: 20px;
    color: rgba(255, 255, 255, 0.1);
    font-family: serif;
}



.mv-block {
    padding: var(--spacing-md);
    border-left: 4px solid var(--primary-color);
        background: #6c5ce791;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.mv-block h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.values-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.value-item {
    text-align: center;
    padding: var(--spacing-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    width: 200px;
    background: #6c5ce7;
    color: #fff;
}



.value-word {
    .value-word {
        display: block;
        font-family: var(--font-heading);
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: var(--spacing-xs);
    }
}



.active {
    color: var(--primary-color);
}

.whatsapp-bot {
    position: fixed;
    bottom: 15px;
    right: 15px;
}

.chat-bot {
    width: 50px;
    height: 50px;
}

.call-bot {
    position: fixed;
    bottom: 85px;
    right: 15px;
}

/* Popup Overlay */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Popup Box */
.popup-content {
    position: relative;
    max-width: 440px;
    width: 90%;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: popupFade 0.4s ease;
}

/* Popup Image */
.popup-content img {
    width: 100%;
    display: block;
    height: 100%;
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Animation */
@keyframes popupFade {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.overlay-btn {
    display: flex;
}

.overlay-btn {

    display: flex;
    position: absolute;
    bottom: 115px;
    background: #bdcefe;
    border-radius: 30px;
}

.overlay-btn button {
    background: var(--primary-color);
    border: none;
    color: #fff;
    padding: 11px 27px;
    border-radius: 28px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.creator-grid {
    padding: 50px 0 0 !important;
}

.brand-grid {
    padding: 50px 0 0 !important;
    flex-wrap: nowrap;

}

.company-section .slick-track {
    position: relative;
    top: -30px;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}