@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;
}


header {
    background: url('../images/hero-moving-truck.jpg') no-repeat center center/cover;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.secondary-color {
    color: #637188;
}

header h1 {
    font-size: 4.5rem;
    margin: 0;
}

header h2 {
    margin: 0;
    color: #fa9247;
    font-size: 4rem;
}

header h3 {
    font-size: 3.5rem;
}

header p {
    font-size: 1.5rem;
}

header .overlay {
    background: #00388bb3;
    width: 100%;
    height: 100%;
    padding: 50px 20px;
}

.btn-orange {
    background: #f97316;
    color: #fff;
    padding: 20px;
}

.btn-outline-light.btn-lg {
    padding: 20px;
    filter: blur(.5px);
}

.downicon i {
    animation: bounce 1.5s infinite;
    cursor: pointer;
}

/* Define the bounce animation */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}


.btn-orange:hover {
    background: #d65e0d;
    color: #fff;
}

section {
    padding: 60px 0;
}


#about h2,
section h2 {
    color: #063075fa;
    font-size: 2.25rem;
}

#about p {
    color: #9b9b9b;
    max-width: 800px;
    margin: 10px auto;
}

#about p strong {
    color: #063075fa;
}

.specialp {
    padding: 2rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    margin-top: 30px !important;
}

.card {
    padding: 1.5rem;
    height: 100%;
}

.whychoose {
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}


.card i {
    font-size: 20px;
    background: linear-gradient(135deg, hsl(217 91% 24%), hsl(217 91% 35%));
    border-radius: 50%;
    width: 50px;
    height: 50px;
    vertical-align: middle;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.card h5 {
    color: #063075fa;
    font-size: 14px;
}

.card p {
    color: #9b9b9b;
    font-size: 13px;
    margin: 0;
}

.service .card i {
    background: linear-gradient(135deg, hsl(25 95% 53%), hsl(25 95% 63%));
}

.service .card h5 {
    color: #171d26;
}

.badge.bg-primary {
    background-color: #fff !important;
    color: #171d26 !important;
    font-size: 12px;
    font-weight: 400;
}

#quote form {
    max-width: 700px;
    margin: 0 auto;
}

#quote form .form-control {
    border-color: #f0f2f5;
    font-size: 13px;
    border-radius: 10px;
    padding: 10px;
}

#quote form .btn-orange {
    padding: 10px;
}

footer {
    background: #063075;
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer p strong {
    font-size: 2.25rem;
}


footer i {
    background: linear-gradient(135deg, hsl(25 95% 53%), hsl(25 95% 63%));
    border-radius: 50%;
    width: 40px !important;
    height: 40px;
    vertical-align: middle;
    text-align: center;
    color: #fff;
    font-size: 16px;
    padding-top: 10px;
}

footer a {
    text-decoration: none;
    color: #fff;
}



@media screen and (max-width: 767px) {

    header h1,
    header h2,
    header h3 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 576px) {
    header p{
        font-size: 13px !important;
    }
    header .btns{
        flex-wrap: wrap;
    }
    header .btns a{
        width: 100%;
    }
        footer .callnum{
        flex-wrap: wrap;
    }
}