/* Particle Background */
.particle-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(128, 0, 128, 0.1);
    border-radius: 50%;
    filter: blur(1px);
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-1200px) translateX(1200px);
        opacity: 0;
    }
}

/* General Section Styling */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.career {
    padding: 60px 0;
    text-align: center;
    color: #333;
    padding-bottom: 0px;
}

.career h1 {
    font-size: 2.5em;
    color: #A569BD;
    margin-bottom: 15px;
}

.career p {
    font-size: 1em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Form Styling */
.career-form {
    padding: 60px 0;
    text-align: center;
    color: #333;
}

.career-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.career-banner {
    width: 100%;
    max-width:1500px;
    height: auto;
    border-radius: 0px;
    margin-bottom: 20px;
    
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 1.1em;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    background: #f9f9f9;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #A569BD;
    outline: none;
}

.form-group input[type="file"] {
    padding: 5px;
    background: none;
}

.form-group input[type="radio"] {
    width: auto;
    margin-right: 10px;
}

.form-group .radio-label {
    display: inline-block;
    margin-right: 20px;
    font-size: 1em;
}

.form-group .error {
    color: #d32f2f;
    font-size: 0.9em;
    margin-top: 5px;
    display: block;
}

.general-error {
    color: #d32f2f;
    font-size: 1em;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.submit-btn {
    background: #A569BD;
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    display: block;
    margin: 30px auto 0;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #0e0914;
}

/* Popup Styling */
.popup {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 10000 !important; /* Increased to avoid conflicts */
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: auto;
}

.popup[style*="display: block"] {
    display: flex !important;
}

.popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    margin: auto;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.popup-content h2 {
    color: #A569BD;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.popup-content p {
    color: #333;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5em;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
    user-select: none;
    padding: 5px;
}

.popup-close:hover {
    color: #A569BD;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-content,
    .founder-content,
    .career-content {
        flex-direction: column;
    }
    
    .contact-info,
    .contact-form,
    .founder-image,
    .founder-info,
    .career-text,
    .career-image {
        min-width: 100%;
    }
    
    .pricing-card.featured {
        transform: scale(1); /* Disable scaling on smaller screens */
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 25px;
    }
    
    .pricing-header h3 {
        font-size: 1.6rem;
    }
    
    .price {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .pricing-card {
        padding: 20px;
    }
    
    .popular-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
        right: 15px;
        top: -12px;
    }
    
    .pricing-header h3 {
        font-size: 1.4rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .package-desc {
        font-size: 0.9rem;
    }
    
    .features li {
        font-size: 0.9rem;
    }
}