
 /* >>>>>>>>>>> font cairo <<<<<<<<<<< */
@font-face { src: url("../assets/Cairo/static/Cairo-Regular.ttf");font-family: 'cairo';font-weight: 400; }
@font-face { src: url("../assets/Cairo/static/Cairo-Medium.ttf");font-family: 'cairo';font-weight: 500; }
@font-face { src: url("../assets/Cairo/static/Cairo-SemiBold.ttf");font-family: 'cairo';font-weight: 600; }
@font-face { src: url("../assets/Cairo/static/Cairo-Bold.ttf");font-family: 'cairo';font-weight: 700; }

/*  */
/* >>>>>>> varables css <<<<<<<< */
:root {
    --color-bt-span: #dc9d07;
    --icons-color: #fcb104;
    --logo-text: #163244;
    --premiy-collor: #0c2b40;
    --text-title-futurs: #2c2c2e;
    --text-dis-futurs: #52525c;
    --bgcolor: #FFFFFF;

    /* >>>>>>>>  font size <<<<<<<< */


    --font-small: 16px;
    /* badge ,dis-icon */
    --font-normall: 20px;
    /*links ,  title-icons */
    --font-medium: 24px;
    /* logo ,p-hero ,dis-servisec-section */
    --font-big: 32px;
    /* name-serveses ,btn-hero */
    --font-hero: 55px;
    /* h1- hero (welcowe) */
    --font-footer: 55px;
    /* footer */

    /* >>>>>>>>  font weight <<<<<<<< */


    --font-weight-m: 400;
    /* small*/
    --font-weight-n: 500;
    /* normall*/
    --font-weight-b: 600;
    /* big*/
    --font-weight-br: 700;
    /*biger*/

}

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

ul li {
    list-style: none;

}

a {
    text-decoration: none;
}

.navbar-toggler {
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.048) !important;
}


body {
    font-family: "cairo";
    font-weight: var(--font-weight-n);
    font-size: var(--font-small);
    background-color: var(--bgcolor);
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}





/* start logo */
.logo {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
}

.logo h1 {
    font-size: var(--font-medium);
    color: var(--logo-text);
    font-weight: var(--font-weight-n);
}

/* end logo */


/* navbar in  header start */
.navbar-nav {
    gap: 20px;
}

.navbar-toggler {
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* navbar in  header end */




/* <<<<<<<< hero start >>>>>>>>> */
.Hero {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 120px;
}

/* div have a title start */
.text-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    width: 100%;
}

.text-hero h1 {
    font-size: var(--font-hero);
    font-weight: var(--font-weight-b);
    color: var(--premiy-collor);
    width: 100%;
    animation: ease forwards;
    opacity: 0;
    animation-name: text-2;
    animation-duration: 0.5s;
    animation-delay: 0.3s;
}

/* slider text in h1 start */
.slide-text {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100px;
    line-height: 100px;
}

/* span/ul/li */
.slider-list {
    margin: 0;
    padding: 0;
    list-style: none;
    animation: slideUp 12s forwards;
    animation-delay: 0.5s;
}

/* ul/li/ style  */
.slider-list li {
    height: 100px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 10px;


}

/* span1 in ul li */
.top-text {
    font-size: 48px;
}

/* span2 in ul li */
.bottom-text {
    font-size: 32px;
    color: var(--color-bt-span);
}

/* animation slider ul */
@keyframes slideUp {

    0%,
    15% {
        transform: translateY(0);
    }

    20%,
    35% {
        transform: translateY(-100px);
        
    }

    40%,
    55% {
        transform: translateY(-200px);
        
    }

    60%,
    75% {
        transform: translateY(-300px);
        
    }

    85%,
    100% {
        transform: translateY(-300px);
        
    }
}

/* im small modile  */
@media (max-width:1080px) {

    .top-text {
        font-size: 32px;
    }

    .bottom-text {
        font-size: 24px;
        color: var(--color-bt-span);
    }


}


/* slider text in h1 end */


.text-hero p {
    font-size: medium;
    color: var(--text-dis-futurs);
    opacity: 0;
    animation: ease forwards;
    animation-name: text;
    animation-duration: 0.5s;
    animation-delay: 1.5s;
}

.text-hero .btn {
    background-color: var(--color-bt-span);
    width: 270px;
    height: 42px;
    color: var(--bgcolor);
    border-radius: 12px;
    opacity: 0;
    animation: ease forwards;
    animation-name: text;
    animation-duration: 0.5s;
    animation-delay: 2s;
}

/* animation p/btn */
@keyframes text {
    0% {
        opacity: 0;
        transform: translate(50px 0);
        transform: scale(0.7);
    }

    100% {
        opacity: 1;
        translate: 0 0;
    }
}

/* h1 animation */
@keyframes text-2 {
    0% {
        opacity: 0;
        transform: translate3d(10px, 0px, 10px);
        transform: scale(0.7);
    }

    100% {
        opacity: 1;
        translate: 0 0;
    }
}

/* div have a title end */
/* sicton servisec start */
.servises {


    display: flex;
    align-items: center;

    flex-direction: column;
    gap: 64px;
    margin-bottom: 120px;

}

/* title section services */
.servises h2 {
    text-align: center;
    font-size: var(--font-big);
    font-weight: var(--font-weight-br);
}

/* motorcycle servic */
.motorcycle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.motorcycle .img-motorcycle img {
    width: 400px;
}

.motorcycle .dis-motorcycle {
    display: flex;
    flex-direction: column;
    text-align: end;
    gap: 64px;
}

/* text betwwen img motorcycle */
.motorcycle-nam {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.motorcycle-nam h3 {
    font-size: var(--font-big);
    font-weight: var(--font-weight-br);
}

/* bachground icon */
.motorcycle .dis-motorcycle h6 span {
    background-color: var(--premiy-collor);
    font-size: 12px;
}

.motorcycle .dis-motorcycle p {
    font-size: var(--font-small);
    color: var(--text-dis-futurs);
}

/* motorcycle servic  */
.tuktuk {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.tuktuk .img-tuktuk img {
    width: 400px;

}

.tuktuk .dis-tuktuk {
    display: flex;
    flex-direction: column;
    text-align: end;
    gap: 64px;
}

.tuktuk-nam {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tuktuk-nam h3 {
    font-size: var(--font-big);
    font-weight: var(--font-weight-br);
}

.tuktuk-nam p {
    font-size: var(--font-small);
    color: var(--text-dis-futurs);
}

.tuktuk .dis-tuktuk h6 span {
    background-color: var(--color-bt-span);
    font-size: 12px;
}



/* features siction */
.features {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 60px;
    padding: 60px 20px;
}

.features h2 {
    text-align: center;
    font-size: var(--font-big);
    font-weight: var(--font-weight-br);
}

.icon {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 30px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .icon {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }

    .Inquiries {

        justify-content: center;

    }

    .content-selctor-Inquiries {

        width: 100px;
        display: flex;
        align-items: center;

    }

    .Question-1 {
        width: 70%;

    }

    .top-footer .title-top-footer .text-title-top h2 {
        font-size: 32px;

    }

    .top-footer .title-top-footer .btn-app {

        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 20px;

    }

    .img-in-footer-bottom {
        display: none;
    }

    .bottom-footer .footer-contaner-end .links-footer {
        display: grid !important;
        grid-template-columns: repeat(2, auto);
        align-content: center;
        justify-content: center;
        text-align: center;
        padding: 0 10px;


    }

}

.icon .img-icon span {
    background-color: #0c2b40;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);

}

.icon .img-icon {
    font-size: 50px;
    color: #fcb104;
}

.icon .dis-icons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.icon .dis-icons h3 {
    font-size: var(--font-normall);
    font-weight: var(--font-weight-r);
    color: var(--text-title-futurs);
}

.icon .dis-icons p {
    font-size: var(--font-small);
    font-weight: var(--font-weight-m);
    color: var(--text-dis-futurs);
}

/* sicton servisec end */
/* section how to kio work start */
.how-kio-work {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 124px;
    margin-bottom: 120px;

}

.how-kio-work h2 {
    text-align: center;
    font-size: var(--font-big);
    font-weight: var(--font-weight-br);

}

.how-kio-work .card {
    position: relative;
    border: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;



}
/* number top card */
.how-kio-work .card span {
    position: absolute;
    top: 0;
    right: 10%;
    background-color: #dc9d07;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    text-align: center;
    color: var(--bgcolor);

}

.how-kio-work .card .card-body h3 {
    font-size: var(--font-normall);
    font-weight: var(--font-weight-br);
    color: var(--text-title-futurs);
}

.how-kio-work .card .card-body p {
    font-size: var(--font-small);
    font-weight: var(--font-weight-m);
    color: var(--text-dis-futurs);
}

/* section how to kio work end */
/* section slider   People's opinions about the Qio app  start */
.slider {

    margin-bottom: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 64px;
    padding: 20px 0;

}

.slider h2 {
    text-align: center;

    font-size: var(--font-big);
    font-weight: var(--font-weight-br);
}

.slider .carousel-inner .carousel-item .card .profile-img-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;


}

.slider .carousel-inner .carousel-item .card .profile-img-icons i {
    color: var(--color-bt-span);
}
/* section slider  end */

/* Frequently Asked Questions */
.Inquiries {

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 700px;
    gap: 64px;
}

.Inquiries .content-selctor-Inquiries {

    width: 500px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.Inquiries .content-selctor-Inquiries .Question-1 button {
    width: 100%;
    background-color: #d6d6d6;
    border: none;
    outline: none;
    border-radius: 16px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 10px;

}

.Inquiries .content-selctor-Inquiries .Question-1 button h3 {
    text-align: end;
    font-size: var(--font-small);
    font-weight: var(--font-weight-n);
}

.Inquiries .content-selctor-Inquiries .Question-1 p {
    text-align: end;
    font-size: var(--font-small);
    font-weight: var(--font-weight-n);
    color: var(--text-dis-futurs);
}
/* start footer */
footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.top-footer {
    background-color: #163244;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 100px;

}

.top-footer .title-top-footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 40px;

}

.top-footer .title-top-footer .btn-app {

    display: flex;
    justify-content: space-between;

}

.top-footer .title-top-footer h2 {
    font-size: var(--font-footer);
    font-weight: var(--font-weight-br);
    color: #FFFFFF;
}

.top-footer .title-top-footer p {
    font-size: var(--font-medium);
    color: #FFFFFF;
    font-weight: var(--font-small);
}

.bottom-footer {
    background-color: #163244;
}

.bottom-footer .footer-contaner-end {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
}

.bottom-footer .footer-contaner-end .logo-footer {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.bottom-footer .footer-contaner-end .logo-footer .logo-in-foter {
    display: flex;
    gap: 20px;
    color: #FFFFFF;
    text-align: center;

}

.bottom-footer .footer-contaner-end .logo-footer .icon-app {
    display: flex;
    justify-content: space-between;
    gap: 20px;

}

.bottom-footer .footer-contaner-end .links-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 70px;




}


.bottom-footer .footer-contaner-end .links-footer ul li a {
    color: #FFFFFF;
}

.bottom-footer .footer-contaner-end .links-footer ul li h1 {
    font-size: var(--font-small);
    font-weight: var(--font-weight-b);
    padding-bottom: 10px;


}

.bottom-footer .footer-contaner-end .links-footer ul li {
    font-size: var(--font-small);
    color: #FFFFFF;
    font-weight: var(--font-weight-n);
    margin: 2px 0;
}

.bottom-footer .footer-contaner-end .links-footer ul li i {
    color: #fcb104;
    margin: 0 5px;
}

.bottom-footer .footer-contaner-end .links-footer .coll-link h1 {
    color: #FFFFFF;
    text-align: center;
    font-size: var(--font-small);
}

.bottom-footer .footer-contaner-end .links-footer .coll-link ul {
    display: flex;
    align-items: center;



}

