 /* Custom Styles */
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
            color: #333;
        }
        
        .top-bar {
            background-color:#EE0E82;
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .top-bar a {
            color:#FE9900;
            text-decoration: none;
            margin-right: 15px;
        }
        
        .top-bar a:hover {
            color: white;
        }
        
        .navbar {
            background-color: #060270;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            height:auto;
            margin-top: 10px;
        }
        .navbar-brand img {
            height: 70px;
        }
        .nav-link {
            color: #FE9900;
            font-weight: 500;
        }
        
        .btn-primary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
        }
        
        .btn-primary:hover {
            background-color: #2980b9;
            border-color: #2980b9;
        }
        
        /* Hero Section */
        .careers-hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.pexels.com/photos/3184465/pexels-photo-3184465.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .careers-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .careers-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        /* Featured Positions */
        .position-card {
            border: none;
			background-image:linear-gradient(white,white,pink);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .position-card:hover {
            transform: translateY(-10px);
        }
        
        .position-card .card-body {
            padding: 30px;
        }
        
        .position-card .badge {
            background-image: linear-gradient(orage,orange);
            margin-bottom: 10px;
        }
        
        /* Why Work With Us */
        .benefits-section {
            background-image:linear-gradient(white,white,pink);
            padding: 80px 0;
        }
        
        .benefit-card {
            text-align: center;
            padding: 30px 20px;
            background-image:linear-gradient(violet,White,purple);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            transition: transform 0.3s;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        /* Application Form */
        .application-form-section {
            padding: 80px 0;
        }
        
        .form-container {
            background:  #b3fff0;
            border-radius: 10px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
            padding: 40px;
        }
        
        .form-sidebar {
            background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('https://images.pexels.com/photos/3184465/pexels-photo-3184465.jpeg');
            background-size: cover;
            background-position: center;
            color: #ff6600;
            border-radius: 10px;
            padding: 40px;
            height: 100%;
        }
        
        .form-sidebar h3 {
            margin-bottom: 20px;
        }
        
        .form-sidebar ul {
            list-style: none;
            padding-left: 0;
        }
        
        .form-sidebar ul li {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
        }
        
        .form-sidebar ul li:before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }
        
        /* Testimonials */
        .testimonial-card {
            background: #ccffe6;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
        }
        
        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
        }
        
        /* Footer */
        footer {
            background-color:#060270;
            color: white;
            padding: 20px 0 20px;
        }
        footer h5 {
            color: #ff9900;
            margin-bottom:5px;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
            display: block;
            margin-bottom: 5px;
        }
        footer a:hover {
            color: white;
        }
        .social-icons a {
            display: inline-block;
            margin-right: 15px;
            font-size: 20px;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 15px;
            margin-top: 10px;
            text-align: center;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .careers-hero {
                padding: 60px 0;
            }
            
            .careers-hero h1 {
                font-size: 2.2rem;
            }
        }