      /* CSS Variables */
        :root {
            --primary: #0EA5E9;
            --primary-dark: #0284C7;
            --accent: #F59E0B;
            --dark-text: #0F172A;
            --light-text: #64748B;
            --background: #F8FAFC;
            --white: #FFFFFF;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --radius: 8px;
        }
        
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            color: var(--dark-text);
            background-color: var(--background);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: 2.5rem;
        }
        
        h2 {
            font-size: 2rem;
        }
        
        h3 {
            font-size: 1.5rem;
        }
        
        p {
            margin-bottom: 1rem;
            color: var(--light-text);
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        img {
            max-width: 100%;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        section {
            padding: 5rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--primary);
        }
        
        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            gap: 0.5rem;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        .btn-secondary {
            background-color: var(--accent);
            color: white;
        }
        
        .btn-secondary:hover {
            background-color: #EAB308;
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }
        
        .btn-lg {
            padding: 0.5rem 1rem;
            font-size: 1.1rem;
        }
        
        /* Header */
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: var(--white);
            box-shadow: var(--shadow);
        }
        
        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.5rem;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            font-size: 1.5rem;

        }
        
        .logo-icon {
            font-size: 1.8rem;
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        
        .nav-links a {
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .header-actions {
            display: flex;
            gap: 1rem;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
            padding:  0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .hero-content h1 {
            margin-bottom: 1.5rem;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .hero-actions {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        
        .trust-badges {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .founder-note {
            font-size: 0.9rem;
            color: var(--light-text);
        }
        
        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .hero-image-placeholder {
            width: 100%;
            height: 300px;
            background-color: #E0F2FE;
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            color: var(--primary);
        }
        
        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        .service-card h3 {
            margin-bottom: 1rem;
        }
        
        .service-card p {
            margin-bottom: 1.5rem;
        }
        
        .service-link {
            color: var(--primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }
        
        .service-link:hover {
            text-decoration: underline;
        }
        
        /* Why Choose Us Section */
        .why-us {
            background-color: var(--white);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            text-align: center;
            padding: 2rem 1rem;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        /* Process Section */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            counter-reset: step;
        }
        
        .process-step {
            text-align: center;
            position: relative;
        }
        
        .process-step::before {
            counter-increment: step;
            content: counter(step);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            margin: 0 auto 1rem;
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 25px;
            right: -25px;
            width: 50px;
            height: 2px;
            background-color: var(--primary);
            opacity: 0.3;
        }
        
        /* Testimonials Section */
        .testimonials {
            background-color: var(--white);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .testimonial-card {
            background-color: var(--background);
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow);
        }
        
        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #E2E8F0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        
        .testimonial-info h4 {
            margin-bottom: 0.25rem;
        }
        
        .testimonial-location {
            color: var(--light-text);
            font-size: 0.9rem;
        }
        
        .testimonial-rating {
            color: var(--accent);
            margin-bottom: 1rem;
        }
        
        .rating-overall {
            text-align: center;
            margin-top: 2rem;
        }
        
        .rating-stars {
            font-size: 1.5rem;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }
        
        /* Offer Section */
        .offer {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            text-align: center;
        }
        
        .offer h2 {
            margin-bottom: 1rem;
        }
        
        .offer p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .offer-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .offer .btn-outline {
            color: white;
            border-color: white;
        }
        
        .offer .btn-outline:hover {
            background-color: white;
            color: var(--primary);
        }
        
        /* Services Detail Section */
        .service-detail {
            margin-bottom: 3rem;
        }
        
        .service-detail h3 {
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        .service-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        
        .service-issues {
            margin-bottom: 1.5rem;
        }
        
        .service-issues h4 {
            margin-bottom: 0.5rem;
        }
        
        .service-issues ul {
            list-style-type: none;
        }
        
        .service-issues li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .service-issues li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }
        
        .service-faq {
            margin-top: 1.5rem;
        }
        
        .faq-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid #E2E8F0;
            padding-bottom: 1rem;
        }
        
        .faq-question {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .faq-answer {
            color: var(--light-text);
        }
        
        /* FAQ Section */
        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .contact-method {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        .contact-details h3 {
            margin-bottom: 0.5rem;
        }
        
        .service-areas {
            margin-top: 1rem;
        }
        
        .service-areas ul {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem;
            list-style-type: none;
        }
        
        .service-areas li {
            position: relative;
            padding-left: 1.5rem;
        }
        
        .service-areas li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }
        
        .contact-form {
            background-color: var(--white);
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #CBD5E1;
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        
        .form-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }
        
        .form-checkbox input {
            margin-top: 0.25rem;
        }
        
        .privacy-note {
            font-size: 0.8rem;
            color: var(--light-text);
            margin-top: 0.5rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-text);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
        }
        
        .footer-about p {
            color: #CBD5E1;
            margin-bottom: 1.5rem;
        }
        
        .footer-links h4, .footer-contact h4 {
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .footer-links ul {
            list-style-type: none;
        }
        
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        
        .footer-links a {
            color: #CBD5E1;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-contact p {
            color: #CBD5E1;
            margin-bottom: 1rem;
        }
        
        .footer-bottom {
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #334155;
            text-align: center;
            color: #94A3B8;
            font-size: 0.9rem;
        }
        
        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-lg);
            z-index: 100;
            transition: all 0.3s ease;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
        }
        
        .whatsapp-icon {
            font-size: 2rem;
            color: white;
        }
        
        /* Mobile Call Button */
        .mobile-call {
            position: fixed;
            bottom: 2rem;
            left: 2rem;
            width: 60px;
            height: 60px;
            background-color: var(--primary);
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-lg);
            z-index: 100;
            transition: all 0.3s ease;
        }
        
        .mobile-call:hover {
            transform: scale(1.1);
        }
        
        .call-icon {
            font-size: 1.5rem;
            color: white;
        }
        
        /* Success Message */
        .success-message {
            display: none;
            background-color: #D1FAE5;
            color: #065F46;
            padding: 1rem;
            border-radius: var(--radius);
            margin-top: 1rem;
            text-align: center;
        }
        
        /* Responsive Styles */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .trust-badges {
                justify-content: center;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.75rem;
            }
           .header-actions .btn{
                padding:8px;
                font-size: 10px;
            }
          .logo{
            font-size: 12px;
            gap:2px;
          }
          .logo img{
            width:120px;
          }
            
            .hero-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-actions .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .trust-badges {
                flex-direction: column;
                gap: 1rem;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
            }
            
            .process-step:not(:last-child)::after {
                display: none;
            }
            
            .service-features {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .mobile-call {
                display: flex;
            }
        }
        
        @media (max-width: 480px) {
            section {
                padding: 3rem 0;
            }
            
            .hero {
                padding: 4rem 0;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .offer-actions {
                flex-direction: column;
            }
            
            .offer-actions .btn {
                width: 100%;
            }
        }