* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background: #000 !important;
    color: #fff;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    min-height: 100dvh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1300px) {
    .container {
        max-width: 98vw;
    }
}

@media (max-width: 900px) {
    .container {
        max-width: 100vw;
        padding: 0 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form {
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 0.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form {
        gap: 1rem;
        padding: 0.5rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 1rem;
        padding: 0.7rem;
    }

    .form-submit {
        width: 100%;
        font-size: 1.05rem;
        padding: 0.9rem;
        margin-top: 0.5rem;
    }

    .collaborate-btn {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

@media (max-width: 700px) {
    .contact-form .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 0.5rem;
    }

    .testimonial-author .author-info {
        text-align: center;
        width: 100%;
    }

    .testimonial-author .author-name,
    .testimonial-author .author-company {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #00B59B !important;
    color: #fff !important;
}

.btn-primary:hover {
    background: #066758 !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #a855f7;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 2rem;
    left: 0;
    width: 100vw;
    height: 7rem;
    background: #000 !important;
    border: none;
    box-shadow: none !important;
    margin: 0;
    padding: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    width: 85%;
    margin: 0 auto;
    background: #000;
    border: 1.5px solid rgba(255, 255, 255, 0.13);
    border-radius: 1rem;
    box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 5rem;
    min-height: 4rem;
    padding: 0 2.5rem;
}

.nav-brand {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
    cursor: pointer;
}

.nav-brand a {
    color: #fff !important;
    text-decoration: none;
}

.nav-menu {
    flex: 2;
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.nav-quote-btn {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 0.5rem;
}

.nav-quote,
.nav-quote-mobile {
    padding: 0.35rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 0.5rem;
    font-weight: 700;
    box-shadow: 0 4px 18px 0 rgba(168, 85, 247, 0.18);
    background: #a855f7 !important;
    color: #fff !important;
    transition: background 0.3s, transform 0.2s;
    border: none;
}

.nav-quote:hover,
.nav-quote-mobile:hover {
    background: #9333ea !important;
    color: #fff !important;
    transform: translateY(-2px) scale(1.04);
}

.nav-link,
.nav-link.main-link {
    color: #bfc6ce !important;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.main-link:hover {
    color: #3b82f6;
}

.nav-link.active,
.nav-link.main-link.active {
    color: #3b82f6 !important;
    position: relative !important;
    font-weight: 700 !important;
    background-color: rgba(59, 130, 246, 0.1) !important;
    border-radius: 4px;
    padding: 8px 12px;
}

.nav-link.active::after,
.nav-link.main-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #3b82f6;
    border-radius: 2px;
    animation: fadeIn 0.3s ease-in;
    z-index: 2;
}

.nav-toggle {
    display: none;
    color: #d1d5db;
    cursor: pointer;
}

.hero {
    padding-top: 14rem !important;
    min-height: 100vh !important;
    height: auto !important;
    margin-top: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%) !important;
    position: relative;
    perspective: 1000px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('../images/bg.png') center center/cover no-repeat;
    filter: brightness(0.3) contrast(1.2);
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: transparent !important;
    z-index: 10;
}

.animated-bg {
    position: absolute;
    inset: 0;
    z-index: 5;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
    animation: pulse 4s ease-in-out infinite;
    z-index: 2;
}

.bg-element-1 {
    top: 5rem;
    left: 5rem;
    width: 16rem;
    height: 16rem;
    background: rgba(168, 85, 247, 0.15);
    animation: float3D 6s ease-in-out infinite;
}

.bg-element-2 {
    bottom: 5rem;
    right: 5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(59, 130, 246, 0.12);
    animation: float3D 8s ease-in-out infinite reverse;
}

.bg-element-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, #a855f7, #3b82f6);
    filter: blur(2rem);
    animation: ping 3s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.2;
}

@keyframes float3D {

    0%,
    100% {
        transform: translateZ(0) rotateX(0deg) rotateY(0deg);
        filter: blur(3rem) brightness(1);
    }

    25% {
        transform: translateZ(20px) rotateX(5deg) rotateY(5deg);
        filter: blur(3.5rem) brightness(1.2);
    }

    50% {
        transform: translateZ(40px) rotateX(0deg) rotateY(10deg);
        filter: blur(4rem) brightness(1.1);
    }

    75% {
        transform: translateZ(20px) rotateX(-5deg) rotateY(5deg);
        filter: blur(3.5rem) brightness(1.3);
    }
}

.hero-content,
.hero-icons {
    position: relative;
    z-index: 1100;
    transform: translateZ(50px);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    max-width: 64rem;
    padding: 0 1rem;
    animation: heroContentSlideIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes heroContentSlideIn {
    0% {
        opacity: 0;
        transform: translateZ(50px) translateX(-100px) rotateY(-15deg);
    }

    100% {
        opacity: 1;
        transform: translateZ(50px) translateX(0) rotateY(0deg);
    }
}

.hero-title {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: none;
    color: #ffffff;
    -webkit-text-fill-color: initial;
    animation: fadeIn 1.5s ease-out;
    text-shadow:
        0 4px 8px rgba(0, 0, 0, 0.5),
        0 2px 4px rgba(168, 85, 247, 0.3);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: center;
}

.hero-title .word-1 {
    color: #ffffff;
}

.hero-title .word-2 {
    color: #10b981;
}

.hero-title .word-3 {
    color: #ffffff;
}

.hero-title .word-4 {
    color: #FFAA00;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #e0e0e0;
    margin-bottom: 1rem;
    animation: fadeIn 1.5s ease-out 0.3s both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.hero-founder {
    font-size: 1.4rem;
    color: #fff !important;
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: fadeIn 1.5s ease-out 0.4s both;
    text-shadow: 0 2px 4px rgba(168, 85, 247, 0.3);
}

.collaborate-btn {
    margin-top: 3rem;
    padding: 0.5rem 1.5rem;
    background: #00B59B;
    color: #ffffff;
    border: none;
    border-radius: 0.6rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.10);
    cursor: pointer;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    outline: none;
}

.collaborate-btn:hover {
    background: #066758;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

@media (max-width: 600px) {
    .hero-content {
        margin: 0;
        padding: 0 0.5rem;
    }
}


/* .whatsapp-float  */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    border-radius: 50%;
    transition: box-shadow 0.2s, transform 0.2s;
}

.whatsapp-float:hover {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.25);
    transform: scale(1.08);
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: #000 !important;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD600, #a855f7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 16px 48px 0 rgba(168, 85, 247, 0.15);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid #a855f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #a855f7;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: #a855f7;
    color: #fff;
    transform: scale(1.1);
}

.stat-number,
.stat-suffix {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, #FFD600, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    color: #e5e7eb;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.2rem 0.8rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .stat-item {
        padding: 1rem 0.5rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: bold;
    margin-bottom: 1rem;
    background: none;
    color: #fff;
    -webkit-text-fill-color: initial;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 32rem;
    margin: 0 auto;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #a855f7;
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Portfolio Section */
.portfolio {
    padding-top: 2rem;
    padding-bottom: 2rem;
    min-height: unset;
    height: auto;
    width: auto;
    background: black !important;
}

.portfolio .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.portfolio-section {
    margin-bottom: 5rem;
}

.portfolio-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.portfolio-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
}

.portfolio-section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 3px;
    background: linear-gradient(90deg, #a855f7, #6366f1);
    border-radius: 2px;
}

.portfolio-section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 2rem;
    background: #374151;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.filter-btn.active,
.filter-btn:hover {
    background: #9333ea;
    color: #fff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    background: #181c2a !important;
    border: 1px solid #2d334d !important;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(24, 28, 42, 0.12);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.18);
    border-color: #a855f7;
    background: #232846 !important;
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    text-align: center;
    color: #fff;
}

.portfolio-overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-overlay-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.portfolio-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #a855f7 !important;
    color: #fff !important;
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.portfolio-btn:hover {
    background: #9333ea !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #ffd600 !important;
    margin-bottom: 0.5rem;
}

.portfolio-description {
    color: #e0e7ff !important;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: linear-gradient(135deg, #a855f7, #6366f1) !important;
    color: #fff !important;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* About Section - Modern Design */
.about {
    padding: 5rem 0 0 0;
    background: #000 !important;
    position: relative;
    overflow: hidden;
}

.about-feature-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.about-feature-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2.5rem;
}

.about-feature-col {
    flex: 1 1 0;
    max-width: 340px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    font-size: 2.5rem;
    background: transparent;
    box-shadow: none;
    border: 2.5px solid transparent;
}

.about-feature-yellow {
    color: #FFD600;
    border-color: #FFD600;
}

.about-feature-purple {
    color: #a855f7;
    border-color: #a855f7;
}

.about-feature-col-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.about-feature-col-desc {
    color: #e5e7eb;
    font-size: 1.08rem;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .about-feature-row {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .about-feature-col {
        max-width: 100%;
    }
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.about-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-top: 1rem;
    font-weight: 400;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    position: relative;
}

.about-heading::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 3rem;
    height: 3px;
    background: linear-gradient(90deg, #a855f7, #3b82f6);
    border-radius: 2px;
}

.about-text p {
    color: #475569;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #a855f7;
    font-weight: 600;
    background: linear-gradient(120deg, rgba(168, 85, 247, 0.1), rgba(59, 130, 246, 0.1));
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
}

.about-stats-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(168, 85, 247, 0.3);
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #a855f7, #3b82f6);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.stat-content {
    flex: 1;
}

.about-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about-stat-label {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

.about-sidebar {
    position: sticky;
    top: 2rem;
}

.founder-card-modern {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.founder-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a855f7, #3b82f6, #06b6d4);
}

.founder-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.3);
}

.founder-image {
    margin-bottom: 1.5rem;
    position: relative;
}

.founder-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.founder-card-modern:hover .founder-image img {
    transform: scale(1.05);
}

.founder-title {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.founder-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #a855f7, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.founder-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.expertise-tag {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(59, 130, 246, 0.1));
    color: #a855f7;
    padding: 0.375rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-sidebar {
        position: static;
    }

    .about-stats-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100vw;
        padding: 0 1rem;
    }

    .footer-about,
    .footer-services,
    .footer-contact,
    .footer-links,
    .footer-social,
    .footer-portfolio {
        text-align: center;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-services ul,
    .footer-contact ul,
    .footer-links ul,
    .footer-portfolio ul {
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-services h4::after,
    .footer-contact h4::after,
    .footer-links h4::after,
    .footer-social h4::after,
    .footer-portfolio h4::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .footer-links {
        align-items: center !important;
        justify-content: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 1rem;
    }

    .contact-card {
        padding: 1rem;
    }

    .hero-content {
        padding: 0 0.5rem;
    }

    .about {
        padding: 3rem 0;
    }

    .about-hero {
        margin-bottom: 2rem;
    }

    .about-main {
        gap: 2rem;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .stat-icon {
        align-self: center;
    }

    .founder-card-modern {
        text-align: center;
    }

    .founder-image {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 1.5rem auto;
    }

    .founder-image img {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    html,
    body {
        max-width: 100vw;
        overflow-x: hidden;
    }

    section,
    .container,
    .contact-card,
    .portfolio-item,
    .about-content,
    .footer-content {
        max-width: 100vw;
        overflow-x: auto;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    img,
    video {
        max-width: 100%;
        height: auto;
        display: block;
    }

    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    a,
    span,
    li,
    td,
    th {
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: black !important;
    position: relative;
    overflow: hidden;
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.testimonials .section-title {
    color: #222;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.testimonials .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    min-height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.testimonial-slide {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 2.5rem 2rem;
    margin: 0 auto;
    text-align: center;
    color: #222;
    display: none;
    transition: box-shadow 0.3s, opacity 0.3s, transform 0.3s;
    max-width: 700px;
    width: 90%;
    opacity: 0;
}

.testimonial-slide.active {
    display: block;
    animation: testimonialFadeIn 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 1;
    transform: translateY(0);
}

.testimonial-slide.left,
.testimonial-slide.right {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0.85);
    opacity: 0.5;
    z-index: 1;
    box-shadow: none;
    pointer-events: none;
    /* Remove transition for instant appearance */
    transition: none !important;
    width: 60%;
    max-width: 350px;
    height: 90%;
    overflow: hidden;
    clip-path: inset(0 0 0 50%);
    animation: none !important;
}

.testimonial-slide.left {
    left: 0;
    right: auto;
    transform: translate(-30%, -50%) scale(0.85);
    clip-path: inset(0 30% 0 0);
}

.testimonial-slide.right {
    right: 0;
    left: auto;
    transform: translate(30%, -50%) scale(0.85);
    clip-path: inset(0 0 0 30%);
}

.testimonial-slide.active {
    z-index: 2;
    position: relative;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    animation: testimonialFlipIn 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes testimonialFlipIn {
    0% {
        opacity: 0;
        transform: rotateY(90deg) scale(0.8);
    }

    60% {
        opacity: 1;
        transform: rotateY(-10deg) scale(1.05);
    }

    80% {
        transform: rotateY(5deg) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: rotateY(0deg) scale(1);
    }
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1.2rem;
}

.testimonial-stars svg,
.testimonial-stars [data-lucide="star"] svg,
.testimonial-stars [data-lucide="star"] path {
    color: #fbbf24 !important;
    stroke: #fbbf24 !important;
    fill: #fbbf24 !important;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.author-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #a855f7;
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.08);
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 700;
    color: #a855f7;
    font-size: 1.1rem;
}

.author-company {
    color: #666;
    font-size: 0.98rem;
}

.testimonial-nav {
    background: #000000;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    margin-left: 2rem;
    margin-right: 2rem;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s, border 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.testimonial-nav:hover {
    background: #a855f7;
    color: #fff;
    border-color: #a855f7;
}

.testimonial-prev {
    left: -1.5rem;
}

.testimonial-next {
    right: -1.5rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.testimonial-dots .dot {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: #e5e7eb;
    border: none;
    transition: background 0.2s;
    cursor: pointer;
}

.testimonial-dots .dot.active {
    background: #a855f7;
}

.testimonial-feedback-btn {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 700px) {
    .testimonials {
        padding: 2rem 0;
    }

    .testimonials-container {
        padding: 0 0.5rem;
    }

    .testimonial-slide {
        padding: 1.2rem 0.7rem;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 0.5rem;
    }

    .testimonial-nav {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }

    .testimonial-prev {
        left: -0.7rem;
    }

    .testimonial-next {
        right: -0.7rem;
    }
}

/* Pricing Section */
.pricing {
    padding-top: 2rem;
    padding-bottom: 2rem;
    min-height: unset;
    height: auto;
    width: auto;
    background: black !important;
    display: block;
    /* Visible by default */
}

.pricing .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.pricing-card {
    background: #000000;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    color: #222;
}

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

.pricing-card.popular {
    border-color: #9333ea;
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.2);
}

.popular-badge {
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #9333ea, #3b82f6);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.5rem;
    color: #a855f7;
    margin-bottom: 1rem;
}

.pricing-price {
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #a855f7;
}

.period {
    color: #564f4f;
    margin-left: 0.5rem;
}

.pricing-description {
    color: #fff;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    color: #fff;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features i {
    width: 1.25rem;
    height: 1.25rem;
    color: #22c55e;
    flex-shrink: 0;
}

.pricing-btn {
    width: 100%;
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.pricing-card.popular .pricing-btn {
    background: #a855f7 !important;
    color: #fff !important;
    border: none;
}

.pricing-footer {
    text-align: center;
    margin-top: 3rem;
}

.pricing-footer p {
    color: #fff;
    margin-bottom: 1rem;
}


/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #0f0f23;
}

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a2e;
    border: 1px solid #2d2d44;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    color: #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #a855f7;
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.2);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.faq-question:hover {
    color: #a855f7;
    background: linear-gradient(135deg, #1e1e3a 0%, #1a2a4a 100%);
}

.faq-question i {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
    color: #a855f7;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #ffffff;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #16213e;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
    opacity: 1;
}

.faq-answer p {
    color: #b8c5d6;
    line-height: 1.7;
    margin: 0;
}

.faq-footer {
    text-align: center;
    margin-top: 3rem;
}

.faq-footer p {
    color: #b8c5d6;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: black !important;
}

.contact-card {
    background: #000000;
    color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 3rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-header h3 {
    font-size: 1.5rem;
    color: #fff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #000000;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #fff;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: #000000;
    color: #ffffff;
    border: 1px solid #333333;
    border-radius: 0.375rem;
    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #a855f7;
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-submit {
    width: 100%;
    padding: 0.75rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-info-item h3 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: #2563eb;
}

/* Contact Info Links */
.contact-info-item a {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s, text-decoration 0.2s;
}

.contact-info-item a:hover {
    color: #a855f7;
    text-decoration: underline;
}

/* Contact Info Icons */
.contact-info-item i {
    color: #2563eb;
    font-size: 1.1em;
    vertical-align: middle;
    margin-right: 6px;
    transition: color 0.2s;
    display: inline-block;
    position: relative;
    top: -1px;
}

.contact-info-item a:hover i {
    color: #a855f7;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f8fafc;
    padding: 4rem 0 2rem 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #06b6d4, transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(90deg, #FFAA00 0%, #FF4D00 50%, #00B59B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.footer-about p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-founder {
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    display: inline-block;
}

.footer-services h4,
.footer-contact h4,
.footer-links h4,
.footer-social h4,
.footer-portfolio h4 {
    color: #3b82f6;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-services h4::after,
.footer-contact h4::after,
.footer-links h4::after,
.footer-social h4::after,
.footer-portfolio h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, #06b6d4, #0891b2);
    border-radius: 1px;
}

.footer-services ul,
.footer-contact ul,
.footer-links ul,
.footer-portfolio ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li,
.footer-contact li,
.footer-links li,
.footer-portfolio li {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-services li:hover,
.footer-contact li:hover,
.footer-links li:hover,
.footer-portfolio li:hover {
    transform: translateX(4px);
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 0.5rem;
    color: #06b6d4;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icons a:hover {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 2px;
    background: linear-gradient(90deg, #06b6d4, #0891b2);
    border-radius: 1px;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-bottom-links {
    margin-top: 0.5rem;
    text-align: center;
}

.footer-bottom-links a {
    color: #a855f7;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1rem;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #9b6319;
    text-decoration: underline;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 24rem;
    min-width: 18rem;
    z-index: 10000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.toast-content {
    flex: 1;
    min-width: 0;
}

.toast-title {
    color: #111827;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.4;
}

.toast-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.toast-close {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.toast-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.toast-close i {
    width: 1rem;
    height: 1rem;
}

/* Success Toast */
.toast.success {
    background: #f0fdf4;
    border-color: #bbf7d0;
    border-left: 4px solid #22c55e;
}

.toast.success .toast-title {
    color: #166534;
}

.toast.success .toast-description {
    color: #16a34a;
}

/* Error Toast */
.toast.error {
    background: #fef2f2;
    border-color: #fecaca;
    border-left: 4px solid #ef4444;
}

.toast.error .toast-title {
    color: #991b1b;
}

.toast.error .toast-description {
    color: #dc2626;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .toast {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        min-width: auto;
        transform: translateY(-100%);
    }

    .toast.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .toast {
        padding: 1rem;
        gap: 0.75rem;
    }

    .toast-title {
        font-size: 0.95rem;
    }

    .toast-description {
        font-size: 0.8rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        transform: translateY(0);
    }

    40%,
    43% {
        transform: translateY(-30px);
    }

    70% {
        transform: translateY(-15px);
    }

    90% {
        transform: translateY(-4px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes ping {

    75%,
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        max-width: 98vw;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .nav-menu {
        position: fixed;
        top: 4rem;
        left: 0;
        width: 100%;
        background: #1a1a1a;
        flex-direction: column;
        padding: 2rem 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        border-top: 1px solid rgba(168, 85, 247, 0.2);
        text-align: center;
        align-items: center;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu .nav-link {
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    /* Mobile dropdown styles */
    .nav-menu .dropdown {
        position: static;
        width: 100%;
    }

    .nav-menu .dropdown-content {
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-top: 0.5rem;
        margin-left: 0;
        display: none;
        text-align: center;
    }

    .nav-menu .dropdown-content a {
        color: #ffffff;
        padding: 0.5rem 1rem;
        border-left: none;
        margin-bottom: 0.25rem;
        text-align: center;
        justify-content: center;
    }

    .nav-menu .dropdown-content a:hover {
        background: rgba(168, 85, 247, 0.1);
        color: #a855f7;
    }

    .nav-toggle {
        display: block;
    }

    .nav-quote-btn {
        display: none;
    }

    .nav-quote-mobile {
        display: block;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100vw;
        padding: 0 1rem;
    }

    .footer-about,
    .footer-services,
    .footer-contact,
    .footer-links,
    .footer-social,
    .footer-portfolio {
        text-align: center;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-services ul,
    .footer-contact ul,
    .footer-links ul,
    .footer-portfolio ul {
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-services h4::after,
    .footer-contact h4::after,
    .footer-links h4::after,
    .footer-social h4::after,
    .footer-portfolio h4::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .footer-links {
        align-items: center !important;
        justify-content: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

.contact-card,
.contact-form,
.form-group,
.contact-info {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111827;
}

::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4b5563;
}

/* Selection */
::selection {
    background: rgba(168, 85, 247, 0.3);
    color: #fff;
}

.hero .btn-primary {
    background: #a855f7 !important;
    color: #fff !important;
    border: none;
}

.hero .btn-primary:hover {
    background: #9333ea !important;
    color: #fff !important;
}

.hero .btn-outline {
    background: #fff;
    color: #a855f7;
    border: 2px solid #a855f7;
}

.hero .btn-outline:hover {
    background: #a855f7;
    color: #fff;
    border-color: #9333ea;
}

.footer-links {
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-services,
.footer-contact,
.footer-links,
.footer-portfolio {
    min-width: 180px;
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #3b82f6;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #a855f7;
    text-decoration: underline;
}

.pricing .btn-primary {
    background: #a855f7 !important;
    color: #fff !important;
    border: none;
}

.pricing .btn-primary:hover {
    background: #9333ea !important;
    color: #fff !important;
}

.pricing .btn-outline {
    background: #fff;
    color: #a855f7;
    border: 2px solid #a855f7;
}

.pricing .btn-outline:hover {
    background: #a855f7;
    color: #fff;
    border-color: #9333ea;
}

.footer-services a,
.footer-contact a,
.footer-links a,
.footer-portfolio a {
    color: #cbd5e1;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-services a:hover,
.footer-contact a:hover,
.footer-links a:hover,
.footer-portfolio a:hover {
    color: #06b6d4;
    transform: translateX(4px);
}

.footer-icon {
    color: #a855f7;
    font-size: 1.1em;
    width: 1.1em;
    height: 1.1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-services a:hover .footer-icon,
.footer-contact a:hover .footer-icon,
.footer-links a:hover .footer-icon,
.footer-portfolio a:hover .footer-icon {
    color: #06b6d4;
}

.footer-services li,
.footer-contact li,
.footer-links li,
.footer-portfolio li {
    margin-bottom: 0.75rem;
    transition: transform 0.2s ease;
    display: flex;
    align-items: flex-start;
}

.footer-services li:hover,
.footer-contact li:hover,
.footer-links li:hover,
.footer-portfolio li:hover {
    transform: translateX(4px);
}

.footer-location-link {
    color: #cbd5e1;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-location-link:hover {
    color: #06b6d4;
    transform: translateX(4px);
}

.footer-location-link:hover .footer-icon {
    color: #06b6d4;
}

@media (min-width: 1024px) {
    .hero-content {
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        max-width: 700px;
        padding-left: 0;
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-icons {
        justify-content: flex-start;
    }

    .hero-buttons {
        justify-content: flex-start;
        align-items: flex-start;
    }
}

@media (max-width: 1023px) {
    .hero-content {
        margin-left: 0;
        margin-right: 0;
        padding: 0 1rem;
    }
}

.brand-text {
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
}

.nav-quote-mobile {
    display: none;
}

@media (max-width: 768px) {
    .nav-quote-btn {
        display: none;
    }

    .nav-quote-mobile {
        display: block;
        margin: 2rem auto 0 auto;
        width: fit-content;
    }
}

.know-more-btn {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.6rem 1.5rem;
    background: #a855f7 !important;
    color: #fff !important;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.08);
    cursor: pointer;
}

.know-more-btn:hover {
    background: #9333ea !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.15);
}


.dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #1a1a1a;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    top: 100%;
    left: 0;
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.dropdown-content a {
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    display: block;
    transition: background 0.2s;
    font-size: 1rem;
}

.dropdown-content a:hover {
    background: #a855f7;
    color: #ffffff;
}

.dropdown:hover .dropdown-content {
    display: block;
}


.dropdown-arrow {
    font-size: 1.2em;
    margin-left: 0.4em;
    transition: transform 0.2s;
    display: inline-block;
    vertical-align: middle;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}


.about,
.stats,
.testimonials,
.faq,
.contact {
    padding-top: 2rem;
    padding-bottom: 2rem;
    min-height: unset;
    height: auto;
    width: auto;
}

.about .container,
.stats .container,
.testimonials .container,
.faq .container,
.contact .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}


.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    border-radius: 0.75rem;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    position: relative;
    animation: fadeIn 0.3s;
}

.modal-content h3 {
    margin-bottom: 1rem;
    color: #a855f7;
    text-align: center;
}

.modal .close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-size: 1.5rem;
    color: #888;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.2s;
}

.modal .close:hover {
    color: #a855f7;
}

#faq-question-form .form-group {
    margin-bottom: 1rem;
}

#faq-question-form label {
    display: block;
    margin-bottom: 0.3rem;
    color: #ffffff;
    font-weight: 500;
}

#faq-question-form input,
#faq-question-form textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #333333;
    border-radius: 0.4rem;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: border 0.2s;
}

#faq-question-form input::placeholder,
#faq-question-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#faq-question-form input:focus,
#faq-question-form textarea:focus {
    border-color: #a855f7;
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

#faq-question-form button[type="submit"] {
    width: 100%;
    margin-top: 0.5rem;
    background: #a855f7;
    color: #ffffff;
    border: none;
    padding: 0.8rem;
    border-radius: 0.4rem;
    font-weight: 600;
    transition: background 0.2s;
}

#faq-question-form button[type="submit"]:hover {
    background: #9333ea;
}

#faq-modal .modal-content {
    background: #000000;
    color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

#faq-modal .close {
    color: #ffffff;
}

#faq-modal .close:hover {
    color: #a855f7;
}

#faq-modal h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}

@media (max-width: 500px) {
    .modal-content {
        padding: 1rem 0.5rem 1rem 0.5rem;
        max-width: 95vw;
    }
}

.testimonial-feedback-btn {
    text-align: center;
    margin-top: 2rem;
}


#feedback-modal .modal-content {
    max-width: 400px;
    width: 90%;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    background: #000000;
    color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

#feedback-modal .close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.2s;
}

#feedback-modal .close:hover {
    color: #a855f7;
}

#feedback-modal h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}

#feedback-form .form-group {
    margin-bottom: 1rem;
}

#feedback-form label {
    display: block;
    margin-bottom: 0.3rem;
    color: #ffffff;
    font-weight: 500;
}

#feedback-form input,
#feedback-form select,
#feedback-form textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #333333;
    border-radius: 0.4rem;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: border 0.2s;
}

#feedback-form input::placeholder,
#feedback-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#feedback-form input:focus,
#feedback-form select:focus,
#feedback-form textarea:focus {
    border-color: #a855f7;
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

#feedback-form select option {
    background: #000000;
    color: #ffffff;
}

#feedback-form button[type="submit"] {
    width: 100%;
    margin-top: 0.5rem;
    background: #a855f7;
    color: #ffffff;
    border: none;
    padding: 0.8rem;
    border-radius: 0.4rem;
    font-weight: 600;
    transition: background 0.2s;
}

#feedback-form button[type="submit"]:hover {
    background: #9333ea;
}

#feedback-form input[type="file"] {
    border: none;
    background: none;
    padding: 0.2rem 0;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

#feedback-form input[type="file"]::file-selector-button {
    background: #a855f7;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
    margin-right: 0.5rem;
    cursor: pointer;
    transition: background 0.2s;
}

#feedback-form input[type="file"]::file-selector-button:hover {
    background: #9333ea;
}

/* Clients Carousel Section */
.clients-carousel {
    background: #00B59B !important;
    padding: 4rem 0 4rem 0;
    position: relative;
    overflow: hidden;
}

.clients-carousel .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.clients-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.clients-list {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.clients-list::-webkit-scrollbar {
    display: none;
}

.client-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
    max-width: 200px;
    margin: 0 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 1.5rem;
    padding: 1.5rem 1rem 1rem 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.client-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

.client-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
    background: #fff;
}

.client-name {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
    margin-top: 0.2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
}

.client-subs {
    color: #f3f3f3;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    font-weight: 400;
    opacity: 0.85;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
}

.clients-nav {
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    padding: 0 1rem;
    transition: color 0.2s, transform 0.2s;
    z-index: 2;
    user-select: none;
    opacity: 0.8;
}

.clients-nav:hover {
    color: #ffd700;
    transform: scale(1.15);
    opacity: 1;
}

@media (max-width: 900px) {
    .clients-list {
        gap: 1.5rem;
    }

    .client-item {
        min-width: 140px;
        max-width: 160px;
        padding: 1rem 0.5rem 0.5rem 0.5rem;
    }

    .client-avatar {
        width: 70px;
        height: 70px;
    }

    .client-name {
        font-size: 1rem;
    }

    .client-subs {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .clients-carousel {
        padding: 2.5rem 0 2.5rem 0;
    }

    .clients-list {
        gap: 1rem;
    }

    .client-item {
        min-width: 110px;
        max-width: 120px;
        padding: 0.7rem 0.2rem 0.2rem 0.2rem;
    }

    .client-avatar {
        width: 50px;
        height: 50px;
        border-width: 3px;
    }

    .client-name {
        font-size: 0.95rem;
    }

    .client-subs {
        font-size: 0.8rem;
    }

    .clients-nav {
        font-size: 2.2rem;
        padding: 0 0.3rem;
    }
}

/* Portfolio Videos Swiper */
.portfolio-videos-swiper {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.swiper-slide video {
    width: 100%;
    border-radius: 1rem;
    background: #181c2a;
}

/* Responsive Design for Portfolio */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .portfolio-section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .portfolio {
        padding: 3rem 0;
    }

    .portfolio-section {
        margin-bottom: 3rem;
    }

    .portfolio-section-header {
        margin-bottom: 2rem;
    }

    .portfolio-section-title {
        font-size: 1.5rem;
    }

    .portfolio-section-subtitle {
        font-size: 1rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-image img {
        height: 200px;
    }

    .portfolio-overlay {
        padding: 1.5rem;
    }

    .portfolio-overlay-content h4 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .portfolio-section-title {
        font-size: 1.25rem;
    }

    .portfolio-content {
        padding: 1rem;
    }

    .portfolio-title {
        font-size: 1.1rem;
    }

    .portfolio-description {
        font-size: 0.95rem;
    }

    .tag {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Individual sections hidden by default */
#content-creators,
#businesses,
#agencies-marketers,
#short-form-content,
#long-form-content {
    display: none;
    padding: 5rem 0;
    background: #000000;
    position: relative;
}


#content-creators.help-section,
#businesses.help-section,
#agencies-marketers.help-section {
    display: none;
    padding: 5rem 0;
    background: #000000;
    position: relative;
}


#short-form-content.portfolio-section,
#long-form-content.portfolio-section {
    display: none;
    padding: 5rem 0;
    background: #000000;
    position: relative;
}

/* Clients Grid Section */
.clients-grid-section {
    background: #000;
    padding: 4rem 0 4rem 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.clients-grid-section::before,
.clients-grid-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 90px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    filter: blur(44px);
    opacity: 0.95;
}

.clients-grid-section::before {
    left: 0;
    background: linear-gradient(to right, #000 70%, transparent 100%);
}

.clients-grid-section::after {
    right: 0;
    background: linear-gradient(to left, #000 70%, transparent 100%);
}

.clients-grid-section .container {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    text-align: center;
}

.clients-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.clients-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
}

.client-card {
    display: flex;
    align-items: center;
    min-width: 300px;
    max-width: 340px;
    height: 86px;
    background: #fff;
    border-radius: 0.6rem;
    padding: 0.7rem 1.5rem 0.7rem 1rem;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.10);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.client-card.yellow {
    background: linear-gradient(90deg, #ffe066 0%, #ffd700 100%);
    color: #222;
}

.client-card.purple {
    background: linear-gradient(90deg, #a855f7 0%, #7c3aed 100%);
    color: #fff;
}

.client-card.green {
    background: linear-gradient(90deg, #34d399 0%, #10b981 100%);
    color: #fff;
}

.client-card.white {
    background: #fff;
    color: #222;
}

.client-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    margin-right: 1rem;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

.client-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    height: 100%;
}

.client-name,
.client-subs,
.client-socials {
    line-height: 1.1;
}

.client-socials {
    align-items: center;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: inherit;
}

.client-subs {
    font-size: 0.98rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: inherit;
}

.client-socials {
    display: flex;
    gap: 0.5rem;
}

.client-socials i {
    font-size: 1.1rem;
    color: inherit;
    opacity: 0.8;
    transition: color 0.2s, opacity 0.2s;
}

.client-card.yellow .client-socials i {
    color: #222;
}

.client-card.purple .client-socials i,
.client-card.green .client-socials i {
    color: #fff;
}

.client-card.white .client-socials i {
    color: #222;
}

.client-socials i:hover {
    opacity: 1;
}

@media (max-width: 1024px) {
    .clients-row {
        gap: 1rem;
    }

    .client-card {
        min-width: 180px;
        max-width: 200px;
        padding: 1rem 0.7rem 1rem 0.7rem;
    }

    .client-avatar {
        width: 48px;
        height: 48px;
        margin-right: 0.7rem;
    }
}

@media (max-width: 700px) {
    .clients-grid {
        gap: 1.2rem;
    }

    .clients-row {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }

    .client-card {
        min-width: 90vw;
        max-width: 95vw;
        padding: 0.8rem 0.5rem 0.8rem 0.5rem;
    }

    .client-avatar {
        width: 40px;
        height: 40px;
        margin-right: 0.5rem;
    }
}

/* Marquee Animation for Clients Rows */
.clients-row {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.clients-marquee-inner {
    display: flex;
    width: max-content;
    animation-duration: 28s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    gap: 1rem;
    --marquee-distance: 0px;
}

.clients-row[data-direction="rtl"] .clients-marquee-inner {
    animation-name: marquee-rtl;
}

.clients-row[data-direction="ltr"] .clients-marquee-inner {
    animation-name: marquee-ltr;
}

@keyframes marquee-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-1 * var(--marquee-distance, 0px)));
    }
}

@keyframes marquee-ltr {
    0% {
        transform: translateX(calc(-1 * var(--marquee-distance, 0px)));
    }

    100% {
        transform: translateX(0);
    }
}

.clients-row:hover .clients-marquee-inner {
    animation-play-state: paused !important;
}

/* Removed .client-card:hover selectors to prevent marquee from ending on hover */

@media (max-width: 900px) {
    .client-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        height: auto;
        padding: 0.5rem 0.8rem 0.5rem 0.6rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .client-avatar {
        width: clamp(28px, 5vw, 36px);
        height: clamp(28px, 5vw, 36px);
        margin-right: 0.5rem;
    }

    .client-info {
        min-width: 0;
        flex: 1 1 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .client-name {
        font-size: clamp(0.85rem, 2.5vw, 0.98rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .client-subs {
        font-size: clamp(0.7rem, 2vw, 0.85rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .client-socials i {
        font-size: clamp(0.7rem, 2vw, 0.95rem);
    }
}

@media (max-width: 600px) {
    .clients-grid-section .container {
        padding: 0;
    }

    .client-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        height: auto;
        padding: 0.3rem 0.4rem 0.3rem 0.4rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .client-avatar {
        width: clamp(20px, 7vw, 28px);
        height: clamp(20px, 7vw, 28px);
        margin-right: 0.3rem;
    }

    .client-info {
        min-width: 0;
        flex: 1 1 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .client-name {
        font-size: clamp(0.7rem, 3vw, 0.85rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .client-subs {
        font-size: clamp(0.6rem, 2.5vw, 0.7rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .client-socials i {
        font-size: clamp(0.6rem, 2.5vw, 0.8rem);
    }

    .clients-row {
        padding: 4px 0;
    }
}

.help-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.help-section .container {
    position: relative;
    z-index: 2;
}

.help-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.help-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.help-content.reverse {
    flex-direction: row-reverse;
}

.help-text {
    flex: 1;
}

.help-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.help-image img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.help-content:hover .help-image img {
    transform: scale(1.05);
}

.help-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #a855f7, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.help-description {
    font-size: 1.1rem;
    color: #e5e7ff;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.help-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.help-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #d1d5db;
    font-size: 1rem;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: #a855f7;
    border-radius: 50%;
}

.help-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.know-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #fff;
    border: 2px solid #a855f7;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.know-more-btn:hover {
    background: #a855f7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.3);
}

@media (max-width: 1024px) {
    .help-content {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }

    .help-content.reverse {
        flex-direction: column;
    }

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

    .help-image {
        order: -1;
    }

    .help-image img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .help-section {
        padding: 3rem 0;
    }

    .help-title {
        font-size: 1.8rem;
    }

    .help-description {
        font-size: 1rem;
    }

    .help-features li {
        font-size: 0.95rem;
    }

    .help-image img {
        max-width: 100%;
    }
}

.hiring-banner {
    width: 100vw;
    background: #e4002b;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-weight: 600;
    font-size: 1.1rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    gap: 1.5rem;
    height: 2rem;
    border-radius: 0 !important;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
}

.hiring-banner span {
    margin-right: 0.5rem;
    line-height: 2.25rem;
}

.hiring-apply {
    background: #d0021b;
    color: #fff;
    height: 1.6rem;
    padding: 0 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s;
    border: none;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.08);
    font-size: 1rem;
}

.hiring-apply:hover {
    background: #b8001a;
    color: #fff;
}

.hiring-apply .arrow {
    font-size: 1.2em;
    margin-left: 0.2em;
}

@media (max-width: 768px) {
    .footer-section {
        align-items: center;
        text-align: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-section ul,
    .footer-section li {
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hiring-banner {
        flex-direction: row;
        font-size: clamp(0.65rem, 2vw, 0.9rem);
        gap: 0.3rem;
        padding: 0.2rem 0.1rem;
        height: auto;
        border-radius: 0 0 16px 16px;
        white-space: nowrap;
    }

    .hiring-apply {
        width: auto;
        justify-content: center;
        padding: 0.2rem 0.7rem;
        font-size: clamp(0.7rem, 2vw, 0.9rem);
        height: 1.7rem;
        min-width: 0;
        flex-shrink: 1;
        white-space: nowrap;
    }

    .hiring-banner span {
        font-size: clamp(0.7rem, 2vw, 0.9rem);
        line-height: 1.2rem;
        margin-right: 0.3rem;
        white-space: nowrap;
    }
}

/* Footer Portfolio Section Styles */
.footer-portfolio {
    min-width: 180px;
}

.footer-portfolio h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #a855f7;
    letter-spacing: 1px;
    position: relative;
}

.footer-portfolio h4::after {
    content: '';
    display: block;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, #a855f7, #06b6d4);
    border-radius: 1px;
    margin-top: 0.3rem;
}

.footer-portfolio ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-portfolio li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.footer-portfolio a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.89rem;
}

.footer-portfolio a:hover {
    color: #06b6d4;
    transform: translateX(4px);
}

.footer-portfolio .footer-icon {
    color: #a855f7;
    font-size: 1.1em;
    margin-right: 0.5em;
    transition: color 0.2s;
}

.footer-portfolio a:hover .footer-icon {
    color: #06b6d4;
}

.hiring-banner marquee {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
    width: 100%;
    font-size: 1.1rem;
}

.hiring-banner span,
.hiring-banner .hiring-apply {
    display: inline-block;
    vertical-align: middle;
}

.hiring-banner .hiring-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    gap: 0.3em;
}

.cta-section {
    background: #ffd600;
    min-height: 100vh;
    height: 100vh;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 700px) {
    .cta-section {
        min-height: 80vh;
        height: auto;
        padding: 2rem 0;
    }
}

.cta-container {
    background: #7c1fff;
    border-radius: 0.8rem;
    padding: 5rem 3rem 5rem 3rem;
    max-width: 1200px;
    width: 98vw;
    min-height: 500px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(44, 0, 100, 0.10);
    position: relative;
}

.cta-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    margin: 1.5rem 0 2.5rem 0;
    line-height: 1.1;
}

.cta-subtitle {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.cta-btn {
    background: #ffd600;
    text-decoration: none;
    color: #000;
    font-size: 1.25rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    padding: 0.9rem 2.5rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    margin-top: 1.5rem;
    box-shadow: 0 2px 12px 0 rgba(44, 0, 100, 0.10);
}

.cta-btn:hover {
    background: #ffe066;
    color: #7c1fff;
    transform: translateY(-2px) scale(1.03);
}

@media (max-width: 700px) {
    .cta-title {
        font-size: 2.1rem;
    }

    .cta-container {
        padding: 2.2rem 0.7rem 2.2rem 0.7rem;
    }
}

@keyframes testimonialFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Creators Section Styles */
.zonar-creator-section {
    background: #181c2a;
    padding: 3rem 0;
    border-radius: 1.5rem;
    margin-bottom: 2.5rem;
}

.zonar-creator-content {
    width: 100%;
    background: #232946;
    border-radius: 1.2rem;
    padding: 2.2rem 2vw;
    margin: 0 auto;
    box-shadow: 0 2px 12px 0 rgba(168, 85, 247, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.zonar-creator-title {
    font-size: 2rem;
    font-weight: 700;
    color: #a78bfa;
    text-align: center;
    margin-bottom: 0.5rem;
}

.zonar-creator-intro,
.zonar-creator-body {
    color: #e0e7ff;
    text-align: center;
}

.zonar-creator-why {
    color: #f59e42;
    font-weight: 600;
    text-align: center;
    margin: 1.2rem 0 0.5rem 0;
}

.zonar-creator-feature {
    background: #232946;
    border-left: 4px solid #a78bfa;
    border-radius: 0.6rem;
    padding: 1rem 1.2rem;
    margin-bottom: 0.7rem;
    color: #e0e7ff;
}

.zonar-creator-feature h5 {
    color: #a78bfa;
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.zonar-creator-feature p {
    color: #e0e7ff;
    margin: 0;
}

/* Businesses Section Styles */
.zonar-business-section {
    background: #fff7ed;
    padding: 3rem 0;
    border-radius: 1.5rem;
    margin-bottom: 2.5rem;
}

.zonar-business-content {
    width: 100%;
    background: #fff;
    border-radius: 1.2rem;
    padding: 2.2rem 2vw;
    margin: 0 auto;
    box-shadow: 0 2px 12px 0 rgba(245, 158, 66, 0.10);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.zonar-business-title {
    font-size: 2rem;
    font-weight: 700;
    color: #f59e42;
    text-align: center;
    margin-bottom: 0.5rem;
}

.zonar-business-intro,
.zonar-business-body {
    color: #fff;
    text-align: center;
}

.zonar-business-why {
    color: #7c3aed;
    font-weight: 600;
    text-align: center;
    margin: 1.2rem 0 0.5rem 0;
}

.zonar-business-feature {
    background: #232946;
    border-left: 4px solid #f59e42;
    border-radius: 0.6rem;
    padding: 1rem 1.2rem;
    margin-bottom: 0.7rem;
    color: #22223b;
}

.zonar-business-feature h5 {
    color: #f59e42;
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.zonar-business-feature p {
    color: #fff;
    margin: 0;
}

/* Agencies & Marketers Section Styles */
.zonar-agency-section {
    background: #f3e8ff;
    padding: 3rem 0;
    border-radius: 1.5rem;
    margin-bottom: 2.5rem;
}

.zonar-agency-content {
    width: 100%;
    background: transparent;
    border-radius: 1.2rem;
    padding: 2.2rem 2vw;
    margin: 0 auto;
    box-shadow: 0 2px 12px 0 rgba(124, 58, 237, 0.10);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.zonar-agency-title {
    font-size: 2rem;
    font-weight: 700;
    color: #7c3aed;
    text-align: center;
    margin-bottom: 0.5rem;
}

.zonar-agency-intro,
.zonar-agency-body {
    color: #fff;
    text-align: center;
}

.zonar-agency-why {
    color: #f59e42;
    font-weight: 600;
    text-align: center;
    margin: 1.2rem 0 0.5rem 0;
}

.zonar-agency-feature {
    background: #232946;
    border-left: 4px solid #7c3aed;
    border-radius: 0.6rem;
    padding: 1rem 1.2rem;
    margin-bottom: 0.7rem;
    color: #22223b;
}

.zonar-agency-feature h5 {
    color: #7c3aed;
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.zonar-agency-feature p {
    color: #fff;
    margin: 0;
}

@media (max-width: 700px) {

    .zonar-creator-content,
    .zonar-business-content,
    .zonar-agency-content {
        padding: 1rem 1vw;
    }

    .zonar-creator-title,
    .zonar-business-title,
    .zonar-agency-title {
        font-size: 1.2rem;
    }

    .zonar-creator-section,
    .zonar-business-section,
    .zonar-agency-section {
        padding: 1.2rem 0;
    }
}

.zonar-creator-content,
.zonar-business-content,
.zonar-agency-content {
    width: 100%;
    background: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

@media (max-width: 700px) {

    .zonar-creator-content,
    .zonar-business-content,
    .zonar-agency-content {
        padding: 0;
    }
}

.zonar-creator-feature,
.zonar-business-feature,
.zonar-agency-feature {
    max-width: 420px;
    min-height: 120px;
    margin: 0.7rem auto;
    padding: 2rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
}

@media (max-width: 700px) {

    .zonar-creator-feature,
    .zonar-business-feature,
    .zonar-agency-feature {
        max-width: 98vw;
        min-height: 90px;
        padding: 1.2rem 0.7rem;
    }
}

.zonar-creator-features,
.zonar-business-features,
.zonar-agency-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.zonar-creator-feature,
.zonar-business-feature,
.zonar-agency-feature {
    flex: 1 1 320px;
    max-width: 420px;
    min-width: 260px;
    min-height: 120px;
    margin: 0;
}

@media (max-width: 900px) {

    .zonar-creator-features,
    .zonar-business-features,
    .zonar-agency-features {
        gap: 1rem;
    }

    .zonar-creator-feature,
    .zonar-business-feature,
    .zonar-agency-feature {
        flex: 1 1 220px;
        max-width: 98vw;
        min-width: 140px;
    }
}

@media (max-width: 700px) {

    .zonar-creator-features,
    .zonar-business-features,
    .zonar-agency-features {
        flex-direction: column;
        gap: 0.7rem;
        align-items: center;
    }

    .zonar-creator-feature,
    .zonar-business-feature,
    .zonar-agency-feature {
        max-width: 98vw;
        min-width: 0;
        min-height: 90px;
        padding: 1.2rem 0.7rem;
    }
}

.zonar-agency-cta {
    text-align: center;
    font-size: 1.35rem;
    font-weight: 700;
    color: #7c3aed;
    margin: 2.2rem 0 0.5rem 0;
    line-height: 1.5;
}

.zonar-agency-cta h5 {
    color: #f59e42;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.zonar-agency-cta p {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 500;
    margin: 0.2rem 0 0.7rem 0;
}

/* Collaboration Page Styles */
.collaborate-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.collaborate-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.3) contrast(1.2);
    z-index: 0;
}

.collaborate-hero .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(26, 26, 26, 0.4) 100%);
    z-index: 1;
}

.collaborate-hero .hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 10;
    animation: heroContentSlideIn 1s ease-out;
    position: relative;
}

.collaborate-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.collaborate-hero .hero-title .word-1 {
    color: #ffffff;
}

.collaborate-hero .hero-title .word-2 {
    color: #10b981;
}

.collaborate-hero .hero-title .word-3 {
    color: #ffffff;
}

.collaborate-hero .hero-title .word-4 {
    color: #FFAA00;
}

.collaborate-hero .hero-founder {
    font-size: 1.25rem;
    color: #a1a1aa;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent !important;
    color: #fff !important;
    border: 1.6px solid #fff !important;
}

.btn-secondary:hover {
    background: #066758 !important;
    color: #fff !important;
    border: 1.6px solid #066758 !important;
}

/* Why Collaborate Section */
.why-collaborate {
    padding: 6rem 0;
    background: #0a0a0a;
}

.collaborate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.collaborate-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.collaborate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collaborate-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.3);
}

.collaborate-card:hover::before {
    opacity: 1;
}

.collaborate-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a855f7, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.collaborate-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.collaborate-card p {
    color: #a1a1aa;
    line-height: 1.6;
    margin: 0;
}

/* Our Process Section */
.our-process {
    padding: 6rem 0;
    background: #000;
}

.process-timeline {
    margin-top: 3rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #a855f7, #10b981);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a855f7, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    z-index: 2;
    position: relative;
}

.step-content {
    flex: 1;
    padding: 0 2rem;
    max-width: 400px;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.step-content p {
    color: #a1a1aa;
    line-height: 1.6;
}

/* Services We Offer */
.services-offer {
    padding: 6rem 0;
    background: #0a0a0a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a855f7, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.service-card ul {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.service-card li {
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.client-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

.client-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
    background: #fff;
}

.client-name {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
    margin-top: 0.2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
}

.client-subs {
    color: #f3f3f3;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    font-weight: 400;
    opacity: 0.85;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
}

.clients-nav {
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    padding: 0 1rem;
    transition: color 0.2s, transform 0.2s;
    z-index: 2;
    user-select: none;
    opacity: 0.8;
}

.clients-nav:hover {
    color: #ffd700;
    transform: scale(1.15);
    opacity: 1;
}

@media (max-width: 900px) {
    .clients-list {
        gap: 1.5rem;
    }

    .client-item {
        min-width: 140px;
        max-width: 160px;
        padding: 1rem 0.5rem 0.5rem 0.5rem;
    }

    .client-avatar {
        width: 70px;
        height: 70px;
    }

    .client-name {
        font-size: 1rem;
    }

    .client-subs {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .clients-carousel {
        padding: 2.5rem 0 2.5rem 0;
    }

    .clients-list {
        gap: 1rem;
    }

    .client-item {
        min-width: 110px;
        max-width: 120px;
        padding: 0.7rem 0.2rem 0.2rem 0.2rem;
    }

    .client-avatar {
        width: 50px;
        height: 50px;
        border-width: 3px;
    }

    .client-name {
        font-size: 0.95rem;
    }

    .client-subs {
        font-size: 0.8rem;
    }

    .clients-nav {
        font-size: 2.2rem;
        padding: 0 0.3rem;
    }
}

/* Responsive Design for Portfolio */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .portfolio-section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .portfolio {
        padding: 3rem 0;
    }

    .portfolio-section {
        margin-bottom: 3rem;
    }

    .portfolio-section-header {
        margin-bottom: 2rem;
    }

    .portfolio-section-title {
        font-size: 1.5rem;
    }

    .portfolio-section-subtitle {
        font-size: 1rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-image img {
        height: 200px;
    }

    .portfolio-overlay {
        padding: 1.5rem;
    }

    .portfolio-overlay-content h4 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .portfolio-section-title {
        font-size: 1.25rem;
    }

    .portfolio-content {
        padding: 1rem;
    }

    .portfolio-title {
        font-size: 1.1rem;
    }

    .portfolio-description {
        font-size: 0.95rem;
    }

    .tag {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }
}

#content-creators,
#businesses,
#agencies-marketers,
#short-form-content,
#long-form-content {
    display: none;
    padding: 5rem 0;
    background: #000000;
    position: relative;
}

#content-creators.help-section,
#businesses.help-section,
#agencies-marketers.help-section {
    display: none;
    padding: 5rem 0;
    background: #000000;
    position: relative;
}

#short-form-content.portfolio-section,
#long-form-content.portfolio-section {
    display: none;
    padding: 5rem 0;
    background: #000000;
    position: relative;
}

.clients-grid-section {
    background: #000;
    padding: 4rem 0 4rem 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.clients-grid-section::before,
.clients-grid-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 90px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    filter: blur(44px);
    opacity: 0.95;
}

.clients-grid-section::before {
    left: 0;
    background: linear-gradient(to right, #000 70%, transparent 100%);
}

.clients-grid-section::after {
    right: 0;
    background: linear-gradient(to left, #000 70%, transparent 100%);
}

.clients-grid-section .container {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    text-align: center;
}

.clients-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.clients-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
}

.client-card {
    display: flex;
    align-items: center;
    min-width: 300px;
    max-width: 340px;
    height: 86px;
    background: #fff;
    border-radius: 0.6rem;
    padding: 0.7rem 1.5rem 0.7rem 1rem;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.10);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.client-card.yellow {
    background: linear-gradient(90deg, #ffe066 0%, #ffd700 100%);
    color: #222;
}

.client-card.purple {
    background: linear-gradient(90deg, #a855f7 0%, #7c3aed 100%);
    color: #fff;
}

.client-card.green {
    background: linear-gradient(90deg, #34d399 0%, #10b981 100%);
    color: #fff;
}

.client-card.white {
    background: #fff;
    color: #222;
}

.client-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    margin-right: 1rem;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

.client-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    height: 100%;
}

.client-name,
.client-subs,
.client-socials {
    line-height: 1.1;
}

.client-socials {
    align-items: center;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: inherit;
}

.client-subs {
    font-size: 0.98rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: inherit;
}

.client-socials {
    display: flex;
    gap: 0.5rem;
}

.client-socials i {
    font-size: 1.1rem;
    color: inherit;
    opacity: 0.8;
    transition: color 0.2s, opacity 0.2s;
}

.client-card.yellow .client-socials i {
    color: #222;
}

.client-card.purple .client-socials i,
.client-card.green .client-socials i {
    color: #fff;
}

.client-card.white .client-socials i {
    color: #222;
}

.client-socials i:hover {
    opacity: 1;
}

@media (max-width: 1024px) {
    .clients-row {
        gap: 1rem;
    }

    .client-card {
        min-width: 180px;
        max-width: 200px;
        padding: 1rem 0.7rem 1rem 0.7rem;
    }

    .client-avatar {
        width: 48px;
        height: 48px;
        margin-right: 0.7rem;
    }
}

@media (max-width: 700px) {
    .clients-grid {
        gap: 1.2rem;
    }

    .clients-row {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }

    .client-card {
        min-width: 90vw;
        max-width: 95vw;
        padding: 0.8rem 0.5rem 0.8rem 0.5rem;
    }

    .client-avatar {
        width: 40px;
        height: 40px;
        margin-right: 0.5rem;
    }
}

/* Marquee Animation for Clients Rows */
.clients-row {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.clients-marquee-inner {
    display: flex;
    width: max-content;
    animation-duration: 28s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    gap: 1rem;
    --marquee-distance: 0px;
}

.clients-row[data-direction="rtl"] .clients-marquee-inner {
    animation-name: marquee-rtl;
}

.clients-row[data-direction="ltr"] .clients-marquee-inner {
    animation-name: marquee-ltr;
}

@keyframes marquee-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-1 * var(--marquee-distance, 0px)));
    }
}

@keyframes marquee-ltr {
    0% {
        transform: translateX(calc(-1 * var(--marquee-distance, 0px)));
    }

    100% {
        transform: translateX(0);
    }
}

.clients-row:hover .clients-marquee-inner {
    animation-play-state: paused !important;
}


@media (max-width: 900px) {
    .client-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        height: auto;
        padding: 0.5rem 0.8rem 0.5rem 0.6rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .client-avatar {
        width: clamp(28px, 5vw, 36px);
        height: clamp(28px, 5vw, 36px);
        margin-right: 0.5rem;
    }

    .client-info {
        min-width: 0;
        flex: 1 1 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .client-name {
        font-size: clamp(0.85rem, 2.5vw, 0.98rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .client-subs {
        font-size: clamp(0.7rem, 2vw, 0.85rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .client-socials i {
        font-size: clamp(0.7rem, 2vw, 0.95rem);
    }
}

@media (max-width: 600px) {
    .clients-grid-section .container {
        padding: 0;
    }

    .client-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        height: auto;
        padding: 0.3rem 0.4rem 0.3rem 0.4rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .client-avatar {
        width: clamp(20px, 7vw, 28px);
        height: clamp(20px, 7vw, 28px);
        margin-right: 0.3rem;
    }

    .client-info {
        min-width: 0;
        flex: 1 1 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .client-name {
        font-size: clamp(0.7rem, 3vw, 0.85rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .client-subs {
        font-size: clamp(0.6rem, 2.5vw, 0.7rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .client-socials i {
        font-size: clamp(0.6rem, 2.5vw, 0.8rem);
    }

    .clients-row {
        padding: 4px 0;
    }
}

.help-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.help-section .container {
    position: relative;
    z-index: 2;
}

.help-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.help-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.help-content.reverse {
    flex-direction: row-reverse;
}

.help-text {
    flex: 1;
}

.help-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.help-image img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.help-content:hover .help-image img {
    transform: scale(1.05);
}

.help-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #a855f7, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.help-description {
    font-size: 1.1rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.help-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.help-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #d1d5db;
    font-size: 1rem;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: #a855f7;
    border-radius: 50%;
}

.help-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.know-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #fff;
    border: 2px solid #a855f7;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.know-more-btn:hover {
    background: #a855f7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.3);
}

@media (max-width: 1024px) {
    .help-content {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }

    .help-content.reverse {
        flex-direction: column;
    }

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

    .help-image {
        order: -1;
    }

    .help-image img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .help-section {
        padding: 3rem 0;
    }

    .help-title {
        font-size: 1.8rem;
    }

    .help-description {
        font-size: 1rem;
    }

    .help-features li {
        font-size: 0.95rem;
    }

    .help-image img {
        max-width: 100%;
    }
}

.hiring-banner {
    width: 100vw;
    background: #e4002b;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-weight: 600;
    font-size: 1.1rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    gap: 1.5rem;
    height: 2rem;
    border-radius: 0 !important;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
}

.hiring-banner span {
    margin-right: 0.5rem;
    line-height: 2.25rem;
}

.hiring-apply {
    background: #d0021b;
    color: #fff;
    height: 1.6rem;
    padding: 0 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s;
    border: none;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.08);
    font-size: 1rem;
}

.hiring-apply:hover {
    background: #b8001a;
    color: #fff;
}

.hiring-apply .arrow {
    font-size: 1.2em;
    margin-left: 0.2em;
}

@media (max-width: 600px) {
    .hiring-banner {
        flex-direction: row;
        font-size: clamp(0.65rem, 2vw, 0.9rem);
        gap: 0.3rem;
        padding: 0.2rem 0.1rem;
        height: auto;
        border-radius: 0 0 16px 16px;
        white-space: nowrap;
    }

    .hiring-apply {
        width: auto;
        justify-content: center;
        padding: 0.2rem 0.7rem;
        font-size: clamp(0.7rem, 2vw, 0.9rem);
        height: 1.7rem;
        min-width: 0;
        flex-shrink: 1;
        white-space: nowrap;
    }

    .hiring-banner span {
        font-size: clamp(0.7rem, 2vw, 0.9rem);
        line-height: 1.2rem;
        margin-right: 0.3rem;
        white-space: nowrap;
    }
}

/* Footer Portfolio Section Styles */
.footer-portfolio {
    min-width: 180px;
}

.footer-portfolio h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #a855f7;
    letter-spacing: 1px;
    position: relative;
}

.footer-portfolio h4::after {
    content: '';
    display: block;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, #a855f7, #06b6d4);
    border-radius: 1px;
    margin-top: 0.3rem;
}

.footer-portfolio ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-portfolio li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.footer-portfolio a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.89rem;
}

.footer-portfolio a:hover {
    color: #06b6d4;
    transform: translateX(4px);
}

.footer-portfolio .footer-icon {
    color: #a855f7;
    font-size: 1.1em;
    margin-right: 0.5em;
    transition: color 0.2s;
}

.footer-portfolio a:hover .footer-icon {
    color: #06b6d4;
}

.hiring-banner marquee {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
    width: 100%;
    font-size: 1.1rem;
}

.hiring-banner span,
.hiring-banner .hiring-apply {
    display: inline-block;
    vertical-align: middle;
}

.hiring-banner .hiring-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    gap: 0.3em;
}

.cta-section {
    background: #ffd600;
    min-height: 100vh;
    height: 100vh;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 700px) {
    .cta-section {
        min-height: 80vh;
        height: auto;
        padding: 2rem 0;
    }
}

.cta-container {
    background: #7c1fff;
    border-radius: 0.8rem;
    padding: 5rem 3rem 5rem 3rem;
    max-width: 1200px;
    width: 98vw;
    min-height: 500px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(44, 0, 100, 0.10);
    position: relative;
}

.cta-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    margin: 1.5rem 0 2.5rem 0;
    line-height: 1.1;
}

.cta-subtitle {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.cta-btn {
    background: #ffd600;
    text-decoration: none;
    color: #000;
    font-size: 1.25rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    padding: 0.9rem 2.5rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    margin-top: 1.5rem;
    box-shadow: 0 2px 12px 0 rgba(44, 0, 100, 0.10);
}

.cta-btn:hover {
    background: #ffe066;
    color: #7c1fff;
    transform: translateY(-2px) scale(1.03);
}

@media (max-width: 700px) {
    .cta-title {
        font-size: 2.1rem;
    }

    .cta-container {
        padding: 2.2rem 0.7rem 2.2rem 0.7rem;
    }
}

@keyframes testimonialFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Creators Section Styles */
.zonar-creator-section {
    background: #181c2a;
    padding: 3rem 0;
    border-radius: 1.5rem;
    margin-bottom: 2.5rem;
}

.zonar-creator-content {
    width: 100%;
    background: #232946;
    border-radius: 1.2rem;
    padding: 2.2rem 2vw;
    margin: 0 auto;
    box-shadow: 0 2px 12px 0 rgba(168, 85, 247, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.zonar-creator-title {
    font-size: 2rem;
    font-weight: 700;
    color: #a78bfa;
    text-align: center;
    margin-bottom: 0.5rem;
}

.zonar-creator-intro,
.zonar-creator-body {
    color: #e0e7ff;
    text-align: center;
}

.zonar-creator-why {
    color: #f59e42;
    font-weight: 600;
    text-align: center;
    margin: 1.2rem 0 0.5rem 0;
}

.zonar-creator-feature {
    background: #232946;
    border-left: 4px solid #a78bfa;
    border-radius: 0.6rem;
    padding: 1rem 1.2rem;
    margin-bottom: 0.7rem;
    color: #e0e7ff;
}

.zonar-creator-feature h5 {
    color: #a78bfa;
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.zonar-creator-feature p {
    color: #e0e7ff;
    margin: 0;
}

/* Businesses Section Styles */
.zonar-business-section {
    background: #fff7ed;
    padding: 3rem 0;
    border-radius: 1.5rem;
    margin-bottom: 2.5rem;
}

.zonar-business-content {
    width: 100%;
    background: #fff;
    border-radius: 1.2rem;
    padding: 2.2rem 2vw;
    margin: 0 auto;
    box-shadow: 0 2px 12px 0 rgba(245, 158, 66, 0.10);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.zonar-business-title {
    font-size: 2rem;
    font-weight: 700;
    color: #f59e42;
    text-align: center;
    margin-bottom: 0.5rem;
}

.zonar-business-intro,
.zonar-business-body {
    color: #fff;
    text-align: center;
}

.zonar-business-why {
    color: #7c3aed;
    font-weight: 600;
    text-align: center;
    margin: 1.2rem 0 0.5rem 0;
}

.zonar-business-feature {
    background: #232946;
    border-left: 4px solid #f59e42;
    border-radius: 0.6rem;
    padding: 1rem 1.2rem;
    margin-bottom: 0.7rem;
    color: #22223b;
}

.zonar-business-feature h5 {
    color: #f59e42;
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.zonar-business-feature p {
    color: #fff;
    margin: 0;
}

/* Agencies & Marketers Section Styles */
.zonar-agency-section {
    background: #f3e8ff;
    padding: 3rem 0;
    border-radius: 1.5rem;
    margin-bottom: 2.5rem;
}

.zonar-agency-content {
    width: 100%;
    background: transparent;
    border-radius: 1.2rem;
    padding: 2.2rem 2vw;
    margin: 0 auto;
    box-shadow: 0 2px 12px 0 rgba(124, 58, 237, 0.10);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.zonar-agency-title {
    font-size: 2rem;
    font-weight: 700;
    color: #7c3aed;
    text-align: center;
    margin-bottom: 0.5rem;
}

.zonar-agency-intro,
.zonar-agency-body {
    color: #fff;
    text-align: center;
}

.zonar-agency-why {
    color: #f59e42;
    font-weight: 600;
    text-align: center;
    margin: 1.2rem 0 0.5rem 0;
}

.zonar-agency-feature {
    background: #232946;
    border-left: 4px solid #7c3aed;
    border-radius: 0.6rem;
    padding: 1rem 1.2rem;
    margin-bottom: 0.7rem;
    color: #22223b;
}

.zonar-agency-feature h5 {
    color: #7c3aed;
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.zonar-agency-feature p {
    color: #fff;
    margin: 0;
}

@media (max-width: 700px) {

    .zonar-creator-content,
    .zonar-business-content,
    .zonar-agency-content {
        padding: 1rem 1vw;
    }

    .zonar-creator-title,
    .zonar-business-title,
    .zonar-agency-title {
        font-size: 1.2rem;
    }

    .zonar-creator-section,
    .zonar-business-section,
    .zonar-agency-section {
        padding: 1.2rem 0;
    }
}

.zonar-creator-content,
.zonar-business-content,
.zonar-agency-content {
    width: 100%;
    background: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

@media (max-width: 700px) {

    .zonar-creator-content,
    .zonar-business-content,
    .zonar-agency-content {
        padding: 0;
    }
}

.zonar-creator-feature,
.zonar-business-feature,
.zonar-agency-feature {
    max-width: 420px;
    min-height: 120px;
    margin: 0.7rem auto;
    padding: 2rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
}

@media (max-width: 700px) {

    .zonar-creator-feature,
    .zonar-business-feature,
    .zonar-agency-feature {
        max-width: 98vw;
        min-height: 90px;
        padding: 1.2rem 0.7rem;
    }
}

.zonar-creator-features,
.zonar-business-features,
.zonar-agency-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.zonar-creator-feature,
.zonar-business-feature,
.zonar-agency-feature {
    flex: 1 1 320px;
    max-width: 420px;
    min-width: 260px;
    min-height: 120px;
    margin: 0;
}

@media (max-width: 900px) {

    .zonar-creator-features,
    .zonar-business-features,
    .zonar-agency-features {
        gap: 1rem;
    }

    .zonar-creator-feature,
    .zonar-business-feature,
    .zonar-agency-feature {
        flex: 1 1 220px;
        max-width: 98vw;
        min-width: 140px;
    }
}

@media (max-width: 700px) {

    .zonar-creator-features,
    .zonar-business-features,
    .zonar-agency-features {
        flex-direction: column;
        gap: 0.7rem;
        align-items: center;
    }

    .zonar-creator-feature,
    .zonar-business-feature,
    .zonar-agency-feature {
        max-width: 98vw;
        min-width: 0;
        min-height: 90px;
        padding: 1.2rem 0.7rem;
    }
}

.zonar-agency-cta {
    text-align: center;
    font-size: 1.35rem;
    font-weight: 700;
    color: #7c3aed;
    margin: 2.2rem 0 0.5rem 0;
    line-height: 1.5;
}

.zonar-agency-cta h5 {
    color: #f59e42;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.zonar-agency-cta p {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 500;
    margin: 0.2rem 0 0.7rem 0;
}

/* Collaboration Page Styles */
.collaborate-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.collaborate-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.3) contrast(1.2);
    z-index: 0;
}

.collaborate-hero .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(26, 26, 26, 0.4) 100%);
    z-index: 1;
}

.collaborate-hero .hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 10;
    animation: heroContentSlideIn 1s ease-out;
    position: relative;
}

.collaborate-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.collaborate-hero .hero-title .word-1 {
    color: #ffffff;
}

.collaborate-hero .hero-title .word-2 {
    color: #10b981;
}

.collaborate-hero .hero-title .word-3 {
    color: #ffffff;
}

.collaborate-hero .hero-title .word-4 {
    color: #FFAA00;
}

.collaborate-hero .hero-founder {
    font-size: 1.25rem;
    color: #a1a1aa;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent !important;
    color: #fff !important;
    border: 1.6px solid #fff !important;
}

.btn-secondary:hover {
    background: #066758 !important;
    color: #fff !important;
    border: 1.6px solid #066758 !important;
    transform: translateY(-2px);
}

/* Why Collaborate Section */
.why-collaborate {
    padding: 6rem 0;
    background: #0a0a0a;
}

.collaborate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.collaborate-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.collaborate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collaborate-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.3);
}

.collaborate-card:hover::before {
    opacity: 1;
}

.collaborate-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a855f7, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.collaborate-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.collaborate-card p {
    color: #a1a1aa;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Our Process Section */
.our-process {
    padding: 6rem 0;
    background: #000;
}

.process-timeline {
    margin-top: 3rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #a855f7, #10b981);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a855f7, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    z-index: 2;
    position: relative;
}

.step-content {
    flex: 1;
    padding: 0 2rem;
    max-width: 400px;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.step-content p {
    color: #a1a1aa;
    line-height: 1.6;
}

/* Services We Offer */
.services-offer {
    padding: 6rem 0;
    background: #0a0a0a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a855f7, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.service-card ul {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.service-card li {
    color: #a1a1aa;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.service-card li:last-child {
    border-bottom: none;
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background: #000;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.collaborate-form {
    background: transparent;
    border: 1px solid #fff;
    border-radius: .6rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.collaborate-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.collaborate-form .form-group {
    display: flex;
    flex-direction: column;
}

.collaborate-form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.collaborate-form input,
.collaborate-form select,
.collaborate-form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.collaborate-form input:focus,
.collaborate-form select:focus,
.collaborate-form textarea:focus {
    outline: none;
    border-color: #a855f7;
    background: #000000;
}

.collaborate-form input::placeholder,
.collaborate-form textarea::placeholder {
    color: #a1a1aa;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
}

.submit-btn {
    background: #a855f7;
    color: #fff !important;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

/* FAQ Section */
.faq-section,
.faq {
    padding: 6rem 0;
    background: #0a0a0a;
}

/* Ensure FAQ container styles are applied */
.faq .faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    color: #a855f7;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-answer p {
    color: #a1a1aa;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Footer */
.faq-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-footer p {
    color: #a1a1aa;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* FAQ Modal */
#faq-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

#faq-modal .modal-content {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

#faq-modal h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

#faq-modal .close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: #a1a1aa;
    cursor: pointer;
    transition: color 0.3s ease;
}

#faq-modal .close:hover {
    color: #a855f7;
}

#faq-question-form .form-group {
    margin-bottom: 1.5rem;
}

#faq-question-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 600;
}

#faq-question-form input,
#faq-question-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#faq-question-form input:focus,
#faq-question-form textarea:focus {
    outline: none;
    border-color: #a855f7;
    background: rgba(255, 255, 255, 0.1);
}

#faq-question-form input::placeholder,
#faq-question-form textarea::placeholder {
    color: #a1a1aa;
}

#faq-question-form button[type="submit"] {
    width: 100%;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #a855f7, #10b981);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#faq-question-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

/* Footer Styles for Collaborate Page */
.footer {
    background: #000;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    z-index: -1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 1rem;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 2px;
    background: linear-gradient(135deg, #a855f7, #10b981);
}

.footer-section p {
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
    color: #a1a1aa;
    transition: color 0.3s ease;
}

.footer-section a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #a855f7;
}

.footer-section li i {
    margin-right: 0.5rem;
    color: #a855f7;
    width: 16px;
    text-align: center;
}

.footer-section a i {
    margin-right: 0.5rem;
    color: #a855f7;
    width: 16px;
    text-align: center;
    transition: color 0.3s ease;
}

.footer-section a:hover i {
    color: #10b981;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #a1a1aa;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: .5rem;
}

.footer-links a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #a855f7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .collaborate-hero .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step,
    .process-step:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
    }

    .step-content {
        padding: 1rem 0 0 0;
        max-width: none;
    }

    .collaborate-form {
        padding: 2rem;
    }

    .collaborate-form .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    /* FAQ responsive */
    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .collaborate-hero .hero-title {
        font-size: 2rem;
    }

    .collaborate-hero .hero-founder {
        font-size: 1.1rem;
    }

    .collaborate-card,
    .service-card {
        padding: 1.5rem;
    }

    .collaborate-form {
        padding: 1.5rem;
    }
}

/* Form Packages Section Styling */
.form-packages {
    background: #000000;
    border-radius: 1.2rem;
    padding: 2rem 2vw;
    margin: 2.5rem 0 0 0;
    box-shadow: 0 2px 12px 0 rgba(44, 0, 100, 0.10);
    text-align: center;
    color: #fff;
}

.form-packages h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffd600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.form-pricing-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.form-pricing-card {
    background: transparent;
    border: 2px solid #a855f7;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    min-width: 220px;
    max-width: 320px;
    box-shadow: 0 2px 12px 0 rgba(168, 85, 247, 0.08);
    color: #e0e7ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.form-pricing-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(168, 85, 247, 0.18);
    border-color: #ffd600;
}

.form-pricing-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.7rem;
}

.form-price {
    font-size: 2rem;
    font-weight: 800;
    color: #ffd600;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
    .form-pricing-grid {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }

    .form-pricing-card {
        min-width: 180px;
        max-width: 98vw;
        padding: 1.2rem 1rem;
    }
}

/* Portfolio Videos Section */
.portfolio-videos {
    margin-top: 3rem;
}

.portfolio-videos-title {
    color: #ffd600;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.portfolio-videos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.portfolio-video-card {
    background: #181c2a;
    border-radius: 1rem;
    padding: 1rem;
    max-width: 300px;
    width: 80%;
    box-shadow: 0 4px 16px rgba(24, 28, 42, 0.12);
}

.portfolio-video-card video {
    width: 100%;
    border-radius: 0.7rem;
    display: block;
}

.portfolio-videos-swiper {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.swiper-slide video {
    width: 100%;
    border-radius: 1rem;
    background: #181c2a;
}

.portfolio-videos-swiper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide video {
    width: 100%;
    max-width: 350px;
    border-radius: 1rem;
    background: #181c2a;
}

@media (max-width: 900px) {
    .portfolio-videos-swiper {
        max-width: 90vw;
    }

    .swiper-slide video {
        max-width: 90vw;
    }
}


/* Quote Modal Styling */
.modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #18181b;
    border-radius: 1.2rem;
    padding: 2rem 2vw;
    max-width: 400px;
    width: 95vw;
    box-shadow: 0 2px 24px 0 rgba(44, 0, 100, 0.18);
    color: #fff;
    position: relative;
}

.modal-content h3 {
    margin-bottom: 1.2rem;
    color: #ffd600;
    font-size: 1.3rem;
    font-weight: 700;
}

.modal .close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #a855f7;
    cursor: pointer;
}

.modal-content .form-group {
    margin-bottom: 1rem;
}

.modal-content label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 0.7rem;
    border-radius: 0.5rem;
    border: 1px solid #a855f7;
    background: #232946;
    color: #fff;
    font-size: 1rem;
}

.modal-content button {
    margin-top: 1rem;
    width: 100%;
}