@charset "utf-8";
/* CSS Document */


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Arial, sans-serif;
        }
        
        :root {
            --primary-blue: #1a3a5f;
            --secondary-blue: #2a4a75;
            --accent-gold: #fff;
            --diamond-blue: #4a90e2;
            --light-bg: #f5f5f5;
            --white: #ffffff;
            --success-green: #28a745;
            --info-blue: #17a2b8;
            --warning-orange: #ffc107;
            --danger-red: #dc3545;
            --teaching-color: #4a90e2;
            --non-teaching-color: #2ecc71;
        }
        
        body {
            background-color: var(--light-bg);
            color: #333;
            line-height: 1.6;
        }
        
        /* Header Styles */
        header {
            background-color: var(--primary-blue);
            color: white;
            padding: 15px 0;
            border-bottom: 5px solid var(--accent-gold);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
		/* No Vacancy Message */
        .no-vacancy-container {
            background-color: var(--white);
            border-radius: 10px;
            padding: 60px 40px;
            margin: 40px auto;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            text-align: center;
            max-width: 800px;
        }
        
        .no-vacancy-icon {
            font-size: 4rem;
            color: var(--warning-orange);
            margin-bottom: 25px;
        }
        
        .no-vacancy-message h3 {
            color: var(--primary-blue);
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .no-vacancy-message p {
            color: #666;
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
		
		/*End no vacancy */
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        .school-name {
            text-align: center;
            flex-grow: 1;
            position: relative;
        }
        
        .anniversary-badge {
            position: absolute;
            top: -15px;
            right: -10px;
            background: linear-gradient(45deg, var(--primary-blue), var(--diamond-blue));
            color: white;
            font-weight: bold;
            font-size: 0.8rem;
            padding: 4px 10px;
            border-radius: 15px;
            animation: badge-pulse 2s infinite;
            box-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
            border: 1px solid var(--accent-gold);
            z-index: 1;
        }
        
        .school-name h1 {
            font-size: 2.2rem;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }
        
        .school-name p {
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            opacity: 0.9;
        }
        
        .logo {
            font-size: 2rem;
            color: var(--accent-silver);
            transition: transform 0.5s;
        }

        /* Logo imperial */
        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 6px;
        }

        /* Right logo container */
        .header-container .logo:last-child {
            width: 60px;
            height: 60px;
            border-radius: 6px;
            background: rgba(212, 175, 55, 0.1);
            border: 2px solid rgba(212, 175, 55, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px; /* Space between title and right logo */
        }
        
        .logo {
            width: 100px; /* Define logo container size */
            height: 100px; /* Define logo container size */
            overflow: hidden; /* Prevents overflow */
            border-radius: 15px; /* Apply corner rounding to the container */
            margin-right: 10px;
        }

        .logo img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures the image covers the area */
            transition: transform 0.5s ease; /* Transition for scale effect */
        }

        .logo img:hover {
            transform: scale(1.1); /* Slightly enlarges on hover */
        }
        /* End of logo imperial */

        .logo:hover {
            transform: rotate(0deg);
        }
        
        @keyframes badge-pulse {
            0% { transform: scale(1); box-shadow: 0 0 10px rgba(74, 144, 226, 0.5); }
            50% { transform: scale(1.05); box-shadow: 0 0 15px rgba(74, 144, 226, 0.8); }
            100% { transform: scale(1); box-shadow: 0 0 10px rgba(74, 144, 226, 0.5); }
        }
        
        /* Navigation Styles */
        nav {
            background-color: var(--secondary-blue);
            padding: 10px 0;
            box-shadow: 0 3px 5px rgba(0,0,0,0.1);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0 20px;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            margin: 0 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            border-radius: 3px;
            position: relative;
            overflow: hidden;
        }
        
        nav a:hover {
            background-color: #3a5a85;
            transform: translateY(-2px);
        }
        
        nav a.active {
            background-color: var(--accent-gold);
            color: #333;
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent-gold);
            transition: width 0.3s ease;
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        /* Page Header */
       .page-header {
            background: linear-gradient(rgba(26, 58, 95, 0.9), rgba(26, 58, 95, 0.9)), 
                        url('../images/1.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 30px 20px;
            text-align: center;
            margin-bottom: 50px;
        }
        
        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--accent-gold);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .page-header p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* Main Container */
        .vacancies-container {
            max-width: 1200px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }
        
        /* Vacancies Header */
        .vacancies-header {
            background-color: var(--white);
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .vacancies-header h2 {
            color: var(--primary-blue);
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .vacancies-header p {
            color: #666;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.8;
        }
        
        /* Search and Filter Section */
        .search-filter-section {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .search-container {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .search-input {
            flex: 1;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .search-input:focus {
            outline: none;
            border-color: var(--primary-blue);
        }
        
        .filter-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }
        
        .filter-btn {
            padding: 10px 20px;
            background-color: #f0f0f0;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            color: #555;
            transition: all 0.3s;
        }
        
        .filter-btn:hover {
            background-color: #e0e0e0;
        }
        
        .filter-btn.active {
            background-color: var(--primary-blue);
            color: white;
        }
        
        /* Vacancy Cards */
        .vacancies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .vacancy-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .vacancy-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .vacancy-header {
            padding: 25px;
            background-color: var(--primary-blue);
            color: white;
            position: relative;
        }
        
        .vacancy-type {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .type-teaching {
            background-color: rgba(74, 144, 226, 0.2);
            color: var(--teaching-color);
        }
        
        .type-non-teaching {
            background-color: rgba(46, 204, 113, 0.2);
            color: var(--non-teaching-color);
        }
        
        .vacancy-title {
            font-size: 1.4rem;
            margin-bottom: 8px;
        }
        
        .vacancy-department {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .vacancy-details {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .vacancy-info {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .info-item {
            display: flex;
            align-items: center;
            color: #666;
        }
        
        .info-item i {
            margin-right: 8px;
            color: var(--primary-blue);
        }
        
        .vacancy-description {
            color: #555;
            margin-bottom: 25px;
            line-height: 1.7;
            flex-grow: 1;
        }
        
        .vacancy-requirements {
            margin-bottom: 25px;
        }
        
        .requirements-title {
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .requirements-list {
            list-style-type: none;
            padding-left: 5px;
        }
        
        .requirements-list li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }
        
        .requirements-list li:before {
            content: "•";
            color: var(--diamond-blue);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        .vacancy-footer {
            padding: 20px 25px;
            background-color: #f9f9f9;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .vacancy-deadline {
            color: #666;
            font-weight: 600;
        }
        
        .deadline-soon {
            color: var(--danger-red);
        }
        
        /* Application Process Section */
        .application-process {
            background-color: var(--white);
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 50px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .application-process h3 {
            color: var(--primary-blue);
            font-size: 1.8rem;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .process-step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 20px;
            position: relative;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background-color: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0 auto 20px;
        }
        
        .step-title {
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .step-description {
            color: #666;
            line-height: 1.6;
        }
        
        .process-step:not(:last-child):after {
            content: '';
            position: absolute;
            top: 25px;
            right: -10px;
            width: 20px;
            height: 3px;
            background-color: #ddd;
        }
        
        /* Why Join Us Section */
        .why-join-us {
            background-color: var(--white);
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 50px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .why-join-us h3 {
            color: var(--primary-blue);
            font-size: 1.8rem;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .benefit-card {
            background-color: #f9f9f9;
            border-radius: 8px;
            padding: 25px;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            background-color: #f0f0f0;
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            color: var(--diamond-blue);
            margin-bottom: 15px;
        }
        
        .benefit-card h4 {
            color: var(--primary-blue);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-blue);
            color: white;
            padding: 50px 0 20px;
            margin-top: 80px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-column h3 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
		.footer-column h3 {
            color: #fff;
            margin-bottom: 15px;
            font-size: 1.2rem;
			text-decoration: underline;
			text-decoration-color: #fff; 
    		text-decoration-thickness: 2px;
    		text-underline-offset: 5px;
        }
        
        .footer-column p {
            margin-bottom: 10px;
            opacity: 0.9;
            line-height: 1.8;
        }
        
        .footer-column a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 8px;
        }
        
        .footer-column a:hover {
            color: var(--accent-gold);
            text-decoration: underline;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0.8;
            font-size: 0.9rem;
        }
        
        .contact-info {
            margin-top: 10px;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--accent-gold);
            width: 20px;
        }
        
        /* Buttons */
        .btn {
            display: inline-block;
            background-color: var(--primary-blue);
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .btn:hover {
            background-color: var(--secondary-blue);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .btn-gold {
            background-color: var(--accent-gold);
            color: #333;
        }
        
        .btn-gold:hover {
            background-color: #c4a027;
        }
        
        .btn-apply {
            background-color: var(--success-green);
            color: white;
        }
        
        .btn-apply:hover {
            background-color: #218838;
        }
        
        .btn-outline {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn-outline:hover {
            background-color: white;
            color: var(--primary-blue);
        }
        
        .btn-small {
            padding: 8px 15px;
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .process-steps {
                flex-direction: column;
            }
            
            .process-step:not(:last-child):after {
                display: none;
            }
            
            .process-step {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .page-header p {
                font-size: 1.1rem;
            }
            
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 10px;
            }
            
            .school-name h1 {
                font-size: 1.8rem;
            }
            
            nav a {
                padding: 8px 12px;
                font-size: 0.9rem;
                margin: 2px;
            }
            
            .vacancies-header h2,
            .application-process h3,
            .why-join-us h3 {
                font-size: 1.8rem;
            }
            
            .vacancies-header,
            .search-filter-section,
            .application-process,
            .why-join-us {
                padding: 25px;
            }
            
            .vacancies-grid {
                grid-template-columns: 1fr;
            }
            
            .search-container {
                flex-direction: column;
            }
            
            .vacancy-footer {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .page-header {
                padding: 60px 15px;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .vacancies-header h2 {
                font-size: 1.6rem;
            }
            
            .filter-container {
                flex-direction: column;
            }
            
            .filter-btn {
                width: 100%;
            }
        }

