/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== CSS VARIABLES FOR DYNAMIC SIZING ===== */
:root {
    --primary-color: #0066cc;
    --secondary-color: #003d7a;
    --accent-color: #00a8e8;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #666666;
    --bg-dark: #2c3e50;
    --bg-light: #f8f9fa;
    --border-color: #ddd;
    
    /* Dynamic header heights */
    --top-bar-height: 3.5rem;   /* 56px */
    --navbar-height: 9rem;      /* 144px for your large logo */
    --total-header-height: calc(var(--top-bar-height) + var(--navbar-height));
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOP CONTACT BAR (DYNAMIC) ===== */
.top-contact-bar {
    background: #1a1a1a;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
    min-height: var(--top-bar-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0;
}

.contact-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.contact-item:hover {
    color: #00a8e8;
}

.contact-item i {
    color: #00a8e8;
    font-size: 1rem;
}

.contact-item span {
    letter-spacing: 0.5px;
}

/* ===== MAIN NAVBAR (DYNAMIC) ===== */
.navbar {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: var(--top-bar-height);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    min-height: var(--navbar-height);
    display: flex;
    align-items: center;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    cursor: pointer;
}

.logo-img {
    height: 100px;
    width: auto;
    transition: transform 0.3s;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    color: var(--accent-color);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
}

.logo .tagline {
    color: var(--text-light);
    font-size: 1rem;
    letter-spacing: 3px;
    display: block;
    margin-top: 3px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.25rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* Navbar Right Section */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    color: white;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== MAIN CONTENT - DYNAMIC SPACING ===== */
.hero {
    position: relative;
    height: 100vh;
    margin-top: 0;
    padding-top: var(--total-header-height);
    overflow: hidden;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('images/careers.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    margin-top: 0;
    padding-top: calc(var(--total-header-height) + 50px);
    text-align: center;
    color: var(--text-light);
}

/* Hero Slider */
.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                      url('images/slide3.jpg');
}

.slide:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                      url('images/slide2.jpeg');
}

.slide:nth-child(3) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                      url('images/slide1.jpg');
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-light);
    width: 90%;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 40px;
    background: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-color);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 40px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--accent-color);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* Section Previews */
.section-preview {
    padding: 5rem 0;
}

.about-preview {
    background: var(--bg-light);
}

.preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.preview-text h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.preview-text p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.preview-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services-preview {
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.center-btn {
    text-align: center;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-section p a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section p a:hover {
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-directions-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: white !important;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-directions-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    color: white !important;
}

.footer-directions-link i {
    font-size: 0.9rem;
}

/* Additional Page Styles (keeping your existing styles) */
.page-header h1 {
    font-size: 3.5rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.content-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.column h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.column p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 5px;
    border-left: 4px solid var(--accent-color);
}

.value-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--text-gray);
}

/* Services Detail */
.services-detail {
    padding: 5rem 0;
    background: var(--bg-light);
}

.service-detail-item {
    background: white;
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-detail-item h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.service-detail-item p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-detail-item ul {
    list-style: none;
    margin-top: 1rem;
}

.service-detail-item ul li {
    padding: 0.8rem 0 0.8rem 2rem;
    color: var(--text-gray);
    position: relative;
}

.service-detail-item ul li:before {
    content: "▶";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Industries Section */
.industries-section {
    padding: 5rem 0;
    background: white;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.industry-card {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 2rem;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.industry-card:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

/* Careers Section */
.careers-intro {
    padding: 5rem 0;
    background: var(--bg-light);
}

.careers-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.careers-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.careers-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 5px;
    border-top: 4px solid var(--accent-color);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-gray);
}

/* Job Listings */
.openings-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.job-listing {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.job-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem; /* Dynamic gap that adapts */
    margin-bottom: 1.5rem;
}

.job-header h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 0;
    flex: 1 1 auto;
    min-width: 200px; /* Ensures title has minimum space */
}

.job-location {
    color: var(--text-gray);
    font-size: 0.95rem;
    white-space: nowrap; /* Prevents location from breaking awkwardly */
    flex: 0 0 auto;
}

.job-details p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.job-details p strong {
    color: var(--text-dark);
}

/* Application Section */
.application-section {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.application-section h2 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.application-content {
    max-width: 700px;
    margin: 0 auto;
}

.application-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.highlight-text {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
    margin: 1.5rem 0;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 4rem;
}

/* Contact Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.contact-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-card p strong {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-card a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: white;
}

.map-container {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Get Directions Button */
.directions-button-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 168, 232, 0.3);
}

.btn-directions:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 168, 232, 0.4);
}

.btn-directions i {
    font-size: 1.3rem;
}

.get-directions-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background: var(--accent-color);
    color: white !important;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 168, 232, 0.3);
}

.get-directions-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 232, 0.4);
    text-decoration: none;
}

.get-directions-link i {
    font-size: 1rem;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    :root {
        --top-bar-height: 3rem;
        --navbar-height: 7rem;
    }
    
    .logo-img {
        height: 70px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .logo .tagline {
        font-size: 0.8rem;
    }
    
    .nav-menu a {
        font-size: 1rem;
    }

    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn-directions {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 90%;
        max-width: 300px;
        justify-content: center;
    }
    
    .btn-directions i {
        font-size: 1.1rem;
    }
    
    .directions-button-wrapper {
        margin-top: 1.5rem;
    }

}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
    :root {
        --top-bar-height: 4rem;    /* Taller for wrapped content */
        --navbar-height: 6rem;     /* Smaller logo */
    }
    
    .top-contact-bar {
        padding: 0.5rem 0;
    }
    
    .contact-info {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .contact-item {
        font-size: 0.75rem;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .logo .tagline {
        font-size: 0.6rem;
    }
    
    .whatsapp-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        left: -100%;
        top: var(--total-header-height);
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
        left: 0;
    }
    
    .nav-menu li {
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .preview-content,
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-btn {
        padding: 10px 15px;
        font-size: 1.2rem;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }

    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .contact-card h3 {
        font-size: 1.1rem;
    }
    
    .contact-card p {
        font-size: 0.9rem;
    }
    
    .map-container iframe {
        height: 300px;
    }

    .btn-directions {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 90%;
        max-width: 300px;
        justify-content: center;
    }
    
    .btn-directions i {
        font-size: 1.1rem;
    }
    
    .directions-button-wrapper {
        margin-top: 1.5rem;
    }

    .get-directions-link {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        margin-top: 0.8rem;
    }
    
    .get-directions-link i {
        font-size: 0.9rem;
    }

    .footer-directions-link {
        padding: 0.4rem 0.9rem;
        font-size: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .footer-directions-link i {
        font-size: 0.85rem;
    }

    .job-listing {
        padding: 1.5rem;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .job-header h3 {
        font-size: 1.3rem;
    }
    
    .job-location {
        font-size: 0.9rem;
    }

}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}