@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Cairo',sans-serif;
}

body{
    background:#f8fafc;
    color:#1e293b;
    line-height:1.7;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* Header */

.header{
    background:#fff;
    border-bottom:1px solid #e5e7eb;
    position:sticky;
    top:0;
    z-index:1000;
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:80px;
    width:auto;
    display:block;
}

.navbar{
    display:flex;
    align-items:center;
    gap:25px;
}

.navbar a{
    text-decoration:none;
    color:#334155;
    font-weight:600;
    transition:.3s;
}

.navbar a:hover{
    color:#2563eb;
}

/* Hero */

.hero{
    padding:80px 0 40px;
}

.hero-content{
    text-align:center;
}

.hero h1{
    font-size:52px;
    margin-bottom:20px;
}

.hero p{
    max-width:700px;
    margin:auto;
    color:#64748b;
    font-size:20px;
}

.hero-buttons{
    margin-top:30px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.btn{
    padding:14px 28px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
}

.btn-primary{
    background:#2563eb;
    color:#fff;
}

.btn-secondary{
    background:#fff;
    color:#2563eb;
    border:1px solid #2563eb;
}

/* Banner */

.banner-section{
    text-align:center;
    margin:30px auto 60px;
}

.banner-section img{
    width:100%;
    max-width:900px;
    height:auto;
    display:block;
    margin:auto;
}

/* Pages */

.page{
    padding:80px 0;
}

.page-title{
    text-align:center;
    font-size:40px;
    margin-bottom:15px;
}

.page-desc{
    text-align:center;
    color:#64748b;
    margin-bottom:40px;
}

/* Cards */

.card{
    background:#fff;
    border-radius:15px;
    padding:25px;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.card h3{
    margin-bottom:10px;
}

/* Services */

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
    margin-top:40px;
}

.service-box{
    background:#fff;
    padding:30px;
    border-radius:16px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
    transition:.3s;
}

.service-box:hover{
    transform:translateY(-5px);
}

.service-box h3{
    margin-bottom:15px;
    font-size:22px;
}

.service-box p{
    color:#64748b;
}

/* About */

.about-box{
    background:#fff;
    padding:40px;
    border-radius:16px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
    max-width:900px;
    margin:auto;
}

.about-box h2{
    margin-top:25px;
    margin-bottom:10px;
    color:#2563eb;
}

.about-box p{
    color:#475569;
    line-height:2;
}

/* Tracking */

.tracking-form{
    max-width:600px;
    margin:auto;
    display:flex;
    gap:10px;
}

.tracking-form input{
    flex:1;
    padding:15px;
    border:1px solid #d1d5db;
    border-radius:10px;
}

.tracking-form button{
    border:none;
    cursor:pointer;
}

.tracking-result{
    margin-top:40px;
    background:#fff;
    padding:30px;
    border-radius:16px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
    max-width:700px;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
}

.tracking-result h3{
    margin-bottom:15px;
    color:#2563eb;
}

.register-box{
    max-width:700px;
    margin:auto;
    background:#fff;
    padding:35px;
    border-radius:16px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.register-box form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.register-box input,
.register-box textarea{
    width:100%;
    padding:15px;
    border:1px solid #d1d5db;
    border-radius:10px;
    font-size:15px;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:25px;
}

.contact-card,
.contact-form-box{
    background:#fff;
    padding:30px;
    border-radius:16px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    width:75px;
    height:75px;
    background:#25D366;
    border:5px solid #fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 8px 25px rgba(0,0,0,.25);
    z-index:9999;
}

.whatsapp-float img{
    width:40px;
    height:40px;
}

@media(max-width:768px){

    .header .container{
        flex-direction:column;
        gap:15px;
    }

    .logo img{
        height:65px;
    }

    .navbar{
        flex-wrap:wrap;
        justify-content:center;
        gap:12px;
    }

    .hero h1{
        font-size:32px;
    }

    .hero p{
        font-size:16px;
    }

    .tracking-form{
        flex-direction:column;
    }

    .btn{
        width:100%;
        text-align:center;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }
}

.footer{
    background:#111827;
    color:#fff;
    padding:45px 20px 0;
    margin-top:50px;
}

.footer-content{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
}

.footer-box img{
    width:100px;
    border-radius:12px;
    margin-bottom:15px;
}

.footer-box h3{
    margin-bottom:20px;
    color:#fff;
}

.footer-box p{
    color:#d1d5db;
    line-height:1.9;
}

.footer-box a{
    display:block;
    color:#d1d5db;
    text-decoration:none;
    margin-bottom:10px;
    transition:.3s;
}

.footer-box a:hover{
    color:#fff;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid #374151;
    margin-top:35px;
    padding:20px;
    color:#d1d5db;
}


@media(max-width:900px){

.footer-content{
    grid-template-columns:1fr 1fr;
}

}


@media(max-width:600px){

.footer-content{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-box a{
    text-align:center;
}

}

/* Footer Fix */

.footer .container{
    max-width:1200px;
    margin:auto;
}

.footer-box img{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:12px;
}

.footer-content{
    align-items:flex-start;
}

.footer-box{
    line-height:1.8;
}

.footer-box h3{
    font-size:20px;
    margin-bottom:15px;
}

.footer-box p{
    font-size:15px;
    margin:8px 0;
}

.footer-box a{
    font-size:15px;
}


@media(max-width:768px){

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

.footer-box img{
    margin:auto;
}

}


/* Footer Fix */

.footer .container{
    max-width:1200px;
    margin:auto;
}

.footer-box img{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:12px;
}

.footer-content{
    align-items:flex-start;
}

.footer-box{
    line-height:1.8;
}

.footer-box h3{
    font-size:20px;
    margin-bottom:15px;
}

.footer-box p{
    font-size:15px;
    margin:8px 0;
}

.footer-box a{
    font-size:15px;
}


@media(max-width:768px){

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

.footer-box img{
    margin:auto;
}

}


/* FINAL FOOTER STYLE */

.footer{
    width:100%;
    background:#111827;
    color:#ffffff;
    padding:40px 20px 0;
    margin-top:50px;
    box-sizing:border-box;
}

.footer .footer-content{
    max-width:1200px;
    margin:0 auto;
    display:grid !important;
    grid-template-columns:repeat(4,1fr) !important;
    gap:30px;
    align-items:start;
}

.footer .footer-box{
    width:100%;
}

.footer .footer-box img{
    width:90px !important;
    height:90px !important;
    object-fit:cover;
    border-radius:12px;
}

.footer .footer-box h3{
    color:#ffffff;
    font-size:18px;
    margin-bottom:15px;
}

.footer .footer-box p{
    color:#d1d5db;
    line-height:1.8;
    margin:8px 0;
}

.footer .footer-box a{
    color:#d1d5db;
    text-decoration:none;
    display:block;
    margin-bottom:10px;
}

.footer .footer-box a:hover{
    color:#ffffff;
}

.footer .footer-bottom{
    max-width:1200px;
    margin:30px auto 0;
    padding:20px 0;
    text-align:center;
    border-top:1px solid #374151;
}


@media(max-width:900px){

.footer .footer-content{
    grid-template-columns:repeat(2,1fr) !important;
}

}


@media(max-width:600px){

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

.footer .footer-box img{
    margin:auto;
}

}

