
        :root {
            --primary-purple: #6A0DAD;
            --accent-lime: #CCFF00;
            --dark-black: #000000;
            --light-gray: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-black);
            overflow-x: hidden;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            background: transparent !important;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--primary-purple) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            margin-right: 10px;
            font-size: 1.8rem;
            color: var(--accent-lime);
        }
        
        .nav-link {
            color: var(--dark-black) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--primary-purple) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-lime);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .cta-btn {
            background: linear-gradient(135deg, var(--primary-purple), #8B2FC9);
            color: white !important;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-purple);
        }
        
        .cta-btn:hover {
            background: var(--accent-lime);
            color: var(--primary-purple) !important;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(106, 13, 173, 0.3);
        }

        .nav-item{
            margin-left:35px;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(106, 13, 173, 0.9), rgba(0, 0, 0, 0.8)), 
                        url('https://t4.ftcdn.net/jpg/04/60/32/21/360_F_460322183_gw10nL3pHiDiBxAN3dD27CKvdzIZRJAn.jpg');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .hero-content h1 {
            font-size:5rem;
            font-weight: bold;
            color: white;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .hero-content p {
            font-size: 1.3rem;
            color: var(--accent-lime);
            margin-bottom: 30px;
            animation: fadeInUp 1.2s ease;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-purple);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--accent-lime);
        }
        
        /* About Section */
        .about-section {
            background: var(--light-gray);
        }
        
        .about-content {
            line-height: 1.8;
            color: #333;
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-purple), #8B2FC9);
            color: white;
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        
        .counter-box i {
            font-size: 3rem;
            color: var(--accent-lime);
            margin-bottom: 15px;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        /* Why Choose Us */
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-purple), #8B2FC9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .feature-icon i {
            font-size: 2rem;
            color: var(--accent-lime);
        }
        
        .feature-item:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        /* Services Cards */
        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(106, 13, 173, 0.2);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
            background: var(--light-gray);
        }
        
        .service-card h5 {
            color: var(--primary-purple);
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        /* Reviews */
        .review-card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateX(10px);
        }
        
        .stars {
            color: #FFD700;
            margin-bottom: 10px;
        }
        
        /* FAQ */
        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, var(--primary-purple), #8B2FC9);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--accent-lime);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-purple), #8B2FC9);
            padding: 80px 0;
            text-align: center;
            color: white;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        /* Contact Section */
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--primary-purple);
            margin-right: 15px;
            width: 40px;
        }
        
        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 10px;
        }
        
        .footer-links a:hover {
            color: var(--accent-lime);
        }
        
        .newsletter-form {
            display: flex;
            gap: 10px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px;
        }
        
        .newsletter-form button {
            background: var(--accent-lime);
            color: var(--primary-purple);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background: var(--primary-purple);
            color: var(--accent-lime);
        }
        
        .copyright {
            border-top: 1px solid #333;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #999;
        }
        
        .copyright a {
            color: var(--accent-lime);
            text-decoration: none;
        }
        
        /* Work Process */
        .process-step {
            text-align: center;
            padding: 30px;
            position: relative;
        }
        
        .process-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -50%;
            width: 100%;
            height: 2px;
            background: var(--accent-lime);
            transform: translateY(-50%);
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-purple), #8B2FC9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            position: relative;
            z-index: 1;
        }
        
        .process-icon i {
            font-size: 2rem;
            color: var(--accent-lime);
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .process-step::after {
                display: none;
            }
        }
