/* ===== TRACKING BUTTON : NEW MODERN LOOK ===== */
.btn-secondary{
    background: linear-gradient(135deg, #0b2d4d, #1f5fa3) !important;
    color: #ffffff !important;
    padding: 12px 34px !important;
    border-radius: 50px !important;   /* pill shape */
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none !important;
    border: none !important;
    box-shadow: 0 6px 18px rgba(11,45,77,0.45);
    transition: all 0.3s ease;
}

/* Hover effect */
.btn-secondary:hover{
    background: linear-gradient(135deg, #d4af37, #f7e27c) !important;
    transform: translateY(-2px);
    box-shadow:0 12px 40px rgba(212,175,55,0.65);
    color:#fff !important;
}

/* Optional icon */
.btn-secondary::after{
    content: "➜";
    margin-left: 10px;
    font-size: 16px;
}

/* ===== TRACKING PAGE STYLES ===== */

*{
    box-sizing:border-box;
    font-family: "Segoe UI", sans-serif;
}

/* Page background */
body{
    margin:0;
    background:#f3f6fb;
}

/* ===== MAIN FIX AREA ===== */
.track-wrapper{
    min-height: auto;              /* full height remove */
    display:flex;
    justify-content:center;
    align-items:flex-start;        /* center se top pe */
    padding: 30px 20px 60px;       /* upar kam space */
    margin-top: -80px;             /* banner ke niche ka gap hatane ke liye */
}

/* Tracking card */
.track-card{
    background:#fff;
    width:100%;
    max-width:720px;
    padding:40px;
    border-radius:16px;
    box-shadow:0 12px 35px rgba(0,0,0,0.12);
}

/* Heading */
.track-card h1{
    margin:0;
    font-size:26px;
    color:#111;
}

.subtitle{
    color:#666;
    margin:6px 0 22px;
}

/* Input area */
.track-input{
    display:flex;
    gap:12px;
    margin-bottom:30px;
}

.track-input input{
    flex:1;
    padding:14px 18px;
    border-radius:8px;
    border:1px solid #ccc;
    font-size:15px;
}

.track-input input:focus{
    outline:none;
    border-color:#ff7a18;
}

/* Button */
.track-input button{
    padding:14px 26px;
    background:#ff7a18;
    border:none;
    border-radius:8px;
    color:#fff;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
}

.track-input button:hover{
    background:#e96a0f;
}

/* ===== Progress Bar ===== */
.progress-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.step{
    display:flex;
    flex-direction:column;
    align-items:center;
    font-size:13px;
    color:#999;
    min-width:80px;
}

.step .circle{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#ddd;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:6px;
    font-size:16px;
}

/* Completed */
.step.done .circle{
    background:#28a745;
    color:#fff;
}

/* Active */
.step.active .circle{
    background:#ff7a18;
    color:#fff;
}

.step.active span,
.step.done span{
    color:#111;
    font-weight:600;
}

/* Lines */
.line{
    flex:1;
    height:4px;
    background:#ddd;
    margin:0 6px;
    border-radius:4px;
}

.line.done{
    background:#28a745;
}

.line.active{
    background:#ff7a18;
}

/* ===== Mobile Fix ===== */
@media(max-width:600px){

    .track-wrapper{
        margin-top:-40px;
        padding:20px;
    }

    .track-card{
        padding:30px 22px;
    }

    .progress-container{
        flex-direction:column;
        gap:18px;
    }

    .line{
        display:none;
    }
}




/* ===== MODERN FOOTER ===== */
.modern-footer{
    background:#0e2f50;
    color:#cfd8e3;
    padding:60px 20px 25px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap:40px;
}

.footer-col h4{
    color:#fff;
    margin-bottom:16px;
    font-size:16px;
    position:relative;
}

.footer-col h4::after{
    content:"";
    width:40px;
    height:3px;
    background:#ff7a18;
    position:absolute;
    left:0;
    bottom:-6px;
}

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col ul li{
    margin-bottom:10px;
}

.footer-col ul li a{
    color:#cfd8e3;
    text-decoration:none;
    transition:0.3s;
}

.footer-col ul li a:hover{
    color:#ff7a18;
}

.brand img{
    width:150px;
    margin-bottom:15px;
}

.brand p{
    font-size:14px;
    line-height:1.7;
}

/* Social */
.footer-social{
    margin-top:15px;
    display:flex;
    gap:12px;
}

.footer-social a{
    width:36px;
    height:36px;
    background:#143b63;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    transition:0.3s;
}

.footer-social a:hover{
    background:#ff7a18;
}

/* Bottom bar */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:40px;
    padding-top:20px;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
}

.footer-bottom a{
    color:#ff7a18;
    text-decoration:none;
}


.powered-label{
    color:#9fb6cc;
    font-size:12px;
}

.powered-brand{
    color:#ff7a18;
    font-weight:600;
    text-decoration:none;
    position:relative;
}

.powered-brand::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;
    width:100%;
    height:2px;
    background:#ff7a18;
    transform:scaleX(0);
    transition:0.3s;
}

.powered-brand:hover::after{
    transform:scaleX(1);
}


/* ===== DETAILS HOVER CENTER ===== */
/* ===== CLICK DETAILS BELOW CARD ===== */
.tracking-details-box{
    margin-top:24px;
    text-align:center;
}

/* Button */
.details-btn{
    background:none;
    border:none;
    color:#ff7a18;
    font-weight:600;
    cursor:pointer;
    font-size:13px;
}

/* Details box – BELOW */
.tracking-details{
    display:none;
    margin:18px auto 0;   /* 👈 niche hi rahega */
    max-width:520px;
    background:#fff;
    border-radius:14px;
    padding:18px 22px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* Rows */
.detail-row{
    padding:12px 0;
    border-bottom:1px solid #f0f0f0;
}

.detail-row:last-child{
    border-bottom:none;
}

.detail-row .time{
    font-size:12px;
    color:#888;
}

.detail-row p{
    margin:6px 0 0;
    font-size:14px;
    color:#222;
    font-weight:500;
}

