@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}
body{
    scroll-behavior: smooth;
}
.container{
    padding: 0 30px;
}
header{
    height: 70px;
    width: 100%;
    background: black;
    top:0;
    position: sticky;
    z-index: 1000;
}
header .heads{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 130px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.heads nav{
    padding: 10px;
}
.heads nav ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.heads nav ul li{
    list-style: none;
    padding: 10px;
    border-radius: 10px;
}
.heads nav ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    position: relative;
}
nav ul li a:hover{
    color: #ffcc00;
}
nav ul li a::after{
    content: "";
    display: block;
    height: 2px;
    width: 0;
    background: #fff;
    position: absolute;
    top: 30px;
    left: 0;
    transition: 0.3s ease-in-out;
}
nav ul li a:hover::after{
    width: 60px;
}
header ul .active{
    background:#ff6600;;
    
}
.toggle_bar{
    display: none;
    width: 30px;
    height: 20px;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}
.toggle_bar .togg{
    height: 2px;
    width: 100%;
    background: #fff;
    transition: 0.3s ease;
}
.toggle_bar.open .togg:nth-child(2) {
    opacity: 0;
}
.toggle_bar.open .togg:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.toggle_bar.open .togg:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.translate-btn{
    background: transparent;
    border: none;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
}
.lang-dropdown{
    position: fixed;
    top: 90px;
    right: 20px;
    width: 260px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: 0.4s ease;
    z-index: 9999;
}
.lang-dropdown.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sec1{
    height: 100vh;
    width: 100%;
    background-image:linear-gradient(rgba(0,0,0,0.7), rgba(0, 0, 0, 0.539)), url('../images/home-image12.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
}
.sec1 .container{
    max-width: 1200px;
    padding: 30px 20px;
}
.home_page h1{
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.home_page p{
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.home_page .btn{
    background: #ffcc00;
    padding: 10px 30px;
    border-radius: 5px;
    color: black;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}
.home_page .btn:hover {
    background:  #e6b800;
}
.services{
    padding: 80px 0px 30px 0px;
    background: #f9f9f9;
    text-align: center;
}
.services-note{
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    text-align: center;
    color: #555;
}
.services h2{
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}
.service-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-content: center;
}
.service-card{
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: 0.3s ease-in-out;
    text-align: center;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.service-card .icon img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: brightness(50%);
}
.service-card:hover img {
    transform: scale(1.05);
}
.service-card h3{
    margin: 15px 0 10px;
    font-size: 1.2rem;
}
.service-card p{
    padding: 0 10px;
    font-size: 0.9rem;
    color: #555;
}
.service-card .learn-more{
    display: inline-block;
    margin: 20px 0;
    padding: 5px 10px;
    text-decoration: none;
    background: #ff6600;
    border-radius: 5px;
    color: #fff;
    font-size: 0.8rem;
}
.service-card .learn-more:hover{
    background: #c0530b;
    text-decoration: underline;
}
.services-cta {
    margin-top: 50px;
}

.services-cta p {
    margin-bottom: 10px;
   
}
.services-cta .btn {
    background: #ff6600;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
}
.cargo-types{
    padding: 70px 0px;
    background: #f9f9f9;
    text-align: center;
    
}
.cargo-types .carg{
    background: #fff;
    padding: 30px 0;
}
.cargo-types .carg h2{
    color: #333;
    margin-bottom: 15px;
    font-size: 2rem;
}
.cargo-types .carg p{
    color: #555; 
    line-height: 1.7;
    font-size: 1rem;
    max-width: 900px;
    margin: auto;
}
.cargo-types .carg-icon{
    margin-bottom: 15px;
}
.cargo-types .carg-icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.tracking {
    padding: 80px 20px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../images/delivery-bg.png') center/cover no-repeat;
    text-align: center;
}
.tracking-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    margin: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.tracking h2 {
    margin-bottom: 10px;
}
.tracking p {
    color: #666;
}
.input-group {
    display: flex;
    margin-top: 20px;
}
.input-group input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px 0 0 6px;
    outline: none;
}
.input-group input:focus {
    border-color: #ff6600;
}
.input-group button {
    padding: 15px 25px;
    border: none;
    background: #ff6600;
    color: #fff;
    cursor: pointer;
    border-radius: 0 6px 6px 0;
    transition: 0.3s;
}
.input-group button:hover {
    background: #e65c00;
}
.tracking-info {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #444;
}
.secure {
    margin-top: 15px;
    font-size: 13px;
    color: #888;
}
.about-us{
    padding: 80px;
    background: #f8f9fa;
    
}
.about-us h2{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}
.about-note p{
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}
.about-highlights{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
    text-align: center;
}
.about-highlights div {
    background:  #fff;;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
}
.about-image{
    display: flex;
    align-items: center;
    gap: 30px;
}
.about-image img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}
.about-image img:hover {
    transform: scale(1.05);
}
.about-us {
    padding: 80px 20px;
    background: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
}

.section-header p {
    color: #666;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.about-text h3 {
    margin-top: 15px;
}

.about-text p {
    color: #555;
}

.about-text ul {
    margin-top: 10px;
    padding-left: 0;
    list-style: none;
}

.about-text ul li {
    margin-bottom: 5px;
}
.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
}
.about-highlights div {
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
}
.about-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.about-image img {
    width: 100%;
    border-radius: 10px;
    transition: 0.3s;
}
.about-image img:hover {
    transform: scale(1.05);
}
.about-cta {
    text-align: center;
    margin-top: 40px;
}
#faq{
    padding: 80px 0px 0px 0px;
}
#faq h2{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}
#faq .faq-text{
    text-align: center;
    max-width: 650px;
    margin: auto;
    font-size: 18px;
    margin-bottom: 50px;
    color: #333;
}
.faq-container{
    max-width: 850px;
    margin: auto;
}
.faq-item{
    background: #fff;
    border: 1px solid #ddd;
    margin-bottom: 18px;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}
.faq-item:hover{
    border-color: #ffcc00;
    box-shadow: 0 0 14px rgba(255, 204, 0, 0.3);
}
.faq-question{
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-question i{
    color: #ffcc00;
    margin-right: 8px;
    transition: transform 0.3s ease;
}
.faq-question.active i{
    transform: rotate(180deg);
}
.faq-question .fa-plus{
    font-size: 20px;
    color: #ff6600;
}
.faq-answer{
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    opacity: 0;
}
.faq-item.active .faq-answer{
    max-height: 300px;
    opacity: 1;
    padding: 0 20px 20px;
}
.why-us{
    padding: 80px 0;
    background: #f8f9fa;
}
.why-us h2{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}
.why-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.why-grid .why-card{
    width: 100%;
    text-align: center;
    padding: 30px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}
.why-card h3{
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ff6600;
}
.why-card:hover h3{
    color: #e6b800;
}
.why-card p{
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.testimonials{
    padding: 80px 0;
    text-align: center;
    background: #f8f9fa;
}
.testimonials h2{
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}
.testimonials p{
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555;
}
.testimonials .testi-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.testi-card{
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #fff;
    padding: 30px 10px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
    transition: 0.3s ease-in-out;
}
.testi-card:nth-child(2){
    transform: translateY(-20px);
}
.testi-card .testi-img{
    width: 100%;
    height: 250px;
    filter: brightness(40%)
}
.testi-card .testi-stars{
    font-size: 15px;
    color: #ffae00;
}
.testi-card p{
    padding: 0 10px;
    font-size: 0.9rem;
}
.testi-card h4{
    font-weight: 600;
    font-size: 1.5rem;
}
.testi-card span{
    color: #777;
    font-size: 14px;
}
.partnerships{
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}
.partnerships h2{
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;

}
.partnerships .part-text{
    max-width: 650px;
    margin: auto;
    line-height: 1.6;
    color: #555;
    font-size: 1rem;
    margin-bottom: 40px;
}
.partners-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.partner-card{
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 10px;
    border: 1px solid #ccc;
}
.partner-card img{
    width: 70px;
    height: auto;
    object-fit: cover;
}
.partner-card h3{
    margin-top: 10px;
    font-weight: 800;
    font-size: 19px;
}
.partner-card p{
    padding: 10px 30px;
    font-size: 0.9rem;
    color: #666;
}
.stats{
    padding: 80px 0;
    background: linear-gradient(to right, #000000, #262626);
    text-align: center;
}
.stats #flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.stat-box{
    padding: 20px 0;
}
.stats-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}
.stats-icon i{
    font-size: 40px;
    color: #ff6600;
}
.stats-icon h2{
    font-size: 45px;
    color: #ffcc00;
}
.stat-box p{
    font-size: 18px;
    letter-spacing: 1px;
    color: #8c8a8a;
}
.contact{
    padding: 80px 0;
    background: #f7f7f7;
}
.contact .container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}
.contact-info{
    padding: 50px 0;
}
.contact-info h2{
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}
.contact-info p{
    margin-bottom: 20px;
    line-height: 1.6;
}
.info-box{
    margin-bottom: 10px;
}
.info-box h4{
    font-size: 18px;
}
.contact-form {
    padding: 50px 0;
}
.contact-form h3{
    margin-bottom: 20px;
    font-size: 24px;
}
.contact-form form{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-form input,
.contact-form textarea{
    width: 100%;
    padding: 10px;
    outline: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 13px;
}
.contact-form textarea{
    height: 120px;
    resize: none;
}
.contact-form .btn{
    background: #ff6600;
    color: white;
    border: none;
    padding: 10px;
    font-size: 13px;
    border-radius: 5px;
    cursor: pointer;
}
.map-box{
    margin-top: 40px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.map-box .map{
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 10px;
}
.opening-hrs{
    padding: 30px 0;
}
.opening-hrs h1{
    margin-bottom: 25px;
    font-size: 2.3rem;
    color: black;
}
.opening-hrs .hrs-flex{
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.hrs-flex strong{
    font-size: 1.3rem;
    color: #615b5b;
    position: relative;
}
.hrs-flex strong::after{
    content: "";
    height: 2px;
    width: 900px;
    position: absolute;
    background: #615b5b;;
    top: 15px;
    margin-left: 50px;
}
.hrs-flex p{
    color: #615b5b;
    font-size: 1.3rem;
}
footer {
    background: #0b1c39;
    color: #fff;
    padding-top: 50px;
    font-family: Arial, sans-serif;
}
.footer {
    width: 90%;
    margin: auto;
}
.footer h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}
.footer-about {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 40px;
}
.footer-logo {
    width: 200px;
    margin-bottom: 30px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}
.social-link {
    margin-top: 15px;
}
.social-link a {
    display: inline-block;
    margin: 0 8px;
    color: #fff;
    font-size: 16px;
    background: #1a2c52;
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s;
}
.social-link a:hover {
    background: #ff6600;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}
.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #fff;
}
.footer-col p,
.footer-col li,
.footer-col a {
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col a:hover {
    color: #ff6600;
}
.footer-col input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: none;
    border-radius: 5px;
}
.footer-col button {
    width: 100%;
    padding: 10px;
    background: #ff6600;
    border: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}
.footer-col button:hover {
    background: #e65c00;
}
.footer-bottom {
    border-top: 1px solid #1a2c52;
    margin-top: 40px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #07122a;
    flex-wrap: wrap;
}
.footer-bottom p {
    font-size: 13px;
    color: #aaa;
}
.back-to-top {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    background: #ff6600;
    padding: 8px 12px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    position: fixed;
    bottom: 20px;
    right: -1000px;
   
}
.back-to-top.active {
    right: 20px;
}
.back-to-top:hover {
    background: #cf5503;
}
@media (max-width: 992px){
    .toggle_bar{
        display: none;
    }
    .service-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .about-image{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    #faq h2{
        margin-top: -70px;
    }
    .why-us{
        padding: 30px 0;
    }
    .why-us h2{
        margin-top: -50px;
    }
    .why-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials .testi-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .testi-card:nth-child(2){
        transform: translateY(0);
    }
    .partnerships h2{
        margin-top: -70px;
    }
    .partners-container{
        grid-template-columns: repeat(3, 1fr);
    }
    .stats{
        padding: 50px 0;
    }
    .stats #flex{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-box{
        width: 100%;
    }
    .footer-about p{
        padding: 0 30px;
        margin-top: -30px;
    }
    .footer-grid{
        display: flex;
        padding: 20px 0;
        justify-content: space-between;
        align-items: center;
    }
    .footer-grid .footer-col{
        width: 100%;
    }
    .footer-col h4{
        margin-bottom: 10px;
    }
    .hrs-flex strong::after{
        content: "";
        height: 2px;
        width: 150px;
        position: absolute;
        background: #615b5b;;
        top: 15px;
        margin-left: 50px;
    }
}

@media (max-width: 768px){
    #navLink{
        display: flex;
        background: black;
        height: 100vh;
        width: 250px;
        position: absolute;
        top: 70px;
        left: -500px;
        flex-direction: column;
        padding: 20px;
        transition: 0.3s ease-in-out;
    }
    #navLink.active{
        display: flex;
        left: -30px;
    }
    #navLink ul{
        flex-direction: column;
        gap: 20px;
    }
    #navLink ul li a {
        display: block;
        padding: 10px;
    }
    .toggle_bar{
        display: flex;
    }
    .sec1{
        height: 100%;
        width: 100%;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .home_page{
        padding: 150px 0;
    }
    .home_page h1{
        font-size: 2.5rem;
    }
    .home_page p{
        font-size: 1rem;
    }
    .service-grid{
        grid-template-columns: 1fr;
    }
    .service-card .icon img{
        width: 100%;
        height: 350px;
    }
    .tracking-form{
        flex-direction: column;
    }
    .tracking-form input{
        width: 100%;
        padding: 10px 30px;
    }
    .tracking-form button{
        width: 70%;
        margin: auto;
        padding: 10px;
    }
    .about-image{
        flex-direction: column;
        margin: 0 -30px;
        gap: 0;
    }
    .about-image img{
        width: 100%;
        border-radius: 0;
    }
    #faq h2{
        margin-top: -70px;
    }
    .why-us{
        padding: 30px 0;
    }
    .why-us h2{
        margin-top: -50px;
    }
    .why-grid{
        grid-template-columns: 1fr;
    }
    .testimonials .testi-grid{
        grid-template-columns: 1fr;
    }
    .testi-card:nth-child(2){
        transform: translateY(0);
    }
    .partnerships h2{
        margin-top: -70px;
    }
    .partners-container{
        grid-template-columns: repeat(2, 1fr);
    }
    .stats{
        padding: 50px 0;
    }
    #flex{
        flex-direction: column;
    }
    .stat-box{
        width: 100%;
    }
    .contact .container{
        grid-template-columns: 1fr;
    }
    .contact-info,
    .contact-form{
        padding: 0;
    }
    .footer-about p{
        padding: 0 30px;
        margin-top: -30px;
    }
    .footer-grid{
        display: flex;
        padding: 20px;
        flex-direction: column ;
        align-items: center;
        gap: 30px;
    }
    .footer-grid .footer-col{
        padding: 20px;
        border-bottom: 1px solid #ccc;
        width: 100%;
    }
    .footer-col h4{
        margin-bottom: 10px;
    }
    .footer h3 {
        font-size: 22px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .tracking-header{
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .tracking-header h2{
        font-size: 20px;
    }

    .grid{
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px){
    .lang-dropdown select{
        width: 70%;
    }
    .logo {
        margin-left: -120px;
    }
    #navLink ul li a {
        display: block;
        padding: 10px;
    }
    .tracking-card{
        padding: 15px;
    }

    .tracking-header h2{
        font-size: 18px;
    }

    .grid{
        grid-template-columns: 1fr;
    }

    .box h3{
        font-size: 16px;
    }

    .box p{
        font-size: 13px;
    }

    .status-badge{
        font-size: 12px;
        padding: 5px 10px;
    }
}
@media (max-width: 400px) {
.dt-card { padding: 18px 14px 22px; }
.dt-dot { width: 32px; height: 32px; }
.dt-dot i { font-size: 13px; }
.dt-label { font-size: 9px; }
.dt-step:not(:last-child)::after { top: 15px; }
}

.result-section{
    padding: 40px 0;
    background: #f5f7fb;
}
.tracking-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.tracking-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.tracking-header h2{
    font-size: 25px;
    color: #333;
}
.tracking-id{
    font-weight: bold;
    color: #555;
}
.grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.box{
    background: #fafafa;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #eee;
}
.box h3{
    margin-bottom: 10px;
    color: #222;
    font-size: 20px;
}
.box p{
    margin: 5px 0;
    font-size: 14px;
    color: #444;
}
.note{
    margin-top: 20px;
    padding: 15px;
    background: #fff3cd;
    border-left: 5px solid #ff9800;
    border-radius: 10px;
}
.no-result{
    text-align: center;
    padding: 30px;
    color: red;
    font-weight: bold;
}
.delivery-tracker {
    margin: 20px 0 32px;
}
.dt-card {
    background: #0d1117;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px 28px 28px;
    position: relative;
    overflow: hidden;
}
.dt-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, #22d3a5, #4f8ef7, #a78bfa);
}
.dt-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 10px;
}
.dt-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280;
    margin: 0;
}
.dt-badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    border: 1px solid;
}
.dt-badge-pending { color: #9ca3af; border-color: rgba(156,163,175,0.3); background: rgba(156,163,175,0.08); }
.dt-badge-active  { color: #22d3a5; border-color: rgba(34,211,165,0.35); background: rgba(34,211,165,0.10); }
.dt-badge-transit { color: #60a5fa; border-color: rgba(96,165,250,0.35); background: rgba(96,165,250,0.10); }
.dt-badge-hold    { color: #f59e0b; border-color: rgba(245,158,11,0.35); background: rgba(245,158,11,0.10); }
.dt-badge-cancel  { color: #ef4444; border-color: rgba(239,68,68,0.35); background: rgba(239,68,68,0.10); }
.dt-steps {
    display: flex;
    align-items: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
}
.dt-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.dt-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 19px;
    left: calc(50% + 20px);
    width: calc(100% - 40px);
    height: 2px;
    background: rgba(255,255,255,0.10);
    border-radius: 2px;
}
.dt-step.dt-done:not(:last-child)::after {
    background: #22d3a5;
    box-shadow: 0 0 8px rgba(34,211,165,0.35);
}
.dt-step.dt-warn:not(:last-child)::after {
    background: #f59e0b;
    box-shadow: 0 0 8px rgba(245,158,11,0.3);
}
.dt-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.10);
    background: #161922;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.dt-dot i { font-size: 15px; color: rgba(255,255,255,0.2); }
.dt-step.dt-done .dt-dot { border-color: #22d3a5; background: rgba(34,211,165,0.12); box-shadow: 0 0 0 5px rgba(34,211,165,0.12), 0 0 18px rgba(34,211,165,0.2); }
.dt-step.dt-done .dt-dot i { color: #22d3a5; }
.dt-step.dt-warn .dt-dot { border-color: #f59e0b; background: rgba(245,158,11,0.12); box-shadow: 0 0 0 5px rgba(245,158,11,0.12), 0 0 18px rgba(245,158,11,0.2); }
.dt-step.dt-warn .dt-dot i { color: #f59e0b; }
.dt-step.dt-cancel .dt-dot { border-color: #ef4444; background: rgba(239,68,68,0.12); box-shadow: 0 0 0 5px rgba(239,68,68,0.12), 0 0 18px rgba(239,68,68,0.2); }
.dt-step.dt-cancel .dt-dot i { color: #ef4444; }
.dt-pulse .dt-dot::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1.5px solid;
    animation: dt-ripple 2s ease-out infinite;
}
.dt-step.dt-done.dt-pulse .dt-dot::before   { border-color: #22d3a5; }
.dt-step.dt-warn.dt-pulse .dt-dot::before   { border-color: #f59e0b; }
.dt-step.dt-cancel.dt-pulse .dt-dot::before { border-color: #ef4444; }
@keyframes dt-ripple {
    0%   { transform: scale(0.85); opacity: 0.7; }
    100% { transform: scale(1.5);  opacity: 0; }
}
.dt-label {
    margin-top: 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #4b5563;
    text-align: center;
    line-height: 1.3;
    min-height: 26px;
}
.dt-step.dt-done .dt-label   { color: #22d3a5; }
.dt-step.dt-warn .dt-label   { color: #f59e0b; }
.dt-step.dt-cancel .dt-label { color: #ef4444; }
