/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8fafc;
    color: #333;
    overflow-x: hidden;
}
*/


/* Header Container */
.recruitment-header {
    background: linear-gradient(135deg, #0056A2 0%, #003366 100%);
    color: white;
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

.recruitment-main {
    background: linear-gradient(135deg, #0056A2 0%, #003366 100%);
    color: white;
    /*min-height: 300px;*/
    position: relative;
    overflow: hidden;
}

/* Top Navigation */
.top-nav {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 40px;
    position: relative;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-img {
    height: 50px;
    width: 200px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Main Menu */
.main-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    color: #0056A2;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-item i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    background-color: rgba(0, 86, 162, 0.1);
    color: #003366;
    transform: translateY(-2px);
}

.menu-item:hover i {
    transform: scale(1.1);
}

.menu-item.active {
    background: linear-gradient(135deg, #0056A2 0%, #0077CC 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 86, 162, 0.3);
}

.menu-item.active:hover {
    background: linear-gradient(135deg, #0077CC 0%, #0056A2 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 86, 162, 0.4);
}

/* Burger Menu (Mobile) */
.burger-menu {
    display: none;
    background: transparent;
    border: none;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #0056A2;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 120px 40px;
}

.hero-section-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 60px 40px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Job Information */
.job-info {
    flex: 1;
    /*max-width: 650px;*/
    animation: fadeInUp 0.8s ease-out;
}

.job-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

.agency-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.job-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.0rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #E8F4FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.job-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    /*max-width: 550px;*/
}
	

/* Job Meta Information */
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.15);
    /*padding: 12px 20px;
    border-radius: 10px;
    */
    padding: 6px 8px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.meta-item:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.meta-item i {
    color: #FFF;
    /* color: #4FC3F7; */
    font-size: 18px;
}

.meta-item span {
    font-weight: 500;
    font-size: 15px;
}

/* Call to Action Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #00C853 0%, #00E676 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00E676 0%, #00C853 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 200, 83, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Hero Image/Illustration */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.2) 0%, rgba(0, 86, 162, 0.1) 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.floating-icon i {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.icon-1 {
    top: 20%;
    left: 10%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 107, 107, 0.3));
    animation-delay: 0s;
}

.icon-2 {
    top: 60%;
    right: 10%;
    background: linear-gradient(135deg, rgba(77, 182, 172, 0.2), rgba(77, 182, 172, 0.3));
    animation-delay: 2s;
}

.icon-3 {
    bottom: 20%;
    left: 35%;
    background: linear-gradient(135deg, rgba(249, 168, 212, 0.2), rgba(249, 168, 212, 0.3));
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .job-info {
        max-width: 800px;
    }
    
    .job-meta {
        justify-content: center;
    }
    
    .job-description {
        margin: 0 auto 35px auto;
    }
}

@media (max-width: 992px) {
    .job-title {
        font-size: 3rem;
    }
    
    .main-menu {
        gap: 15px;
    }
    
    .menu-item span {
        display: none;
    }
    
    .menu-item {
        padding: 12px;
        border-radius: 50%;
    }
    
    .menu-item i {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .top-nav {
        padding: 15px 20px;
    }
    
    .hero-section {
        padding: 40px 20px 100px 20px;
    }
    
    .job-title {
        font-size: 2.5rem;
    }
    
    .job-description {
        font-size: 1.1rem;
    }
    
    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        padding: 80px 30px 30px 30px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .main-menu.active {
        right: 0;
    }
    
    .menu-item {
        padding: 15px 20px;
        border-radius: 10px;
        justify-content: flex-start;
        color: #0056A2;
        border-radius: 10px;
    }
    
    .menu-item span {
        display: inline;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .image-container {
        width: 250px;
        height: 250px;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .job-title {
        font-size: 2rem;
    }
    
    .job-description {
        font-size: 1rem;
    }
    
    .job-meta {
        flex-direction: column;
        align-items: center;
    }
    
    .meta-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .wave-bottom svg {
        height: 80px;
    }
}









/* Footer Styles */
.recruitment-footer {
    background: linear-gradient(135deg, #003366 0%, #001F3F 100%);
    color: white;
    position: relative;
    margin-top: 0;
}

/* Footer Wave Top */
.wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* Main Footer Content */
.footer-main {
    padding: 80px 40px 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

/* Logo Section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo {
    height: 60px;
    width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.company-tagline {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 350px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer Menu Section */
.footer-menu-section {
    display: flex;
    flex-direction: column;
}

.footer-menu-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.footer-menu-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #00C853, #00E676);
    border-radius: 2px;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-menu-item a:link {
	color: #FFF;
	}

.footer-menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #00C853, #00E676);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding-left: 20px;
    transform: translateX(5px);
}

.footer-menu-item:hover::before {
    opacity: 1;
}

.footer-menu-item i:first-child {
    color: #4FC3F7;
    font-size: 16px;
    width: 20px;
}

.footer-menu-item span {
    flex: 1;
    font-size: 15px;
}

.link-icon {
    font-size: 12px;
    opacity: 0.7;
}

/* Contact Section */
.footer-contact-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.contact-item i {
    color: #00E676;
    font-size: 18px;
    margin-top: 2px;
    min-width: 24px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Newsletter */
.newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.newsletter h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: white;
}

.newsletter p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    border-color: #00E676;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.1);
}

.subscribe-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00C853 0%, #00E676 100%);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, #00E676 0%, #00C853 100%);
    transform: scale(1.05) rotate(10deg);
    box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Bottom Menu (Your requested items on right side) */
.footer-bottom-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    right: 120px; /* Position on the right side */
}

.bottom-menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.bottom-menu-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.bottom-menu-item i {
    font-size: 12px;
    color: #4FC3F7;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

/* Back to Top Button */
.back-to-top {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Footer */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-contact-section {
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px) {
    .footer-main {
        padding: 60px 30px 40px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-menu {
        position: static;
        justify-content: center;
    }
    
    .back-to-top {
        position: static;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 50px 20px 30px 20px;
    }
    
    .footer-bottom {
        padding: 20px;
    }
    
    .footer-bottom-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .separator {
        display: none;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .subscribe-btn {
        width: 100%;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .social-links {
        justify-content: center;
    }
    
    .footer-logo {
        align-self: center;
    }
    
    .company-tagline {
        text-align: center;
    }
    
    .footer-menu-title {
        text-align: center;
    }
    
    .footer-menu-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
}