        :root {
            --primary: #0b3d91;
            --secondary: #2ecc71;
            --accent: #1e5bb8;
            --text-dark: #1e293b;
            --text-light: #292b2e;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }
        body { background-color: var(--white); color: var(--text-dark); line-height: 1.6; }

        header {
            background: rgba(255, 255, 255, 0.98);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 8%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            height: 110px;
        }
		
	

        .logo-box img { height: 100px; width: auto; object-fit: contain; }

        nav ul { display: flex; list-style: none; gap: 2rem; }
        nav a { text-decoration: none; color: var(--text-dark); font-weight: 600; }
        nav a.active { color: var(--primary); }

        .subpage-hero {
            background: linear-gradient(135deg, #4a2c66 0%, #1e5bb8 100%);
            color: white;
            padding: 124px 2% 21px;
            text-align: center;
        }

        .content-section { padding: 80px 8%; max-width: 1200px; margin: 0 auto; }
        .content-section h2 { color: var(--primary); margin-bottom: 1.5rem; font-size: 2.5rem; }
        .content-section p { color: var(--text-light); font-size: 1.15rem; margin-bottom: 2rem; }
       

        .subpage-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 10px; }

        /* CONTACT SECTION FIX */
        
        .contact-grid { 
            display: grid; 
            grid-template-columns: 1fr 1.2fr; 
            gap: 4rem; 
            align-items: start;
        }

        .contact-info h2 { color: var(--primary); margin-bottom: 1.5rem; font-size: 2.2rem; }
        .contact-info p { margin-bottom: 1rem; color: var(--text-light); }
        .contact-info i { color: var(--secondary); margin-right: 12px; width: 20px; }

        .contact-form {
            background: #f8fafc;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
            border: 1px solid #edf2f7;
        }

        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1.2rem;
            border-radius: 8px;
            border: 1px solid #ddd;
            font-size: 1rem;
            outline: none;
        }

        .contact-form input:focus, .contact-form textarea:focus { border-color: var(--primary); }

        .btn-blue {
            background: var(--primary);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            width: 100%;
            transition: 0.3s;
        }
        .btn-blue:hover { background: var(--accent); transform: translateY(-2px); }


        .subpage-hero {
            background: linear-gradient(135deg, #4a2c66 0%, #1e5bb8 100%);
            color: white;
            padding: 160px 10% 60px;
            text-align: center;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            padding: 80px 10%;
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: left; 
            box-shadow: 0 10px 40px rgba(0,0,0,0.04);
            transition: var(--transition);
            border: 1px solid #f1f5f9;
            display: flex;
            flex-direction: column;
			 border-bottom: 4px solid transparent;
        } 
	
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            border-color: var(--secondary);
        }

        .service-card .icon-box {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px; /* Icon stays centered */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-card img { width: 100%; height: auto; }

        .service-card h3 { 
            color: var(--primary); 
            margin-bottom: 20px; 
            font-size: 1.3rem; 
            text-align: center; /* Heading stays centered */
            text-transform: uppercase;
        }

        .service-card p { 
            font-size: 0.95rem; 
            color: var(--text-light); 
            margin-bottom: 15px;
        }

        /* Fixed List Styling */
        .service-card ul {
            list-style: none;
            margin-top: 10px;
        }

        .service-card ul li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: var(--text-dark);
        }

        .service-card ul li::before {

            content: '•';
            color: var(--secondary);
            font-weight: bold;
            position: absolute;
            left: 5px;
            font-size: 1.2rem;
        }

        .services-include-title {
            font-weight: 700;
            color: var(--text-dark);
            margin-top: 10px;
            display: block;
        }
		
		

        /* --- HERO --- */
        .subpage-hero {
            background: linear-gradient(135deg, #4a2c66 0%, #1e5bb8 100%);
            color: white;
            padding: 160px 8% 60px;
            text-align: center;
        }

        .subpage-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 15px; }
        .subpage-hero p { max-width: 800px; margin: 0 auto; font-size: 1.1rem; opacity: 0.9; }

        /* --- CONTENT SECTIONS --- */
        .content-section { padding: 60px 8%; max-width: 1200px; margin: 0 auto; }
        .section-title { text-align: center; margin-bottom: 40px; }
        .section-title h2 { color: var(--primary); font-size: 2.2rem; margin-bottom: 10px; }

        /* --- WHY WORK WITH US --- */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 60px;
        }
        .benefit-item {
            background: #f8fafc;
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid var(--secondary);
            font-weight: 600;
            color: var(--text-dark);
        }

        /* --- JOB CATEGORIES --- */
        .jobs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }
        .job-category-card {
            background: white;
            padding: 30px;
            border-radius: 16px;
            box-shadow: var(--shadow);
            border: 1px solid #f1f5f9;
        }
        .job-category-card h3 { 
            color: var(--primary); 
            display: flex; 
            align-items: center; 
            gap: 10px; 
            margin-bottom: 15px;
            border-bottom: 2px solid #f1f5f9;
            padding-bottom: 10px;
        }
        .job-category-card ul { list-style: none; }
        .job-category-card ul li { margin-bottom: 8px; padding-left: 20px; position: relative; }
        .job-category-card ul li::before { content: '✔'; color: var(--secondary); position: absolute; left: 0; font-weight: bold; }

        /* --- APPLICATION FORM --- */
        .application-container {
            background: #f1f5f9;
            padding: 40px;
            border-radius: 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }
        .apply-info h3 { color: var(--primary); margin-bottom: 15px; }
        .apply-info p { margin-bottom: 10px; }
        .apply-form { background: white; padding: 30px; border-radius: 15px; box-shadow: var(--shadow); }
        .form-group { margin-bottom: 15px; }
        .form-group label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 0.9rem; }
        .form-group input, .form-group select, .form-group textarea {
            width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; outline: none;
        }
        .btn-submit {
            background: var(--primary); color: white; width: 100%; padding: 15px; border: none; border-radius: 8px; font-weight: 700; cursor: pointer; transition: 0.3s;
        }
        .btn-submit:hover { background: var(--secondary); transform: translateY(-2px); }

        /* --- FOOTER --- */
      

        @media (max-width: 1024px) {
            header { height: 90px; }
            .logo-box img { height: 80px; }
            .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
            .subpage-hero { padding-top: 140px; }
        }
