 body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
             background-color: var(--light-bg);
            color: #333;
             line-height: 1.6;
        }

        :root {
            --primary-color: #4e73df;
            --secondary-color: #6f42c1;
            --accent-color: #36b9cc;
            --light-bg: #f8f9fc;
        }

        /* Hero Section with Background Image */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/bg.jpg') no-repeat center center;
            background-size: cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
        }

        .hero-content {
            background-color: rgba(0, 0, 0, 0.3);
            padding: 3rem;
            border-radius: 15px;
            max-width: 800px;
            margin: 0 auto;
        }

        .project-info {
            margin-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding-bottom: 1.5rem;
        }

        .project-info h1 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #4e9af1;
        }

        .project-info p {
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .btn {
            transition: all 0.3s ease;
            margin: 0.5rem;
            font-weight: 600;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        /* Status Check Section */
        #status-check {
            background-color: #f8f9fa;
            padding: 5rem 0;
        }

        .status-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }

        /* Footer */
        footer {
            background-color: #212529;
            color: white;
            text-align: center;
            padding: 1.5rem 0;
            font-size: 0.9rem;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-content {
                padding: 2rem 1.5rem;
            }
            
            .project-info h1 {
                font-size: 2rem;
            }
            
            .btn {
                display: block;
                width: 80%;
                margin: 0.5rem auto;
            }
        }




         .form-container {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            margin-bottom: 2rem;
        }
        
        .section-title {
            color: var(--primary-color);
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        .form-label {
            font-weight: 500;
        }
        
        .required-field::after {
            content: " *";
            color: #e74a3b;
        }
        
        .btn-submit {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }
        
        .upload-area {
            border: 2px dashed #ddd;
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
            background-color: #f9f9f9;
            transition: all 0.3s;
        }
        
        .upload-area:hover {
            border-color: var(--primary-color);
            background-color: #f0f8ff;
        }
        
        .upload-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .declaration {
            background-color: #f8f9fc;
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem;
            border-radius: 5px;
        }
          @media (max-width: 768px) {
            .form-container {
                padding: 1.5rem;
            }
        }




        .thankyou-container {
            max-width: 800px;
            margin: 2rem auto;
            padding: 2rem;
        }
        
        .success-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
            border-radius: 10px 10px 0 0;
            margin-bottom: 0;
        }
        
        .success-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        .content-card {
            background-color: white;
            border-radius: 0 0 10px 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            padding: 2rem;
        }
        
        .email-container {
            background-color: #f8f9fc;
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem;
            border-radius: 5px;
            margin: 2rem 0;
        }
        
        .email-header {
            border-bottom: 1px solid #ddd;
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
        }
        
       
        .btn-dashboard {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            transition: all 0.3s;
            color: white;
        }
        
        .btn-dashboard:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            color: white;
        }
        
        footer {
            background-color: #2e3a59;
            color: white;
            padding: 1.5rem 0;
            text-align: center;
            margin-top: 2rem;
        }
        
        @media (max-width: 768px) {
            .thankyou-container {
                padding: 1rem;
            }
            
            .success-header {
                padding: 2rem 1rem;
            }
            
            .content-card {
                padding: 1.5rem;
            }
        }