
        :root {
            --primary-color: #7C3AED;
            --secondary-color: #EC4899;
            --accent-color: #F43F5E;
            --bg-light: #FFF1F2;
            --text-dark: #1F2937;
            --gradient-primary: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
            --gradient-secondary: linear-gradient(135deg, #EC4899 0%, #F43F5E 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            background-color: #ffffff;
        }
        
        .navbar-nav .nav-item{
            margin-left:25px !important;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-light);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 5px;
        }
        
        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 1.5rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .navbar-brand i {
            color: var(--secondary-color);
            margin-right: 0.5rem;
            -webkit-text-fill-color: var(--secondary-color);
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 0.5rem;
            position: relative;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-cta {
            background: var(--gradient-primary);
            color: white !important;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
            padding: 8rem 0 5rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .hero-img {
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(124, 58, 237, 0.2);
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        .hero-title span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-desc {
            font-size: 1.2rem;
            color: #6B7280;
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        /* Section Headers */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-subtitle {
            color: var(--secondary-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            display: block;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        /* About Section */
        .about-section {
            padding: 6rem 0;
            background: #ffffff;
        }
        
        .about-img {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            position: relative;
            z-index: 1;
        }
        
        .about-img::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--primary-color);
            border-radius: 20px;
            z-index: -1;
        }
        
        .about-text {
            padding-left: 3rem;
        }
        
        .about-text p {
            line-height: 1.8;
            color: #4B5563;
            margin-bottom: 1.5rem;
        }
        
        /* Counter Section */
        .counter-section {
            background: var(--gradient-primary);
            padding: 5rem 0;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .counter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.3;
        }
        
        .counter-box {
            text-align: center;
            padding: 2rem;
            position: relative;
            z-index: 1;
        }
        
        .counter-number {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            display: block;
        }
        
        .counter-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Vision Mission */
        .vision-mission {
            padding: 6rem 0;
            background: var(--bg-light);
        }
        
        .vm-card {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
            transition: transform 0.3s;
            border-bottom: 4px solid var(--primary-color);
        }
        
        .vm-card:hover {
            transform: translateY(-10px);
        }
        
        .vm-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 2rem;
        }
        
        /* Why Choose Us */
        .why-choose-us {
            padding: 6rem 0;
            background: #ffffff;
        }
        
        .feature-box {
            text-align: center;
            padding: 2.5rem 1.5rem;
            border-radius: 20px;
            background: white;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s;
            margin-bottom: 2rem;
            border: 1px solid #f3f4f6;
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
            border-color: var(--primary-color);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            color: var(--primary-color);
            transition: all 0.3s;
        }
        
        .feature-box:hover .feature-icon {
            background: var(--gradient-primary);
            color: white;
            transform: rotateY(360deg);
        }
        
        /* Work Process */
        .work-process {
            padding: 6rem 0;
            background: linear-gradient(135deg, #f8fafc 0%, var(--bg-light) 100%);
            position: relative;
        }
        
        .process-step {
            text-align: center;
            padding: 2rem;
            position: relative;
        }
        
        .process-number {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.5rem;
            margin: 0 auto 1.5rem;
            position: relative;
            z-index: 2;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); }
            50% { box-shadow: 0 0 0 20px rgba(124, 58, 237, 0); }
        }
        
        .process-line {
            position: absolute;
            top: 50px;
            left: 50%;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            z-index: 1;
            display: none;
        }
        
        @media (min-width: 768px) {
            .process-line {
                display: block;
            }
            .process-step:last-child .process-line {
                display: none;
            }
        }
        
        /* Service Plans */
        .service-plans {
            padding: 6rem 0;
            background: #ffffff;
        }
        
        .plan-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.3s;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .plan-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-primary);
        }
        
        .plan-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
        }
        
        .plan-price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            margin: 1rem 0;
        }
        
        .plan-price span {
            font-size: 1rem;
            color: #6B7280;
            font-weight: 400;
        }
        
        /* Services Section */
        .services-section {
            padding: 6rem 0;
            background: var(--bg-light);
        }
        
        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .service-card:hover::after {
            transform: scaleX(1);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--bg-light);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: var(--primary-color);
        }
        
        .service-title {
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }
        
        .service-desc {
            color: #6B7280;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        /* Booking Form */
        .booking-section {
            padding: 6rem 0;
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }
        
        .booking-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }
        
        .booking-form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }
        
        .form-control {
            padding: 1rem;
            border-radius: 10px;
            border: 2px solid #e5e7eb;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
        }
        
        .btn-submit {
            background: var(--gradient-secondary);
            color: white;
            border: none;
            padding: 1rem 3rem;
            border-radius: 50px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s;
        }
        
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
        }
        
        /* Reviews */
        .reviews-section {
            padding: 6rem 0;
            background: #ffffff;
        }
        
        .review-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            margin: 1rem;
            transition: all 0.3s;
            border: 1px solid #f3f4f6;
        }
        
        .review-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }
        
        .review-stars {
            color: #FBBF24;
            margin-bottom: 1rem;
        }
        
        .review-text {
            color: #4B5563;
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }
        
        .reviewer-name {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.25rem;
        }
        
        .reviewer-location {
            color: #9CA3AF;
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 6rem 0;
            background: var(--bg-light);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 15px !important;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .accordion-button {
            background: white;
            color: var(--text-dark);
            font-weight: 600;
            padding: 1.5rem;
            border: none;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--gradient-primary);
            color: white;
            box-shadow: none;
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .accordion-body {
            padding: 1.5rem;
            background: white;
            color: #4B5563;
            line-height: 1.7;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 6rem 0;
            background: var(--gradient-secondary);
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
        }
        
        .btn-cta-white {
            background: white;
            color: var(--secondary-color);
            border: none;
            padding: 1rem 3rem;
            border-radius: 50px;
            font-weight: 700;
            margin-top: 2rem;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .btn-cta-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        /* Contact Section */
        .contact-section {
            padding: 6rem 0;
            background: #ffffff;
        }
        
        .contact-info-box {
            padding: 2rem;
            background: var(--bg-light);
            border-radius: 15px;
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }
        
        .contact-info-box:hover {
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: translateX(5px);
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }
        
        /* Footer */
        footer {
            background: #111827;
            color: white;
            padding: 5rem 0 2rem;
        }
        
        .footer-col h5 {
            color: white;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
        }
        
        .footer-col h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--gradient-primary);
        }
        
        .footer-col p {
            color: #9CA3AF;
            line-height: 1.8;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        
        .footer-links a {
            color: #9CA3AF;
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }
        
        .footer-links a::before {
            content: '\f054';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-right: 0.5rem;
            font-size: 0.7rem;
            color: var(--secondary-color);
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        
        .newsletter-form .form-control {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            margin-bottom: 1rem;
        }
        
        .newsletter-form .form-control::placeholder {
            color: #9CA3AF;
        }
        
        .newsletter-form .btn {
            background: var(--gradient-primary);
            border: none;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            width: 100%;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
            color: #9CA3AF;
        }
        
        .footer-bottom a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .about-text {
                padding-left: 0;
                margin-top: 2rem;
            }
            .section-title {
                font-size: 2rem;
            }
        }
        
        /* Animations */
        .fade-in-up {
            animation: fadeInUp 0.8s ease;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
