*{
    padding: 0;
    margin: 0;
    font-family: sans-serif;
    --primary-color: #063068;
    --secondary-color:#06479F;
    --bg-light-white: #F5F5F7;
    --bg-blue:#1C4378;
    --bg-light-two: #dddddd;
    --success: #14BA19;
}

nav{
    height: 70px;
    background-color: white;
    border-bottom: 1px solid rgba(65, 65, 65, 0.151);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:0px 80px;
    position: fixed;
    z-index: 30;
    width: 90%;
    top: 0;
}
.home-Button{
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    color: var(--primary-color);
    border: 1px solid #06469fa8;
    border-radius: 6px;
    padding: 5px 15px;
    
}
body{
    height: 100vh;
    padding-top: 4rem; 
}
.background{
    height: 100vh;
    width: 100%;
    background-image: url(assets/Background.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: fixed;
    z-index: -10;
    top: 0;
}

main{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 400px;
    
}

header{
    font-size: 24px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
    animation: headerAnimation 1.4s ease-in-out forwards;
}
@keyframes headerAnimation {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
#subtitle{
    font-size: 24px;
    font-weight: 100;
}
.input-holder{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    width: 100%;
}
.input-box{
    width: 85%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}
.search-bar{
    width: 100%;
    height: 60px;
    border-radius: 7px;
    border: 1px solid rgba(87, 86, 86, 0.082);
    overflow: hidden;
    padding-left: 10px;
    box-shadow: 0px 1px 8px rgba(104, 104, 104, 0.116);
}
.search-bar input{
    width: 100%;
    height: 100%;
    outline: none;
    border: 0;
}

.radio-button-holder{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    width: 100%;
    opacity: 0;
    animation: radioButtonAnimation 1.4s 1.5s ease-in-out forwards;
}
@keyframes radioButtonAnimation {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.radio-button-holder div{
    display: flex;
    cursor: pointer;
    width: 40%;
    gap: 10px;
    padding: 5px 15px;
    background-color: white;
    padding-left: 10px;
    box-shadow: 0px 1px 8px rgba(104, 104, 104, 0.116);
    border-radius: 5px;
    font-size:14px;
    color: rgba(77, 76, 76, 0.76);
}
.input-holder a{
    width: 85%;
    margin-top: 15px;
}
.searchButton{
    width: 100%;
    height: 50px;
    border-radius: 5px;
    border: 0;
    background: linear-gradient(to right  , var(--primary-color), var(--secondary-color));
    color: white;
    font-size:22px;
    transition: all .4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.searchButton iconify-icon{
   color: white;
   padding-left: 10px;

}
.searchButton:hover{
    transform: translateY(1px);
}
.buttonHolder{
    width: 90%;
    margin-top: 15px;
}
.buttonHolder a{
    text-decoration: none;
}

.tracking-page {
    background-color: white;
    
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 3rem;
    padding-bottom: 3rem;
    padding: 8px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tracking-info {
    display: flex;
    gap: 10px;
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 100;
}

.tracking-id {
    color: var(--primary-color);
    font-weight: 600;
}

.print-btn {
    background-color: #fff;
    border: 1px solid var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 22px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}



.status-badge {
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    margin-left: -5px;
}

@media (min-width:380px){
    .logo{
        width: 100px;
    }
    nav{
        padding: 0 30px;
    }
    .home-Button{
        font-size: 16px;
    }
    header
    {
        font-size: 20px;
    }
    
}


@media (min-width:768px){
    .logo{
        width: 150px;
    }
    nav{
        padding: 0 60px;
    }
    .home-Button{
        font-size:18px;
    }
    header
    {
        font-size: 34px;
    }
    #subtitle{
        font-size: 34px;
    }
    .radio-button-holder div{
        width: 24%;
    }
    .radio-button-holder{
        justify-content: start;
    }
    .input-holder{
        flex-direction: row;
        justify-content: center;
        align-items: start;
        gap: 20px;
    }
    .searchButton{
        width: 160px;
        height: 70px;
        
    }
    .search-bar{
        height: 70px;
    }
    .input-box{
        width: 70%;
    }
    .buttonHolder{
        width: auto;
        margin-top: 0;
    }
    
   
}




@media (min-width:1024px){
    .logo{
        width: 180px;
    }
    nav{
        padding: 0 80px;
    }
    
    header
    {
        font-size: 50px;
    }
    h3{
        font-size: 50px;
    }
    main{
        height: 500px;
    }
    .radio-button-holder div{
        width: 14%;
    }
    
}

