* {
    margin: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
    --primary: #a52a2a;
    --secondary: #f5deb3;
}

body {
    background-color: var(--secondary);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

nav {
    height: 100px;
    display: grid;
    position: fixed;
    top: 0px;
    width: 100vw;
    grid-template-columns: 1fr 3fr;
    background: linear-gradient(90deg, rgb(255, 213, 137), rgb(252, 88, 88), orange);
    box-sizing: border-box;
    z-index: 99;
}

nav>menu {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    gap: 50px;
    list-style: none;
    font-size: 18px;
    font-weight: bold;
    padding-top: 38px;
    padding-left: 50px;
    box-sizing: border-box;
    z-index: 99;
}

nav>menu a {
    text-decoration: none;
    color: inherit;
}

nav>menu>li {
    transition: all 100ms 0s linear;
}

nav>menu>li:hover {
    transform: scale(1.1, 1.1);
}

nav>menu>li:last-child>a,
.overlay-btn {
    background-color: var(--primary);
    border: none;
    height: 53px;
    padding: 15px;
    border-radius: 25px;
    font-size: 20px;
    color: white;
    font-weight: bold;
    position: relative;
    
}

nav>menu>li:hover>button {
    background-color: rgb(134, 1, 1);
}

nav>.logo {
    background-image: url('data:image/svg+xml,<svg height="70" width="150" xmlns="http://www.w3.org/2000/svg"><path d="M0 0 H150 V70 H0 Z" stroke="orange" fill="yellow"></path><path d="M8 42 A20 20 0 1 0 7.9 41.9" stroke="orange" fill="none"></path><path d="M15 20 h15 l2 5 q3.5 3,3 5 v2 q0 2,-3 2 h-20 q-2 0,-2 -2 v-2 q-0.5 -2.5,3 -5 z M11 32 h22.5 m0 -1.2 h-5 v-1.5 h4 z m-22.5 0 h5 v-1.5 h-4 z" stroke-width="0.5" fill="none" stroke="red" ></path><path d="M15.5 21 h13.8 l1.5 3.5 h-16.5 z m-2.5 3.5 h-2 v0.5 z m19 0 h2 v0.5 z M11.5 34.7 h3 v2 l-0.5 0.5 h-2 l-0.5 -0.5 z m18.5 0 h3 v2 l-0.5 0.5 h-2 l-0.5 -0.5 z M19 19.3 h7 l-0.5 -0.7 h-6 z" fill="black" stroke="black"></path><text x="42" y="25" fill="black" style="font-family: Arial;font-size:18px;">Samyati Tour</text><text x="45" y="50" fill="black" style="font-family: Arial;font-size:18px;">And Travels</text><text x="20.5" y="19.5" fill="white" style="font-family: Arial;font-size:1.8px;font-weight:bold;">TAXI</text><text x="7" y="65" fill="black" style="font-family: Arial;font-size:10px;">Taxi and Cab services, Indore</text></svg>');
    background-size: 100% 100%;
    margin: 5px;
    margin-left: 10vw;
    border-radius: 15px;
    height: 90px;
    width: 200px;
}

#ch,
label[for="ch"] {
    display: none;
    position: absolute;
    right: 20px;
    top: 30px;
}

label[for="ch"]>div {
    height: 7px;
    width: 34px;
    margin-top: 5px;
    background-color: white;
    border-radius: 10px;
    transform-origin: left;
    transition: all 200ms 0s linear;
}

#ch:checked+label>div:nth-child(1) {
    transform: rotate(45deg);
}

#ch:checked+label>div:nth-child(2) {
    transform: translateX(-15px);
    opacity: 0;
}

#ch:checked+label>div:nth-child(3) {
    transform: rotate(-45deg);
}

.active-list-item {
    --color: rgb(174, 255, 0);
    border-bottom: 7px solid var(--color);
    color: var(--color);
}

@media screen and (max-width: 970px) {
    label[for="ch"] {
        display: inline;
    }

    nav>menu {
        display: block;
        top: 100px;
        right: 0px;
        background: linear-gradient(30deg, rgb(255, 213, 137), rgb(252, 88, 88), orange);
        line-height: 50px;
        width: 200px;
        transform: scaleY(0);
        transform-origin: top;
        position: absolute;
        padding-bottom: 10px;
    }

    #ch:checked~menu {
        transform: scaleY(1);
        transition: all 300ms 0s linear;
    }

    nav>menu>li>button {
        position: static;
    }
}

/*----------------------- News Marqi ----------------------------*/
@keyframes marqiAnim {
    from {
        transform: translateX(0px);
    }

    to {
        transform: translateX(calc(-1020px + 90vw));
    }
}

.marqi {
    height: 38px;
    width: 90vw;
    background-color: white;
    color: brown;
    font-weight: bold;
    font-size: 20px;
    padding: 5px 20px;
    box-sizing: border-box;
    margin: 0px auto;
    overflow: hidden;
    border-radius: 20px;
}

.marqi>div {
    text-wrap: nowrap;
    width: 1000px;
    animation: marqiAnim 4s 0s linear alternate infinite;
}

@media screen and (max-width: 500px) {
    .marqi>div {
        animation-duration: 7s;
    }
}

/*----------------------- Header and overlay --------------------*/
@keyframes bkAnim {
    0% {
        background-image: url("../../Images/ind22-D3MVzZfi.jpg");
    }

    35% {
        background-image: url("../../Images/i22-Cj3810jV.png");
    }

    75% {
        background-image: url("../../Images/ind33-BqD2jGwH.jpg");
    }

}

.animatedHeader {
    animation: bkAnim 10s 0s ease-in normal infinite;
    background-size: 100% 100%;
}

.homepagebk {
    background-image: url("../../Images/rajwada.jpg");
}

.page-header {
    height: calc(100vh - 100px);
    width: 100vw;
    position: relative;
}

.page-header>img {
    height: 100%;
    width: 100%;
}

.header-overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.367);
    display: flex;
    flex-flow: row wrap-reverse;
    justify-content: space-evenly;
    align-content: center;
    gap: 20px;
}

.overlay-text {
    padding: 10px;
    text-shadow: 2px 3px 3px black;
    font-size: 30px;
    border-radius: 20px;
    color: white;
}

.header-overlay>img {
    height: 280px;
    width: 30vw;
    min-width: 280px;
}

@keyframes btnAnim {
    from {
        outline-offset: -1px;
        opacity: 0.7;
    }

    to {
        outline-offset: 15px;
        opacity: 1;
    }
}

.overlay-btn {
    margin: 30px 0px 0px 20px;
    height: 30px;
    width: 200px;
    text-align:center;
    outline: 2px solid white;
    animation: btnAnim 800ms 0s linear infinite normal;
}

.overlay-btn:hover {
    background-color: rgb(151, 3, 3);
    transform: scale(1.1, 1.1);
}

@media screen and (max-width: 600px) {
    .overlay-text {
        font-size: initial;
    }
}

/*---------------------- Floaters -----------------------------*/
.float-call,
.float-whatsapp {
    position: fixed;
    bottom: 20px;
    height: 70px;
    width: 70px;
    background-size: 100% 100%;
    border-radius: 50%;
    z-index: 5;
    outline: 1px solid white;
    animation: btnAnim 600ms 0s linear infinite normal;
}

.float-whatsapp {
    right: 20px;
    background-image: url("../../Images/whatt-BtCgz4Tn.png");
}

.float-call {
    left: 20px;
    background-image: url("../../Images/phone-call--D1Vtx5W.png");
}

/*---------------------- How we serve -------------------------*/
main {
    margin-top: 100px;
    background-color: var(--primary);
}

.how-we-serve {
    width: 80vw;
    margin: 10px auto;
    min-height: 300px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;

}

.how-we-serve>div:first-child {
    min-width: 280px;
    width: 23vw;
    height: 300px;
}

.how-we-serve>div:first-child>img {
    height: 100%;
    width: 100%;
}

.how-we-serve>div:last-child {
    width: calc(80vw - 400px);
    min-width: 260px;
    font-size: 18px;
    text-align: justify;
    padding: 5px 10px;
    color: var(--secondary);
    line-height: 25px;
}

.section-headings {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--secondary);
}

/*---------------------- Our Facilities -------------------*/
.facilities {
    background-color: var(--secondary);
    padding-top: 20px;
}

.facilities-flex {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    background-color: var(--secondary);
    padding: 20px 10px;
    gap: 5px 10px;
}

.facilities-flex>div {
    display: grid;
    height: 240px;
    width: 180px;
    grid-template-rows: 1fr 40px;
    background-color: brown;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 10px;
}

.facilities-flex>div>span {
    background-color: var(--secondary);
    border-radius: 10px;
    padding: 13px;
    font-weight: bold;
    text-align: center;
}

.facilities-flex>div>img {
    height: 165px;
    width: 161px;
    border-radius: 10px;
}

@media screen and (max-width:390px) {
    .facilities-flex>div {
        width: 165px;
    }

    .facilities-flex {
        padding: 20px 0px;
        gap: 5px 5px;
    }

    .facilities-flex>div>img {
        width: 145px;
    }

    .facilities-flex>div>span {
        font-size: 14px;
    }
}

/*--------------------- Fleet ----------------------*/
.fleet {
    width: 80vw;
    margin: 10px auto;
}

.fleet-flex {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    gap: 20px;
    margin: 10px;
}

.fleet-box {
    width: 100%;
    max-width: 300px;
    height: 400px;
    display: grid;
    grid-template-rows: 200px 1fr 65px;
    outline: 1px solid yellow;
    transition: all 200ms 0s linear;
    background-color: black;
    border-radius: 20px;
}

.fleet-flex>div:hover {
    transform: translateY(-15px);
}

.fleet-box>img {
    height: 94%;
    width: 94%;
    margin: 3%;
    border-radius: 10px;
}

.fleet-box>div {
    margin: 10px;
    color: white;
}

.fleet-box span {
    font-size: 15px;
    font-style: italic;
    color: var(--secondary);
}

.fleet-box p::after {
    content: "\2b50 \2b50 \2b50 \2b50 \2b50";
}

.fleet-box ul {
    margin-left: 15px;
    line-height: 25px;
    color: rgb(250, 160, 160);
}

.fleet-box a {
    display: inline-block;
    height: 45px;
    width: 45%;
    margin: 0px 5px;
    font-size: 20px;
    border-radius: 10px;
    color: white;
    border: none;
    cursor: pointer;
    padding:10px 0px 10px 20px;
    box-sizing: border-box;
}

.fleet-box a:first-of-type {
    background-color: rgb(250, 78, 78);
}

.fleet-box a:last-of-type {
    background-color: rgb(25, 160, 2);
}

.fleet-box a:hover {
    transform: scale(1.1, 1.1);
}

@media screen and (max-width: 690px) {
    .how-we-serve {
        width: 100vw;
        justify-content: space-evenly;
    }

    .how-we-serve>div,
    .how-we-serve>div:last-child {
        width: 100vw;
        line-height: auto;
    }

    .fleet {
        width: 100vw;
    }
}

/*--------------------- See more button ------------------*/
.see-more {
    text-decoration: none;
    display: inline-block;
    height: 50px;
    width: 150px;
    text-transform: uppercase;
    font-weight: bold;
    display: inline;
    margin: 10px calc(45vw - 150px);
    background-color: transparent;
    border: 3px solid white;
    font-size: 20px;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    padding: 10px 0px 10px 20px;
    box-sizing: border-box;
    transition: all 200ms 0s linear;
}

.see-more:hover {
    background-color: white;
    color: var(--primary);
    transform: scale(1.1, 1.1);
}

/*--------------------- Reviews ---------------------------*/
.reviews {
    background-color: var(--secondary);
    position: relative;
    padding: 10px 0px;
    overflow: hidden;
}

.review-main {
    width: 1000px;
    height: 240px;
    margin: 10px auto;
    position: relative;
    padding: 0px 5px;
}

.js-scrolled {
    width: 1000px;
    height: 240px;
    overflow: hidden;
    scroll-behavior: smooth;
}

#review-right-btn,
#review-left-btn {
    height: 50px;
    width: 50px;
    background-color: rgba(128, 128, 128, 0.351);
    padding-left: 10px;
    box-sizing: border-box;
    border-radius: 50%;
    font-size: 40px;
    opacity: 0.7;
}

#review-right-btn:hover,
#review-left-btn:hover {
    opacity: 1;
    color: gray;
}

#review-left-btn {
    position: absolute;
    top: 90px;
    left: -10px;
}

#review-right-btn {
    position: absolute;
    top: 90px;
    right: -10px;
    z-index: 5;
}

.review-div {
    height: 100%;
    width: calc(500px * 4);
    display: flex;
    flex-flow: row nowrap;
    gap: 15px;
}

.review-div:hover {
    animation-play-state: paused;
}

.review-grid {
    height: 100%;
    width: 87%;
    min-width: 280px;
    border-radius: 20px;
    outline: 2px solid white;
    margin: auto;
    background-color: var(--primary);
    display: grid;
    grid-template-rows: 30px 30px 1fr;
    grid-template-columns: 60px 1fr;
    color: white;
    padding: 10px;
    box-sizing: border-box;
}

.review-grid>img {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    height: 100%;
    width: 100%;
    border-radius: 50%;
}

.review-grid>span {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    font-size: 20px;
    color: white;
    padding: 5px;
}

.review-grid>i::after {
    content: "\2b50 \2b50 \2b50 \2b50 \2b50";
    font-style: normal;
}

.review-grid>p {
    grid-row: 3 / 4;
    grid-column: 2 / 3;
    font-size: 18px;
    text-overflow: ellipsis;
}

@media screen and (max-width:1020px) {

    .review-main,
    .js-scrolled {
        width: 500px;
    }
}

@keyframes r-scroll {
    to {
        transform: translateX(-1500px);
    }
}

@media screen and (max-width:530px) {

    #review-left-btn,
    #review-right-btn {
        display: none;
    }

    .review-grid {
        width: 90vw;
        margin: 0px 10px;
    }

    .js-scrolled {
        width: calc(90vw * 4px);
    }

    .review-div {
        animation: r-scroll 10s 0s infinite linear normal;
    }
}

/*-------------------------Footer -------------------*/
.footer {
    position: relative;
}

.footer-top {
    height: 60px;
    width: 100vw;
    background-image: url('data:image/svg+xml, <svg height="60" width="300" xmlns="http://www.w3.org/2000/svg" ><path d="M0 50 Q100 -50, 200 49 H200 Q240 80, 300 0 V60 H0 Z" stroke="brown" fill="brown"></path></svg>');
    background-size: 100% 100%;
    background-repeat: repeat;
    box-shadow: 0px 3px 0px var(--primary);
}

.footer-body {
    width: 100vw;
    background-color: var(--primary);
    box-shadow: 0px -2px 0px var(--primary);
}

.foot-contact {
    width: 80vw;
    margin: 0px auto;
    padding: 10px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    gap: 20px;
    border-bottom: 2px solid white;
}

.foot-contact>.contact {
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-template-rows: 1fr 1fr;
    padding: 5px;
    height: 90px;
    width: 200px;
    border-radius: 10px;
    color: white;
}

.contact>h2,
.contact>p {
    padding-top: 10px;
    padding-left: 2px;
}

.contact>i {
    grid-area: 1 / 1 / 3 / 1;
    font-size: 35px;
    margin-top: 5px;
}

.contact:hover {
    outline: 2px solid white;
    box-shadow: 3px 3px 5px white;
    background-color: rgba(255, 255, 255, 0.3);
}

/*----------------------- qlinks And Social------------------------*/
.ql-social {
    width: 80vw;
    margin: 10px auto;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
}

.ql-social>.ql,
.social {
    width: 300px;
    line-height: 30px;
    font-size: 20px;
    margin: 10px 0px;
    list-style-type: "\1f695";
    color: white;
}

.ql-social a,
.social a {
    text-decoration: none;
    color: inherit;
}

.social>li {
    list-style: none;
    display: inline-block;
    font-size: 40px;
    margin: 10px;
    cursor: pointer;
}

.ql-social>.ql>li:hover {
    transform: scale(1.1, 1.1) translateX(20px);
}

.social>li:nth-child(2):hover~.info::after {
    content: "Facebook";
}

.social>li:nth-child(3):hover~.info::after {
    content: "Instagram";
}

.social>li:nth-child(4):hover~.info::after {
    content: "Twitter";
}

.copyright {
    height: 50px;
    width: 100vw;
    text-align: center;
    color: gray;
    background-color: black;
    box-sizing: border-box;
    padding: 10px;
}

/*           _____________________
            | Complete Design and |
            | code by AGS. @ sky  |
            |_____________________|
*/
/*---------------------------- CONTACT PAGE ------------------------*/
.contact-info {
    width: 80vw;
    margin: 10px auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    padding: 10px;
}

.contact-info>div {
    width: 97vw;
    max-width: 400px;
    height: 400px;
    display: flex;
    flex-flow: column nowrap;
    align-content: space-evenly;
    font-size: 20px;
    color: white;
    margin-bottom: 25px;
}

@media screen and (max-width:380px) {
    .contact-info {
        width: 98vw;
        padding: 5px;
    }

}

.contact-form {
    background-color: var(--secondary);
    display: flex;
    flex-flow: row wrap;
    gap: 30px;
    margin: 20px auto;
    width: 90vw;
    justify-content: space-evenly;
}

.contact-form>.add-box-flex>div {
    width: 100%;
    max-width: 350px;
    margin: 54px 0px;
    font-family: monospace, Arial;
    padding: 20px 10px;
    box-sizing: border-box;
    color: blue;
    border-radius: 10px;
    box-shadow: 1px 1px 5px blue;
}

.contact-form form {
    border-radius: 10px;
    width: 100%;
    max-width: 700px;
    padding: 2px;
    text-align: center;
    box-shadow: 1px 1px 5px blue;
}

.contact-form .name-mail {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: none;
    outline: none;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 2px;
    border-bottom: 1px solid blue;
    font-size: 20px;
    border-radius: 10px;
}

.contact-form input {
    width: calc(100% - 20px);
    margin: 10px 0px;
}

.name-mail>input {
    width: 300px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background-color: rgb(240, 240, 249);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8585f9;
}

.contact-form textarea {
    padding: 10px;
    resize: vertical;
    width: calc(100% - 20px);
}

.contact-form button {
    height: 40px;
    width: 130px;
    border-radius: 20px;
    margin: 10px auto;
    font-size: 20px;
    border: 1px solid blue;
    background-color: white;
    color: #8585f9;
}

.contact-form button:hover {
    outline: 2px solid blue;
    color: blue;
}


@media screen and (max-width: 1000px) {

    .edu-marqi,
    .snap-flex {
        width: 90vw;
    }

    .snap-flex {
        padding: 0px;
    }
}

/*------------------------ Packages Page ----------------------*/
.package-flex {
    width: 80vw;
    margin: 0px auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    padding: 20px 0px;
    gap: 20px;
}

.package {
    width: 280px;
    height: 280px;
    outline: 2px solid white;
    display: grid;
    font-size: 20px;
    grid-template-rows: 1fr 1fr 1fr 50px;
    padding: 5px;
    padding-top: 20px;
    box-sizing: border-box;
    background-color: var(--secondary);
    position: relative;
    border-radius: 20px;
    transition: transform 200ms 0s linear;
}

.booknow {
    font-size: 20px;
    color: white;
    background-color: orange;
    border-radius: 20px;
    width: 90%;
    margin: 0px 5%;
    border: none;
    animation: btnAnim 500ms 0s linear infinite normal;
    outline: 2px solid orange;
    cursor: pointer;
}

.trip {
    padding-top: 10px;
    text-align: center;
}

.booknow {
    display: none;
}

.package:hover {
    outline: 3px solid orange;
    transform: scale(1.05, 1.05);
    text-shadow: 1px 1px 1px black;
}

.package:hover>.trip {
    display: none;
}

.package:hover>.booknow {
    display: inline;
}

.package:hover>.package-overlay {
    transform: scaleX(0);
}

.package-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    transition: all 1s 0s linear;
    transform-origin: right;
    border-radius: 20px;
}

.package-overlay>img {
    height: calc(100% - 55px);
    width: 100%;
    border-radius: 20px;
}

.wp-form {
    width: 80vw;
    margin: 10px auto;
    background-color: var(--secondary);
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.wp-form label {
    font-size: 20px;
    color: brown;
}

.wp-form select {
    width: 200px;
    font-size: 18px;
    border: none;
    outline: none;
    border-bottom: 1px solid brown;
    background-color: wheat;
    margin: 10px auto;
}

.wp-form input {
    font-size: 20px;
    color: white;
    background-color: orange;
    border-radius: 20px;
    height: 30px;
    width: 150px;
    margin: 0px 5%;
    border: none;
    animation: btnAnim 500ms 0s linear infinite normal;
    outline: 2px solid orange;
    cursor: pointer;
    margin-top: 10px;
}