*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#fff;
    color:#111;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

/* NAVBAR */

header{
    width:100%;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    position:fixed;
    top:0;
    z-index:1000;
}

.navbar{
    max-width:1300px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 30px;
}

.logo{
    font-size:30px;
    font-weight:700;
    color:#ff6600;
}

.logo span{
    color:#111;
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a{
    color:#111;
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color:#ff6600;
}

.track-btn{
    padding:12px 22px;
    border:none;
    background:#ff6600;
    color:white;
    border-radius:5px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.track-btn:hover{
    background:#e25600;
}

.track-btn2{
    padding:12px 22px;
    border:none;
    background:white;
    color:#ff6600;
    border-radius:5px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}


.track-btn2:hover{
    background:#e25600;
    color: white;
}
/* HERO */

.hero{
    width:100%;
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?q=80&w=1600&auto=format&fit=crop');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    padding:20px;
}

.hero-content{
    max-width:900px;
}

.hero h1{
    font-size:70px;
    margin-bottom:20px;
    line-height:1.1;
}

.hero p{
    font-size:20px;
    margin-bottom:35px;
    color:#eee;
}

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

.hero-buttons button{
    padding:16px 32px;
    border:none;
    border-radius:6px;
    font-size:16px;
    cursor:pointer;
    font-weight:600;
    transition:0.3s;
}

.primary-btn{
    background:#ff6600;
    color:white;
}

.primary-btn:hover{
    background:#e25600;
}

.secondary-btn{
    background:white;
    color:#111;
}

.secondary-btn:hover{
    background:#ddd;
}

/* TRACKING */

.tracking-section{
    width:100%;
    padding:80px 20px;
    background:#f7f7f7;
}

.tracking-box{
    max-width:1100px;
    margin:auto;
    background:white;
    padding:40px;
    border-radius:12px;
    box-shadow:0 5px 25px rgba(0,0,0,0.08);
    margin-top:-130px;
    position:relative;
    z-index:10;
}

.tracking-box h2{
    margin-bottom:25px;
    font-size:35px;
}

.tracking-form{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.tracking-form input{
    flex:1;
    min-width:250px;
    padding:18px;
    border:1px solid #ddd;
    border-radius:6px;
    font-size:16px;
}

.tracking-form button{
    padding:18px 35px;
    border:none;
    background:#ff6600;
    color:white;
    border-radius:6px;
    cursor:pointer;
    font-weight:600;
}

/* SERVICES */

.services{
    padding:100px 20px;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:45px;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
}

.service-grid{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:white;
    border-radius:12px;
    padding:35px;
    box-shadow:0 5px 25px rgba(0,0,0,0.07);
    transition:0.3s;
}

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

.service-card h3{
    margin:20px 0 15px;
}

.service-card p{
    color:#666;
    line-height:1.7;
}

.icon{
    font-size:50px;
}

/* STATS */

.stats{
    background:#111;
    color:white;
    padding:90px 20px;
}

.stats-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    text-align:center;
}

.stat h2{
    font-size:55px;
    color:#ff6600;
}

.stat p{
    margin-top:10px;
    font-size:18px;
}

/* ABOUT */

.about{
    padding:100px 20px;
}

.about-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:50px;
    align-items:center;
}

.about img{
    width:100%;
    border-radius:12px;
}

.about-text h2{
    font-size:45px;
    margin-bottom:20px;
}

.about-text p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

/* CTA */

.cta{
    background:#ff6600;
    color:white;
    padding:90px 20px;
    text-align:center;
}

.cta h2{
    font-size:50px;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
    line-height:1.8;
}

.cta button{
    padding:18px 35px;
    border:none;
    background:white;
    color:#111;
    font-weight:600;
    border-radius:6px;
    cursor:pointer;
}

/* FOOTER */

footer{
    background:#111;
    color:white;
    padding:70px 20px 30px;
}

.footer-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-column h3{
    margin-bottom:20px;
}

.footer-column p,
.footer-column a{
    color:#ccc;
    display:block;
    margin-bottom:12px;
}

.footer-bottom{
    text-align:center;
    margin-top:50px;
    border-top:1px solid #333;
    padding-top:20px;
    color:#aaa;
}

/* RESPONSIVE */

@media(max-width:768px){

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

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .tracking-box{
        margin-top:-70px;
    }

    .section-title h2{
        font-size:35px;
    }

    .about-text h2{
        font-size:35px;
    }

    .cta h2{
        font-size:35px;
    }
}

.table-title{
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
}

.tracking-table{
    width:100%;
    border-collapse:collapse;
    margin-bottom:25px;
    overflow:hidden;
    border-radius:8px;
}

.table-head{
    background:#ff6600;
    color:white;
}

.tracking-table th{
    padding:14px;
    text-align:left;
    font-size:14px;
}

.tracking-table td{
    padding:14px;
    background:white;
    border:1px solid #eee;
    font-size:14px;
}

.progress-wrapper{
    margin-top:20px;
}

.progress-bar{
    width:100%;
    height:14px;
    background:#ddd;
    border-radius:30px;
    overflow:hidden;
}

.progress-fill{
    width:70%;
    height:100%;
    background:#ff6600;
}

.progress-text{
    margin-top:10px;
    font-weight:600;
    color:#111;
}

.result-box{
    margin-top:30px;
    background:#f7f7f7;
    padding:25px;
    border-radius:8px;
    display:none;
}

@media(max-width:768px){

    .tracking-table{
        display:block;
        overflow-x:auto;
    }

}

.stats-box {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.add-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 22px;

    background:linear-gradient(
        135deg,
        #ff6b35,
        #ff4500
    );

    color:#fff;
    text-decoration:none;

    border-radius:10px;

    font-weight:600;
    font-size:14px;

    transition:all .3s ease;

    box-shadow:
    0 4px 12px rgba(255,69,0,.25);
}

.add-btn:hover{
    transform:translateY(-3px);

    box-shadow:
    0 8px 20px rgba(255,69,0,.35);
}

.logout-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 22px;

    background:#1f1f1f;
    color:white;

    text-decoration:none;

    border-radius:10px;

    font-weight:600;

    transition:.3s;
}

.logout-btn:hover{
    background:#000;
    transform:translateY(-3px);
}
