/* ======================================================= */
/* === CSS FOR NEW VIDEO EDITING HERO SECTION (IMAGE) === */
/* ======================================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap');

:root {
    --bg-color: #ffffff;
    --text-dark: #111111;
    --text-light: #555555;
    --brand-orange: #ff5c0f;
    --border-color: #f0f0f0;
}

body {
    background-color: var(--bg-color);
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

/* Subtle Grid Background */
.hero-wrapper {
    background-color: #fff;
    background-image: 
        linear-gradient(rgba(225, 225, 225, 0.7) 1px, transparent 1px),
        linear-gradient(to right, rgba(225, 225, 225, 0.7) 1px, transparent 1px);
    background-size: 30px 30px;
}

.hero-section-new {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Left Side: Text & CTA */
.hero-text {
    flex: 1;
    max-width: 600px;
}

.trusted-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
}
.trusted-badge .avatars img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-left: -8px;
    border: 2px solid #fff;
}
.trusted-badge span { font-size: 14px; font-weight: 600; }

.hero-text h1 {
    
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}
.hero-text h1 .highlight { color: var(--brand-orange); }
.hero-text h1 .spark-icon {
    display: inline-block;
    width: 1em; height: 1em;
    vertical-align: super;
    position: relative; top: -0.2em; left: 0.1em;
}

.hero-text .description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 480px;
    margin: 24px 0 32px;
}

.cta-button-pro {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--text-dark);
    color: #fff;
    padding: 16px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}
.cta-button-pro:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.cta-button-pro .arrow-icon {
    background-color: #fff;
    color: var(--text-dark);
    width: 32px; height: 32px;
    border-radius: 50%;
    display: grid; place-items: center;
}
.hero-text .sub-cta {
    font-size: 14px; color: var(--text-light); margin-top: 16px;
}

/* Right Side: Testimonials */
.hero-testimonials {
    flex: 1;
    position: relative;
    min-height: 300px;
}
.testimonial-card {
    position: absolute;
    background-color: #fff;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    width: 300px;
}
.testimonial-card.card-1 {
    top: 0;
    left: 0;
    transform: rotate(-5deg);
}
.testimonial-card.card-2 {
    top: 130px;
    left: 50px;
    transform: rotate(3deg);
}
.testimonial-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.testimonial-header img { width: 36px; height: 36px; border-radius: 50%; }
.testimonial-header span { font-weight: 600; }
.testimonial-body { font-size: 15px; }
.testimonial-actions { display: flex; align-items: center; gap: 16px; margin-top: 12px; color: #888; }

/* Bottom Ticker/Marquee */
.social-proof {
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    margin-top: 60px;
}
.ticker-wrap {
    width: 100%;
    overflow: hidden;
}
.ticker-track {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap; /* Important for ticker */
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text .description, .hero-text .sub-cta {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-testimonials {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 50px;
        min-height: auto;
    }
    .testimonial-card {
        position: static;
        transform: rotate(0) !important;
    }
}
/* ======================================= */
/* === CSS FOR NEW ABOUT / STATS SECTION === */
/* ======================================= */

.about-section-new {
    padding: 100px 0;
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.about-heading {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 40px;
    color: var(--text-dark);
}

.about-heading .highlight {
    color: var(--brand-orange);
}

.stats-card {
    display: inline-block; /* To fit content width */
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    padding: 20px 40px;
}

.stats-grid {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 10px 20px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-orange);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 576px) {
    .stats-grid {
        flex-direction: column;
        gap: 20px;
    }
    .stats-card {
        padding: 30px 20px;
    }
    .stat-item {
        padding: 0;
    }
}
/* ========================================= */
/* === CSS FOR "WHAT WE DO BEST" SECTION === */
/* ========================================= */

.services-section-pro {
    padding: 100px 0;
    background-color: var(--bg-color); /* White background */
    text-align: center;
}

.services-header {
    max-width: 650px;
    margin: 0 auto 50px;
}

.services-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.services-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Service Cards Grid/Slider Container */
.services-grid-container {
    /* SwiperJS will handle this on mobile */
}

.service-card-pro {
    background-color: #1A1A1A;
    color: #fff;
    padding: 40px;
    border-radius: 24px;
    text-align: left;
    height: 100%; /* Important for grid layout */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden; /* For pseudo-element */
}

/* Subtle Starry Background Effect */
.service-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.2) 0.5px, transparent 0.5px),
                      radial-gradient(circle at 80% 70%, rgba(255,255,255,0.2) 0.5px, transparent 0.5px);
    background-size: 100px 100px;
    opacity: 0.3;
    z-index: 0;
}

.service-card-pro > * {
    position: relative; /* To keep content above the starry bg */
    z-index: 1;
}

.service-card-pro h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 16px;
}

.service-card-pro .description {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-tags {
    margin-top: auto; /* Pushes tags to the bottom */
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.service-tag svg {
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

/* Swiper pagination for mobile */
.services-slider .swiper-pagination {
    position: static;
    margin-top: 40px;
}
.services-slider .swiper-pagination-bullet {
    background-color: #ccc;
    opacity: 1;
}
.services-slider .swiper-pagination-bullet-active {
    background-color: var(--brand-orange);
}


/* Responsive: Grid on Desktop, Slider on Mobile */
@media (min-width: 769px) {
    .services-grid-container .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    /* Hide pagination on desktop */
    .services-slider .swiper-pagination {
        display: none;
    }
}
/* ======================================= */
/* === CSS FOR "HOW IT WORKS" SECTION === */
/* ======================================= */

.process-section-pro {
    padding: 100px 0;
    background-color: #F9FAFB; /* Off-white background */
    text-align: center;
}

.process-header {
    max-width: 650px;
    margin: 0 auto 50px;
}

.process-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.process-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Process Card Styling */
.process-card {
    background-color: #fff;
    border: 1px solid #F0F2F5;
    border-radius: 24px;
    padding: 30px;
    text-align: left;
    height: 100%; /* For grid layout */
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.card-number {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #F0F2F5;
    color: #909090;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
}

.card-visuals {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative; /* For absolutely positioned elements */
}

.card-visuals img {
    max-height: 50px;
    max-width: 50px;
    margin: 0 10px;
}
/* Specific styles for floating UI elements */
.visual-element {
    position: absolute;
    background-color: #fff;
    padding: 8px 16px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 600;
}
.revision-req { top: 20px; left: 40px; }
.revision-prog { top: 70px; left: 80px; background-color: var(--brand-orange); color: #fff; transform: rotate(-5deg); }
.final-cut { top: 30px; right: 20px; background-color: #222; color: #fff; }
.thumbnail { top: 80px; right: 100px; }
.publish-btn { top: 90px; right: 30px; background-color: var(--brand-orange); color: #fff; transform: rotate(5deg); }


.process-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0 0 10px;
}

.process-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Swiper pagination for mobile */
.process-slider .swiper-pagination {
    position: static;
    margin-top: 40px;
}
.process-slider .swiper-pagination-bullet {
    background-color: #ccc;
    opacity: 1;
}
.process-slider .swiper-pagination-bullet-active {
    background-color: var(--brand-orange);
}

/* Responsive Grid/Slider Logic */
@media (min-width: 769px) {
    .process-slider .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .process-slider .swiper-pagination {
        display: none;
    }
}
/* ======================================= */
/* === CSS FOR NEW PRICING SECTION === */
/* ======================================= */

.pricing-section-pro {
    padding: 100px 0;
    background-color: var(--bg-dark); /* Dark background for contrast */
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.pricing-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 16px;
}

.pricing-header h2 .highlight {
    color: var(--brand-orange);
}

.pricing-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.pricing-grid-pro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center; /* To align cards if they have different heights */
}

.pricing-card-pro {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 170, 255, 0.1);
}

.pricing-card-pro h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-light);
}

.price-tag {
    margin: 20px 0;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.price-tag .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--brand-orange);
}

.price-tag .per-item {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 8px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1; /* Pushes button to the bottom */
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-muted);
}

.features-list .icon-check {
    color: var(--brand-orange);
    width: 20px;
    height: 20px;
}

.whatsapp-cta-button {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #25D366;
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 30px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-grid-pro {
        grid-template-columns: 1fr;
    }
}