@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    --primary-color: #041E42;
    --secondary-color: #FDB913;
    --text-color: #333333;
    --bg-light: #F8F9FA;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}

.top-bar .social-icons a {
    margin-right: 10px;
    font-size: 1rem;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    background: white;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-brand img {
    height: 50px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1.1;
    letter-spacing: 1px;
}

.brand-subtitle {
    color: var(--secondary-color);
    font-size: 0.7rem;
    font-weight: 600;
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 10px 15px !important;
}

.nav-link.active {
    border-bottom: 2px solid var(--secondary-color);
}

.btn-contact {
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-contact:hover {
    background-color: #031530;
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(4,30,66,0.9) 0%, rgba(4,30,66,0.7) 50%, rgba(4,30,66,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--secondary-color);
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-outline-light-custom {
    border: 1px solid white;
    color: white;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s;
    background: transparent;
}

.btn-outline-light-custom:hover {
    background: white;
    color: var(--primary-color);
}

/* Floating Card */
.floating-card {
    background-color: rgba(4, 30, 66, 0.9);
    border-radius: 15px;
    padding: 30px;
    color: white;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.floating-card .icon-wrapper {
    font-size: 3rem;
    color: var(--secondary-color);
}

.floating-card h4 {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.floating-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Careers Section */
.careers-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 2rem;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-subtitle {
    color: #666;
    margin-top: 15px;
}

.career-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.career-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.career-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.career-info h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.career-info p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Features Section */
.features-section {
    padding: 40px 0;
    border-top: 1px solid #eee;
    background: white;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    font-size: 2rem;
    color: var(--secondary-color);
}

.feature-text h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0;
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--primary-color);
    padding: 30px 0;
    color: white;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.newsletter-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsletter-icon {
    font-size: 2.5rem;
}

.newsletter-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.newsletter-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: rgba(255,255,255,0.8);
}

.btn-register {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 30px;
    padding: 10px 30px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-register:hover {
    background-color: #e5a710;
}
