@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
}

/*--------------------------------- HEADER ---------------------------------*/

header {
    width: 100%;
    height: 95vh;
    margin: auto;
}

header .container {
    display: block;
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}


header .container nav {
    width: 95%;
    height: 7%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

header .container ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}


header .container nav a {
    position: relative;
    font-size: 1.1rem;
    color: gray;
    text-decoration: none;
    font-weight: 500;
}

header .container nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background-color: gray;
    border-radius: 5px;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .5s;
}

header .container nav a:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}

header .container nav h2 {
    font-size: 35px;
    color: #252767;
    text-transform: capitalize;
}

header nav h2 span {
    color: #d43242;
}

header .container nav ul li {
    padding: 3px 15px;
}

header .container nav ul li a {
    text-decoration: none;
    color: #121213;
    font-size: 13px;
    font-weight: 500;
    transition: .3s linear;
}

header .container nav ul li a:hover {
    color: gray;
}

nav .fas {
    display: none;
}

header .content {
    position: relative;
    width: 100%;
    height: 110%;
}

header .content::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 80%;
    background: url(images/Ram-Setu.jpg)no-repeat center center/cover;
    border-radius: 10px;
    z-index: -1;
}

header .content .cont_bx {
    width: 600px;
    height: auto;
    color: #fff;
    padding: 70px;
}

header .content .cont_bx h1 {
    padding: 10px 20px;
    line-height: 40px;
    font-weight: 800;
}

header .content .cont_bx p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

header .content .cont_bx button {
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid#000;
    background: #000;
    color: #fff;
    outline: none;
    cursor: pointer;
    transition: .3s linear;
}

header .content .cont_bx button:hover {
    background: rgb(113, 113, 113);
    border: 2px solid rgb(133, 133, 133);
}

header .trip_bx {
    position: relative;
    width: 95%;
    height: auto;
    margin: auto;
}

header .trip_bx .search_bx {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 10px 25px rgb(114, 114, 114);
    z-index: 1;
    padding: 10px 20px;
}

header .trip_bx .search_bx .card {
    width: 200px;
    height: 100%;
}

header .trip_bx .search_bx .card h4 {
    font-size: 15px;
    margin: 0;
    font-weight: 700;
}

header .trip_bx .search_bx .card h4 .bi {
    position: absolute;
    font-size: 13px;
    margin-left: 3px 0px 0px 5px;
    transition: .3s linear;
}

header .trip_bx .search_bx .card input {
    margin-top: 3px;
    padding: 5px;
    border: none;
    outline: none;
    font-size: 13px;
}

header .trip_bx .search_bx input[type="button"] {
    background: #000;
    color: #fff;
    border: none;
    outline: none;
    padding: 10px 20px;
    border-radius: 20px;
    transition: .3s linear;
    cursor: pointer;
}

header .trip_bx .search_bx input[type="button"]:hover {
    background: gray;
}

header .trip_bx .treval_bx {
    position: relative;
    width: 100%;
    height: auto;
    margin: auto;
    top: 30px;
    /* background: #000; */
    border-radius: 10px;
    padding-bottom: 20px;
    box-shadow: 0px 20px 25px -10px rgb(165, 165, 165);
}

header .trip_bx .treval_bx::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: rgb(241, 241, 241, .7);
    backdrop-filter: blur(5px);
    z-index: -1;
}

header .trip_bx .treval_bx h4 {
    margin: 0;
    padding: 60px 0px 15px 1.7%;
}

header .trip_bx .treval_bx .cards {
    width: 96%;
    height: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .trip_bx .treval_bx .cards .card {
    width: 220px;
    height: 180px;
}

header .trip_bx .treval_bx .cards .card h3 {
    margin: 0px 0px 10px 0px;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
}

header .trip_bx .treval_bx .cards .card h3 img {
    width: 28px;
    height: 15px;
    margin-left: 5px;
}

header .trip_bx .treval_bx .cards .card img {
    width: 105%;
    height: 50%;
}

header .trip_bx .treval_bx .cards .card img:hover {
    transform: scale(1.1);
    transition: 0.5s;
}

header .trip_bx .treval_bx .cards .card .btn_city {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .trip_bx .treval_bx .cards .card .btn_city a {
    text-decoration: none;
    background: #000;
    color: #fff;
    border-radius: 20px;
    padding: 6px 20px;
    font-size: 11px;
    transition: .3s linear;
}

header .trip_bx .treval_bx .cards .card .btn_city a:hover {
    background: gray;
}

header .trip_bx .treval_bx .cards .card .btn_city h5 {
    font-size: 11px;
    font-weight: 500;
    margin: 0;
    margin-top: 5px;
    line-height: 15px;
}

header .trip_bx .treval_bx .cards .card .btn_city h5 span {
    font-size: 13px;
    font-weight: 700;
}

/*--------------------------------- OFFERS ---------------------------------*/

.offers {
    width: 90%;
    height: 95vh;
    margin: auto;
    margin-top: 100px;
}

.offers h1 {
    font-size: 60px;
    font-weight: 600;
    color: #252767;
    text-align: center;
    padding-top: 100px;
    margin: 0;
}

.offers h1 span {
    font-size: 60px;
    font-weight: 600;
    color: #d43242;
    text-align: center;
    padding-top: 100px;
    margin: 0;
}

.offers p {
    font-size: xx-large;
    font-weight: 500;
    border-bottom: 2px solid #000;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
    margin: 0;
}

.offers .cards {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.offers .cards .card {
    position: relative;
    width: 200px;
    height: 350px;
    margin: 10px;
}

.offers .cards .card h3 {
    width: 140px;
    padding: 6px 0px;
    background: rgb(165, 243, 165);
    border-radius: 20px;
    font-size: 12px;
    display: grid;
    place-items: center;
    margin: auto;
}

.offers .cards .card .img_text {
    position: relative;
    width: 100%;
    height: 250px;
    margin-top: 5px;
}

.offers .cards .card .img_text img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0px 0px;
}

.offers .cards .card .img_text h4 {
    position: absolute;
    font-size: 9px;
    padding: 10px 15px;
    bottom: 0;
    margin: 0;
    color: #fff;
    z-index: 2;
}

.offers .cards .card .img_text h4::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255, .1);
    backdrop-filter: blur(5px);
    z-index: -1;
    bottom: 0;
    left: 0;
}

.offers .cards .card .cont_bx {
    width: 99%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgb(182, 182, 182);
    padding: 5px 0px;
    border-radius: 0px 0px 5px 5px;
}

.offers .cards .card .cont_bx .price,
.days {
    margin: 0px 8px0;
}

.offers .cards .card .cont_bx .price .heart_chat {
    display: flex;
    align-items: center;
}

.offers .cards .card .cont_bx .price .heart_chat i:nth-child(1) {
    color: red;
    font-size: 13px;
    margin-right: 10px;
}

.offers .cards .card .cont_bx .price .heart_chat i span {
    color: #000;
    font-size: 12px;
    margin-left: 3px;
    font-style: normal;
}

.offers .cards .card .cont_bx .price .heart_chat i:nth-child(2) {
    color: red;
    font-size: 13px;
    margin-right: 10px;
}

.offers .cards .card .cont_bx .price .heart_chat i span {
    color: #000;
    font-size: 12px;
    margin-left: 3px;
    font-style: normal;
}

.offers .cards .card .cont_bx .price .heart_chat i:nth-child(2) {
    color: rgb(112, 196, 229);
    font-size: 13px;
    margin-right: 10px;
}

.offers .cards .card .cont_bx .price .info_price {
    display: flex;
    align-items: center;
    margin-top: 3px;
}

.offers .cards .card .cont_bx .price .info_price a {
    text-decoration: none;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    transition: .3s linear;
    margin-right: 13px;
}

.offers .cards .card .cont_bx .price .info_price a:hover {
    color: gray;
}

.offers .cards .card .cont_bx .price .info_price h4 {
    margin: 0;
    font-size: 13px;
}

.offers .cards .card .cont_bx .days {
    color: #fff;
    background: #000;
    font-size: 8px;
    border-radius: 50%;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: .3s linear;
}

.offers .cards .card .cont_bx .days:hover {
    transform: rotate(360deg);
}

/*--------------------------------- SERVICES ---------------------------------*/

.Services h1 {
    font-size: 60px;
    font-weight: 600;
    color: #252767;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 25px;
    border-bottom: 2px solid #333;
    margin: 0;
}

.Services h1 span {
    font-size: 60px;
    font-weight: 600;
    color: #d43242;
    text-align: center;
    padding-top: 100px;
    margin: 0;
}

.Services .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.Services .box-container .box {
    flex: 1 1 30rem;
    border-radius: .5rem;
    padding: 1rem;
    text-align: center;
}

.Services .box-container .box i {
    padding: 1rem;
    font-size: 5rem;
    color: var(#252767);
}

.Services .box-container .box h3 {
    font-size: 2.5rem;
    color: #333;
}

.Services .box-container .box p {
    font-size: 1.0rem;
    color: #666;
    padding: 1rem 0;
}

.Services .box-container .box:hover {
    box-shadow: 0 1rem 2rem rgb(0, 0, 0, 1);
}

/*--------------------------------- ABOUT ---------------------------------*/

.About {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    padding-top: 100px;
    padding-bottom: 100px;
}

.About .image {
    flex: 1 1 41rem;
}

.About .image img {
    width: 100%;
}

.About .content {
    flex: 1 1 41rem;
    text-align: center;
}

.About .content h3 {
    font-size: 3rem;
    color: var(--black);
}

.About .content p {
    font-size: 1.0rem;
    color: var(--light-black);
    line-height: 1.5;
    padding: 1rem 0;
}

.About .content .icons-container {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-end;
}


.About .content .icons-container .icons {
    background: #f9f7f7;
    padding: 2rem;
    flex: 1 1 12rem;
}

.About .content .icons-container .icons i {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: #d43242;
}

.About .content .icons-container .icons span {
    font-size: 1.5rem;
    color: var(--light-black);
    display: block;
}

/*--------------------------------- REVIEW ---------------------------------*/

.Review {
    max-width: 700px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.Review h1 {
    font-size: 60px;
    font-weight: 600;
    color: #252767;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 25px;
    border-bottom: 2px solid #333;
    margin: 0;
}

.Review h1 span {
    font-size: 60px;
    font-weight: 600;
    color: #d43242;
    text-align: center;
    padding-top: 100px;
    margin: 0;
}

.Review h2 {
    text-align: center;
    margin-top: 60px;
}

.Review form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.Review input,
textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.Review textarea {
    resize: vertical;
    min-height: 80px;
}

.Review button {
    padding: 10px;
    border: none;
    background-color: #28a745;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.Review button:hover {
    background-color: #218838;
}

.Review #review-list {
    list-style-type: none;
    padding: 0;
}

.Review .review-item {
    background-color: #f1f1f1;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

/*--------------------------------- BOOKING ---------------------------------*/

.Booking h1 {
    font-size: 60px;
    font-weight: 600;
    color: #252767;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 25px;
    border-bottom: 2px solid #333;
    margin: 0;
}

.Booking h1 span {
    font-size: 60px;
    font-weight: 600;
    color: #d43242;
    text-align: center;
    padding-top: 100px;
    margin: 0;
}

.Booking .book-form {
    padding: 2rem;
    background: #16151510;
}

.Booking .book-form .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.Booking .book-form .flex .inputBox {
    flex: 1 1 41rem;
}

.Booking .book-form .flex .inputBox input {
    width: 100%;
    padding: 1.2rem 1.4rem;
    font-size: 1.6rem;
    color: #454545;
    text-transform: none;
    margin-top: 1.5rem;
    border: #666;
}

.Booking .book-form .flex .inputBox input:focus {
    background: #000;
    color: #fff;
}

.Booking .book-form .flex .inputBox input:focus::placeholder {
    color: #fffff7;
}

.Booking .book-form .flex .inputBox span {
    font-size: 1.5rem;
    color: #454545;
}

.Booking .btn {
    width: 200px;
    font-size: 24px;
    padding: 10px 20px;
    border-radius: 5px;
    border: 2px solid#000;
    background: #0e0e0e;
    color: #fff;
    outline: none;
    cursor: pointer;
    transition: .3s linear;
    text-decoration: none;
    text-align: center;
}

.Booking .btn:hover {
    background: rgb(113, 113, 113);
    border: 2px solid rgb(133, 133, 133);
}

/*--------------------------------- FOOTER ---------------------------------*/

.footer {
    background: url(images/Footer.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}


.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: 3rem;
}

.footer .box-container .box h3 {
    color: #fff;
    font-size: 2.5rem;
    padding-bottom: 2rem;
}

.footer .box-container .box a {
    color: #fffff79b;
    font-size: 1rem;
    padding-bottom: 1rem;
    display: block;
}

.footer .box-container .box a i {
    color: #d43242;
    padding-right: .5rem;
    padding-bottom: 1rem;
    transition: .2s linear;
}

.footer .box-container .box a:hover i {
    padding-right: 2rem;
}

.footer .credit {
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 2rem;
    margin-top: 3rem;
    border-top: .2rem solid #fffff7;
    font-size: 2rem;
    color: #fff;
}

.footer .credit span {
    color: #d43242;
}

/*------------------------------ MEDIA QUARY FOR MOBILE PHONE-------------------------------*/

@media only screen and (max-width:600px) {

    /*------------------------------ NAVBAR -------------------------------*/

    body.menu {
        overflow: hidden;
    }

    nav .fas {
        display: block;
        font-size: 25px;
        cursor: pointer;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 150px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 10px;
        z-index: 5;
        transition: 0.3s ease;
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        display: block;
        margin: 25px;
    }

    nav ul .fas {
        position: absolute;
        display: block;
        top: 5px;
        cursor: pointer;
    }

    /*------------------------------ HEADER -------------------------------*/

    header .content {
        position: relative;
    }

    header .content::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url(images/indiag.webp) no-repeat center center/cover;
        z-index: -1;
    }

    header .content .cont_bx {
        width: 200px;
        padding: 300px 10px;
    }


    header .content .cont_bx h1 {
        padding: 5px;
        background-color: rgb(255, 255, 255, .7);
    }

    header .content .cont_bx p {
        font-size: 14px;
        font-weight: 400;
        color: black;
        background-color: rgb(255, 255, 255, .7);
        padding: 5px;
    }

    header .trip_bx .search_bx {
        display: none;
    }

    header .trip_bx .treval_bx {
        display: none;
    }

    /*------------------------------ OFFER -------------------------------*/

    .offers {
        height: auto;
        margin-top: 50px;
    }

    .offers h1 {
        font-size: 40px;
        padding-top: 50px;
        margin-top: 200px;
    }

    .offers h1 span {
        font-size: 45px;
    }

    .offers p {
        font-size: 20px;
    }

    .offers .cards {
        margin-top: 10px;
        display: grid;
        align-items: center;
        justify-content: space-between;
        grid-template-columns: 1fr;
    }

    .offers .cards .card {
        width: 300px;
        margin: auto;
    }



    /*------------------------------ SERVICE -------------------------------*/


    .Services h1 {
        font-size: 40px;
    }

    .Services h1 span {
        font-size: 40px;
    }

    /*------------------------------ REVIEW -------------------------------*/

    .Review h1 {
        font-size: 40px;
        padding-top: 30px;
        padding-bottom: 15px;
    }

    .Review h1 span {
        font-size: 40px;
    }

    .Review {
        padding: 15px;
        margin: 15px;
    }

    h2 {
        font-size: 1.5rem;
    }

    input,
    textarea {
        font-size: 1rem;
        padding: 8px;
    }

    button {
        font-size: 1rem;
        padding: 10px;
    }

    .review-item {
        font-size: 0.95rem;
        padding: 12px;
    }

    /*------------------------------ BOOKING -------------------------------*/

    .Booking h1 {
        font-size: 36px;
        padding-top: 30px;
        padding-bottom: 15px;
    }

    .Booking h1 span {
        font-size: 36px;
        padding-top: 60px;
    }

    .Booking .book-form {
        padding: 1rem;
    }

    .Booking .book-form .flex {
        flex-direction: column;
        gap: 1.2rem;
    }

    .Booking .book-form .flex .inputBox {
        flex: 1 1 100%;
    }

    .Booking .book-form .flex .inputBox input {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .Booking .book-form .flex .inputBox span {
        font-size: 1.2rem;
    }

    .Booking .book-form .btn {
        font-size: 18px;
        padding: 8px 20px;
    }

    /*------------------------------ FOOTER -------------------------------*/

    .footer .box-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .footer .box-container .box h3 {
        font-size: 18px;
        padding-bottom: 5px;
    }

    .footer .box-container .box a {
        font-size: 10px;
        padding-bottom: 5px;
    }


    .footer .box-container .box a:hover i {
        padding-right: 1rem;
    }

    .footer .credit {
        font-size: 1rem;
    }

    .footer .credit span {
        color: #d43242;
    }
}
