/* Base Styles */
:where([class^="ri-"])::before { content: "\f3c2"; }

body {
    font-family: 'Inter', sans-serif;
}

/* Header & Navigation */
.header-container {
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 50;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.header-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.header-scrolled .logo-image {
    height: 40px;
    margin-bottom: 4px;
}

.header-scrolled .logo-text {
    font-size: 0.75rem;
}

/* Logo Styles */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 12px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95));
}

.logo-image {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: 8px;
    filter: drop-shadow(0 4px 6px rgba(0, 86, 179, 0.15));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    display: block;
    text-align: center;
    color: #0056b3;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(120deg, #0056b3, #00a0e9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Navigation Styles */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #0056b3;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #0056b3;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #0056b3;
}

/* Logo hover effects */
.logo-container:hover {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), #ffffff);
    box-shadow: 0 8px 16px rgba(0, 86, 179, 0.08);
    transform: translateY(-2px);
}

.logo-container:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 8px rgba(0, 86, 179, 0.2));
}

.logo-container:hover .logo-text {
    background: linear-gradient(120deg, #00a0e9, #0056b3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.14em;
}

/* Mobile Navigation Active State */
#mobile-menu a.active {
    color: #0056b3;
    font-weight: 600;
}

/* Back to Top Button */
#back-to-top {
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#back-to-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.5);
}

#back-to-top:active {
    transform: translateY(-2px) scale(0.98);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5rem;
}

.hero-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
.section-subtitle {
    color: #0056b3;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

/* Benefit Cards */
.benefit-card {
    background-color: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 86, 179, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0056b3, #00a0e9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Job Cards */
.job-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 86, 179, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    margin-bottom: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 86, 179, 0.08);
    position: relative;
    backdrop-filter: blur(10px);
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #0056b3 0%, #00a0e9 50%, #0056b3 100%);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 2px 8px rgba(0, 86, 179, 0.3);
}

.job-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 25px 50px rgba(0, 86, 179, 0.15), 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 86, 179, 0.2);
}

.job-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.02) 0%, rgba(0, 160, 233, 0.01) 100%);
    border-radius: 24px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.job-card:hover::after {
    opacity: 1;
}

.job-header {
    padding: 2.5rem 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 251, 252, 0.8) 100%);
    border-bottom: 1px solid rgba(0, 86, 179, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    backdrop-filter: blur(5px);
}

.job-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.job-type {
    background: linear-gradient(135deg, #0056b3 0%, #00a0e9 50%, #0056b3 100%);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 16px rgba(0, 86, 179, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.job-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.job-card:hover .job-type::before {
    left: 100%;
}

.job-details {
    padding: 2rem 2.5rem 2.5rem;
    position: relative;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.job-meta div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 86, 179, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.job-meta div:hover {
    background: rgba(0, 86, 179, 0.1);
    transform: translateY(-2px);
}

.job-meta div i {
    color: #0056b3;
    font-size: 1rem;
}

.job-description {
    margin-bottom: 2rem;
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.02) 0%, rgba(0, 160, 233, 0.01) 100%);
    border-radius: 16px;
    border-left: 4px solid #0056b3;
    position: relative;
}

.job-description::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 2rem;
    color: #0056b3;
    opacity: 0.3;
    font-family: serif;
}

.job-requirements h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-requirements h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #0056b3, #00a0e9);
    border-radius: 2px;
}

.job-requirements ul {
    list-style: none;
    padding-left: 0;
    color: #4b5563;
    margin-bottom: 2rem;
}

.job-requirements li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.job-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0056b3;
    font-weight: bold;
    font-size: 1rem;
}

.job-footer {
    padding: 0 2.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(250, 251, 252, 0.3) 100%);
    margin: 0 -2.5rem -2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 86, 179, 0.08);
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding-left: 3rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #0056b3, #00a0e9);
    transform: translateX(-50%);
}

.process-step {
    position: relative;
    margin-bottom: 3rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #0056b3, #00a0e9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

.process-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.process-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Buttons */
.btn-primary, .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #0056b3 0%, #00a0e9 50%, #0056b3 100%);
    color: white;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0, 86, 179, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary::before, .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before, .cta-button.primary:hover::before {
    left: 100%;
}

.btn-primary:hover, .cta-button.primary:hover {
    background: linear-gradient(135deg, #004590 0%, #0090d0 50%, #004590 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary i, .cta-button i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i, .cta-button:hover i {
    transform: translateX(3px);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Footer Section */
.footer-bg {
    background-color: #111827;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-social {
    position: relative;
    transition: all 0.3s ease;
}

.footer-social:hover {
    transform: translateY(-5px);
}

.footer-social:hover > div {
    box-shadow: 0 0 15px rgba(0, 86, 179, 0.4);
}

.footer-col h3 {
    display: inline-block;
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.footer-link {
    display: flex;
    align-items: center;
    color: #9ca3af;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-link:hover {
    color: white;
    transform: translateX(3px);
}

.footer-link i {
    color: #0056b3;
    transition: all 0.3s ease;
}

/* Animated grid pattern */
@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

#footer-grid path {
    stroke-dasharray: 40;
    stroke-dashoffset: 80;
    animation: dash 15s linear infinite;
}

@keyframes dash {
    to { stroke-dashoffset: 0; }
}

/* View Details Button */
.btn-view-details {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.05) 0%, rgba(0, 160, 233, 0.05) 100%);
    color: #0056b3;
    font-weight: 600;
    border: 2px solid rgba(0, 86, 179, 0.2);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.btn-view-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 86, 179, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-view-details:hover::before {
    left: 100%;
}

.btn-view-details:hover {
    background: linear-gradient(135deg, #0056b3 0%, #00a0e9 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.3);
    border-color: transparent;
}

.btn-view-details i {
    transition: transform 0.3s ease;
}

.btn-view-details:hover i {
    transform: translateX(3px);
}

/* Collapsed Job Requirements */
.job-requirements.collapsed {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: all 0.4s ease;
}

.job-requirements.expanded {
    max-height: 1000px;
    opacity: 1;
    margin-top: 1.5rem;
    transition: all 0.5s ease;
}

.job-requirements {
    transition: all 0.4s ease;
}

/* Modal Styles */
#applicationModal {
    animation: fadeIn 0.3s ease;
}

#applicationModal .bg-white {
    animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .process-timeline {
        padding-left: 2.5rem;
    }
    
    .process-number {
        left: -2.5rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .job-footer {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-view-details,
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
    

}