 /* --- CORE STYLES --- */
        body { 
            font-family: 'Inter', sans-serif; 
            margin: 0; 
            color: #334155; 
            overflow-x: hidden; 
            background-color: #f8fafc;
        }
        
        #particles-js {
            position: fixed; width: 100%; height: 100%; top: 0; left: 0; z-index: -1;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        }

        /* 1. Hero Section */
        .hero {
            color: white; padding: 150px 20px 120px; text-align: center; position: relative; z-index: 2;
        }
        .hero h1 { 
            font-size: 4.2rem; margin-bottom: 25px; font-weight: 900; letter-spacing: -1.5px; line-height: 1.1;
            text-shadow: 0 10px 30px rgba(0,0,0,0.5);
            background: linear-gradient(to right, #ffffff, #93c5fd); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .hero p { 
            font-size: 1.35rem; margin-bottom: 45px; opacity: 0.9; max-width: 850px; margin-left: auto; margin-right: auto; line-height: 1.8;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5); color: #e2e8f0;
        }
        .hero-btn {
            background: #2563eb; color: white; padding: 18px 50px; font-weight: 700; border-radius: 50px;
            text-decoration: none; transition: all 0.3s; box-shadow: 0 0 25px rgba(37, 99, 235, 0.6);
            display: inline-block; font-size: 1.1rem; border: 1px solid rgba(255,255,255,0.2);
        }
        .hero-btn:hover { transform: translateY(-5px) scale(1.05); background-color: #1d4ed8; box-shadow: 0 0 40px rgba(37, 99, 235, 0.8); }

        /* --- FIXED STATS SECTION --- */
.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    
    /* YOUR BACKGROUND IMAGE */
    background: url('https://lia.creedcreatives.net/assets/images/BG4.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    position: relative;
    z-index: 10;
    margin: 50px 20px 80px;
    padding: 60px 40px;
    border-radius: 20px; /* Rounded corners like image */
    
    /* Remove old borders/shadows that might look messy */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1); 
}

/* Optional: Dark overlay to make text readable if image is too bright */
.stats-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* 40% darkness overlay */
    border-radius: 20px;
    z-index: 1;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 2; /* Sits on top of overlay */
    flex: 1;
    min-width: 200px;
    padding: 20px;
}


.stat-icon-box {
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Style for the WebP Images */
.stat-icon-box img {
    width: 65px; /* Adjust size as needed */
    height: 65px;
    object-fit: contain;
    /* This adds the Purple Neon Glow to the images */
    filter: drop-shadow(0 0 10px rgba(192, 132, 252, 0.6)); 
}

.stat-item:hover .stat-icon-box {
    transform: translateY(-10px);
}

/* Typography - BRIGHT WHITE */
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff !important; /* Forces White Color */
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.stat-label {
    font-size: 1rem;
    color: #cbd5e1; /* Light Gray */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
        .stat-card {
            background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px);
            padding: 35px; border-radius: 24px; text-align: center;
            box-shadow: 0 20px 50px rgba(0,0,0,0.3); flex: 1; min-width: 240px; max-width: 280px;
        }
        .stat-card:hover { transform: translateY(-15px); }
        .stat-number { font-size: 3rem; font-weight: 900; color: #0f172a; display: block; margin-bottom: 5px; }
        .stat-label { font-size: 1.1rem; color: #64748b; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; }

        /* Common Section Style */
        .content-section {
            background: #ffffff; border-radius: 40px; margin: 0 5px 30px; padding: 80px 40px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); max-width: 1300px; margin-left: auto; margin-right: auto;
            position: relative; z-index: 5; border: 1px solid rgba(255,255,255,0.5);
        }
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-tag { 
            color: #2563eb; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; 
            display: inline-block; margin-bottom: 15px; background: #eff6ff; padding: 8px 20px; border-radius: 30px;
        }
        .section-title-lg { font-size: 2.8rem; font-weight: 800; color: #0f172a; margin-bottom: 20px; letter-spacing: -0.5px; }
        .section-header p { color: #475569; font-size: 1.2rem; max-width: 700px; margin: 0 auto; line-height: 1.6; }

        /* --- CORNER BORDER ANIMATION STYLE --- */

/* --- SERVICE CATALOGUE: 3D GLASS + DRAWING LINES --- */

/* Section Setup */
#services-overview {
    background: transparent !important;
    perspective: 1000px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card-service {
    position: relative;
    display: flex;
    flex-direction: column;
    /* Glass Effect */
    background: rgba(255, 255, 255, 0.03) !important; 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    border-radius: 20px;
    padding: 45px 35px;
    overflow: hidden;
    z-index: 1;
    min-height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), background 0.4s ease;
}

/* --- THE DRAWING LINES --- */

/* Top-Left Corner */
.card-service::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 0; height: 0;
    border-top: 3px solid #a855f7;
    border-left: 3px solid #a855f7;
    border-radius: 20px 0 0 0;
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 2;
}

/* Bottom-Right Corner */
.card-service::after {
    content: "";
    position: absolute;
    bottom: 0; right: 0; width: 0; height: 0;
    border-bottom: 3px solid #a855f7;
    border-right: 3px solid #a855f7;
    border-radius: 0 0 20px 0;
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 2;
}

/* Hover Animation Trigger */
.card-service:hover::before,
.card-service:hover::after {
    width: 100%;
    height: 100%;
}

.card-service:hover {
    transform: translateY(-15px) rotateX(4deg) rotateY(-2deg); /* 3D Tilt */
    background: rgba(168, 85, 247, 0.08) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Content Styling */
.card-service img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.6));
    transition: transform 0.4s ease;
}

.card-service:hover img {
    transform: scale(1.1) rotate(5deg);
}

.card-service h4 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
}

.card-service p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 30px;
}

/* Service Link Arrow Animation */
.service-cta {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-link {
    color: #a855f7; /* Purple to stand out */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.service-cta i {
    color: #a855f7;
    transition: transform 0.4s ease;
}

.card-service:hover .service-cta i {
    transform: translateX(8px);
}
        .overview-card {
            background: #fff; padding: 45px 35px; border-radius: 24px; border: 1px solid #f1f5f9;
            transition: all 0.4s ease; position: relative; overflow: hidden; z-index: 1;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        }
        .overview-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); border-color: #bfdbfe; }
        .icon-box {
            width: 80px; height: 80px; background: #eff6ff; border-radius: 20px; display: flex; 
            align-items: center; justify-content: center; font-size: 36px; margin-bottom: 30px;
            transition: 0.4s; color: #2563eb;
        }
        .overview-card:hover .icon-box { background: #2563eb; color: white; transform: rotate(360deg); }
        .overview-card h3 { font-size: 1.6rem; margin-bottom: 15px; color: #0f172a; font-weight: 800; }
        .overview-card p { color: #475569; line-height: 1.7; margin-bottom: 30px; font-size: 1.05rem; }
        .learn-more { 
            color: #2563eb; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
            padding: 10px 20px; background: #f1f5f9; border-radius: 10px; transition: 0.3s;
        }
        .learn-more:hover { background: #2563eb; color: white; gap: 12px; }

        /* INDUSTRY GRID */
        .industry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 40px; }
        .industry-card {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); padding: 30px; border-radius: 20px;
            text-align: center; transition: 0.3s; cursor: pointer; border: 1px solid white;
        }
        .industry-card:hover { background: white; box-shadow: 0 15px 30px rgba(0,0,0,0.1); transform: scale(1.05); }
        .industry-icon { font-size: 40px; margin-bottom: 15px; display: block; }
        .industry-title { font-weight: 700; color: #1e293b; font-size: 1.2rem; }

        /* --- PRICING SECTION STYLES (NEW) --- */
        /* --- PRICING SECTION: 3D GLASS + NEON DRAW --- */

#plans-section {
    background: transparent !important;
    perspective: 1000px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: center;
}

.pricing-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    z-index: 1;
}

/* --- THE DRAWING LINES --- */
.pricing-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 0; height: 0;
    border-top: 3px solid #a855f7;
    border-left: 3px solid #a855f7;
    border-radius: 24px 0 0 0;
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 2;
}

.pricing-card::after {
    content: "";
    position: absolute;
    bottom: 0; right: 0; width: 0; height: 0;
    border-bottom: 3px solid #a855f7;
    border-right: 3px solid #a855f7;
    border-radius: 0 0 24px 0;
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 2;
}

.pricing-card:hover::before,
.pricing-card:hover::after {
    width: 100%;
    height: 100%;
}

/* Hover & Popular States */
.pricing-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    background: rgba(168, 85, 247, 0.05) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.popular {
    border: 1px solid rgba(168, 85, 247, 0.5) !important;
    background: rgba(168, 85, 247, 0.03) !important;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.15);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #a855f7;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

/* Typography & List */
.plan-name { font-size: 1.8rem; font-weight: 800; color: #ffffff; margin-bottom: 10px; }
.plan-price { font-size: 2.8rem; font-weight: 900; color: #a855f7; margin-bottom: 25px; }
.plan-price span { font-size: 1rem; color: #94a3b8; }

.plan-features { list-style: none; padding: 0; margin-bottom: 35px; text-align: left; }
.plan-features li {
    padding: 12px 0;
    color: #cbd5e1;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.check-icon { color: #a855f7; font-weight: bold; }

/* Buttons */
.plan-btn-new {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    border: 2px solid #a855f7;
    color: white;
}

.pricing-card.popular .plan-btn-new, .plan-btn-new:hover {
    background: linear-gradient(90deg, #9333ea 0%, #d8b4fe 100%);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.4);
}

        /* Why Us Grid */
        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
        .feature-item {
            padding: 30px; background: #f8fafc; border-radius: 16px; text-align: left; border-left: 5px solid #2563eb;
            transition: 0.3s;
        }
        .feature-item:hover { background: white; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
        .feature-item h4 { margin: 0 0 10px; font-size: 1.3rem; color: #0f172a; }
        .feature-item p { margin: 0; color: #64748b; line-height: 1.6; }

        /* Contact Form */
        .contact-form {
            max-width: 700px; margin: 40px auto; background: #1e293b; padding: 50px;
            border-radius: 24px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); border: 1px solid #334155; color: #f1f5f9;
        }
        .contact-form h2, .contact-form h3 { color: #ffffff; margin-bottom: 25px; font-weight: 700; }
        .contact-form input, .contact-form textarea {
            width: 100%; padding: 16px 20px; margin-bottom: 24px;
            background: #0f172a; border: 2px solid #334155; border-radius: 12px;
            font-size: 1rem; color: #ffffff; transition: all 0.3s ease;
        }
        .contact-form input::placeholder, .contact-form textarea::placeholder { color: #94a3b8; }
        .contact-form input:focus, .contact-form textarea:focus {
            border-color: #3b82f6; background: #0f172a; box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2); outline: none;
        }
        .contact-form button {
            width: 100%; padding: 18px; background: #3b82f6; color: white;
            font-weight: 700; font-size: 1.05rem; border: none; border-radius: 12px;
            cursor: pointer; transition: 0.3s; box-shadow: 0 4px 10px rgba(59, 130, 246, 0.4);
        }
        .contact-form button:hover {
            background: #2563eb; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(59, 130, 246, 0.6);
        }

        /* FAQ & Extras */
        .faq-item { background: #f8fafc; border: 1px solid #e2e8f0; margin-bottom: 15px; border-radius: 12px; overflow: hidden; transition: 0.3s; }
        .faq-question { padding: 22px 30px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 30px; max-height: 0; overflow: hidden; transition: all 0.4s ease; background: white; color: #475569; }
        .faq-item.active .faq-answer { padding: 25px 30px; max-height: 300px; border-top: 1px solid #e2e8f0; }
        
        /* --- UPDATED CTA SECTION (NEON TECH LOOK) --- */
/* --- UPDATED CTA SECTION (NEON TECH LOOK) --- */

.cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%) !important; /* Deep Navy to Dark Purple */
    color: white; 
    padding: 100px 40px; 
    text-align: center; 
    border-radius: 40px; 
    margin: 80px 20px; 
    max-width: 1200px; 
    margin-left: auto; 
    margin-right: auto;
    position: relative; 
    overflow: hidden; 
    z-index: 5;
    /* Neon Purple Glow */
    border: 1px solid rgba(168, 85, 247, 0.3) !important;
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.2); 
}

/* Decorative background glow for 3D depth */
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(147, 51, 234, 0.15);
    filter: blur(100px);
    border-radius: 50%;
    z-index: -1;
}

.cta-section h2 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    line-height: 1.2;
    color: #ffffff;
}

.cta-section p {
    font-size: 1.3rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 45px;
    line-height: 1.7;
}

/* High-Impact CTA Button */
.cta-btn-new {
    background: linear-gradient(90deg, #9333ea 0%, #c084fc 100%);
    color: white !important;
    padding: 22px 55px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.25rem;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn-new:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 45px rgba(147, 51, 234, 0.7);
    filter: brightness(1.2);
}

.cta-btn-new i {
    margin-left: 12px;
    transition: transform 0.3s ease;
}

.cta-btn-new:hover i {
    transform: translateX(8px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cta-section h2 { font-size: 2.2rem; }
    .cta-section p { font-size: 1.1rem; }
}
        .cta-btn {
            background: white; color: #1e40af; padding: 20px 60px; border-radius: 50px; text-decoration: none;
            font-weight: 800; display: inline-block; margin-top: 30px; font-size: 1.2rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2); transition: 0.3s;
        }
        .home-blog-card { padding: 0 !important; display: flex; flex-direction: column; }
        .home-blog-image { width: 100%; height: 220px; object-fit: cover; border-bottom: 1px solid #f1f5f9; }
        .home-blog-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }

        @media (max-width: 768px) { 
            .hero h1 { font-size: 2.8rem; } 
            .content-section { padding: 50px 20px; margin: 0 10px 50px; border-radius: 25px; }
            .pricing-card.popular { transform: scale(1); }
        }
        /* Add this inside your <style> tag */
.welcome-badge {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #8b5cf6; /* Purple border */
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1rem;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3); /* Purple glow */
}
/* 2. Update the "Get Started" Button to Purple Gradient */
.hero-btn {
    background: linear-gradient(90deg, #9333ea 0%, #d8b4fe 100%); /* Purple gradient */
    color: white;
    border: none;
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.5); /* Purple Glow */
}

.hero-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(90deg, #7e22ce 0%, #c084fc 100%);
    box-shadow: 0 0 35px rgba(147, 51, 234, 0.8); /* Stronger Glow on hover */
}

/* 3. Text Styles */
.hero h1 {
    color: #ffffff; /* Main text White */
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.text-purple {
    background: linear-gradient(to right, #c084fc, #a855f7); /* Matches the 'Lasting Impact' purple */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}


/* --- UPDATED PARTNER/SERVICE MARQUEE (NEON TECH) --- */

.partner-section {
    background: rgb(0 0 0 / 0%); /* Darker with slight transparency */
    backdrop-filter: blur(10px);
    padding: 30px 0;
    /* Neon Top/Bottom Borders */
    border-top: 1px solid rgba(168, 85, 247, 0.3);
    border-bottom: 1px solid rgba(168, 85, 247, 0.3);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
}

/* Subtle background glow effect */
.partner-section::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 100%;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0%, transparent 70%);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.swiper-slide-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: auto !important;
    margin-right: 80px; /* Increased spacing */
    opacity: 0.6;
    transition: all 0.4s ease;
    cursor: default;
}

/* Enhanced Hover State */
.swiper-slide-partner:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Icon Neon Glow */
.swiper-slide-partner img {
    height: 35px;
    width: auto;
    filter: invert(1) drop-shadow(0 0 8px rgba(168, 85, 247, 0.8));
    transition: 0.4s;
}

/* Text Neon Glow */
.swiper-slide-partner span {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s;
}

.swiper-slide-partner:hover span {
    color: #c084fc; /* Brighter purple on hover */
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.9);
}

/* Smoother Gradient Edges */
.partner-section::after {
    content: "";
    position: absolute;
    top: 0; right: 0; width: 200px; height: 100%;
    background: linear-gradient(to left, #000, transparent);
    z-index: 2;
    pointer-events: none;
}

.partner-section-left-fade::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 200px; height: 100%;
    background: linear-gradient(to right, #000, transparent);
    z-index: 2;
    pointer-events: none;
}

/* Gradient Edges to make it look smooth */
.partner-section::before, .partner-section::after {
    content: "";
    position: absolute;
    top: 0; width: 150px; height: 100%;
    z-index: 2;
    pointer-events: none;
}
.partner-section::before { left: 0; background: linear-gradient(to right, #000, transparent); }
.partner-section::after { right: 0; background: linear-gradient(to left, #000, transparent); }



/* --- UPDATED TESTIMONIALS (GLASSY 3D) --- */
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px;
    perspective: 1000px; /* Essential for 3D effects */
}

.feedback-card {
    background: rgba(255, 255, 255, 0.03); /* Very transparent white */
    backdrop-filter: blur(15px); /* The "Glass" blur */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1); /* Thin white border */
    border-radius: 24px;
    padding: 35px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* 3D Lift & Glow Effect on Hover */
.feedback-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-2deg); /* 3D tilt */
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(168, 85, 247, 0.4); /* Purple border glow */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(168, 85, 247, 0.2); /* Soft purple outer glow */
}

/* Decorative Quote Icon */
.feedback-card::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
    line-height: 1;
    pointer-events: none;
}

.feedback-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    z-index: 2;
}

.feedback-user-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #a855f7; /* Purple border for profile */
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.feedback-user-info h4 {
    margin: 0;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
}

.feedback-user-info span {
    font-size: 0.85rem;
    color: #a855f7; /* Purple service name */
    font-weight: 600;
}

.feedback-stars {
    color: #f59e0b;
    margin-bottom: 15px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.feedback-text {
    font-size: 1.05rem;
    color: #e2e8f0;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* --- WHO WE SERVE: GLASSY + DRAWING LINES --- */

/* 1. Make the section background transparent */
.industry-section-container {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.industry-card {
    position: relative;
    /* Glass Effect */
    background: rgba(255, 255, 255, 0.03) !important; 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.4s ease, background 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    /* Subtle static border so it's visible before hover */
    border: 1px solid rgba(255, 255, 255, 0.1) !important; 
}

/* --- THE DRAWING LINES LOGIC --- */

/* Top-Left Corner (Before) */
.industry-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    background: transparent;
    border-top: 3px solid #a855f7;  /* Purple Line */
    border-left: 3px solid #a855f7; /* Purple Line */
    border-radius: 20px 0 0 0;
    transition: width 0.6s ease, height 0.6s ease; /* Slow drawing */
    z-index: 2;
}

/* Bottom-Right Corner (After) */
.industry-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    background: transparent;
    border-bottom: 3px solid #a855f7; /* Purple Line */
    border-right: 3px solid #a855f7;  /* Purple Line */
    border-radius: 0 0 20px 0;
    transition: width 0.6s ease, height 0.6s ease; /* Slow drawing */
    z-index: 2;
}

/* Hover State: Draw the full rectangle */
.industry-card:hover::before,
.industry-card:hover::after {
    width: 100%;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-10px);
    background: rgba(168, 85, 247, 0.05) !important; /* Slight purple tint on hover */
}

/* Typography Adjustments */
.industry-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.4));
}

.industry-title {
    font-weight: 800;
    color: #ffffff !important;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.industry-card p {
    color: #cbd5e1 !important;
    font-size: 1rem;
    line-height: 1.6;
}


/* --- FAQ SECTION: GLASSY ACCORDION + DRAWING LINES --- */

.faq-section {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    position: relative;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.4s ease;
}

/* --- THE DRAWING LINES --- */
.faq-item::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 0; height: 0;
    border-top: 2px solid #a855f7;
    border-left: 2px solid #a855f7;
    border-radius: 15px 0 0 0;
    transition: width 0.5s ease, height 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.faq-item::after {
    content: "";
    position: absolute;
    bottom: 0; right: 0; width: 0; height: 0;
    border-bottom: 2px solid #a855f7;
    border-right: 2px solid #a855f7;
    border-radius: 0 0 15px 0;
    transition: width 0.5s ease, height 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

/* Hover & Active States for Lines */
.faq-item:hover::before, .faq-item:hover::after,
.faq-item.active::before, .faq-item.active::after {
    width: 100%;
    height: 100%;
}

.faq-item:hover {
    transform: translateX(10px);
    background: rgba(168, 85, 247, 0.05) !important;
}

/* Question Header */
.faq-question {
    padding: 25px 30px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 3;
}

.faq-icon {
    color: #a855f7;
    transition: transform 0.4s ease, text-shadow 0.3s ease;
    font-size: 0.9rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.8);
}

/* Answer Body */
.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #000000;
    line-height: 1.8;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    padding: 10px 30px 30px;
    max-height: 200px; /* Adjust based on text length */
}

/* --- LATEST INSIGHTS: 3D GLASS + BORDER DRAWING --- */

.blog-section {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    perspective: 1000px;
}

.blog-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    z-index: 1;
}

/* --- THE DRAWING LINES --- */
.blog-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 0; height: 0;
    border-top: 3px solid #a855f7;
    border-left: 3px solid #a855f7;
    border-radius: 24px 0 0 0;
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 3;
}

.blog-card::after {
    content: "";
    position: absolute;
    bottom: 0; right: 0; width: 0; height: 0;
    border-bottom: 3px solid #a855f7;
    border-right: 3px solid #a855f7;
    border-radius: 0 0 24px 0;
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 3;
}

.blog-card:hover::before,
.blog-card:hover::after {
    width: 100%;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-15px) rotateX(4deg);
    background: rgba(168, 85, 247, 0.05) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Image Styling */
.blog-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image-wrapper img {
    transform: scale(1.1);
}

/* Content Styling */
.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 0.85rem;
    color: #a855f7;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.blog-link {
    margin-top: auto;
    color: #a855f7;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.blog-link:hover {
    gap: 12px;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}
/* --- GET IN TOUCH: GLASSY 3D + NEON FOCUS --- */

.contact-section-container {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    perspective: 1000px;
}

.contact-form-glass {
    max-width: 800px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

/* --- THE DRAWING LINES --- */
.contact-form-glass::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 0; height: 0;
    border-top: 3px solid #a855f7;
    border-left: 3px solid #a855f7;
    border-radius: 30px 0 0 0;
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 2;
    pointer-events: none;
}

.contact-form-glass::after {
    content: "";
    position: absolute;
    bottom: 0; right: 0; width: 0; height: 0;
    border-bottom: 3px solid #a855f7;
    border-right: 3px solid #a855f7;
    border-radius: 0 0 30px 0;
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 2;
    pointer-events: none;
}

.contact-form-glass:hover::before,
.contact-form-glass:hover::after {
    width: 100%;
    height: 100%;
}

.contact-form-glass:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Input & Textarea Styling */
.contact-form-glass input, 
.contact-form-glass textarea {
    width: 100%;
    padding: 18px 25px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-size: 1rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.contact-form-glass input:focus, 
.contact-form-glass textarea:focus {
    outline: none;
    border-color: #a855f7;
    background: rgba(168, 85, 247, 0.05) !important;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.contact-form-glass input::placeholder, 
.contact-form-glass textarea::placeholder {
    color: #94a3b8;
}
.submit-btn-new:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(147, 51, 234, 0.6);
    filter: brightness(1.1);
}
/* Premium Submit Button */
.submit-btn-new {
    width: 100%;
    padding: 20px;
    background: linear-gradient(90deg, #9333ea 0%, #c084fc 100%);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.4);
}
