@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 62.5%;
}

:root {
    /* background colors  */
    --bg-blue: #005085;
    --bg-light-blue: #1AA9E5;
    --bg-white: #FFFFFF;
    --bg-light-white: #FFFCF7;
    --bg-grey: #F5F6FB;

    /* text colors  */
    --text-white: #fff;
    --text-black: #121212; 
    --text-blue: #07A5E4;
    --text-orange: #E59421;
    --text-grey: #4A4A4A;
    --text-light-grey: #444444;
}

body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

a,
a:hover{
    text-decoration: none;
}

li {
    list-style: none;
}

button {
    transition: all 0.3s ease-in-out;
}

.dropdown-menu {
    font-size: 1.5rem;
}

/* upper navbar css  */
.navbar-upper {
    background-color: var(--bg-blue);
    height: 65px;
    position: fixed;
    top: 0;
    z-index: 9;
    width: 100%;
}

.navbar-upper p {
    color: var(--text-white);
    display: inline-block;
    font-size: 1.5rem;
    margin-left: 0.4em;
}

.navbar-upper .navbar-upper-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.navbar-upper .navbar-upper-wrapper .end-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-upper button {
    background-color: var(--bg-blue);
    border: none;
}

.navbar-upper button:hover {
    background-color: var(--bg-blue);
}

.navbar-upper img {
    width: 25px;
    margin-bottom: 0.3em;
}

.navbar-upper button:hover {
    background-color: #0c4b72;
}

/* bottom navbar css  */
.navbar-bottom {
    margin-top: 60px;
}

.navbar-bottom-wrapper button.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-bottom-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 25px;
}

.navbar-bottom-wrapper .start-content h1{
    display: inline-block;
    color: var(--text-blue);
    font-size: 3.5rem;
    margin-top: 0.3rem;
}

.navbar-bottom-wrapper .start-content i {
    color: var(--bg-blue);
    margin-right: 0.3em;
}

.navbar-bottom-wrapper .mid-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
}

.navbar-bottom-wrapper .mid-content li {
    font-size: 2rem;
}

.navbar-bottom-wrapper .mid-content li:hover {
    cursor: pointer;
}

.mid-content p {
    display: inline-block;
    font-size: 1.8rem;
    margin-right: 0.3em;
}

.navbar-bottom-wrapper .end-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 1.8rem;
}

.navbar-bottom-wrapper .end-content button {
    border: 1px solid var(--bg-white);
    background-color: var(--bg-light-blue);
    color: var(--text-white);
    padding: 0.6em 1em;
    border-radius: 4px;
    margin-bottom: 0.6em;
}

.navbar-bottom-wrapper .end-content button:hover {
    background-color: var(--bg-white);
    color: var(--text-blue);
    border: 1px solid var(--bg-light-blue);
}

/* hero section css  */
.hero-section {
    background-color: var(--bg-grey);
    margin-top: 2rem;
    position: relative;
    margin-bottom: 10rem;
}

.hero-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 5em 0;
    padding-bottom: 80px;
}

.hero-wrapper .hero-content {
    margin-top: 40px;
}

.hero-wrapper .hero-content p:first-of-type{
    font-size: 2.5rem;
}

.hero-wrapper .hero-content p:first-of-type span {
    font-size: 3rem;
    font-weight: 400;
}

.hero-wrapper .hero-content h1 {
    font-size: 5rem;
    font-weight: 600;
    line-height: normal;
}

.hero-wrapper .hero-content p:last-of-type {
    font-size: 1.8rem;
    color: var(--text-grey);
    line-height: 1.5;
    margin-top: 1.5rem;
}

.hero-content img {
    width: 160px;
    margin-top: 15px;
    margin-right: 12px;
    cursor: pointer;
}

.hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 65%;
    height: 100px;
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 0;
    padding-left: 1.5em;
    position: absolute;
    left: 20%;
    bottom: -10%;
    box-shadow: -1px 1px 6px 0px rgba(0,0,0,0.7);
    -webkit-box-shadow: -1px 1px 6px 0px rgba(0,0,0,0.7);
    -moz-box-shadow: -1px 1px 6px 0px rgba(0,0,0,0.7);
}

.hero-footer-1 {
    margin-right: 2em;
}

.hero-footer p {
    display: inline-block;
    font-size: 1.5rem;
    color: var(--text-light-grey);
}

.hero-footer p span {
    color: var(--text-black);
    font-weight: bold;
    font-size: 1.6rem;
}

.hero-footer-wrapper {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-footer-wrapper i {
    align-self: center;
    margin-bottom: 10px;
}

.hero-footer-6 {
    background-color: var(--bg-light-blue);
    height: 100%;
    width: 300px;
    border-radius: 0 8px 8px 0;
    padding: 0 1.5em;
    border: 1px solid var(--bg-light-blue);
}

.hero-footer-6:hover {
    background-color: var(--bg-white);
    border: 1px solid var(--bg-light-blue);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.hero-footer-6:hover p {
    color: var(--text-blue);
}

.hero-footer-6 p {
    color: var(--text-white);
    font-size: 2rem;
}

/* section-2 css  */
.section-2 {
    padding: 50px 0; 
    border-bottom: 4px solid var(--bg-grey);
}

.section-2 .main-text {
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 8rem;
}

.section-2 .main-text span {
    color: var(--text-orange);
}

.section-2 .sub-heading {
    color: var(--text-blue);
    font-size: 5rem;
    font-weight: 600;
    display: inline-block;
}

.section-2 .sub-text {
    font-size: 2.8rem;
    display: inline-block;
    margin: 0 0.6em;
    line-height: 1;
}

.section-2 .content-4 {
    display: flex;
    align-items: center;
}

/* section-3 css  */
.section-3 {
    padding: 100px 0;
}

.section-3 .main-text {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 60px;
}

.section-3 .main-text span {
    color: var(--text-blue);
    font-weight: 400;
}

.section-3 .main-text span:hover {
    cursor: pointer;
}

.section-3 .main-content img {
    width: 250px;
}

.section-3 .main-content .img-wrapper {
    height: 185px;
}

.section-3 .main-content h1 {
    font-size: 2.5rem;
    text-align: center;
}

.section-3 .main-content p {
    font-size: 2rem;
    text-align: center;
    color: var(--text-grey);
    margin-bottom: 60px;
}

.section-3 .main-content .col-3:nth-child(3) img {
    margin-top: 40px;
}

.section-3 .main-content button {
    border: 1px solid var(--bg-light-blue);
    background-color: var(--bg-white);
    color: var(--text-blue);
    height: 50px;
    width: 240px;
    margin-left: 40%;
    border-radius: 5px;
}

.section-3 .main-content button:hover {
    background-color: var(--bg-light-blue);
}

.section-3 .main-content button:hover p,
.section-3 .main-content button:hover svg{
    color: var(--text-white);
}

.section-3 .btn-wrapper p {
    color: var(--text-blue);
    display: inline-block;
    margin-right: 10px;
    margin-top: 8px;
}

.section-3 .btn-wrapper svg {
    margin-bottom: 6px;
}

/* section-4 css  */
.section-4 {
    background-color: var(--bg-light-white);
    padding: 5em 0;
}

.section-4 .main-text h1 {
    font-size: 4rem;
    text-align: center;
}

.section-4 .main-text p {
    font-size: 1.8rem;
    text-align: center;
}

.section-4 .main-text button {
    border: 2px solid #EEEBE6;
    background-color: var(--bg-light-white);
    padding: 0em 1em;
    border-radius: 5px;
    margin-right: 10px;
}

.section-4 .main-text button:hover {
    background-color: #EEEBE6;
}

.section-4 .main-text button p {
    display: inline-block;
    color: var(--text-grey);
    margin-top: 10px;
    margin-right: 20px;
}

.section-4 .main-text button svg{
    margin-bottom: 6px;
}

.section-4 .main-text .btn-wrapper {
    padding-left: 25%;
}

.section-4 .main-content {
    padding-top: 4rem;
}

.section-4 .main-content p,
.section-4 .main-content h5,
.section-4 .main-content a {
    text-align: center;
}

.section-4 .main-content h5 {
    font-size: 2rem;
    color: var(--bg-blue);
}

.section-4 .main-content p {
    font-size: 1.5rem;
}

.section-4 .main-content a {
    font-size: 1.5rem;
    margin-left: 35%;
}

/* .section-4 .main-content .card {
    height: 260px;
} */

/* section-5 css  */
.section-5 {
    padding: 7em 0;
}

.section-5 .main-bg {
    background: url('../img/car-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    border-radius: 20px;
    position: relative;
}

.section-5 .bg-content {
    color: var(--text-white);
    position: absolute;
    top: 30%;
    left: 5%;
}

.section-5 .bg-content p {
    font-size: 2rem;
}

.section-5 .bg-content h1 {
    font-size: 4rem;
}

.section-5 .bg-content h1 span {
    color: var(--text-orange);
}

.section-5 .bg-content button {
    border: 1px solid var(--bg-light-blue);
    background-color: var(--bg-light-blue);
    color: var(--text-white);
    height: 50px;
    width: 180px;
    margin-top: 15px;
    border-radius: 5px;
}

.section-5 .bg-content button:hover,
.section-5 .bg-content button:hover p {
    background-color: transparent;
    color: var(--text-blue);
}

.section-5 .bg-content button p {
    display: inline-block;
    margin-right: 10px;
    margin-top: 10px;
}

.section-5 .bg-content button svg {
    margin-bottom: 8px;
}

/* section-6 css  */
.section-6 {
    padding: 8em 0;
}

.section-6 .main-img img {
    width: 500px;
    margin-top: 80px;
}

.section-6 .main-content p.main-text {
    font-size: 2rem;
    color: var(--bg-blue);
    font-weight: 500;
}

.section-6 .main-content h1 {
    font-size: 4rem;
}

.section-6 .main-content h1 span {
    color: var(--text-orange);
}

.section-6 .main-content p.sub-text {
    font-size: 1.8rem;
    margin: 20px 0;
    color: var(--text-grey);
}

.section-6 .sub-content .sub-content-text{
    display: inline-block;
}

.section-6 .sub-content .sub-content-text h1 {
    font-size: 2.5rem;
}

.section-6 .sub-content .sub-content-text p {
    font-size: 1.5rem;
    color: var(--text-grey);
}

.section-6 .sub-content .sub-content-wrapper {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 30px;
}

.section-6 .sub-content i {
    color: var(--bg-light-blue);
    border: 2px solid var(--bg-light-blue);
    padding: 0.6em;
    border-radius: 5px;
    background-color: #DFF1FD;
    margin-right: -10px;
}

/* section-7 css  */
.section-7 {
    background-color: var(--bg-white);
    margin-bottom: 50px;
}

.section-7 .section-7-wrapper .main-text h1,
.section-7 .section-7-wrapper .main-text p {
    text-align: left;
}

.section-7 .section-7-wrapper .main-text p {
    margin-top: 15px;
    margin-top: 5px;
}

.section-7 .section-7-wrapper .btn-wrapper {
    padding-left: 0;
}

/* section-8 css  */
.section-8 {
    background-color: #F7FCFF;
    text-align: center;
    padding: 5rem 0;
}

.section-8 .main-content p.main-text {
    color: var(--bg-blue);
    font-size: 2rem;
    font-weight: 500;
}

.section-8 .main-content h1 {
    font-size: 4rem;
}

.section-8 .main-content p.sub-text {
    font-size: 1.8rem;
}

.section-8 .review svg{
    color: #E59421;
    margin-bottom: 8px;
    margin-right: 5px;
}

.section-8 .review p {
    font-size: 1.8rem;
    font-weight: 500;
    display: inline-block;
}

.section-8 .review p span {
    color: var(--text-blue);
}

/* testimonial */
#testimonial{
    padding: 5rem 0rem;
    margin-top: 20px;
}

.testimonial-title{
    text-align: center;
    font-size: 3rem;
    font-weight: 400;
    color: #555;
}

.testimonial-container{
    display: flex;
    justify-content: space-between;
    font-size: 1.6rem;
    padding: 1rem;
}

.testimonial-box .checked{
    color: #ff9529;
}

.testimonial-box .testimonial-text{
    margin: 1rem 0;
    color: #444;
}

.testimonial-box{
    text-align: center;
    padding: 1.8rem;
    background-color: var(--bg-white);
    box-shadow: -1px 1px 6px 0px rgba(0,0,0,0.7);
    -webkit-box-shadow: -1px 1px 6px 0px rgba(0,0,0,0.7);
    -moz-box-shadow: -1px 1px 6px 0px rgba(0,0,0,0.7);    
}

.testimonial-box-2 {
    margin: 0 20px;
}

.customer-photo img{
    display: block;
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    margin: auto;
}

/* section-9 css  */
.section-9 {
    padding: 10rem 0 5rem 0;
}


.section-9 .main-content {
    text-align: center;
}

.section-9 .main-content h1 {
    font-size: 4rem;
}

.section-9 .main-content p {
    font-size: 1.8rem;
    color: var(--text-grey);
    display: inline-block;
}

.section-9 .sub-content {
    margin-top: 50px;
}

.section-9 .sub-content p.main-text {
    font-size: 2.8rem;
    font-weight: 500;
}

.section-9 .sub-content button {
    border: 1px solid #DFF1FD;
    width: 100%;
    padding-right: 350px;
}

.section-9 .sub-content p.sub-text {
    font-size: 2rem;
    color: var(--text-grey);
}

/* section-10 css  */
.section-10 {
    margin-top: 50px;
    padding: 5rem 0;
}

.section-10 .section-10-wrapper {
    position: relative;
    background-color: #1AA9E5;
    color: var(--text-white);
    border-radius: 20px;
    padding: 1.5rem;
}

.section-10 .main-content {
    margin: 5rem 5rem 5rem 10rem;
}

.section-10 .main-content h1 {
    font-size: 4rem;
}

.section-10 .main-content p {
    font-size: 1.8rem;
    font-weight: 300;
    margin: 20px 0;
}

.section-10 .main-content img {
    width: 150px;
    margin-right: 15px;
}

.section-10 .main-content img:hover {
    cursor: pointer;
}

.section-10 .main-img {
    width: fit-content;
    position: absolute;
    right: 20%;
    bottom: -23%;
}

.section-10 .main-img img {
    width: 250px;
}

/* footer css  */
.footer-sec {
    margin-top: 130px;
    padding: 3.5rem 0 1.5rem 0;
    background-color: var(--bg-blue);
    color: var(--text-white);
}

.footer-sec .main-content {
    display: flex;
    justify-content: space-between;
    font-size: 1.7rem;
    border-bottom: 2px solid #0F5C92;
    padding-bottom: 2em;
}

.footer-sec .main-content li{
    border-bottom: 1px solid var(--bg-blue);
    width: fit-content;
}

.footer-sec .main-content ul:not(:last-child) li:hover {
    border-bottom: 1px solid #9FB8D6;
    cursor: pointer;
}

.footer-sec .main-content li:not(:first-child) {
    color: #9FB8D6;
    margin-top: 12px;
}

.footer-sec .main-content ul:last-child li:last-child i {
    margin-right: 12px;
}

.sub-content {
    text-align: center;
    color: #9FB8D6;
    font-size: 1.7rem;
    padding-top: 1em;
}