
        :root {
            --primary: #ee7343;
            --primary-dark: #3a0ca3;
            --secondary: #7209b7;
            --accent: #4cc9f0;
            --light: #f8f9fa;
            --dark: #212529;
            --success: #4bb543;
            --gradient: linear-gradient(135deg,  #ee7343 0%, #3a0ca3 100%);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
            background-color: #f9fafc;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            transition: var(--transition);
        }
        
        header.scrolled {
            padding: 10px 0;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 8px;
            color: var(--secondary);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
        }
        
        /* Page Header */
        .page-header {
            padding: 160px 0 80px;
            background: var(--gradient);
            color: whitesmoke;
            text-align: center;
            background-image: url(Img/img1\ \(4\).jpg);
            background-size: cover;       /* or 'contain' */
            background-repeat: no-repeat; /* prevents tiling */
            background-position: center;  /* centers the image */

        }
        
        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
            font-size: 1.1rem;
        }
        
        .breadcrumb li {
            margin: 0 10px;
        }
        
        .breadcrumb li:after {
            content: '/';
            margin-left: 20px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .breadcrumb li:last-child:after {
            content: '';
            margin-left: 0;
        }
        
        .breadcrumb a {
            color: rgba(255, 255, 255, 0.9);
            transition: var(--transition);
        }
        
        .breadcrumb a:hover {
            color: white;
        }
        
        /* Services Intro */
        .services-intro {
            padding: 100px 0;
            text-align: center;
        }
        
        .services-intro h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 30px;
        }
        
        .services-intro p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 50px;
            color: #555;
        }
        
        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .service-icon {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(58, 12, 163, 0.1) 100%);
        }
        
        .service-icon i {
            font-size: 4rem;
            color: var(--primary);
        }
        
        .service-content {
            padding: 30px;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .service-content p {
            color: #666;
            margin-bottom: 20px;
        }
        
        .service-features {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .service-features li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        
        .service-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: bold;
        }
        
        .service-link {
            display: inline-block;
            color: var(--primary);
            font-weight: 600;
            transition: var(--transition);
        }
        
        .service-link:hover {
            color: var(--secondary);
        }
        
        .service-link i {
            margin-left: 5px;
            transition: var(--transition);
        }
        
        .service-link:hover i {
            transform: translateX(5px);
        }
        
        /* How It Works Section */
        .process {
            padding: 80px 0;
            background: var(--light);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: #666;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-bottom: 50px;
        }
        
        .process-steps:before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary);
            z-index: 1;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 20px;
            position: relative;
        }
        
        .step-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .step-content p {
            color: #666;
        }
        
        /* Pricing Section */
        .pricing {
            padding: 100px 0;
        }
        
        .pricing-options {
            display: flex;
            gap: 30px;
        }
        
        .pricing-card {
            flex: 1;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            position: relative;
        }
        
        .pricing-card.featured {
            transform: scale(1.05);
            border: 2px solid var(--primary);
            z-index: 2;
        }
        
        .pricing-card.featured:before {
            content: 'Most Popular';
            position: absolute;
            top: 0;
            right: 0;
            background: var(--primary);
            color: white;
            padding: 8px 15px;
            font-size: 0.8rem;
            font-weight: 600;
            border-bottom-left-radius: 15px;
        }
        
        .pricing-header {
            padding: 30px;
            text-align: center;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(58, 12, 163, 0.1) 100%);
        }
        
        .pricing-name {
            font-size: 1.5rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        .pricing-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .pricing-duration {
            color: #666;
        }
        
        .pricing-features {
            padding: 30px;
            list-style: none;
        }
        
        .pricing-features li {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            color: #555;
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        .pricing-features i {
            color: var(--success);
            margin-right: 10px;
        }
        
        .pricing-cta {
            padding: 0 30px 30px;
            text-align: center;
        }
        
        /* CTA Section */
        .cta {
            text-align: center;
            background: var(--gradient);
            color: white;
            padding: 80px 0;
            border-radius: 0;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 30px;
            background: var(--primary);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
            background: var(--primary-dark);
        }
        
        .btn-light {
            background: white;
            color: var(--primary);
        }
        
        .btn-light:hover {
            background: var(--accent);
            color: white;
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background: var(--light);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .faq-question {
            padding: 20px;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--secondary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-answer.active {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        .faq-question i {
            transition: var(--transition);
        }
        
        .faq-question.active i {
            transform: rotate(180deg);
        }
        
        /* Footer */
        footer {
            background: #6b4e43;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-column {
            width: 30%;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--accent);
        }
        
        .footer-column p {
            opacity: 0.8;
            margin-bottom: 20px;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
        }
        
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }
        
        .footer-social a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .process-steps {
                flex-direction: column;
                gap: 40px;
            }
            
            .process-steps:before {
                display: none;
            }
            
            .pricing-options {
                flex-direction: column;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: var(--transition);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 20px 0;
            }
            
            .hamburger {
                display: block;
            }
            
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .services-intro h2 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .footer-column {
                width: 100%;
                margin-bottom: 30px;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 480px) {
            .page-header h1 {
                font-size: 2rem;
            }
            
            .breadcrumb {
                flex-direction: column;
                align-items: center;
            }
            
            .breadcrumb li {
                margin: 5px 0;
            }
            
            .breadcrumb li:after {
                display: none;
            }
            
            .service-icon {
                height: 150px;
            }
            
            .service-icon i {
                font-size: 3rem;
            }
        }