/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Brand Colors */
    --primary-blue: #005D78;
    --secondary-blue: #0a7a96;
    --light-blue: #1a9bb8;
    
    /* Accent Colors */
    --gold: #AF8F29;
    --dark-gold: #8a6f1f;
    --light-gold: #fbbf24;
    
    /* Neutral Colors */
    --dark-gray: #333;
    --medium-gray: #6b7280;
    --light-gray: #d1d5db;
    --very-light-gray: #f8fafc;
    --white: #ffffff;
    
    /* Dark Theme Colors */
    --dark-bg: #0f172a;
    --medium-dark: #374151;
    --light-text-dark: #d1d5db;
    
    /* Status Colors */
    --success: #10b981;
    --error: #ef4444;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.nav-logo h2 {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.nav-logo a {
    text-decoration: none;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
    text-align: left;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link.active {
    color: var(--primary-blue);
}

.apply-btn {
    background: var(--gold);
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.apply-btn:hover {
    background: var(--dark-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--light-blue) 100%);
    color: var(--white);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(175, 143, 41, 0.3);
}

.cta-button:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(175, 143, 41, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.about-cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* Locations Section */
.locations {
    padding: 80px 0;
    background: var(--very-light-gray);
}

.locations h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 1rem;
}

.locations p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.location-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.location-icon i {
    font-size: 1.5rem;
    color: white;
}

.location-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.location-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.image-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.top-left {
    grid-column: 1;
    grid-row: 1;
}

.top-right {
    grid-column: 2;
    grid-row: 1;
}

.bottom-center {
    grid-column: 1 / 3;
    grid-row: 2;
    max-width: 300px;
    margin: 0 auto;
}

.hero-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem 1rem 1rem;
    text-align: center;
}

.image-overlay h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.image-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 1.5rem;
}

.about > .container > p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: var(--very-light-gray);
    border: 1px solid var(--light-gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Opportunities Section */
.opportunities {
    padding: 80px 0;
    background: var(--very-light-gray);
}

.opportunities h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 3rem;
}

.opportunities-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.job-listings {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.job-card-listing {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    min-height: 200px;
}

.job-card-listing:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.job-image {
    position: relative;
    width: 300px;
    flex-shrink: 0;
}

.job-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.job-type-badge {
    background: var(--gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(175, 143, 41, 0.3);
}

.job-info {
    flex: 1;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.job-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.job-icon i {
    font-size: 1.5rem;
    color: white;
}

.job-details {
    flex: 1;
    text-align: left;
}

.job-details h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.blue-box {
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.job-location {
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.job-description {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.job-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.job-experience{
    background: var(--very-light-gray);
    color: var(--medium-gray);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.job-card .job-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.job-card .job-icon i {
    font-size: 1.5rem;
    color: white;
}

.job-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}


.job-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.company-updates {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
    text-align: center;
}

.company-updates h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.company-updates p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.explore-btn {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.explore-btn:hover {
    background: var(--dark-gold);
}

/* Why Join Us Section */
.why-join {
    padding: 80px 0;
    background: white;
}

.why-join h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 1.5rem;
}

.why-join > .container > p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item.top-left {
    grid-column: 1;
    grid-row: 1;
}

.benefit-item.top-right {
    grid-column: 2;
    grid-row: 1;
}

.benefit-item.bottom-center {
    grid-column: 1 / 3;
    grid-row: 2;
    max-width: 400px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Career Benefits Section with Images */
.career-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.career-benefit-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.career-benefit-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.career-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.career-benefit-item:hover .career-img {
    transform: scale(1.05);
}

.career-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 93, 120, 0.8), rgba(26, 155, 184, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.career-benefit-item:hover .career-overlay {
    opacity: 1;
}

.career-overlay i {
    font-size: 3rem;
    color: white;
}

.career-benefit-content {
    padding: 2rem;
}

.career-benefit-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.career-benefit-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.benefit-list i {
    color: var(--success);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--very-light-gray);
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 1rem;
}

.contact h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--medium-gray);
    text-align: center;
    margin-bottom: 1rem;
}

.contact > .container > p {
    color: var(--medium-gray);
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
    text-align: center;
}

.contact .contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact .contact-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.contact .contact-details p {
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
}

.contact .contact-details a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact .contact-details a:hover {
    text-decoration: underline;
}

.contact .hours {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-top: 0.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    text-decoration: none;
}

.contact .social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.contact .social-link:hover {
    background: var(--secondary-blue);
}

.social-link i {
    color: white !important;
    font-size: 1.2rem;
    filter: none !important;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--light-text-dark);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--light-text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--medium-dark);
    padding-top: 2rem;
    text-align: center;
    color: var(--light-text-dark);
}

/* Careers Page Specific Styles */
.careers-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--light-blue) 100%);
    color: white;
    text-align: center;
}

/* Job Detail Pages */
.job-hero {
    padding: 120px 0 80px;
    background: var(--very-light-gray);
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.job-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.job-hero-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hero-job-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.job-hero-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.job-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: stretch;
}

.job-hero-meta span {
    background: var(--primary-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    width: fit-content;
    min-width: fit-content;
}

.job-hero-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.job-details-section {
    padding: 80px 0;
    background: white;
}

.job-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.job-main-content {
    max-width: 800px;
    text-align: left;
}

.job-section {
    margin-bottom: 3rem;
}

.job-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

.job-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 2rem 0 1rem;
}

.job-section p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.job-responsibilities,
.job-skills,
.job-requirements {
    list-style: none;
    padding: 0;
}

.job-responsibilities ul,
.job-skills ul,
.job-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.job-responsibilities li,
.job-skills li,
.job-requirements li {
    color: var(--medium-gray);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.job-responsibilities ul li,
.job-skills ul li,
.job-requirements ul li {
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.job-responsibilities li::before,
.job-skills li::before,
.job-requirements li::before {
    content: "•";
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.job-responsibilities ul li::before,
.job-skills ul li::before,
.job-requirements ul li::before {
    content: "•";
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.job-skills li strong {
    color: var(--dark-gray);
}

.responsibility-section {
    margin-bottom: 2rem;
}

.job-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.job-sidebar-card {
    background: var(--very-light-gray);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--light-gray);
}

.job-sidebar-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.job-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.job-detail-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.job-detail-item strong {
    color: var(--dark-gray);
    font-weight: 600;
    display: block;
    margin-bottom: 0.2rem;
}

.job-detail-item p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 0.9rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--medium-gray);
}

.benefits-list li::before {
    content: "•";
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.apply-section {
    padding: 80px 0;
    background: var(--very-light-gray);
    text-align: center;
}

.apply-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.apply-content p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.apply-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.apply-button.primary {
    background: var(--gold);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(175, 143, 41, 0.3);
}

.apply-button.primary:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(175, 143, 41, 0.4);
    text-decoration: none;
}

.apply-button.secondary {
    background: transparent;
    color: var(--primary-blue);
    padding: 15px 30px;
    text-decoration: none;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.apply-button.secondary:hover {
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
}

.apply-note {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-style: italic;
}

/* Application Form Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 2rem;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 0.7;
}

.application-form {
    padding: 2rem;
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section h3 {
    color: var(--dark-gray);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--dark-gray);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 93, 120, 0.1);
}

.form-group small {
    color: var(--medium-gray);
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: white;
    box-shadow: 0 4px 14px rgba(175, 143, 41, 0.3);
}

.btn-primary:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(175, 143, 41, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
}

/* File Upload Styling */
.form-group input[type="file"] {
    padding: 0.5rem;
    border: 2px dashed var(--light-gray);
    background-color: var(--very-light-gray);
    cursor: pointer;
}

.form-group input[type="file"]:hover {
    border-color: var(--primary-blue);
    background-color: rgba(0, 93, 120, 0.05);
}

/* Success Message */
.success-message {
    background: var(--success);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
    display: none;
}

/* Error Message */
.error-message {
    background: var(--error);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
    display: none;
}

.careers-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.careers-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Careers Page Job Listings */
.job-listings-section {
    padding: 80px 0;
    background: white;
}

.job-listings-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Department Sections */
.department-section {
    margin-bottom: 2rem;
    background: var(--very-light-gray);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--light-gray);
    transition: box-shadow 0.3s ease;
}

.department-section:last-child {
    margin-bottom: 0;
}

.department-section:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.department-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 2rem;
    cursor: pointer;
    user-select: none;
    background: white;
    border-bottom: 2px solid var(--light-gray);
    transition: background 0.3s ease;
}

.department-header:hover {
    background: var(--very-light-gray);
}

.department-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.department-header-left i.fas.fa-briefcase,
.department-header-left i.fas.fa-handshake {
    font-size: 2rem;
    color: var(--primary-blue);
    background: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.department-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
}

.department-chevron {
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.department-header.active {
    background: var(--very-light-gray);
    border-bottom: 3px solid var(--gold);
}

.department-header.active .department-chevron {
    transform: rotate(180deg);
}

.department-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.4s ease-out, opacity 0.3s ease;
    padding: 0 2rem;
    opacity: 0;
}

.department-content.active {
    max-height: 5000px;
    padding: 2rem;
    opacity: 1;
    transition: max-height 0.5s ease-in, padding 0.4s ease-in, opacity 0.4s ease 0.1s;
}

.department-content.collapsed {
    max-height: 0;
    padding: 0 2rem;
    opacity: 0;
}

.department-content .job-listings {
    padding: 0;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.job-listings {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.department-section .job-listings {
    padding: 0;
}

.job-card.detailed {
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.job-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.job-header .job-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.job-header .job-icon i {
    font-size: 2rem;
    color: white;
}

.job-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-meta span {
    background: var(--very-light-gray);
    color: var(--medium-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.job-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 2rem 0 1rem;
}

.job-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--medium-gray);
    margin: 1.5rem 0 0.5rem;
}

.job-content p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.job-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.job-content li {
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.job-content li strong {
    color: var(--dark-gray);
}

.responsibility-section {
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin: 0;
}

.apply-section {
    background: var(--very-light-gray);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
    border: 1px solid var(--light-gray);
}

.apply-section p {
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

.apply-section a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.apply-section a:hover {
    text-decoration: underline;
}

.apply-button {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(175, 143, 41, 0.3);
    margin-top: 1rem;
}

.apply-button:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(175, 143, 41, 0.4);
    text-decoration: none;
}

/* About Us Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.about-hero-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.company-overview {
    padding: 80px 0;
    background: var(--very-light-gray);
}

.overview-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.stats-grid .stat-item:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 200px;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.overview-images {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-grid-about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 600px;
}

.about-image-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.about-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.about-image-item:hover .image-caption {
    transform: translateY(0);
}

.image-caption h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: white;
}

.image-caption p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    color: white;
}

.mission-values {
    padding: 80px 0;
    background: white;
}

.mission-values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.value-card {
    padding: 2rem;
    background: var(--very-light-gray);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.services-section {
    padding: 80px 0;
    background: var(--very-light-gray);
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--medium-gray);
}

.service-features li::before {
    content: "•";
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.why-choose-us {
    padding: 80px 0;
    background: white;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.choose-item {
    text-align: center;
    padding: 2rem;
}

.choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.choose-icon i {
    font-size: 2rem;
    color: white;
}

.choose-item h3 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.choose-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.choose-message {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--very-light-gray);
    border-radius: 12px;
}

.choose-message p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--dark-gray);
    font-weight: 500;
    margin: 0;
}

.team-section {
    padding: 80px 0;
    background: var(--very-light-gray);
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

.team-member.ceo {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 300px;
    margin-bottom: 2rem;
    height: 400px;
    min-height: 400px;
}

.team-member:nth-child(2) {
    grid-column: 1;
}

.team-member:nth-child(3) {
    grid-column: 2;
}

.team-member:nth-child(4) {
    grid-column: 3;
}

.team-member:nth-child(5) {
    grid-column: 4;
}

.team-member:nth-child(6) {
    grid-column: 5;
}

.team-member.ceo .member-image {
    border: 4px solid var(--gold);
    height: 280px;
}

.team-member.ceo .member-img {
    object-fit: contain;
    object-position: center;
}

.team-member.ceo .member-info {
    padding: 1.2rem 0.5rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 350px;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.member-image {
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 1rem 0.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100px;
}

.member-info h3 {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.member-info p {
    color: var(--medium-gray);
    line-height: 1.4;
    font-size: 0.9rem;
    margin: 0;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
    text-align: center;
}

.cta-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-header p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.social-link i {
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.cta-button.primary {
    background: var(--gold);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button.primary:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(175, 143, 41, 0.4);
    text-decoration: none;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary-blue);
    text-decoration: none;
}

/* Responsive Design for About Us Page */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .image-grid-about {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-img {
        height: 250px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
        max-width: 600px;
    }
    
    .team-member.ceo {
        grid-column: 1 / -1;
        max-width: 100%;
        margin-bottom: 1rem;
        height: 320px;
    }
    
    .team-member.ceo .member-image {
        height: 220px;
    }
    
    .team-member {
        height: 280px;
        min-height: 280px;
    }
    
    .member-image {
        height: 180px;
        flex-shrink: 0;
    }
    
    .member-info {
        padding: 0.8rem 0.5rem;
        min-height: 100px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .member-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .member-info p {
        font-size: 0.85rem;
        line-height: 1.3;
        margin: 0;
    }
    
    .team-member:nth-child(2) {
        grid-column: 1;
    }
    
    .team-member:nth-child(3) {
        grid-column: 2;
    }
    
    .team-member:nth-child(4) {
        grid-column: 3;
    }
    
    .team-member:nth-child(5) {
        grid-column: 1;
        justify-self: center;
    }
    
    .team-member:nth-child(6) {
        grid-column: 2;
        justify-self: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
}

/* Focus States for Accessibility */
*:focus {
    outline: 2px solid var(--light-gold);
    outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--light-gold);
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .image-grid {
        max-width: 400px;
        gap: 1rem;
    }
    
    .hero-card-image {
        height: 150px;
    }
    
    .image-overlay {
        padding: 1rem 0.5rem 0.5rem;
    }
    
    .image-overlay h3 {
        font-size: 1rem;
    }
    
    .image-overlay p {
        font-size: 0.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .opportunities-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .job-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .job-meta {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center !important;
    }
    
    .logo-img {
        height: 60px;
        max-width: 200px;
    }
    
    .footer-logo-img {
        height: 80px;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .about h2,
    .opportunities h2,
    .why-join h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .careers-hero h1 {
        font-size: 2.5rem;
    }
    
    .job-title h2 {
        font-size: 1.5rem;
    }
    
    .feature-card,
    .job-card,
    .contact-item {
        padding: 1.5rem;
    }
    
    .logo-img {
        height: 50px;
        max-width: 150px;
    }
    
    .footer-logo-img {
        height: 70px;
        max-width: 200px;
    }
    
    .image-grid {
        max-width: 350px;
        gap: 0.8rem;
    }
    
    .hero-card-image {
        height: 120px;
    }
    
    .bottom-center {
        max-width: 250px;
    }
    
    .job-card-listing {
        flex-direction: column;
        min-height: auto;
    }
    
    .job-image {
        width: 100%;
        height: 200px;
    }
    
    .department-header {
        flex-direction: row;
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .department-header-left {
        flex: 1;
    }
    
    .department-header h3 {
        font-size: 1.5rem;
    }
    
    .department-content.active {
        padding: 1.5rem 1rem;
    }
    
    .department-content {
        padding: 0 1rem;
    }
    
    .job-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .job-hero-meta span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        width: fit-content;
        min-width: fit-content;
    }
    
    .job-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .apply-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2rem;
        max-width: 500px;
    }
    
    .benefit-item.top-left,
    .benefit-item.top-right,
    .benefit-item.bottom-center {
        grid-column: 1;
        grid-row: auto;
        max-width: none;
        margin: 0;
    }
    
    .career-benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .career-benefit-image {
        height: 200px;
    }
    
    .career-benefit-content {
        padding: 1.5rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .application-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }
}

