.quote {
            background: white;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            padding: 40px;
            width: 100%;
            max-width:100%;
            animation: slideIn 0.5s ease-out;
            margin-top: -100px;
            margin-bottom: -80px;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .quote h2 {
            font-size: 28px;
            color: #333;
            margin-bottom: 30px;
            text-align: center;
        }

        .quote label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 600;
            font-size: 14px;
        }

        .quote input[type="text"],
        .quote input[type="email"],
        .quote textarea {
            width: 100%;
            padding: 5px 15px;
            margin-bottom: 5px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-family: inherit;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .quote input[type="text"]:focus,
        .quote input[type="email"]:focus,
        .quote textarea:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .quote textarea {
            resize: vertical;
            min-height: 120px;
        }

        .quote .g-recaptcha {
            margin: 20px 0;
            display: flex;
            justify-content: center;
        }

        .quote button {
            width: 100%;
            padding: 5px;
            background: #05204b;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .quote button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .quote button:active {
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 600px) {
            .quote {
                padding: 30px 20px;
            }

            .quote h2 {
                font-size: 24px;
                margin-bottom: 25px;
            }

            .quote label {
                font-size: 13px;
            }

            .quote input[type="text"],
            .quote input[type="email"],
            .quote textarea {
                padding: 11px 12px;
                font-size: 13px;
                margin-bottom: 18px;
            }

            .quote button {
                padding: 12px;
                font-size: 15px;
            }
            .quote {
                background: white;
                border-radius: 12px;
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
                padding: 40px;
                width: 100%;
                max-width: 100%;
                animation: slideIn 0.5s ease-out;
                    animation-name: slideIn;
                    animation-duration: 0.5s;
                    animation-delay: 0s;
                    margin-top: 0px;
                    margin-bottom: 0px;
                
                }
        }

        @media (max-width: 400px) {
            

            .quote {
                padding: 25px 15px;
            }

            .quote h2 {
                font-size: 22px;
                margin-bottom: 20px;
            }
        }