 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        .header {
            background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
            color: white;
            padding: 120px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '₹';
            position: absolute;
            font-size: 30em;
            opacity: 0.05;
            top: -50px;
            right: -100px;
            font-weight: bold;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-30px); }
        }

        .header h1 {
            font-size: 3.5em;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            animation: slideInLeft 1s ease;
        }

        .header p {
            font-size: 1.4em;
            position: relative;
            z-index: 1;
            animation: slideInRight 1s ease 0.3s backwards;
            max-width: 800px;
            margin: 0 auto;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .intro-section {
            text-align: center;
            margin-bottom: 60px;
        }

        .intro-section h2 {
            font-size: 2.5em;
            color: #11998e;
            margin-bottom: 20px;
        }

        .intro-section p {
            font-size: 1.2em;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(17, 153, 142, 0.25);
            border-color: #11998e;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #11998e, #38ef7d);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5em;
            color: white;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: rotate(10deg) scale(1.1);
        }

        .service-card h3 {
            font-size: 1.6em;
            margin-bottom: 15px;
            color: #11998e;
        }

        .service-card p {
            color: #666;
            font-size: 1.05em;
            line-height: 1.8;
        }

        .service-card ul {
            list-style: none;
            margin-top: 20px;
            padding: 0;
        }

        .service-card ul li {
            padding: 8px 0;
            color: #555;
            position: relative;
            padding-left: 25px;
        }

        .service-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #38ef7d;
            font-weight: bold;
        }

        .benefits {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 20px;
            margin: 80px 0;
        }

        .benefits h2 {
            text-align: center;
            font-size: 2.8em;
            margin-bottom: 60px;
            color: #333;
        }

        .benefit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .benefit-card {
            background: white;
            padding: 35px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            border-left: 5px solid transparent;
        }

        .benefit-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border-left-color: #11998e;
        }

        .benefit-card .icon {
            font-size: 3.5em;
            margin-bottom: 20px;
            display: block;
        }

        .benefit-card h4 {
            font-size: 1.3em;
            margin-bottom: 12px;
            color: #11998e;
        }

        .benefit-card p {
            color: #666;
            line-height: 1.7;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 35px;
            margin: 80px 0;
            padding: 60px 20px;
            background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
            border-radius: 20px;
        }

        .stat-box {
            text-align: center;
            padding: 20px;
            color: white;
        }

        .stat-number {
            font-size: 3.5em;
            font-weight: bold;
            display: block;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1em;
            opacity: 0.95;
        }

        .process-section {
            margin: 80px 0;
        }

        .process-section h2 {
            text-align: center;
            font-size: 2.8em;
            margin-bottom: 60px;
            color: #333;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .step {
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            position: relative;
            transition: all 0.3s ease;
        }

        .step:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(17, 153, 142, 0.2);
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #11998e, #38ef7d);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(17, 153, 142, 0.3);
        }

        .step h4 {
            font-size: 1.3em;
            margin: 20px 0 15px;
            color: #11998e;
        }

        .step p {
            color: #666;
            line-height: 1.7;
        }

        .cta {
            background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
        }

        .cta h2 {
            font-size: 2.8em;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 1.3em;
            margin-bottom: 40px;
        }

        .footer-form {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 20px;
        }

        .footer-form h2 {
            text-align: center;
            font-size: 2.5em;
            margin-bottom: 10px;
            color: #333;
        }

        .form-subtitle {
            text-align: center;
            color: #666;
            font-size: 1.1em;
            margin-bottom: 50px;
        }

        .contact-form {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 25px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
            font-size: 1em;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 14px 18px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1em;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #11998e;
            box-shadow: 0 0 0 4px rgba(17, 153, 142, 0.1);
        }

        .form-group textarea {
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
            color: white;
            padding: 18px 60px;
            border: none;
            border-radius: 50px;
            font-size: 1.2em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            margin: 35px auto 0;
            box-shadow: 0 8px 20px rgba(17, 153, 142, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(17, 153, 142, 0.4);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        .footer {
            background: #1a202c;
            color: white;
            padding: 40px 20px;
            text-align: center;
        }

        .footer p {
            margin: 8px 0;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.2em;
            }

            .header p {
                font-size: 1.1em;
            }

            .intro-section h2,
            .benefits h2,
            .process-section h2,
            .cta h2 {
                font-size: 2em;
            }

            .contact-form {
                padding: 30px 20px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-form h2 {
                font-size: 2em;
            }
        }