
        :root {
            --primary: #5e2e7e;
            --secondary: #e73c7e;
            --accent: #f47735;
            --light: #f4f4f9;
            --dark: #333;
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            
            color: var(--dark);
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
       
        
        /* Hero Section */
        .hero {
            background-color: #fff;
            padding: 80px 0;
            overflow: hidden;
            position: relative;
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .hero-text {
            flex: 1;
        }
        
        .hero-text h1 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .hero-text h1 span {
            color: var(--secondary);
        }
        
        .hero-text p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 30px;
            color: #555;
        }
        
        .cta-button {
            display: inline-block;
            padding: 12px 30px;
            background: var(--gradient);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(231, 60, 126, 0.2);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(231, 60, 126, 0.3);
        }
        
        .hero-image {
            flex: 1;
            position: relative;
        }
        
        .hero-svg {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        .floating-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }
        
        .floating-icon {
            position: absolute;
            font-size: 1.5rem;
            color: var(--primary);
            opacity: 0.2;
            animation: floatIcon 15s linear infinite;
        }
        
        @keyframes floatIcon {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0;
            }
            20% {
                opacity: 0.2;
            }
            80% {
                opacity: 0.2;
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }
        
        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: #777;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
            padding: 30px;
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.8rem;
        }
        
        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .feature-card p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Services Section */
        .services {
            padding: 80px 0;
            background-color: #f9f9ff;
        }
        
        .services-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        
        .service-item {
            display: flex;
            align-items: center;
            gap: 40px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
            padding: 40px;
            transition: transform 0.3s;
        }
        
        .service-item:hover {
            transform: scale(1.02);
        }
        
        .service-item:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .service-icon {
            flex: 0 0 100px;
            height: 100px;
            background: var(--gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            box-shadow: 0 10px 20px rgba(94, 46, 126, 0.2);
        }
        
        .service-content {
            flex: 1;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .service-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .service-button {
            display: inline-block;
            padding: 10px 25px;
            background: var(--gradient);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(231, 60, 126, 0.3);
        }
        
        /* Process Section */
        .process {
            padding: 80px 0;
            background-color: white;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            margin-top: 50px;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
            z-index: 1;
        }
        
        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 2;
            width: 23%;
            text-align: center;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .step h3 {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .step p {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 80px 0;
            background-color: #f9f9ff;
        }
        
        .testimonials-container {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }
        
        .testimonial-slider {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .testimonial-card {
            flex: 0 0 calc(33.333% - 20px);
            margin: 0 10px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
            padding: 30px;
            display: flex;
            flex-direction: column;
        }
        
        .testimonial-content {
            flex: 1;
            margin-bottom: 20px;
        }
        
        .testimonial-content p {
            color: #555;
            line-height: 1.6;
            font-style: italic;
        }
        
        .testimonial-content p::before {
            content: '"';
            font-size: 2.5rem;
            color: var(--secondary);
            opacity: 0.2;
            line-height: 0;
            position: relative;
            top: 15px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
        }
        
        .author-info h4 {
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: #777;
            font-size: 0.9rem;
        }
        
        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .dot.active {
            background: var(--gradient);
        }
        
        /* Call to Action */
        .cta {
            padding: 100px 0;
            background: var(--gradient);
            color: white;
            text-align: center;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .cta-button-white {
            display: inline-block;
            padding: 12px 30px;
            background: white;
            color: var(--primary);
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
        }
        
        .cta-button-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        }
        
        /* Footer */
        footer {
            background-color: #2a1a3a;
            color: #ccc;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
        }
        
        .footer-logo i {
            color: var(--secondary);
        }
        
        .footer-about p {
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s, transform 0.3s;
        }
        
        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        
        .footer-links h3, .footer-contact h3, .footer-newsletter h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: var(--secondary);
        }
        
        .contact-info {
            margin-bottom: 20px;
        }
        
        .contact-info div {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .contact-info i {
            color: var(--secondary);
            margin-top: 5px;
        }
        
        .newsletter-form {
            position: relative;
        }
        
        .newsletter-form input {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 30px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            outline: none;
        }
        
        .newsletter-form input::placeholder {
            color: #999;
        }
        
        .newsletter-form button {
            position: absolute;
            right: 5px;
            top: 5px;
            bottom: 5px;
            border: none;
            background: var(--gradient);
            color: white;
            border-radius: 30px;
            padding: 0 20px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
        }
        
        /* Chat Widget */
        .chat-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(94, 46, 126, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
            z-index: 100;
        }
        
        .chat-widget:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(94, 46, 126, 0.4);
        }
        
        /* Quick Enquiry */
        .quick-enquiry {
            position: fixed;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            background: var(--gradient);
            color: white;
            writing-mode: vertical-lr;
            padding: 20px 10px;
            border-radius: 10px 0 0 10px;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: pointer;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            z-index: 90;
        }
        
        /* Animations */
        .animate__animated {
            animation-duration: 1s;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .process-steps {
                flex-direction: column;
                align-items: center;
                gap: 50px;
            }
            
            .process-steps::before {
                width: 5px;
                height: 100%;
                top: 0;
                left: 50%;
                transform: translateX(-50%);
            }
            
            .step {
                width: 100%;
                max-width: 300px;
            }
            
            .testimonial-card {
                flex: 0 0 calc(50% - 20px);
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .service-item, .service-item:nth-child(even) {
                flex-direction: column;
                text-align: center;
            }
            
            .testimonial-card {
                flex: 0 0 calc(100% - 20px);
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
    .home-visit-form {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.form-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 20px;
}

.form-group {
    flex: 1;
    min-width: 250px;
}

.full-width {
    width: 100%;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #5e2c84;
    font-size: 16px;
}

.input-icon input, 
.input-icon select, 
.input-icon textarea {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.input-icon textarea {
    padding-top: 12px;
}

.input-icon input:focus, 
.input-icon select:focus, 
.input-icon textarea:focus {
    border-color: #5e2c84;
    outline: none;
    box-shadow: 0 0 0 2px rgba(94, 44, 132, 0.2);
}

.btn-submit {
    background-color: #5e2c84;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.btn-submit i {
    margin-right: 8px;
}

.btn-submit:hover {
    background-color: #4a2268;
}

.form-submit {
    text-align: center;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        width: 100%;
    }
    
    .home-visit-form {
        padding: 40px 15px;
    }
}