
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }


        
    .hero-container {
      min-height: 89vh; /* Better on mobile than 100vh */
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }


        /* For tablets and medium devices */
@media (max-width: 1024px) {
    .hero-container {
        min-height: 80vh;
    }
}

/* For small tablets and large phones */
@media (max-width: 768px) {
    .hero-container {
        min-height: 70vh;
    }
}

/* For smaller phones */
@media (max-width: 480px) {
    .hero-container {
        min-height: 60vh;
    }
}
        
        .background-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            background-image: url("/images/Young\ people\ waving\ Hands.jpg"); /* Replace with your actual image path */
            background-size: cover;
            background-position: center;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6); /* Optional overlay for better text readability */
            z-index: 2;
        }
        
        .hero-text {
            z-index: 3;
            position: relative;
            padding: 0 2rem;
            color: #f8f8f8;
        }
        
        .hero-text h1 {
            font-size: 3rem;
            color: #f8f8f8;
            font-weight: 400;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero-text h2 {
            font-size: 2.5rem;
            font-weight: 400;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .red-text {
            color: #ff0000;
        }
        
        @media (max-width: 768px) {
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .hero-text h2 {
                font-size: 1.6rem;
            }
        }


        body {
            margin: 0;
            
        }

        .careers-container {
            display: flex;
            min-height: 500px;
            width: 100%;
        }

        .left-panel {
            background-color: #f2f2f2;
            position: relative;
            width: 50%;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .left-panel::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("/images/minimal\ background.webp");
            opacity: 0.5;
            z-index: 0;
        }

        .left-content {
            position: relative;
            z-index: 1;
        }

        .left-content h1 {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.3;
            color: #000;
        }

        .left-content p {
            margin-bottom: 20px;
            line-height: 1.6;
            color: #333;
        }

        .left-content .email {
            margin-top: 30px;
            color: #333;
            font-weight: bold;
        }

        .right-panel {
            width: 50%;
            background-color: rgba(255, 255, 255, 0.7);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .right-panel::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("/images/Hand\ bumps.jpg");
            background-size: cover;
            background-position: center;
            opacity: 0.8;
            z-index: 0;
        }

        .form-container {
            background-color: rgba(255, 255, 255, 0.9);
            padding: 30px;
            border-radius: 8px;
            width: 90%;
            max-width: 400px;
            position: relative;
            z-index: 1;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }

        .form-title {
            text-align: center;
            margin-bottom: 20px;
            font-weight: bold;
            color: #000;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-control {
            width: 100%;
            padding: 10px 0;
            border: none;
            border-bottom: 1px solid #999;
            background-color: transparent;
            outline: none;
            font-size: 16px;
        }

        .file-input-container {
            display: flex;
            align-items: center;
        }

        .file-input-button {
            padding: 8px 15px;
            background-color: #f2f2f2;
            border: 1px solid #ccc;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
        }

        .file-input-text {
            margin-left: 10px;
            color: #666;
            font-size: 14px;
        }

        .button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}


        .submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(90deg, #ff3a3a 50%, #fff 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    color: #ff3a3a;
    font-weight: bold;
    font-size: 14px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease, background-position 0.4s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
    background-position: left bottom;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.submit-button .arrow-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.submit-button:hover .arrow-icon {
    transform: translateX(5px) scale(1.1);
}


        .arrow-icon {
            margin-left: 5px;
        }

        @media (max-width: 768px) {
            .careers-container {
                flex-direction: column;
            }

            .left-panel, .right-panel {
                width: 100%;
                padding: 30px 20px;
            }

            .left-panel {
                min-height: 300px;
            }
            
            .left-content p {
                width: 100%;
                max-width: 100%;
                line-height: 1.6;
                margin-bottom: 20px;
            }
            
            .left-content p br {
                display: none;
            }

            .right-panel {
                min-height: 450px;
            }
            
            .form-container {
                width: 95%;
            }
        }


        .email {
    color: white;
    text-decoration: none;
    cursor: pointer;
}
.email:hover {
    text-decoration: underline; /* optional for better UX */
    color: #ff0000;
}

