/* ===========================
   Global Styles
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f4f7fc;
    color: #1b1b1b;
    line-height: 1.6;
}

img {
    max-width: 100%;
}

.container {
    width: 92%;
    max-width: 1280px;
    margin: auto;
}

/* ===========================
   HEADER
=========================== */
header {
    background: #ffffff;
    width: 100%;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-area img {
    height: 65px;
}

.logo-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.logo-text span {
    font-size: 13px;
    color: #4c4c4c;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav ul li a {
    text-decoration: none;
    font-weight: 500;
    color: #0d0d0d;
    transition: 0.3s ease;
}

nav ul li a:hover {
    color: #0073ff;
}

.nav-phone {
    font-weight: 600;
    color: #0073ff;
}

.mobile-menu {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
    padding-top: 120px;
    background: linear-gradient(135deg, #5bbdf5, #0e84ff);
    text-align: center;
    padding-bottom: 70px;
    color: white;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
}

.hero p {
    margin-top: 10px;
    font-size: 18px;
    opacity: 0.9;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-yellow {
    background: #ffc933;
    padding: 13px 28px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    color: #222;
    transition: 0.3s;
}

.btn-yellow:hover {
    background: #ffb600;
}

.btn-white {
    background: #ffffff;
    padding: 13px 28px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.hero-cards {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.card {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    width: 300px;
    border-radius: 18px;
    backdrop-filter: blur(10px);
    color: #fff;
    transition: .3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* ===========================
   JOB CATEGORIES
=========================== */
.jobs {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.job-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: .3s;
}

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

.job-card h3 {
    padding: 18px 20px 0;
    font-size: 20px;
    font-weight: 700;
}

.job-card p {
    padding: 8px 20px 20px;
    color: #555;
}

.btn-job {
    display: block;
    background: #ffc933;
    text-align: center;
    padding: 12px;
    font-weight: 600;
    text-decoration: none;
    color: #222;
}

.job-card:hover {
    transform: translateY(-6px);
}

/* ===========================
   ABOUT US
=========================== */
.about {
    padding: 80px 0;
    background: #f4f8ff;
    text-align: center;
}

.about-box {
    max-width: 750px;
    margin: auto;
}

.about-box h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ===========================
   CONTACT
=========================== */
.contact {
    padding: 80px 0;
    background: #072a7a;
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
}

.info-block {
    margin-top: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    border: none;
    background: #ffffff22;
    color: white;
    margin-bottom: 18px;
}

.contact-form textarea {
    height: 150px;
}

.form-btn {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* ===========================
   FOOTER
=========================== */
footer {
    background: #ce1d26;
    color: white;
    padding-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-about img {
    height: 60px;
}

.footer-bottom {
    margin-top: 30px;
    padding: 15px;
    text-align: center;
    background: #b0141d;
}

/* ===========================
   SCROLL ANIMATIONS
=========================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards;
}

.delay-1 { animation-delay: .2s; }
.delay-2 { animation-delay: .4s; }
.delay-3 { animation-delay: .6s; }
.delay-4 { animation-delay: .8s; }
.delay-5 { animation-delay: 1s; }

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {

    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        right: 10px;
        background: #fff;
        padding: 20px 30px;
        border-radius: 12px;
        flex-direction: column;
        gap: 18px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }

    .mobile-menu {
        display: block;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 34px;
    }
}

/* Smooth Fade + Slide Animation */
.animate-up {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.8s ease-out;
}

.animate-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Fade + Zoom */
.animate-zoom {
    opacity: 0;
    transform: scale(0.94);
    transition: all 0.7s ease-out;
}

.animate-zoom.show {
    opacity: 1;
    transform: scale(1);
}

.new-footer {
    background: #0a2342;
    color: #e4e9f2;
    padding: 60px 0 0px;
    
}

.footer-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-col a {
    display: block;
    color: #d9e4f2;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #ffc933;
}

.footer-logo {
    height: 60px;
    margin-bottom: 10px;
}

.footer-bottom {
    margin-top: 35px;
    text-align: center;
    padding: 18px 0;
    background: #081b32;
}
.job-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}
.btn-yellow:hover,
.btn-white:hover,
.btn-job:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}
.contact-form input:focus,
.contact-form textarea:focus {
    background: #ffffff33;
    outline: 2px solid #ffc933;
    transition: .3s;
}


header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
