          :root {
            --primary: #FF6B35;
            --secondary: #004E89;
            --accent: #F7B801;
            --purple: #8B5CF6;
            --pink: #EC4899;
            --teal: #14B8A6;
            --green: #10B981;
            --orange: #F97316;
            --blue: #3B82F6;
            --dark: #0F172A;
            --light: #F8FAFC;
            --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #EC4899 100%);
            --gradient-secondary: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
            --gradient-success: linear-gradient(135deg, #10B981 0%, #14B8A6 100%);
            --gradient-rainbow: linear-gradient(90deg, #FF6B35, #EC4899, #8B5CF6, #3B82F6, #14B8A6, #10B981);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

         html, body {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
            position: relative;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: var(--light);
            color: var(--dark);
            line-height: 1.7;
        }

        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            letter-spacing: -1px;
        }

        h4, h5, h6 {
            font-family: 'Raleway', sans-serif;
            font-weight: 700;
        }

        html {
            scroll-behavior: smooth;
        }

        /* --- Reuse previous CSS for Nav, Hero, Buttons, etc. --- */
        /* Scrollbar */
        ::-webkit-scrollbar { width: 12px; }
        ::-webkit-scrollbar-track { background: var(--dark); }
        ::-webkit-scrollbar-thumb { background: var(--gradient-rainbow); border-radius: 10px; }

        /* Animations */
        @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }
        @keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
        @keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

        /* Navigation */
        .navbar { padding: 20px 0; background: rgba(255, 255, 255, 0.98) !important; backdrop-filter: blur(20px); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); transition: all 0.4s; border-bottom: 3px solid transparent; border-image: var(--gradient-rainbow) 1; }
        .navbar.scrolled { padding: 12px 0; }
        .navbar-brand { font-family: 'Bebas Neue', cursive; font-size: 2.5rem; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 3px; }
        .nav-link { font-family: 'Raleway', sans-serif; font-weight: 600; color: var(--dark) !important; margin: 0 15px; position: relative; transition: all 0.3s; text-transform: uppercase; font-size: 0.9rem; }
        .nav-link:hover { color: var(--primary) !important; transform: translateY(-2px); }

        /* Buttons */
        .btn-gradient { background: var(--gradient-primary); color: white; border: none; padding: 14px 40px; border-radius: 50px; font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase; transition: all 0.4s; box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3); text-decoration: none; display: inline-block; }
        .btn-gradient:hover { transform: translateY(-5px) scale(1.05); color: white; box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5); }
        .btn-outline-gradient { background: transparent; color: white; border: 3px solid white; padding: 14px 40px; border-radius: 50px; font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase; transition: all 0.4s; text-decoration: none; display: inline-block; }
        .btn-outline-gradient:hover { background: white; color: var(--primary); transform: translateY(-5px); }

        /* Hero */
        .hero { min-height: 100vh; display: flex; align-items: center; background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); padding: 120px 0 80px; position: relative; overflow: hidden; }
        .hero h1 { font-size: 4.5rem; color: white; line-height: 1.1; margin-bottom: 25px; }
        .hero .gradient-text { background: var(--gradient-rainbow); -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: gradientShift 3s linear infinite; background-size: 200% auto; }
        .trust-badge { background: rgba(255, 255, 255, 0.1); border: 2px solid rgba(255, 255, 255, 0.2); padding: 15px 25px; border-radius: 20px; display: inline-flex; align-items: center; gap: 10px; color: white; font-weight: 700; margin: 5px; }
        .floating-element { position: absolute; border-radius: 20px; backdrop-filter: blur(10px); padding: 20px; animation: float 4s ease-in-out infinite; }

        /* Stats */
        .stat-card { text-align: center; padding: 40px 20px; border-radius: 20px; background: white; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s; }
        .stat-card:hover { transform: translateY(-10px); }
        .stat-number { font-family: 'Bebas Neue', cursive; font-size: 4rem; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

        /* Common Section Styles */
        .section-header { text-align: center; margin-bottom: 70px; }
        .section-header h2 { font-size: 3rem; margin-bottom: 20px; position: relative; display: inline-block; }
        .section-header h2::after { content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 80px; height: 5px; background: var(--gradient-primary); border-radius: 10px; }
        .section-padding { padding: 100px 0; }

        /* Feature Cards */
        .feature-card { background: white; padding: 40px 30px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); height: 100%; transition: all 0.3s; border-bottom: 4px solid transparent; }
        .feature-card:hover { transform: translateY(-10px); border-bottom-color: var(--primary); }
        .feature-icon { width: 70px; height: 70px; background: var(--gradient-primary); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: white; margin-bottom: 25px; }

        /* --- NEW SECTIONS CSS --- */

        /* Portfolio */
        .portfolio-item { position: relative; border-radius: 20px; overflow: hidden; height: 350px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); cursor: pointer; }
        .portfolio-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .portfolio-overlay { position: absolute; bottom: -100%; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.4)); padding: 30px; display: flex; flex-direction: column; justify-content: flex-end; transition: bottom 0.4s; }
        .portfolio-item:hover .portfolio-img { transform: scale(1.1); }
        .portfolio-item:hover .portfolio-overlay { bottom: 0; }
        .portfolio-tag { display: inline-block; background: var(--gradient-primary); color: white; padding: 5px 15px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; margin-bottom: 10px; width: fit-content; }

        /* Process Steps */
        .process-step { position: relative; padding: 30px; border-radius: 20px; background: white; border: 1px solid #e2e8f0; transition: all 0.3s; height: 100%; z-index: 1; }
        .process-step:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
        .step-number { font-family: 'Bebas Neue'; font-size: 4rem; color: rgba(0,0,0,0.05); position: absolute; top: 10px; right: 20px; line-height: 1; transition: 0.3s; }
        .process-step:hover .step-number { color: rgba(255, 107, 53, 0.1); }
        
        /* Pricing */
        .pricing-card { background: white; border-radius: 25px; padding: 50px 30px; position: relative; transition: all 0.3s; border: 2px solid transparent; box-shadow: 0 10px 40px rgba(0,0,0,0.05); height: 100%; }
        .pricing-card.popular { border-color: var(--purple); transform: scale(1.05); z-index: 2; box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15); }
        .pricing-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--gradient-secondary); color: white; padding: 8px 25px; border-radius: 50px; font-weight: 700; font-size: 0.9rem; }
        .price { font-size: 3.5rem; font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--dark); margin: 20px 0; }
        .price span { font-size: 1rem; color: #64748B; font-weight: 500; }
        .feature-list { list-style: none; padding: 0; margin: 30px 0; text-align: left; }
        .feature-list li { margin-bottom: 15px; color: #64748B; font-weight: 500; display: flex; align-items: center; }
        .feature-list li i { margin-right: 10px; color: var(--green); }
        .feature-list li.disabled { color: #cbd5e1; text-decoration: line-through; }
        .feature-list li.disabled i { color: #cbd5e1; }

        /* Testimonials */
        .testimonial-card { background: #f8fafc; padding: 40px; border-radius: 20px; position: relative; margin: 15px 0; }
        .testimonial-card::before { content: '\f10d'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 3rem; color: rgba(255, 107, 53, 0.1); position: absolute; top: 20px; left: 20px; }
        .stars { color: var(--accent); margin-bottom: 15px; }

        /* FAQ */
        .accordion-item { border: none; margin-bottom: 15px; border-radius: 15px !important; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.03); }
        .accordion-button { padding: 20px 30px; font-weight: 700; font-family: 'Montserrat'; font-size: 1.1rem; color: var(--dark); background: white; }
        .accordion-button:not(.collapsed) { background: var(--light); color: var(--primary); box-shadow: none; }
        .accordion-button:focus { box-shadow: none; }
        .accordion-body { padding: 30px; color: #64748B; line-height: 1.8; }

        /* Footer */
        footer { background: var(--dark); color: white; padding: 80px 0 30px; }
        .footer-link { color: #94A3B8; text-decoration: none; transition: 0.3s; margin-bottom: 10px; display: block; }
        .footer-link:hover { color: var(--primary); padding-left: 5px; }

        /* Responsiveness */
        @media (max-width: 992px) {
            .hero h1 { font-size: 3rem; }
            .pricing-card.popular { transform: scale(1); margin: 20px 0; }
        }
            /* Services Section Specific Styles */
    .service-box {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 40px 30px;
        border-radius: 20px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    /* Gradient Bottom Border Effect */
    .service-box::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--gradient-primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s;
    }

    .service-box:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.06);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .service-box:hover::after {
        transform: scaleX(1);
    }

    /* Icon Styling */
    .service-box .icon-wrapper {
        width: 70px;
        height: 70px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        transition: all 0.4s;
    }

    .service-box .icon-wrapper i {
        background: var(--gradient-rainbow);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .service-box:hover .icon-wrapper {
        background: var(--gradient-primary);
        transform: rotate(-5deg);
    }

    .service-box:hover .icon-wrapper i {
        -webkit-text-fill-color: white;
        color: white;
        background: none;
    }

    /* List Styling */
    .service-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .service-list li {
        color: #94A3B8;
        font-size: 0.9rem;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

    .service-list li i {
        color: var(--green);
        margin-right: 10px;
        font-size: 0.8rem;
    }
    /* Content Section Typography */
.content-block {
    position: relative;
    padding-left: 15px;
}

/* Add a subtle line to the left of content blocks for visual structure */
.content-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 3px;
    background: #e2e8f0;
    border-radius: 2px;
}

.content-block:hover::before {
    background: var(--primary);
    transition: background 0.3s ease;
}

/* Improve reading experience for long text */
.seo-content-wrapper p {
    font-size: 1.05rem;
    line-height: 1.8; /* More breathing room for text */
    color: #475569; /* Softer black for eye comfort */
}

.seo-content-wrapper h4 {
    position: relative;
    padding-left: 20px;
}

/* Small accent next to subheadings in the narrative */
.seo-content-wrapper h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.ls-2 {
    letter-spacing: 2px;
}
footer .callFloat {
    position: fixed;
    right: 10px;
    bottom: 70px;
    z-index: 99999999999;
    width: auto;
}
footer .flot {
    position: fixed;
    bottom: 10px;
    right: 15px;
    z-index: 99999999999;
    width: auto;
}
.sticky-social {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}
.sticky-social .social {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.35s ease;
    text-decoration: none;
}
/* HOVER ANIMATION */
.sticky-social .social:hover {
    transform: translateX(8px) scale(1.1);
}

/* BRAND COLORS */
.social.youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}


.social.call {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
}

.social.instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.social.facebook {
    background: linear-gradient(135deg, #1877f2, #0d6efd);
}
.social.twitter {
    background: linear-gradient(135deg, #000000, #1a1a1a);
}
.social.linkedin {
    background: linear-gradient(135deg, #0a66c2, #004182);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .sticky-social {
        right: auto;
        left: 15px;
        top: auto;
        bottom: 80px;
        transform: none;
        flex-direction: column;
    }

    .sticky-social .social {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
