<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Video Editing - Creativobe</title>
    <meta name="description" content="Professional video storytelling and editing">
       <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
    <!-- Font Awesome -->
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" crossorigin="anonymous" referrerpolicy="no-referrer" />
    <link rel="stylesheet" href="headerfooter.css">
    <link rel="icon" type="image/png" href="../images/logo/header logo.png">
<style>
    :root {
        --primary-blue: #1A92EC;
        --gold-accent: #F2E300;
        --dark-bg: #000;
        --card-bg: rgba(255, 255, 255, 0.03);
        --border-color: rgba(255, 255, 255, 0.12);
        --text-light: #b0b0b0;
        --text-white: #fff;
        --yellow: #f2e300;
    }
    
    .service-detail-section {
        padding: 100px 0;
        background: var(--dark-bg);
        min-height: 100vh;
        color: var(--text-white);
        font-family: 'Arial', sans-serif;
    }

    .service-container {
        max-width: 1450px;
        margin: 0 auto;
        padding: 0 40px;
    }

    /* Service Hero */
    .service-hero {
        margin-bottom: 80px;
    }

    .service-hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .service-hero-content h1 {
        font-size: 3.2rem;
        font-weight: 800;
        color: var(--text-white);
        margin: 0 0 20px 0;
        line-height: 1.2;
    }

    .service-hero-content h1 span {
        color: var(--primary-blue);
    }

    .service-hero-description {
        color: var(--text-light);
        font-size: 1.15rem;
        line-height: 1.7;
        margin-bottom: 40px;
    }

    .service-stats {
        display: flex;
        gap: 40px;
        margin-bottom: 40px;
    }

    .service-stat {
        text-align: center;
    }

    .service-stat-value {
        display: block;
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary-blue);
        line-height: 1;
    }

    .service-stat-label {
        display: block;
        font-size: 0.9rem;
        color: var(--text-light);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 8px;
    }

    .service-hero-actions {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .service-btn {
        background: var(--primary-blue);
        color: var(--text-white);
        border: none;
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        transition: all 0.3s;
        text-decoration: none;
        font-size: 0.95rem;
        position: relative;
        overflow: hidden;
    }

    .service-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(242, 227, 0, 0.3), transparent);
        transition: left 0.6s ease;
    }

    .service-btn:hover::before {
        left: 100%;
    }

    .service-btn:hover {
        background: #1486d8;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(26, 146, 236, 0.4);
    }

    .service-btn:hover i {
        color: var(--gold-accent) !important;
        transform: translateX(5px);
    }

    .service-btn i {
        transition: all 0.3s ease;
        color: var(--text-white);
    }

    .service-btn-secondary {
        background: transparent;
        color: var(--text-white);
        border: 2px solid rgba(255, 255, 255, 0.3);
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        transition: all 0.3s;
        text-decoration: none;
        position: relative;
        overflow: hidden;
    }

    .service-btn-secondary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(242, 227, 0, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .service-btn-secondary:hover::before {
        left: 100%;
    }

    .service-btn-secondary:hover {
        border-color: var(--primary-blue);
        color: var(--primary-blue);
        transform: translateY(-3px);
    }

    .service-btn-secondary:hover i {
        color: var(--gold-accent) !important;
        transform: translateX(5px);
    }

    .service-btn-secondary i {
        transition: all 0.3s ease;
        color: var(--text-white);
    }

    .service-hero-image {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        height: 500px;
    }

    .service-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

    .service-hero-image:hover img {
        transform: scale(1.05);
    }

    /* Service Details Grid */
    .service-details-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 60px;
        margin-bottom: 80px;
    }

    .service-main-content {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .service-section {
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        padding: 40px;
        transition: all 0.3s ease;
    }

    .service-section:hover {
        border-color: var(--primary-blue);
        box-shadow: 0 10px 30px rgba(26, 146, 236, 0.1);
    }

    .service-section h2 {
        font-size: 2rem;
        font-weight: 800;
        color: var(--text-white);
        margin: 0 0 30px 0;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--primary-blue);
    }

    /* Features Section */
    .service-features-grid {
        display: grid;
        gap: 20px;
    }

    .service-feature-item {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 25px;
        transition: all 0.3s ease;
        border-left: 4px solid var(--primary-blue);
    }

    .service-feature-item:hover {
        background: rgba(26, 146, 236, 0.05);
        transform: translateX(10px);
    }

    .service-feature-item h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--text-white);
        margin: 0 0 10px 0;
    }

    .service-feature-item p {
        color: var(--text-light);
        line-height: 1.6;
        margin: 0;
    }

    /* Process Steps */
    .service-process-steps {
        display: grid;
        gap: 20px;
    }

    .service-process-step {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 25px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        transition: all 0.3s ease;
    }

    .service-process-step:hover {
        background: rgba(26, 146, 236, 0.05);
        transform: translateX(10px);
    }

    .service-step-number {
        background: var(--primary-blue);
        color: white;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .service-step-content h3 {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--text-white);
        margin: 0 0 10px 0;
    }

    .service-step-content p {
        color: var(--text-light);
        line-height: 1.6;
        margin: 0;
    }

    /* Technologies & Deliverables */
    .service-tech-stack {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin: 20px 0;
    }

    .service-tech-item {
        background: rgba(26, 146, 236, 0.15);
        color: var(--primary-blue);
        padding: 10px 18px;
        border-radius: 30px;
        font-size: 0.9rem;
        border: 1px solid rgba(26, 146, 236, 0.4);
        transition: all 0.3s ease;
    }

    .service-tech-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(26, 146, 236, 0.3);
    }

    .service-deliverables-list {
        list-style: none;
        padding: 0;
    }

    .service-deliverables-list li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--text-light);
        transition: all 0.3s ease;
    }

    .service-deliverables-list li:hover {
        color: var(--text-white);
        transform: translateX(5px);
    }

    .service-deliverables-list li:before {
        content: '✓';
        color: var(--primary-blue);
        font-weight: bold;
        font-size: 1.1rem;
    }

    .service-deliverables-list li:last-child {
        border-bottom: none;
    }

    /* Sidebar */
    .service-sidebar {
        position: sticky;
        top: 100px;
        height: fit-content;
    }

    .service-info-card {
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        padding: 30px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .service-info-card:hover {
        border-color: var(--primary-blue);
        box-shadow: 0 15px 40px rgba(26, 146, 236, 0.15);
    }

    .service-icon-large {
        width: 80px;
        height: 80px;
        background: rgba(26, 146, 236, 0.15);
        border: 2px solid var(--primary-blue);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: var(--primary-blue);
        margin: 0 auto 20px;
        transition: all 0.3s ease;
    }

    .service-info-card:hover .service-icon-large {
        transform: scale(1.1);
    }

    .service-quick-facts {
        text-align: left;
        margin: 25px 0;
    }

    .service-quick-facts h4 {
        color: var(--text-white);
        margin-bottom: 15px;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 10px;
    }

    .service-fact-item {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .service-fact-item:hover {
        background: rgba(255, 255, 255, 0.02);
        padding-left: 10px;
    }

    .service-fact-item:last-child {
        border-bottom: none;
    }

    .service-fact-label {
        color: var(--text-light);
    }

    .service-fact-value {
        color: var(--text-white);
        font-weight: 600;
    }

    /* Related Services */
    .related-services-section {
        margin-top: 80px;
    }

    .related-services-section h2 {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--text-white);
        text-align: center;
        margin: 0 0 50px 0;
    }

    .related-services-section h2 span {
        color: var(--primary-blue);
    }

    .related-services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }

    .related-service-card {
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.4s ease;
        cursor: pointer;
    }

    .related-service-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary-blue);
        box-shadow: 0 20px 40px rgba(26, 146, 236, 0.2);
    }

    .related-service-image {
        height: 200px;
        overflow: hidden;
    }

    .related-service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .related-service-card:hover .related-service-image img {
        transform: scale(1.1);
    }

    .related-service-content {
        padding: 25px;
    }

    .related-service-icon {
        width: 50px;
        height: 50px;
        background: rgba(26, 146, 236, 0.15);
        border: 1px solid var(--primary-blue);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: var(--primary-blue);
        margin-bottom: 15px;
        transition: all 0.3s ease;
    }

    .related-service-card:hover .related-service-icon {
        transform: scale(1.1);
    }

    .related-service-content h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--text-white);
        margin: 0 0 10px 0;
    }

    .related-service-content p {
        color: var(--text-light);
        line-height: 1.5;
        margin: 0 0 20px 0;
    }

    .related-service-link {
        color: var(--primary-blue);
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .related-service-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(242, 227, 0, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .related-service-link:hover::before {
        left: 100%;
    }

    .related-service-link:hover {
        gap: 12px;
    }

    .related-service-link:hover i {
        color: var(--gold-accent) !important;
    }

    .related-service-link i {
        transition: all 0.3s ease;
        color: var(--primary-blue);
    }

    /* CTA Section */
    .service-cta-section {
        background: linear-gradient(135deg, var(--primary-blue) 0%, #1486d8 100%);
        color: white;
        padding: 80px 0;
        text-align: center;
        margin-top: 80px;
        border-radius: 20px;
    }

    .service-cta-section h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin: 0 0 20px 0;
    }

    .service-cta-section p {
        font-size: 1.2rem;
        margin: 0 0 40px 0;
        opacity: 0.9;
    }

    /* ============================================
       RESPONSIVE DESIGN FOR ALL SCREEN SIZES
    ============================================ */

    /* Large Desktops (1440px and up) */
    @media (min-width: 1440px) {
        .service-container {
            max-width: 1400px;
            padding: 0 60px;
        }
        
        .service-hero-grid {
            gap: 100px;
        }
        
        .service-hero-content h1 {
            font-size: 3.5rem;
        }
    }

    /* Standard Desktops (1200px - 1439px) */
    @media (max-width: 1439px) and (min-width: 1200px) {
        .service-container {
            max-width: 1200px;
            padding: 0 50px;
        }
        
        .service-hero-grid {
            gap: 70px;
        }
        
        .service-hero-content h1 {
            font-size: 3rem;
        }
    }

    /* Small Desktops and Tablets Landscape (1024px - 1199px) */
    @media (max-width: 1199px) and (min-width: 1024px) {
        .service-container {
            max-width: 1000px;
            padding: 0 40px;
        }
        
        .service-hero-grid {
            gap: 60px;
        }
        
        .service-hero-content h1 {
            font-size: 2.8rem;
        }
        
        .service-details-grid {
            gap: 50px;
        }
        
        .service-section {
            padding: 35px;
        }
    }

    /* Tablets (768px - 1023px) */
    @media (max-width: 1023px) and (min-width: 768px) {
        .service-container {
            padding: 0 30px;
        }
        
        .service-detail-section {
            padding: 80px 0;
        }
        
        .service-hero-grid {
            grid-template-columns: 1fr;
            gap: 50px;
            text-align: center;
        }
        
        .service-hero-content h1 {
            font-size: 2.6rem;
        }
        
        .service-stats {
            justify-content: center;
        }
        
        .service-hero-actions {
            justify-content: center;
        }
        
        .service-hero-image {
            height: 400px;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .service-details-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .service-sidebar {
            position: static;
            order: -1;
        }
        
        .service-info-card {
            max-width: 500px;
            margin: 0 auto;
        }
        
        .service-section {
            padding: 30px;
        }
        
        .related-services-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
        
        .service-cta-section {
            padding: 60px 0;
            margin-top: 60px;
        }
        
        .service-cta-section h2 {
            font-size: 2.2rem;
        }
    }

    /* Large Mobile Devices (576px - 767px) */
    @media (max-width: 767px) and (min-width: 576px) {
        .service-container {
            padding: 0 25px;
        }
        
        .service-detail-section {
            padding: 60px 0;
        }
        
        .service-hero {
            margin-bottom: 60px;
        }
        
        .service-hero-grid {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }
        
        .service-hero-content h1 {
            font-size: 2.4rem;
        }
        
        .service-hero-description {
            font-size: 1.1rem;
        }
        
        .service-stats {
            flex-direction: column;
            gap: 25px;
            align-items: center;
        }
        
        .service-stat-value {
            font-size: 2.2rem;
        }
        
        .service-hero-actions {
            flex-direction: column;
            align-items: center;
        }
        
        .service-btn, .service-btn-secondary {
            width: 100%;
            max-width: 280px;
            justify-content: center;
        }
        
        .service-hero-image {
            height: 350px;
        }
        
        .service-details-grid {
            grid-template-columns: 1fr;
            gap: 35px;
            margin-bottom: 60px;
        }
        
        .service-main-content {
            gap: 35px;
        }
        
        .service-section {
            padding: 25px;
        }
        
        .service-section h2 {
            font-size: 1.8rem;
        }
        
        .service-feature-item h3 {
            font-size: 1.2rem;
        }
        
        .service-step-content h3 {
            font-size: 1.1rem;
        }
        
        .service-tech-stack {
            gap: 10px;
        }
        
        .service-tech-item {
            padding: 8px 16px;
            font-size: 0.85rem;
        }
        
        .related-services-section {
            margin-top: 60px;
        }
        
        .related-services-section h2 {
            font-size: 2.2rem;
            margin-bottom: 40px;
        }
        
        .related-services-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .service-cta-section {
            padding: 50px 0;
            margin-top: 50px;
        }
        
        .service-cta-section h2 {
            font-size: 2rem;
        }
        
        .service-cta-section p {
            font-size: 1.1rem;
        }
    }

    /* Small Mobile Devices (375px - 575px) */
    @media (max-width: 575px) and (min-width: 375px) {
        .service-container {
            padding: 0 20px;
        }
        
        .service-detail-section {
            padding: 50px 0;
        }
        
        .service-hero {
            margin-bottom: 50px;
        }
        
        .service-hero-grid {
            grid-template-columns: 1fr;
            gap: 35px;
            text-align: center;
        }
        
        .service-hero-content h1 {
            font-size: 2rem;
            margin-bottom: 15px;
        }
        
        .service-hero-description {
            font-size: 1rem;
            margin-bottom: 30px;
        }
        
        .service-stats {
            flex-direction: column;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .service-stat-value {
            font-size: 2rem;
        }
        
        .service-stat-label {
            font-size: 0.85rem;
        }
        
        .service-hero-actions {
            flex-direction: column;
            gap: 15px;
        }
        
        .service-btn, .service-btn-secondary {
            width: 100%;
            padding: 14px 25px;
            font-size: 0.9rem;
        }
        
        .service-hero-image {
            height: 280px;
            border-radius: 18px;
        }
        
        .service-details-grid {
            grid-template-columns: 1fr;
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .service-main-content {
            gap: 30px;
        }
        
        .service-section {
            padding: 20px;
            border-radius: 16px;
        }
        
        .service-section h2 {
            font-size: 1.6rem;
            margin-bottom: 25px;
            padding-bottom: 12px;
        }
        
        .service-features-grid {
            gap: 15px;
        }
        
        .service-feature-item {
            padding: 20px;
            border-radius: 12px;
        }
        
        .service-feature-item h3 {
            font-size: 1.1rem;
        }
        
        .service-feature-item p {
            font-size: 0.95rem;
        }
        
        .service-process-steps {
            gap: 15px;
        }
        
        .service-process-step {
            padding: 20px;
            border-radius: 12px;
            flex-direction: column;
            gap: 15px;
            text-align: center;
        }
        
        .service-step-number {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
        
        .service-step-content h3 {
            font-size: 1rem;
        }
        
        .service-step-content p {
            font-size: 0.95rem;
        }
        
        .service-tech-stack {
            gap: 8px;
        }
        
        .service-tech-item {
            padding: 6px 12px;
            font-size: 0.8rem;
        }
        
        .service-deliverables-list li {
            padding: 10px 0;
            font-size: 0.95rem;
        }
        
        .service-info-card {
            padding: 25px 20px;
            border-radius: 16px;
        }
        
        .service-icon-large {
            width: 70px;
            height: 70px;
            font-size: 1.8rem;
        }
        
        .service-quick-facts h4 {
            font-size: 1rem;
        }
        
        .service-fact-item {
            font-size: 0.9rem;
        }
        
        .related-services-section {
            margin-top: 50px;
        }
        
        .related-services-section h2 {
            font-size: 1.8rem;
            margin-bottom: 35px;
        }
        
        .related-services-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .related-service-card {
            border-radius: 16px;
        }
        
        .related-service-image {
            height: 180px;
        }
        
        .related-service-content {
            padding: 20px;
        }
        
        .related-service-icon {
            width: 45px;
            height: 45px;
            font-size: 1.2rem;
        }
        
        .related-service-content h3 {
            font-size: 1.2rem;
        }
        
        .related-service-content p {
            font-size: 0.95rem;
        }
        
        .service-cta-section {
            padding: 40px 0;
            margin-top: 40px;
            border-radius: 16px;
        }
        
        .service-cta-section h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .service-cta-section p {
            font-size: 1rem;
            margin-bottom: 30px;
        }
    }

    /* Extra Small Mobile Devices (under 375px) */
    @media (max-width: 374px) {
        .service-container {
            padding: 0 15px;
        }
        
        .service-detail-section {
            padding: 40px 0;
        }
        
        .service-hero-content h1 {
            font-size: 1.8rem;
        }
        
        .service-hero-description {
            font-size: 0.95rem;
        }
        
        .service-stat-value {
            font-size: 1.8rem;
        }
        
        .service-btn, .service-btn-secondary {
            padding: 12px 20px;
            font-size: 0.85rem;
        }
        
        .service-hero-image {
            height: 250px;
        }
        
        .service-section {
            padding: 18px;
        }
        
        .service-section h2 {
            font-size: 1.4rem;
        }
        
        .service-feature-item {
            padding: 18px;
        }
        
        .service-process-step {
            padding: 18px;
        }
        
        .related-services-section h2 {
            font-size: 1.6rem;
        }
        
        .service-cta-section h2 {
            font-size: 1.6rem;
        }
    }

    /* Animation Classes */
    @keyframes serviceFadeIn {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .service-feature-item,
    .service-process-step,
    .related-service-card {
        animation: serviceFadeIn 0.6s ease-out;
    }

    /* Print Styles */
    @media print {
        .service-detail-section {
            background: white !important;
            color: black !important;
            padding: 20px 0 !important;
        }
        
        .service-btn, .service-btn-secondary {
            display: none !important;
        }
        
        .service-hero-image {
            box-shadow: none !important;
        }
    }
    
    
    
    /* Button Icon Hovers */
.service-btn:hover i {
    color: var(--yellow) !important; /* Changed from gold-accent to yellow */
    transform: translateX(5px);
}

.service-btn-secondary:hover i {
    color: var(--yellow) !important; /* Changed from gold-accent to yellow */
    transform: translateX(5px);
}

/* Simple Icons Hover */
.service-feature-item:hover h3 {
    color: var(--yellow);
    transition: color 0.3s ease;
}

.service-process-step:hover .service-step-number {
    background: var(--yellow);
    color: var(--dark-bg);
    transition: all 0.3s ease;
}

.service-process-step:hover h3 {
    color: var(--yellow);
    transition: color 0.3s ease;
}

.service-deliverables-list li:hover:before {
    color: var(--yellow);
    transition: color 0.3s ease;
}

.service-icon-large:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    transition: all 0.3s ease;
}

.service-fact-item:hover .service-fact-label {
    color: var(--yellow);
    transition: color 0.3s ease;
}

.service-fact-item:hover .service-fact-value {
    color: var(--yellow);
    transition: color 0.3s ease;
}

.related-service-card:hover .related-service-icon {
    border-color: var(--yellow);
    color: var(--yellow);
    background: rgba(242, 227, 0, 0.15);
    transition: all 0.3s ease;
}

.related-service-card:hover h3 {
    color: var(--yellow);
    transition: color 0.3s ease;
}

.related-service-link:hover i {
    color: var(--yellow) !important; /* Changed from gold-accent to yellow */
}

/* Small Things Hover */
.service-tech-item:hover {
    background: rgba(242, 227, 0, 0.15);
    color: var(--yellow);
    border-color: var(--yellow);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.service-section:hover h2 {
    border-bottom-color: var(--yellow);
    transition: border-color 0.3s ease;
}

/* Keep glows with original colors (not yellow) */
.service-btn::before,
.service-btn-secondary::before,
.related-service-link::before {
    /* These gradients use the yellow color but with transparency for subtle effects */
    /* If you want to remove yellow from glows completely, replace rgba(242, 227, 0, X) with rgba(26, 146, 236, X) */
}

/* Optional: If you want to remove yellow completely from glows, replace the above selectors with: */
.service-btn::before {
    background: linear-gradient(90deg, transparent, rgba(26, 146, 236, 0.3), transparent);
}

.service-btn-secondary::before {
    background: linear-gradient(90deg, transparent, rgba(26, 146, 236, 0.2), transparent);
}

.related-service-link::before {
    background: linear-gradient(90deg, transparent, rgba(26, 146, 236, 0.2), transparent);
}
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #4a4a4a;
    backdrop-filter: blur(10px);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(26, 146, 236, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(26, 146, 236, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(26, 146, 236, 0.5);
}
.scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(26, 146, 236, 0.2);
            z-index: 1000;
        }

        .progress-bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #1A92EC, #00ffea);
            transition: width 0.3s ease;
            box-shadow: 0 0 10px #1A92EC;
        }
</style>
</head>
<body>
     <div class="scroll-progress">
  <div class="progress-bar"></div>
</div>
        <div class="header-container-main">
        <header class="header-container">
            <nav class="navbar">
                <div class="logo-area">
                    <img src="../images/logo/header logo main.png" alt="Creativobe Logo" class="logo-icon">
                </div>

                <!-- Desktop Navigation -->
                <ul class="nav-links">
                    <li><a href="index.html#home" class="nav-link">Home</a></li>
                    <li><a href="index.html#about" class="nav-link">About</a></li>
                    <li><a href="index.html#services" class="nav-link">Services</a></li>
                    <li><a href="index.html#portfolio" class="nav-link">Portfolio</a></li>
                    <li><a href="index.html#team" class="nav-link">Our Team</a></li>
                </ul>

                <!-- Mobile Navigation Toggle -->
                <button class="mobile-nav-toggle" id="mobileNavToggle">
                    <i class="fas fa-bars"></i>
                </button>

                <!-- Right Side Buttons -->
                <div class="right-buttons">
                    <button class="blogs-button" id="blogsButton">
                        <i class="fas fa-blog"></i>
                        <span>Blogs</span>
                    </button>
                    <button class="contact-button" id="contactButton">
                        <i class="fas fa-envelope"></i>
                        <span>Contact Us</span>
                    </button>
                </div>
            </nav>
        </header>

        <!-- Mobile Navigation Menu -->
        <div class="mobile-nav-overlay" id="mobileNavOverlay"></div>
        <div class="mobile-nav" id="mobileNav">
            <ul class="mobile-nav-links">
                <li><a href="index.html#home" class="mobile-nav-link">Home</a></li>
                <li><a href="index.html#about" class="mobile-nav-link">About</a></li>
                <li><a href="index.html#services" class="mobile-nav-link">Services</a></li>
                <li><a href="index.html#portfolio" class="mobile-nav-link">Portfolio</a></li>
                <li><a href="index.html#team" class="mobile-nav-link">Our Team</a></li>
                <li><a href="blogs.html" class="mobile-nav-link">Blogs</a></li>
                <li><a href="contact.html" class="mobile-nav-link">Contact Us</a></li>
            </ul>
        </div>

        <!-- Scroll Header - FIXED POSITIONING -->
        <header class="scroll-header" id="scrollHeader">
            <div class="logo-area">
                <img src="../images/logo/header logo main.png" alt="Creativobe Logo" class="logo-icon">
            </div>
        </header>
    </div>
    <!-- Service Detail Section -->
    <section class="service-detail-section">
        <div class="service-container">
            <!-- Service Hero -->
            <div class="service-hero">
                <div class="service-hero-grid">
                    <div class="service-hero-content"><br><br><br>
                        <h1>Video Editing <span>Services</span></h1>
                        <p class="service-hero-description">
                            We transform raw footage into compelling video content that engages audiences and delivers your message effectively across all platforms. Our editing expertise ensures your videos tell a compelling story that resonates with viewers, from corporate presentations to social media content and commercial advertisements.                        </p>
                        
                        <div class="service-stats">
                                                        <div class="service-stat">
                                <span class="service-stat-value">400+</span>
                                <span class="service-stat-label">Videos Edited</span>
                            </div>
                                                        
                                                        <div class="service-stat">
                                <span class="service-stat-value">100%</span>
                                <span class="service-stat-label">Client Satisfaction</span>
                            </div>
                                                    </div>
                        
                        <div class="service-hero-actions">
                            <a href="#contact" class="service-btn">
                                <i class="fas fa-paper-plane"></i>
                                Start Your Project
                            </a>
                            <a href="#details" class="service-btn-secondary">
                                <i class="fas fa-info-circle"></i>
                                Learn More
                            </a>
                        </div>
                    </div>
                    
                    <div class="service-hero-image">
                                                <img src="https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-4.0.3&amp;auto=format&amp;fit=crop&amp;w=1170&amp;q=80" alt="Video Editing">
                                            </div>
                </div>
            </div>

            <!-- Service Details -->
            <div class="service-details-grid">
                <div class="service-main-content">
                    <!-- What We Offer Section -->
                    <div class="service-section" id="details">
                        <h2>What We Offer</h2>
                        <div class="service-features-grid">
                                                        <div class="service-feature-item">
                                <h3>Color Grading</h3>
                                <p>Professional Color Grading services designed to meet your specific business requirements and drive measurable results.</p>
                            </div>
                                                        <div class="service-feature-item">
                                <h3>Sound Design</h3>
                                <p>Professional Sound Design services designed to meet your specific business requirements and drive measurable results.</p>
                            </div>
                                                        <div class="service-feature-item">
                                <h3>Motion Graphics</h3>
                                <p>Professional Motion Graphics services designed to meet your specific business requirements and drive measurable results.</p>
                            </div>
                                                        <div class="service-feature-item">
                                <h3>Post-Production</h3>
                                <p>Professional Post-Production services designed to meet your specific business requirements and drive measurable results.</p>
                            </div>
                                                        <div class="service-feature-item">
                                <h3>Visual Effects</h3>
                                <p>Professional Visual Effects services designed to meet your specific business requirements and drive measurable results.</p>
                            </div>
                                                        <div class="service-feature-item">
                                <h3>Audio Enhancement</h3>
                                <p>Professional Audio Enhancement services designed to meet your specific business requirements and drive measurable results.</p>
                            </div>
                                                        <div class="service-feature-item">
                                <h3>Storytelling</h3>
                                <p>Professional Storytelling services designed to meet your specific business requirements and drive measurable results.</p>
                            </div>
                                                    </div>
                    </div>

                    <!-- Our Process Section -->
                    <div class="service-section">
                        <h2>Our Process</h2>
                        <div class="service-process-steps">
                                                        <div class="service-process-step">
                                <div class="service-step-number">1</div>
                                <div class="service-step-content">
                                    <h3>Discovery &amp; Consultation</h3>
                                    <p>We follow a systematic approach to ensure every project phase is executed with precision and excellence.</p>
                                </div>
                            </div>
                                                        <div class="service-process-step">
                                <div class="service-step-number">2</div>
                                <div class="service-step-content">
                                    <h3>Strategy &amp; Planning</h3>
                                    <p>We follow a systematic approach to ensure every project phase is executed with precision and excellence.</p>
                                </div>
                            </div>
                                                        <div class="service-process-step">
                                <div class="service-step-number">3</div>
                                <div class="service-step-content">
                                    <h3>Execution &amp; Development</h3>
                                    <p>We follow a systematic approach to ensure every project phase is executed with precision and excellence.</p>
                                </div>
                            </div>
                                                        <div class="service-process-step">
                                <div class="service-step-number">4</div>
                                <div class="service-step-content">
                                    <h3>Testing &amp; Quality Assurance</h3>
                                    <p>We follow a systematic approach to ensure every project phase is executed with precision and excellence.</p>
                                </div>
                            </div>
                                                        <div class="service-process-step">
                                <div class="service-step-number">5</div>
                                <div class="service-step-content">
                                    <h3>Delivery &amp; Support</h3>
                                    <p>We follow a systematic approach to ensure every project phase is executed with precision and excellence.</p>
                                </div>
                            </div>
                                                    </div>
                    </div>

                    <!-- Technologies Section -->
                    
                    <!-- Deliverables Section -->
                    <div class="service-section">
                        <h2>What You'll Get</h2>
                        <ul class="service-deliverables-list">
                                                        <li>Professional Video Editing solutions</li>
                                                        <li>Detailed project documentation</li>
                                                        <li>Ongoing support and maintenance</li>
                                                        <li>Performance analytics and reports</li>
                                                        <li>Training and knowledge transfer</li>
                                                        <li>Source files and assets</li>
                                                    </ul>
                    </div>
                </div>
                
                <!-- Sidebar -->
                <div class="service-sidebar">
                    <div class="service-info-card">
                        <div class="service-icon-large">
                            <i class="fas fa-video"></i>
                        </div>
                        <h3 style="color: var(--text-white); margin-bottom: 10px;">Video Editing</h3>
                        <p style="color: var(--text-light); margin-bottom: 25px;">Professional video storytelling and editing</p>
                        
                        <div class="service-quick-facts">
                            <h4>Quick Facts</h4>
                            <div class="service-fact-item">
                                <span class="service-fact-label">Project Duration:</span>
                                <span class="service-fact-value">2-6 Weeks</span>
                            </div>
                            <div class="service-fact-item">
                                <span class="service-fact-label">Team Size:</span>
                                <span class="service-fact-value">3-5 Experts</span>
                            </div>
                            <div class="service-fact-item">
                                <span class="service-fact-label">Support:</span>
                                <span class="service-fact-value">24/7 Available</span>
                            </div>
                        </div>
                        
                        <a href="#contact" class="service-btn" style="display: block; text-align: center;">
                            <i class="fas fa-calendar-check"></i>
                            Schedule Consultation
                        </a>
                    </div>
                </div>
            </div>

            <!-- Related Services -->
                        <div class="related-services-section">
                <h2>Related <span>Services</span></h2>
                <div class="related-services-grid">
                                        <div class="related-service-card">
                        <div class="related-service-image">
                                                        <img src="images/services/6980753cde05e_1770026300.jpg" alt="Performance Ad Creatives">
                                                    </div>
                        <div class="related-service-content">
                            <div class="related-service-icon">
                                <i class="fas fa-ad"></i>
                            </div>
                            <h3>Performance Ad Creatives</h3>
                            <p>Eye-catching ad designs that convert and drive results</p>
                            <a href="/service.php?id=1" class="related-service-link">
                                Explore Service
                                <i class="fas fa-arrow-right"></i>
                            </a>
                        </div>
                    </div>
                                        <div class="related-service-card">
                        <div class="related-service-image">
                                                        <img src="images/services/692853606aaca_1764250464.jpg" alt="Product Designing">
                                                    </div>
                        <div class="related-service-content">
                            <div class="related-service-icon">
                                <i class="fas fa-cube"></i>
                            </div>
                            <h3>Product Designing</h3>
                            <p>User-centered product solutions with exceptional experiences</p>
                            <a href="/service.php?id=2" class="related-service-link">
                                Explore Service
                                <i class="fas fa-arrow-right"></i>
                            </a>
                        </div>
                    </div>
                                        <div class="related-service-card">
                        <div class="related-service-image">
                                                        <img src="images/services/692853606aaca_1764250464.jpg" alt="Product Designing">
                                                    </div>
                        <div class="related-service-content">
                            <div class="related-service-icon">
                                <i class="fas fa-cube"></i>
                            </div>
                            <h3>Product Designing</h3>
                            <p>User-centered product solutions with exceptional experiences</p>
                            <a href="/service.php?id=2" class="related-service-link">
                                Explore Service
                                <i class="fas fa-arrow-right"></i>
                            </a>
                        </div>
                    </div>
                                    </div>
            </div>
            
            <!-- CTA Section -->
            <div class="service-cta-section" id="contact">
                <h2>Ready to Get Started?</h2>
                <p>Let's discuss how our Video Editing services can transform your business.</p>
                <a href="/contact" class="service-btn-secondary" style="background:black; color: var(--primary-blue); position: relative;">
                    <i class="fas fa-envelope" style="color:var(--primary-blue)"></i>
                    Contact Us Today
                </a>
            </div>
        </div>
    </section>
        <!-- Footer -->
   <footer class="footer">
        <div class="footer-container">
            <!-- Company Info -->
            <div class="footer-section">
                <div class="logo-area">
                    <img src="../images/logo/header logo main.png" alt="Creativobe Logo" class="logo-icon">
                </div>
                <p class="footer-description">
                    We create stunning digital experiences that help businesses grow and succeed in the modern world.
                </p>
                <div class="footer-social">
                    <a href="#" class="social-icon">
                        <i class="fab fa-x-twitter"></i>
                    </a>
                    <a href="#" class="social-icon">
                        <i class="fab fa-instagram"></i>
                    </a>
                    <a href="#" class="social-icon">
                        <i class="fab fa-linkedin-in"></i>
                    </a>
                    <a href="#" class="social-icon">
                        <i class="fab fa-facebook-f"></i>
                    </a>
                </div>
            </div>

            <!-- Quick Links -->
            <div class="footer-section">
                <h3 class="footer-heading">Quick Links</h3>
                <ul class="footer-links">
                    <li><a href="../index.html#home">Home</a></li>
                    <li><a href="../index.html#about">About Us</a></li>
                    <li><a href="../index.html#services">Services</a></li>
                    <li><a href="../index.html#portfolio">Portfolio</a></li>
                    <li><a href="../index.html#blogs">Blog</a></li>
                    <li><a href="../contact.html" onclick="window.location.href='../contact.html'">Contact</a></li>
                </ul>
            </div>

            <!-- Services -->
            <div class="footer-section">
                <h3 class="footer-heading">Our Services</h3>
                <ul class="footer-links">
                    <li><a href="https://creativobe.com/service.php?id=1" target="_blank">Ad Creative</a></li>
                    <li><a href="https://creativobe.com/service.php?id=6" target="_blank">Video Editing</a></li>
                    <li><a href="https://creativobe.com/service.php?id=4" target="_blank">Meta/Google Ads</a></li>
                    <li><a href="https://creativobe.com/service.php?id=5" target="_blank">Graphic Designing</a></li>
                    <li><a href="https://creativobe.com/service.php?id=3" target="_blank">Motion Graphics</a></li>
                    <li><a href="https://creativobe.com/service.php?id=1" target="_blank">Web Development</a></li>
                </ul>
            </div>
            <div class="footer-section">
                <h3 class="footer-heading">Contact Us</h3>
                <ul class="contact-info">
                    <li>
                        <div class="contact-icon">
                            <i class="fas fa-location-dot"></i>
                        </div>
                        <div class="contact-text">
                            <h4>Our Location</h4>
                            <p>Lahore, Pakistan</p>
                        </div>
                    </li>
                    <li>
                        <div class="contact-icon">
                            <i class="fas fa-envelope"></i>
                        </div>
                        <div class="contact-text">
                            <h4>Email Address</h4>
                            <p>contact@creativobe.com</p>
                        </div>
                    </li>
                    <li>
                        <div class="contact-icon">
                            <i class="fas fa-phone"></i>
                        </div>
                        <div class="contact-text">
                            <h4>Phone Number</h4>
                            <p>+92 315-1464009</p>
                        </div>
                    </li>
                </ul>
            </div>
        </div>

        <!-- Footer Bottom -->
        <div class="footer-bottom">
            <div class="copyright">
                &copy; 2025 Creativobe. All rights reserved.
            </div>
            <div class="footer-bottom-links">
                <a href="../privacy_policy.html">Privacy Policy</a>
                <a href="../term_of_services.html">Terms of Service</a>
                <a href="../cookie_policy.html">Cookie Policy</a>
            </div>
        </div>
    </footer>

    <!-- Back to Top Button -->
    <a href="#" class="back-to-top" id="backToTop">
        <svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
            <path d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"/>
        </svg>
    </a>

    <!-- Floating Icons -->
    <div class="floating-icons" id="floatingIcons">
        <a href="#" class="floating-icon">
            <i class="fab fa-x-twitter"></i>
        </a>
        <a href="#" class="floating-icon">
            <i class="fab fa-instagram"></i>
        </a>
        <a href="#" class="floating-icon">
            <i class="fab fa-linkedin-in"></i>
        </a>
        <a href="#" class="floating-icon">
            <i class="fab fa-facebook-f"></i>
        </a>
    </div>
 <script src="headerfooter.js"></script>
    <script>
        (function() {
    const progressBar = document.querySelector('.progress-bar');
    if (!progressBar) return;

    window.addEventListener('scroll', () => {
        const windowHeight = document.documentElement.scrollHeight - document.documentElement.clientHeight;
        const scrolled = (window.scrollY / windowHeight) * 100;
        progressBar.style.width = scrolled + '%';
    });
})();
        console.log('Service Image Debug:');
console.log('Image Source: https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1170&q=80');

// Test image loading
const testImage = new Image();
testImage.src = 'https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1170&q=80';
testImage.onload = function() {
    console.log('✅ Image loaded successfully:', this.src);
};
testImage.onerror = function() {
    console.error('❌ Failed to load image:', this.src);
    console.log('Trying to access image directly at:', this.src);
};
        // Your existing JavaScript code
        document.querySelectorAll('a[href^="#"]').forEach(anchor => {
            anchor.addEventListener('click', function (e) {
                e.preventDefault();
                const target = document.querySelector(this.getAttribute('href'));
                if (target) {
                    target.scrollIntoView({
                        behavior: 'smooth',
                        block: 'start'
                    });
                }
            });
        });

        // Add animation on scroll
        const observerOptions = {
            threshold: 0.1,
            rootMargin: '0px 0px -50px 0px'
        };

        const observer = new IntersectionObserver((entries) => {
            entries.forEach(entry => {
                if (entry.isIntersecting) {
                    entry.target.style.opacity = '1';
                    entry.target.style.transform = 'translateY(0)';
                }
            });
        }, observerOptions);

        document.addEventListener('DOMContentLoaded', () => {
            const animatableElements = document.querySelectorAll('.service-feature-item, .service-process-step, .related-service-card');
            animatableElements.forEach(el => {
                el.style.opacity = '0';
                el.style.transform = 'translateY(30px)';
                el.style.transition = 'opacity 0.6s ease, transform 0.6s ease';
                observer.observe(el);
            });
        });
        
    </script>
</body>
</html>
