/* Root Variables */
:root {
    --primary-color: #1d566a;
    --secondary-color: #1d3c6a;
    --accent-color: #ffcc00;
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-muted: #6c757d;
    --background-light: #f9f9f9;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 15px;
    --card-padding: 2rem;
}

/* Loading Spinner */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--background-light);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Navbar Styling */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to right, #1a237e, #283593); /* Dark blue gradient */
    padding: 0 15px; /* Adjust padding to avoid increasing height */
    transition: all 0.3s ease;
    position: fixed; /* Fix the navbar at the top */
    top: 0; /* Stick to the top of the viewport */
    left: 0; /* Stick to the left edge */
    width: 100%; /* Stretch the navbar to full width */
    z-index: 1000; /* Ensure it stays above other elements */
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center content vertically */
}

.navbar-brand img {
    max-height: 70px; /* Ensure the logo fits within the navbar */
    width: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Space between logo and text */
}

.navbar-nav {
    margin-left: auto; /* Push the navigation links to the right */
    display: flex; /* Ensure proper alignment */
    align-items: center;
}

.nav-item .nav-link {
    color: white; /* White text color for links */
    font-size: 16px; /* Adjust font size */
    text-transform: uppercase; /* Optional: Make links uppercase */
    margin: 0 10px; /* Space between links */
    transition: color 0.3s ease;
}

.nav-item .nav-link:hover {
    color: #ffeb3b; /* Highlight link on hover */
}

.navbar-toggler {
    border: none; /* Remove border around toggler */
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
}


.navbar-brand {
    color: #ffffff !important;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffcc00;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #ffcc00 !important;
}

/* Breadcrumb Styling */
.breadcrumb-wrapper {
    background: var(--background-light);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 76px;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}


/* Hero Section */
.careers-hero {
    background: linear-gradient(to right, #1a237e, #283593);
    padding: 120px 0 60px;
    position: relative;
    color: #ffffff;
    margin-top: 120px; /* Adjust this value as needed */
}

.careers-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.careers-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
}


/* View Open Positions Button */
.view-positions-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ffcc00;
    color: #1a237e;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-positions-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


/* Hero Section Styling */
.careers-hero {
    background: linear-gradient(135deg, #1a237e, #283593);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    margin-top: 76px; /* Space for fixed navbar */
}

.hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-buttons .btn-primary {
    background-color: #ffcc00;
    border: none;
    color: #1a237e;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary:hover {
    background-color: #ffd700;
    transform: translateY(-2px);
}

.hero-buttons .btn-outline-light {
    border: 2px solid #ffffff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-outline-light:hover {
    background-color: #ffffff;
    color: #1a237e;
    transform: translateY(-2px);
}

.hero-image {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #ffffff;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .careers-hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .careers-hero {
        padding: 60px 0 40px;
    }
}


/* Values Section Styling */
.values-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(26, 35, 126, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(29, 108, 75, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.value-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    border-bottom-color: #ffcc00;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a237e, #283593);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.value-card h3 {
    color: #1a237e;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #666666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .value-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .value-card {
        margin-bottom: 1rem;
    }
}


/* What We Offer Section */
.what-we-offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.offer-card {
    background: var(--text-light);
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid transparent;
}

.offer-card:hover {
    transform: translateY(-10px);
    border-left-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.offer-card:hover .card-icon {
    transform: scale(1.1) translateY(-5px);
    color: var(--accent-color);
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.benefit-list i {
    color: var(--accent-color);
}


/* Current Openings Section */
.current-openings {
    padding: 80px 0;
    background: #f8f9fa;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    background: #ffffff;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: #1a237e;
    color: #ffffff;
}

/* Job Card Styling */
.job-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.job-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.job-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: #e8f0fe;
    color: #1a237e;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.tech-stack {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tech-tag {
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.apply-btn {
    background: #4285f4;
    color: #ffffff;
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.posted-date {
    color: #666;
    font-size: 0.9rem;
}

/* Perfect Fit Section */
.perfect-fit {
    background: linear-gradient(135deg, #1a237e, #283593);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.perfect-fit h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.perfect-fit p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-team-btn {
    background: #4285f4;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-team-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .filter-buttons {
        flex-wrap: wrap;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .card-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}
/* Application Process */
.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    color: var(--text-light);
    text-align: center;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer h5 {
    margin-bottom: 1.5rem;
    position: relative;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Floating Apply Button */
.floating-apply-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1000;
}

.floating-apply-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .job-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .footer [class^="col-"] {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .floating-apply-btn {
        bottom: 20px;
        right: 20px;
        padding: 0.75rem 1.5rem;
    }
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

