*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body{
    background: #f5f5f5;
}
/* Navbar */
.navigatio_bar{
    width: 100%;
    background: linear-gradient(135deg, #ff5722, #ff9800);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.nav{
    max-width: 1200px;
    margin: auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    padding: 5px;
    object-fit: cover;
}

/* Menu */

.nav_menu{
    display: flex;
    gap: 30px;
    list-style: none;
}
.nav_menu li {
    color: white;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

a{
    text-decoration: none;
    color: white;
}
.nav_menu li:hover{
    color: #fff3cd;
}

.nav_menu li::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: white;
    transition: 0.3s;
}

.nav_menu li:hover::after{
    width: 100%;
}

/* Hamburger */

.menu-toggle{
    display: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

/* Mobile View */

@media(max-width:768px){

    .nav{
        padding: 15px;
    }

    .nav img{
        width: 60px;
        height: 60px;
    }

    .menu-toggle{
        display: block;
    }
.content {
    display:none;
}
    .nav_menu{
        display: none;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: #ff5722;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }

    .nav_menu.active{
        display: flex;
    }

    .nav_menu li{
        padding: 18px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .nav_menu li:last-child{
        border-bottom: none;
    }
}

.content{
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ),
    url("https://images.unsplash.com/photo-1584515933487-779824d29309?w=1600")
    center/cover no-repeat;
    color: white;
}

.content h1{
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
    animation: slideDown 1.2s ease;
}

.content p{
    font-size: 1.4rem;
    max-width: 700px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
    animation-delay: 0.8s;
}

/* Animations */

@keyframes slideDown{
    from{
        opacity: 0;
        transform: translateY(-80px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn{
    from{
        opacity: 0;
        transform: translateY(30px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */

@media(max-width:768px){

    .content h1{
        font-size: 2rem;
    }

    .content p{
        font-size: 1rem;
    }
}
.apply-btn{
    margin-top: 30px;
    padding: 14px 35px;
    background: #ff5722;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.4s;
    animation: fadeIn 2s ease forwards;
}

.apply-btn:hover{
    background: #ff9800;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.job-options{
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.job-card{
    width: 320px;
    background: rgba(255,255,255,0.95);
    color: #333;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: 0.4s;
    animation: fadeUp 1s ease;
}

.job-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.job-card h2{
    color: #ff5722;
    margin-bottom: 15px;
}

.job-card p{
    color: #666;
    margin-bottom: 20px;
    opacity: 1;
}

.job-card button{
    background: linear-gradient(135deg,#ff5722,#ff9800);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}

.job-card button:hover{
    transform: scale(1.05);
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){
    .job-card{
        width:90%;
    }
}
.section-title{
    text-align:center;
    font-size:48px;
    color:orangered;
    margin-bottom:15px;
}

.section-subtitle{
    text-align:center;
    font-size:20px;
    color:#666;
    margin-bottom:70px;
}
.services-section{
    width: 90%;
    max-width: 1200px;
    margin: 80px auto;
}

.service-box{
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 100px;
    animation: fadeUp 1s ease;
}

.reverse{
    flex-direction: row-reverse;
}

.service-image{
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
}

.service-image img{
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.5s;
}

.service-image:hover img{
    transform: scale(1.08);
}

.service-content{
    flex: 1;
}

.service-content h2{
    font-size: 38px;
    color: #ff5722;
    margin-bottom: 20px;
}

.service-content p{
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.service-content ul{
    list-style: none;
}

.service-content ul li{
    padding: 10px 0;
    font-size: 17px;
    color: #333;
}

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(60px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width:768px){

    .service-box,
    .reverse{
        flex-direction: column;
    }

    .service-content h2{
        font-size: 28px;
        text-align: center;
    }

    .service-content p{
        text-align: center;
    }

    .service-image img{
        height: 280px;
    }
}

.footer{
    background: #1f2937;
    color: white;
    margin-top: 80px;
}

.footer-container{
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-box{
    flex: 1;
    min-width: 250px;
}

.footer-box h2,
.footer-box h3{
    margin-bottom: 20px;
    color: #ff9800;
}

.footer-box p{
    line-height: 1.8;
    color: #ddd;
}

.scanner{
    width: 180px;
    height: 180px;
    background: white;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.scan-text{
    font-size: 15px;
}

.footer-bottom{
    text-align: center;
    padding: 20px;
    background: #111827;
    border-top: 1px solid rgba(255,255,255,0.1);
}