/*=========================================
  GLOBAL STYLES
=========================================*/

:root{

    --primary:#003B95;
    --secondary:#FF7A00;
    --dark:#222;
    --light:#ffffff;
    --gray:#f5f7fb;
    --text:#666;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:var(--light);
    color:var(--dark);
    overflow-x:hidden;

}

a{

    text-decoration:none;

}

img{

    width:100%;

}

section{

    padding:90px 0;

}

.section-title{

    font-size:40px;
    font-weight:700;
    margin-bottom:15px;

}

.section-subtitle{

    color:#777;
    margin-bottom:50px;

}

/*=========================================
NAVBAR
=========================================*/

.navbar{

    padding:18px 0;
    transition:.4s;

}

/*=========================================
Brand Logo
=========================================*/

.navbar-brand{

    display:flex;

    align-items:center;

    text-decoration:none;

    gap:12px;

}

.company-logo{

    width:58px;

    height:58px;

    object-fit:contain;

    transition:.3s ease;

}

.brand-text{

    display:flex;

    flex-direction:column;

    line-height:1.15;

}

.brand-title{

    margin:0;

    font-size:1.75rem;

    font-weight:700;

    color:#183153;

    font-family:'Poppins',sans-serif;

    letter-spacing:.3px;

}

.brand-subtitle{

    font-size:.62rem;

    color:#6c757d;

    font-weight:500;

    letter-spacing:.8px;

    text-transform:uppercase;

}

.navbar-brand:hover{

    text-decoration:none;

}

.navbar-brand:hover .company-logo{

    transform:scale(1.05);

}

.navbar-brand:hover .brand-title{

    color:#0d6efd;

}

@media (max-width:991px){

    .company-logo{

        width:48px;

        height:48px;

    }

    .brand-title{

        font-size:1.15rem;

    }

    .brand-subtitle{

        font-size:.60rem;

        letter-spacing:.5px;

    }

}

@media (max-width:576px){

    .company-logo{

        width:42px;

        height:42px;

    }

    .brand-title{

        font-size:1rem;

    }

    .brand-subtitle{

        display:none;

    }

}

/*=========================================
BUTTONS
=========================================*/

.btn-main{

    background:var(--secondary);
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    transition:.3s;

}

.btn-main:hover{

    background:#ff6500;
    color:white;

}

.btn-outline-main{

    border:2px solid var(--primary);
    color:var(--primary);
    padding:14px 35px;
    border-radius:50px;

}

/*=========================================
HERO
=========================================*/

.hero{

    min-height:90vh;
    display:flex;
    align-items:center;
    background:#f6f9ff;

}

.hero h1{

    font-size:60px;
    line-height:1.2;

}

.hero p{

    color:#666;
    font-size:18px;

}

.hero img{

    border-radius:25px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.tracking-section{

    margin-top:-80px;
    position:relative;
    z-index:100;

}

.tracking-box{

    background:white;
    padding:45px;
    border-radius:20px;

}

.tracking-page{

background:#f8fafc;

min-height:700px;

}

.tracking-page h2{

font-weight:700;

color:#003B95;

}

.tracking-page .input-group{

box-shadow:0 12px 35px rgba(0,0,0,.08);

border-radius:10px;

overflow:hidden;

}

.tracking-page .form-control{

height:60px;

font-size:17px;

}

.tracking-page .btn{

padding:0 30px;

}

/*=====================================
Tracking Summary
======================================*/

.tracking-info-box{

    background:#fff;

    border-radius:12px;

    padding:20px;

    height:100%;

    box-shadow:0 8px 20px rgba(0,0,0,.06);

    transition:.3s;

}

.tracking-info-box:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,0,0,.10);

}

.tracking-info-box small{

    color:#6c757d;

    text-transform:uppercase;

    font-size:12px;

    letter-spacing:1px;

    font-weight:600;

}

.tracking-info-box h6{

    font-size:17px;

    font-weight:700;

    margin:0;

    color:#003B95;

}

.card-header h4{

    font-weight:700;

}
/*======================================
Shipment Progress Tracker
======================================*/

.progress-tracker{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    flex-wrap:nowrap;

    overflow-x:auto;

    padding:20px 0;

    gap:0;

}

.progress-step{

    position:relative;

    flex:1;

    min-width:120px;

    text-align:center;

    padding-bottom:35px;

}

.progress-icon{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#dee2e6;

    color:#6c757d;

    margin:0 auto;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    font-size:18px;

    position:relative;

    z-index:2;

    transition:.3s;

}

.progress-icon.completed{

    background:#198754;

    color:#fff;

}

.progress-line{

    position:absolute;

    top:22px;

    left:50%;

    width:100%;

    height:4px;

    background:#dee2e6;

    z-index:1;

}

.progress-line.completed{

    background:#198754;

}

.progress-label{

    margin-top:15px;

    font-size:13px;

    font-weight:600;

    line-height:1.4;

    color:#495057;

}

@media(max-width:992px){

    .progress-tracker{

        overflow-x:auto;

        padding-bottom:15px;

    }

}

/*=====================================
Public Tracking Timeline
======================================*/

.public-timeline{

    position:relative;

    margin-top:15px;

    padding-left:40px;

}

.public-timeline::before{

    content:"";

    position:absolute;

    left:18px;

    top:0;

    bottom:0;

    width:4px;

    background:#0d6efd;

    border-radius:10px;

}

.timeline-event{

    position:relative;

    margin-bottom:35px;

}

.timeline-marker{

    position:absolute;

    left:-32px;

    width:34px;

    height:34px;

    border-radius:50%;

    background:#198754;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    border:4px solid #fff;

    box-shadow:0 0 0 2px #198754;

    z-index:2;

}

.timeline-content{

    background:#fff;

    border-radius:14px;

    padding:22px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.timeline-content:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.timeline-content h5{

    font-weight:700;

    color:#003B95;

    margin-bottom:0;

}

.timeline-content p{

    margin-bottom:10px;

    color:#555;

    line-height:1.7;

}

.timeline-content small{

    font-weight:600;

}

@media(max-width:768px){

    .public-timeline{

        padding-left:30px;

    }

    .timeline-marker{

        left:-25px;

        width:28px;

        height:28px;

        font-size:12px;

    }

}

.page-banner{
background:url('../images/banner/about-banner.jpg') center center/cover;
min-height:320px;
position:relative;
background-size:cover;
background-position:center;
display:flex;
align-items:center;
}

.page-banner::before{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,.55);
}

.page-banner .container{
position:relative;
z-index:2;
}

.feature-box{
background:#fff;
padding:30px;
border-radius:12px;
text-align:center;
height:100%;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.feature-box:hover{
transform:translateY(-8px);
}

.cta-section{
background:linear-gradient(135deg,#0d6efd,#0b5ed7);
}


/* -----------------------------------------
   Service Cards
----------------------------------------- */
.service-card{
background:#fff;
padding:35px 25px;
text-align:center;
border-radius:12px;
box-shadow:0 12px 30px rgba(0,0,0,.08);
transition:.3s;
height:100%;
}

.service-card:hover{
transform:translateY(-10px);
}

/* -----------------------------------------
   Service Icon
----------------------------------------- */

.service-icon{
width:90px;
height:90px;
margin:auto;
border-radius:50%;
background:#0d6efd;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
margin-bottom:20px;
}

/* -----------------------------------------
   Shipping Process
----------------------------------------- */

.process-step{
background:#fff;
padding:30px;
border-radius:12px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
height:100%;
}

.process-number{
width:60px;
height:60px;
border-radius:50%;
background:#0d6efd;
color:#fff;
font-size:24px;
font-weight:bold;
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 20px;
}

/* -----------------------------------------
   Service Benefits List
----------------------------------------- */

.service-list{
list-style:none;
padding:0;
}

.service-list li{
padding:12px 0;
font-size:17px;
}

.service-list li i{
margin-right:10px;
}
/* -----------------------------------------
   Service Content
----------------------------------------- */

.service-content{
    padding:25px;
    text-align:center;
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.service-content i{
    width:65px;
    height:65px;
    margin:0 auto 18px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
}

.service-content h4{
    margin-bottom:12px;
    font-size:22px;
    font-weight:700;
}

.service-content p{
    margin:0;
    color:#666;
    line-height:1.7;
    font-size:15px;
}




.navbar .nav-link{
    color:#333;
    font-weight:500;
    margin-left:10px;
    transition:.3s;
}

.navbar .nav-link:hover{
    color:#0d6efd;
}

.navbar .nav-link.active{
    color:#0d6efd;
    font-weight:700;
    position:relative;
}

.navbar .nav-link.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:100%;
    height:3px;
    background:#0d6efd;
    border-radius:20px;
}

.navbar-brand{
    font-size:1.6rem;
    font-weight:700;
    letter-spacing:.5px;
}
.pricing-card{
background:#fff;
padding:40px 30px;
border-radius:15px;
box-shadow:0 12px 30px rgba(0,0,0,.08);
transition:.3s;
height:100%;
}

.pricing-card:hover{
transform:translateY(-8px);
}

.pricing-card.featured{
border:3px solid #0d6efd;
transform:scale(1.03);
}

.pricing-header{
text-align:center;
margin-bottom:25px;
}

.pricing-header h1{
font-size:48px;
font-weight:700;
color:#0d6efd;
}

.pricing-card ul{
list-style:none;
padding:0;
margin-bottom:30px;
}

.pricing-card li{
padding:12px 0;
border-bottom:1px solid #eee;
}

.pricing-card li i{
color:#28a745;
margin-right:10px;
}
.contact-info{
margin-top:40px;
}

.contact-item{
display:flex;
align-items:flex-start;
margin-bottom:30px;
}

.contact-item i{
width:60px;
height:60px;
background:#0d6efd;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
margin-right:20px;
}

.contact-item h5{
margin-bottom:5px;
font-weight:600;
}

.contact-item p{
margin:0;
color:#666;
}

.contact-item:hover i{
transform:scale(1.1);
transition:.3s;
}


.form-control,
.form-select{
    min-height:48px;
    border-radius:10px;
}

textarea.form-control{
    min-height:180px;
    resize:vertical;
}

.form-control:focus,
.form-select:focus{
    border-color:#0d6efd;
    box-shadow:0 0 0 .2rem rgba(13,110,253,.15);
}

@media (max-width:768px){

    .card-body{
        padding:25px !important;
    }

    .btn-lg{
        width:100%;
    }

}
textarea.modern-input{

min-height:180px;

}
/* ===================================================
   CONTACT PAGE
=================================================== */

.contact-banner{
    position:relative;
    background:
        linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
        url("../images/banner/contact-banner.jpg") center center/cover no-repeat;
    padding:100px 0;
}

.contact-wrapper{

background:#fff;

border-radius:25px;

padding:60px;

box-shadow:0 20px 60px rgba(0,0,0,.08);

overflow:visible;

height:auto;

}

.section-tag{
    display:inline-block;
    background:#e8f1ff;
    color:#0d6efd;
    padding:8px 18px;
    border-radius:50px;
    font-weight:700;
    letter-spacing:1px;
    font-size:13px;
}

.info-card{
    background:#fff;
    border-radius:18px;
    padding:35px 20px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.info-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(13,110,253,.18);
}

.info-icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    color:#fff;
    background:linear-gradient(135deg,#0d6efd,#4b8dff);
}

.info-card h5{
    font-weight:700;
    margin-bottom:15px;
}

.info-card p{
    color:#6c757d;
    margin-bottom:0;
    line-height:1.7;
}

.contact-card{

background:#fff;

padding:45px;

border-radius:20px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

overflow:visible;

height:auto;

display:block;

}

.modern-input{

width:100%;

display:block;

padding:15px 18px;

border-radius:12px;

min-height:52px;

}

.modern-input:focus{
    border-color:#0d6efd;
    box-shadow:0 0 0 .2rem rgba(13,110,253,.12);
}

.form-label{
    font-weight:600;
    margin-bottom:10px;
    color:#343a40;
}


.alert{
    border-radius:12px;
}

.map-card{
    overflow:hidden;
    border-radius:22px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.map-card iframe{
    border:0;
}

.contact-section{
    background:#f8fafc;
}

/* ==========================================
   SOCIAL CONTACT BAR
========================================== */

.social-contact{
    display:flex;
    justify-content:center;
    gap:18px;
    margin-top:40px;
    flex-wrap:wrap;
}

.social-contact a{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fff;
    color:#0d6efd;
    text-decoration:none;
    font-size:22px;
    box-shadow:0 12px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.social-contact a:hover{
    background:#0d6efd;
    color:#fff;
    transform:translateY(-6px);
}

/* ==========================================
   ANIMATION
========================================== */

.info-card,
.contact-card,
.map-card{
    animation:fadeUp .7s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(35px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:992px){

.contact-wrapper{

padding:35px;

}


}

@media(max-width:768px){

.contact-banner{

padding:70px 0;

}

.contact-wrapper{

padding:25px;

}

.info-card{

padding:30px 20px;

}

.contact-btn{

width:100%;

}

}

/*=========================================
STATISTICS
=========================================*/

.statistics-section{

    background:linear-gradient(135deg,#003B95,#0059d6);

}

.stat-card{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    transition:.35s;

    height:100%;

    border:1px solid rgba(255,255,255,.15);

}

.stat-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.18);

}

.stat-icon{

    width:85px;

    height:85px;

    margin:auto;

    border-radius:50%;

    background:#fff;

    color:#003B95;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin-bottom:25px;

}

.stat-card h2{

    font-size:46px;

    font-weight:800;

    margin-bottom:10px;

    color:#fff;

}

.stat-card h5{

    font-weight:700;

    margin-bottom:15px;

}

.stat-card p{

    color:rgba(255,255,255,.85);

    margin-bottom:0;

    line-height:1.7;

}

@media(max-width:768px){

.stat-card{

margin-bottom:20px;

}

}

/*=========================================
HOME CTA
=========================================*/

.home-cta{

    background:linear-gradient(135deg,#003B95,#005ED9);

    padding:120px 0;

}

.home-cta .container{

    z-index:2;

}

.cta-box{

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(12px);

    border-radius:25px;

    padding:45px 35px;

    border:1px solid rgba(255,255,255,.20);

    transition:.35s;

}

.cta-box:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.15);

}

.cta-icon{

    width:110px;

    height:110px;

    margin:auto;

    border-radius:50%;

    background:#fff;

    color:#003B95;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:45px;

}

.home-cta .btn-warning{

    font-weight:600;

    color:#000;

}

.home-cta .btn-warning:hover{

    transform:translateY(-3px);

}

.home-cta .btn-outline-light:hover{

    color:#003B95;

}

.cta-shape{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    animation:floatShape 8s infinite ease-in-out;

}

.shape-1{

    width:220px;

    height:220px;

    top:-60px;

    left:-80px;

}

.shape-2{

    width:180px;

    height:180px;

    bottom:-50px;

    right:-40px;

    animation-delay:2s;

}

.shape-3{

    width:120px;

    height:120px;

    top:40%;

    right:18%;

    animation-delay:4s;

}

@keyframes floatShape{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-20px);

    }

    100%{

        transform:translateY(0px);

    }

}

@media(max-width:992px){

.home-cta{

padding:90px 0;

}

.cta-box{

margin-top:20px;

}

}

@media(max-width:768px){

.home-cta h2{

font-size:2rem;

}

.home-cta .btn{

width:100%;

}

}

.table-borderless th{

    color:#6c757d;

    font-weight:600;

    white-space:nowrap;

    padding:14px 0;

}

.table-borderless td{

    font-weight:600;

    color:#1f2937;

    padding:14px 0;

}

.table-borderless tr{

    border-bottom:1px solid #eef2f7;

}

.table-borderless tr:last-child{

    border-bottom:none;

}

.progress-circle{

    box-shadow:0 5px 18px rgba(0,0,0,.12);

}

.progress-content h6{

    font-weight:600;

}

.progress{

    border-radius:20px;

}

.progress-bar{

    border-radius:20px;

}


.summary-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:#eaf7ef;

    color:#198754;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin:auto;

}

.summary-item{

    background:#f8fafc;

    border-radius:14px;

    padding:18px;

    height:100%;

    border:1px solid #edf2f7;

}

.summary-item small{

    color:#6c757d;

    display:block;

    margin-bottom:8px;

    text-transform:uppercase;

    letter-spacing:.05em;

    font-weight:600;

}

.summary-item h6{

    margin:0;

    font-size:17px;

    font-weight:700;

}
.quick-info{

display:flex;

flex-direction:column;

gap:14px;

}

.quick-info-item{

display:flex;

justify-content:space-between;

align-items:center;

padding:14px;

background:#f8fafc;

border-radius:14px;

border:1px solid #edf2f7;

}

.quick-info-item span{

color:#6c757d;

font-size:.9rem;

}

.quick-info-item strong{

font-size:.95rem;

}

.shipment-progress-section{

    background:#f8fafc;

    border-radius:30px;

    margin:50px 0;

    padding:70px 0;

}

.metric-card{

    background:#fff;

    border-radius:20px;

    padding:30px 20px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.35s;

    border:1px solid rgba(0,0,0,.04);

}

.metric-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.metric-icon{

    width:70px;

    height:70px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 18px;

    font-size:28px;

}

.metric-card small{

    display:block;

    color:#6c757d;

    margin-bottom:10px;

    text-transform:uppercase;

    font-weight:600;

    letter-spacing:1px;

}

.metric-card h3,

.metric-card h5,

.metric-card h6{

    margin:0;

    font-weight:700;

}

.floating-card{

    background:#fff;

    border-radius:28px;

    padding:40px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    border:1px solid rgba(0,0,0,.05);

}

.status-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

}

.status-label{

    font-size:12px;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#6c757d;

    font-weight:700;

}

.modern-progress{

    height:12px;

    background:#edf2f7;

    border-radius:30px;

    overflow:hidden;

}

.modern-progress .progress-bar{

    background:linear-gradient(90deg,#0d6efd,#20c997);

    border-radius:30px;

}

.status-card{

    display:flex;

    gap:18px;

    align-items:center;

    padding:20px;

    border-radius:18px;

    background:#f8fafc;

    border:1px solid #edf2f7;

    transition:.3s;

}

.status-card:hover{

    transform:translateY(-4px);

    background:#fff;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

}

.status-icon{

    width:60px;

    height:60px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

}

.status-card small{

    display:block;

    color:#6c757d;

    font-size:11px;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:5px;

}

.status-card h6{

    margin:0;

    font-weight:700;

}

.shipment-journey-section{

    padding:70px 0;

}

.journey-list{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.journey-card{

    display:flex;

    gap:25px;

    padding:25px;

    border-radius:20px;

    background:#f8fafc;

    border:1px solid #edf2f7;

    transition:.35s;

    position:relative;

}

.journey-card:hover{

    background:#fff;

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.journey-card.current{

    border-left:6px solid #0d6efd;

    background:#eef6ff;

}

.journey-icon{

    width:65px;

    height:65px;

    border-radius:18px;

    background:#0d6efd;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    flex-shrink:0;

}

.journey-card.current .journey-icon{

    background:#198754;

}

.journey-content{

    flex:1;

}

.journey-content h5{

    font-weight:700;

    margin-bottom:6px;

}

.journey-content p{

    color:#555;

    line-height:1.7;

}

.support-section{

    padding:70px 0;

}

.support-card{

    display:block;

    text-align:center;

    padding:35px 25px;

    border-radius:22px;

    background:#f8fafc;

    border:1px solid #edf2f7;

    transition:.35s;

    color:#212529;

    height:100%;

}

.support-card:hover{

    background:#fff;

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

    color:#212529;

}

.support-icon{

    width:80px;

    height:80px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 25px;

    font-size:30px;

}

.support-card h5{

    font-weight:700;

    margin-bottom:15px;

}

.support-card p{

    color:#6c757d;

    margin-bottom:0;

    line-height:1.7;

    font-size:15px;

}





.shipping-label{

    background:#fff;

    border:2px dashed #555;

    border-radius:30px;

    max-width:1400px;

    margin:30px auto;

    padding:45px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}
.receipt-divider{

    border-top:3px solid #222;

    margin:35px 0;

}
.tracking-number{

    font-size:48px;

    letter-spacing:4px;

    font-weight:700;

}
.badge{

border-radius:50px;

font-size:18px;

}


/*==========================================================
CARD
==========================================================*/

.card-dashboard{

    background:#fff;

    border-radius:16px;

    padding:30px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    margin-bottom:30px;

}


/*==========================================================
SUMMARY
==========================================================*/

.shipment-summary{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));

    gap:18px;

}

.shipment-box{

    background:#f8f9fa;

    border:1px solid #ececec;

    border-radius:12px;

    padding:18px;

}

.shipment-box small{

    display:block;

    color:#888;

    font-size:11px;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:8px;

}

.shipment-box strong{

    font-size:17px;

}

.shipment-box .badge{

    font-size:13px;

}


/*==========================================================
FORM
==========================================================*/

.form-label{

    font-weight:600;

}

.form-control,
.form-select{

    border-radius:10px;

    min-height:48px;

}

textarea.form-control{

    min-height:130px;

}


/*==========================================================
TIMELINE
==========================================================*/

.tracking-timeline{

    position:relative;

    padding-left:35px;

}

.tracking-timeline::before{

    content:"";

    position:absolute;

    left:11px;

    top:5px;

    bottom:5px;

    width:2px;

    background:#dfe4ea;

}

.timeline-item{

    position:relative;

    margin-bottom:30px;

}

.timeline-item:last-child{

    margin-bottom:0;

}

.timeline-marker{

    position:absolute;

    left:-35px;

    top:8px;

    width:24px;

    height:24px;

    border-radius:50%;

    background:#0d6efd;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:11px;

    z-index:5;

}

.timeline-content{

    background:#fff;

    border:1px solid #ececec;

    border-radius:12px;

    padding:20px;

    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.timeline-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:20px;

    margin-bottom:15px;

}

.timeline-header h5{

    margin:0;

    font-size:18px;

    font-weight:700;

}

.timeline-description{

    margin:0;

    color:#666;

    line-height:1.7;

}
.timeline-actions{

display:flex;

gap:10px;

margin-top:20px;

flex-wrap:wrap;

}

.timeline-actions .btn{

border-radius:8px;

min-width:90px;

}

.timeline-header{

display:flex;

justify-content:space-between;

align-items:flex-start;

gap:20px;

}

.timeline-header h5{

font-weight:700;

margin-bottom:6px;

}

/*==========================================================
EMPTY
==========================================================*/

.empty-timeline{

    text-align:center;

    padding:60px 30px;

}

.empty-timeline i{

    font-size:55px;

    color:#0d6efd;

    margin-bottom:20px;

}

.empty-timeline h5{

    font-size:24px;

    margin-bottom:10px;

}

.empty-timeline p{

    color:#777;

    max-width:500px;

    margin:auto;

}


/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:768px){

.timeline-header{

flex-direction:column;

}

.shipment-summary{

grid-template-columns:1fr;

}

.card-dashboard{

padding:20px;

}

}

.modal-content{

border:none;

border-radius:18px;

box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.modal-header{

border-bottom:none;

padding:25px;

}

.modal-body{

padding:0 25px 20px;

}

.modal-footer{

border-top:none;

padding:20px 25px 25px;

}

.modal-title{

font-weight:700;

}