﻿/* General Styles */
:root {
    --primary-dark: #1C2B5A;
    --primary-mid: #533E8E;
    --primary-light: #386C69;
    --gradient: linear-gradient(135deg, #1C2B5A, #533E8E, #386C69);
    --gradient-soft: linear-gradient(135deg, rgba(28, 43, 90, 0.9), rgba(83, 62, 142, 0.9), rgba(56, 108, 105, 0.9));
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --border-radius: 1.2rem;
    --card-border-radius: 0.8rem;
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
    font-size:18px;
}

/* Typographic Styles */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.home .section-title {
    position: relative;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    display: inline-block;
}

    .home .section-title:after {
        content: "";
        position: absolute;
        right: 0;
        bottom: -12px;
        height: 5px;
        width: 80px;
        background: var(--gradient);
        border-radius: 3px;
        box-shadow: 0 3px 10px rgba(83, 62, 142, 0.3);
    }

.home .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.home .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Background Styles */
.home .gradient-section {
    background: var(--gradient);
    color: var(--white);
    position: relative;
}

/* About Section */
.home .about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 100%;
}

    .home .about-image-wrapper img {
        transition: var(--transition);
    }

    .home .about-image-wrapper:hover img {
        transform: scale(1.05);
    }

.home .brand-separator {
    width: 5px;
    height: 40px;
    background: var(--gradient);
    border-radius: 2px;
}

/* Services Section */
.home .service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .home .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .home .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 0;
        background: var(--gradient);
        transition: var(--transition);
    }

    .home .service-card:hover::before {
        height: 100%;
    }

.home .card-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background: var(--gradient);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

    .home .card-icon i {
        font-size: 2rem;
        color: var(--white);
    }

.home .card-title {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Process Section */
.home .process-card {
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    min-height:362px;
    overflow: hidden;
}

    .home .process-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.home .process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 7rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    z-index: 0;
}

.home .process-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background: var(--gradient);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

    .home .process-icon i {
        font-size: 2.5rem;
        color: var(--white);
    }

.home .process-title {
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}


/* Influencers Section */
.home .influencer-image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.home .stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

    .home .stat-card:hover {
        background: rgba(255, 255, 255, 0.2);
    }

.home .stat-icon i {
    font-size: 2rem;
    color: var(--white);
}

.home .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
}

.home .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Projects Section */
.home .project-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

    .home .project-image img {
        transition: var(--transition);
    }

    .home .project-image:hover img {
        transform: scale(1.05);
    }

.home .counter-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

    .home .counter-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.home .counter-icon {
    margin-bottom: 0.5rem;
}

    .home .counter-icon i {
        font-size: 2rem;
        color: var(--primary-mid);
    }

.home .counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.home .testimonial-card {
    background: var(--white);
    border-radius: var(--card-border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

    .home .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--box-shadow-hover);
    }

.home .testimonial-text {
    position: relative;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

    .home .testimonial-text:before {
        content: '"';
        font-size: 5rem;
        color: rgba(83, 62, 142, 0.1);
        position: absolute;
        top: -2.5rem;
        right: -1rem;
        font-family: serif;
    }

.home .client-info {
    display: flex;
    align-items: center;
}

.home .client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 1rem;
    border: 3px solid var(--primary-mid);
}

.home .client-details h5 {
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.home .client-position {
    color: var(--primary-mid);
    font-size: 0.85rem;
    font-weight: 500;
}

.home .testimonial-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Pricing Section */
.home .pricing-section {
    background: #f7f9fc;
}

.home .pricing-card {
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(32,40,56,0.12);
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}


.home .influencer-logos {
    display: flex;
    align-items: center;
    /* No wrap, all in one row */
    flex-wrap: nowrap;
    /* Optional: center within parent */
    justify-content: center;
}

    .home .influencer-logos .logo-item {
        position: relative;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
        /* white border to mask overlaps */
        border: 1px solid #fff;
        /* subtle drop shadow */
        box-shadow: 0 2px 2px rgba(0,0,0,0.1);
        /* pull each circle left so they overlap */
        margin-right: -8px;
        flex-shrink: 0;
        background: #443980;
    }

        /* First circle stays in place */
    .home .influencer-logos .logo-item:first-child {
        margin-left: 0;
    }

        /* Stack order: earlier items on top */
    .home .influencer-logos .logo-item:nth-child(1) {
        z-index: 9;
    }

    .home .influencer-logos .logo-item:nth-child(2) {
        z-index: 8;
    }

    .home .influencer-logos .logo-item:nth-child(3) {
        z-index: 7;
    }

    .home .influencer-logos .logo-item:nth-child(4) {
        z-index: 6;
    }

    .home .influencer-logos .logo-item:nth-child(5) {
        z-index: 5;
    }

    .home .influencer-logos .logo-item:nth-child(6) {
        z-index: 4;
    }

    .home .influencer-logos .logo-item:nth-child(7) {
        z-index: 3;
    }

    .home .influencer-logos .logo-item:nth-child(8) {
        z-index: 2;
    }

    .home .influencer-logos .logo-item:nth-child(9) {
        z-index: 1;
    }

        /* Make each image fill its circle */
        .home .influencer-logos .logo-item img {
            width: 80%;
            height: 80%;
            object-fit: cover;
            display: block;
            margin-right: 7px;
        }

        /* Style for the “+99” placeholder */
    .home .influencer-logos .logo-item .nine {
        font-size: 1.5rem;
        padding-top:5px;
        text-align:center;
        font-weight: bold;
        color: #333;
    }

.home .btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: .375rem;
    transition: background-color .2s;
}

    .home .btn-whatsapp:hover {
        background-color: #1ebe57;
        color: #fff;
    }

.home .pricing-card:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow: 0 8px 32px rgba(32,40,56,0.18);
}

.home .pricing-header {
    padding: 2rem 1rem 1rem 1rem;
    text-align: center;
    border-bottom: 1px solid #f0f1f3;
}

.home .pricing-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    padding: 20px 5px;
}

.home .pricing-icon {
    font-size: 2.5rem;
    margin-bottom: .7rem;
    color: #fff;
}

.home .pricing-gradient-1 {
    background: #f39c12;
}

.home .pricing-gradient-2 {
    background: #27ae60;
}

.home .pricing-gradient-3 {
    background: #c0392b;
}

.home .pricing-content {
    padding: 1.5rem 1.2rem 1rem 1.2rem;
    flex: 1 1 auto;
}

.home .pricing-duration-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .home .pricing-duration-list li {
        display: flex;
        justify-content: space-between;
        padding: .7rem 0;
        border-bottom: 1px dashed #e9ecef;
        font-size: 1.1rem;
        font-weight: 500;
    }

        .home .pricing-duration-list li:last-child {
            border-bottom: none;
        }

.home .price {
    font-weight: 700;
    color: #223A5E;
}



.pricing-section .report-preview {
    text-align: center;
    margin-top: 2rem;
}

    .pricing-section .report-preview p {
        font-size: 1.5rem;
        color: #333;
        margin-bottom: 1rem;
    }

    .pricing-section .report-preview .note {
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 1.5rem;
    }

.pricing-section .btn-report {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #1C2B5A, #533E8E);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

    .pricing-section .btn-report:hover {
        background: linear-gradient(135deg, #163049, #3a2c6f);
    }

    .pricing-section .btn-report i {
        font-size: 1.2rem;
    }


.home .pricing-cta {
    padding: 1rem 1.2rem 1.8rem 1.2rem;
    text-align: center;
}

.home .btn-gradient-1 {
    background: linear-gradient(86.9deg, #FDBD26 28.3%, #FD6D26 118.2%);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: .7rem 2rem;
    border-radius: 1.25rem;
    transition: background 0.2s, box-shadow 0.2s;
}

.home .btn-gradient-2 {
    background: linear-gradient(75.1deg, #227E22 6%, #63E211 84.3%);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: .7rem 2rem;
    border-radius: 1.25rem;
    transition: background 0.2s, box-shadow 0.2s;
}

.home .btn-gradient-3 {
    background: linear-gradient(90.1deg, #7A0000 8.1%, #D92A2A 74.4%);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: .7rem 2rem;
    border-radius: 1.25rem;
    transition: background 0.2s, box-shadow 0.2s;
}

.home .btn-gradient-1:hover, .btn-gradient-2:hover, .btn-gradient-3:hover {
    opacity: 0.9;
    box-shadow: 0 4px 20px rgba(32,40,56,0.15);
}

.home .pricing-badge {
    display: inline-block;
    position: absolute;
    top: 18px;
    left: 18px;
    background: #FFF3CD;
    color: #D97706;
    font-weight: 700;
    border-radius: 2rem;
    padding: .4rem 1.1rem;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(253, 189, 38, 0.12);
    z-index: 10;
}

.home .popular .pricing-header, .popular .btn-gradient-2 {
    box-shadow: 0 4px 20px rgba(217,42,42,0.18);
}

@media (max-width: 767.98px) {
    .home .pricing-header {
        padding: 1.5rem 1rem 1rem 1rem;
    }

    .home .pricing-content, .pricing-cta {
        padding-left: .7rem;
        padding-right: .7rem;
    }

    .home .pricing-badge {
        left: 12px;
        top: 12px;
        font-size: .98rem;
        padding: .3rem .7rem;
    }
}

/* CTA Section */
.home #cta {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.home .cta-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="rgba(255, 255, 255, 0.08)"></path></svg>');
    background-size: cover;
}

.home .cta-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    display: inline-block;
}

    .home .cta-icon:before {
        content: '';
        position: absolute;
        width: 70px;
        height: 70px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }

.home .cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.home .cta-lead {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.home .cta-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.home .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.home .btn-outline-light {
    border-width: 2px;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 30px;
    padding: 0.8rem 2.5rem;
    letter-spacing: 0.5px;
}

    .home .btn-outline-light:hover {
        background-color: var(--white);
        color: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

.home .btn-primary {
    background: #d35400;
    border: none;
    font-weight: 600;
    border-radius: 30px;
    padding: 0.8rem 2.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(83, 62, 142, 0.3);
}

    .home .btn-primary:hover {
        /*border: 2px solid #ecf0f1;*/
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(83, 62, 142, 0.4);
    }

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .home .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .home .section-title {
        font-size: 2rem;
    }

    .home .service-card,
    .home .process-card,
    .home .testimonial-card,
    .home .pricing-card {
        margin-bottom: 2rem;
    }

    .home .cta-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .home .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

        .home .section-title:after {
            right: 50%;
            transform: translateX(50%);
        }

    .home .counter-number,
    .home .stat-number {
        font-size: 2rem;
    }

    .home .cta-buttons {
        flex-direction: column;
    }

        .home .cta-buttons .btn {
            width: 100%;
            margin: 0.5rem 0;
        }

    .home .cta-title {
        font-size: 2rem;
    }

    .home cta-lead {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .home .section-header {
        margin-bottom: 2rem;
    }

    .home .pricing-card {
        margin-bottom: 1.5rem;
    }

    .home .client-avatar {
        width: 50px;
        height: 50px;
    }
}

/* Animation Utilities */
.home .fadeInUp {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.bg-ugc-overlay {
    position: absolute;
    inset: 0;
    background: url('/img/home/concept_plus7.png') no-repeat center center;
    background-size: cover;
    opacity: 0.04; /* Adjust opacity here */
    z-index: 0;
}



/* Smooth scroll effect */
html {
    scroll-behavior: smooth;
}
