.container {
            max-width: 1200px;
            margin: 0 auto;
          
        }
        .elt455{
         background:red;   
        }
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #051937 0%, #004d7a 100%);
            color: white;
            border-radius: 20px;
            padding: 80px 40px;
            margin-bottom: 60px;
            box-shadow: 0 20px 50px rgba(0, 77, 122, 0.3);
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 500px;
            height: 500px;
            background-image: url('/api/placeholder/500/500');
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.1;
            animation: float 15s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            font-weight: 800;
            background: linear-gradient(to right, #ffffff, #f0f0f0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 5px 15px rgba(0,0,0,0.1);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero p {
            font-size: 1.4rem;
            max-width: 800px;
            margin-bottom: 40px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 40px auto;
            max-width: 900px;
        }
        
        .hero-stat {
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            flex: 1;
            min-width: 150px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .hero-stat:hover {
            transform: translateY(-5px);
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: #ff9d00;
        }
        
        .stat-label {
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(90deg, #ff9d00 0%, #ff6a00 100%);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(255, 130, 0, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cta-button-secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
            margin-left: 20px;
            margin-right: 20px;
            box-shadow: none;
        }
        
        .cta-button:hover {
            background: linear-gradient(90deg, #ff6a00 0%, #ff9d00 100%);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 130, 0, 0.4);
        }
        
      
        
        /* Benefits Section */
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #004d7a;
            font-weight: 800;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 60px;
            color: #555;
        }
        
        .benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }
        
        .benefit-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }
        
        .benefit-card::before {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
            z-index: -1;
            top: -40%;
            left: -40%;
            border-radius: 40%;
            transition: all 0.8s ease;
            opacity: 0;
        }
        
        .benefit-card:hover::before {
            opacity: 1;
            transform: scale(1.2) rotate(10deg);
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .benefit-icon {
            background: linear-gradient(135deg, #004d7a 0%, #0088cc 100%);
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 30px;
            color: white;
            box-shadow: 0 10px 20px rgba(0, 77, 122, 0.2);
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover .benefit-icon {
            transform: scale(1.1) rotate(10deg);
        }
        
        .benefit-card h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: #004d7a;
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover h3 {
            color: #ff6a00;
        }
        
        .benefit-card p {
            color: #555;
            font-size: 1.05rem;
            margin-bottom: 20px;
        }
        
        .learn-more {
            display: inline-block;
            color: #004d7a;
            font-weight: 600;
            text-decoration: none;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .learn-more::after {
            content: '→';
            margin-left: 5px;
            transition: all 0.3s ease;
        }
        
        .learn-more:hover {
            color: #ff6a00;
        }
        
        .learn-more:hover::after {
            margin-left: 10px;
        }
        
      
        
        /* How It Works Section */
        .how-it-works {
            margin-bottom: 80px;
            position: relative;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin: 80px 0;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .process-step {
            flex: 1;
            min-width: 250px;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #004d7a 0%, #0088cc 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
            box-shadow: 0 10px 20px rgba(0, 77, 122, 0.2);
        }
        
        .process-step h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #004d7a;
        }
        
        .process-step p {
            color: #555;
            font-size: 1rem;
            max-width: 250px;
            margin: 0 auto;
        }
        
        .process-line {
            position: absolute;
            top: 40px;
            left: 10%;
            right: 10%;
            height: 4px;
            background: #e0e7ef;
            z-index: 1;
        }
        
        /* Pricing Section */
        .pricing {
            margin-bottom: 80px;
            position: relative;
        }
        
        .pricing::before {
            content: '';
            position: absolute;
            top: 100px;
            right: -100px;
            width: 200px;
            height: 200px;
            background-color: rgba(0, 77, 122, 0.05);
            border-radius: 50%;
            z-index: -1;
        }
        
        .pricing::after {
            content: '';
            position: absolute;
            bottom: 50px;
            left: -100px;
            width: 300px;
            height: 300px;
            background-color: rgba(255, 154, 0, 0.05);
            border-radius: 50%;
            z-index: -1;
        }
        
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 50px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }
        
        .pricing-card.featured {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 77, 122, 0.1);
            border: none;
        }
        
        .pricing-card.featured::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 10px;
            background: linear-gradient(90deg, #ff9d00 0%, #ff6a00 100%);
        }
        
        .pricing-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.08);
        }
        
        .pricing-card h3 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #004d7a;
            text-align: center;
        }
        
        .plan-tag {
            background: linear-gradient(90deg, #ff9d00 0%, #ff6a00 100%);
            color: white;
            padding: 7px 20px;
            border-radius: 30px;
            display: inline-block;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 30px;
            position: absolute;
            top: 20px;
            right: 20px;
            box-shadow: 0 5px 15px rgba(255, 154, 0, 0.3);
        }
        
        .price {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 30px;
            color: #333;
            text-align: center;
            position: relative;
            display: inline-block;
        }
        
        .price::before {
            content: '₹';
            font-size: 1.5rem;
            position: absolute;
            top: 5px;
            left: -15px;
            font-weight: 600;
            color: #666;
        }
        
        .price span {
            font-size: 1rem;
            font-weight: 400;
            color: #666;
            margin-left: 5px;
        }
        
        .feature-list {
            list-style: none;
            margin-bottom: 40px;
            flex-grow: 1;
        }
        
        .feature-list li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            color: #444;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list li:before {
            content: "✓";
            color: #004d7a;
            margin-right: 10px;
            font-weight: bold;
            background-color: rgba(0, 77, 122, 0.1);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            flex-shrink: 0;
        }
        
        .featured .feature-list li:before {
            background-color: rgba(255, 154, 0, 0.1);
            color: #ff6a00;
        }
        
     
        /* FAQs Section */
        .faqs {
            margin-bottom: 80px;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 25px 30px;
            font-weight: 600;
            font-size: 1.2rem;
            color: #004d7a;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid transparent;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            color: #ff6a00;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-question {
            border-bottom-color: #eee;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 30px;
            height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: #555;
            font-size: 1.05rem;
        }
        
        .faq-item.active .faq-answer {
            padding: 20px 30px;
            height: auto;
        }
        
        /* Form Section */
        .contact-form {
            background: white;
            border-radius: 20px;
            padding: 60px 40px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(90deg, #004d7a 0%, #0088cc 100%);
        }
        
        .contact-form h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #004d7a;
            text-align: center;
        }
        
        .form-subtitle {
            text-align: center;
            color: #555;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 50px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 25px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #444;
        }
        
        .form-group input,
        .form-group textarea {
            width: 95%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .form-group select {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #004d7a;
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 77, 122, 0.1);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .checkbox-group {
            margin-bottom: 25px;
        }
        
        .checkbox-label {
            display: flex;
            align-items: flex-start;
            cursor: pointer;
        }
        
        .checkbox-label input {
            margin-top: 5px;
            margin-right: 10px;
            flex-shrink: 0;
        }
        
        .checkbox-text {
            color: #555;
            font-size: 0.9rem;
        }
        
        .checkbox-text a {
            color: #004d7a;
            text-decoration: none;
            font-weight: 600;
        }
        
        .checkbox-text a:hover {
            color: #ff6a00;
            text-decoration: underline;
        }
        
        .submit-row {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero-stats {
                flex-wrap: wrap;
            }
            
            .hero-stat {
                min-width: 120px;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .pricing-card.featured:hover {
                transform: translateY(-15px);
            }
             .pricing::before {
            right:200px;
                
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 60px 30px;
            }
            
            .hero h1 {
                font-size: 2.3rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .cta-button {
                display: block;
                margin-bottom: 20px;
            }
            
            .cta-button-secondary {
                margin-left: 0;
                margin-bottom: 0;
            }
            
            .process-line {
                display: none;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .contact-form {
                padding: 40px 20px;
            }
            .pricing::before {
            right:200px;
                
            }
        }