@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');



:root{
    --main:#FFC265;
    --second-color: #26374A;
    --light-color: #d1d8e0;
    --box-shadow:.5rem .5rem 0 rgba(110, 110, 110, 0.2);
    --text-shadow:.4rem .4rem 0 rgba(0,0,0, .2);
    --border:.2rem solid var(--main);
}

*{
    font-family: 'Poppins', sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    list-style: none;
    text-transform: none;
    transition: all .2s linear;
}

html,body{
    font-size: 62.5%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

section{
    padding: 7rem 9%;
}



/*==========Header Section CSS===========*/

.nav_btn{
    background-color: #00a164;
    outline: none;
    border: 2px solid #00a164;
    color: #fff;
    padding: 8px 30px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    border-radius: 50px;
    font-size: 13px;
}

.nav_btn:hover{
    background-color: #fff;
    color: #26374A;
    border: 2px solid #00a164;
    transition: all ease-in-out 0.3s;
}

.navbar{
    width: 100%;
    height: 90px;
}

.navbar-brand img{
    width: 100%;
    background: #ffffff;
    border-radius: 0% 0% 50% 50%;
    margin-top: 5rem;
    cursor: pointer;
    padding: 0px 10px;
}

.nav-item a{
    text-decoration: none;
    color: #26374A;
}

.nav-item a:hover{
    color: #00a164;
    transition: all 0.3s ease; 
}

.responsive_bg{
    padding: 5px 10px;
    background: #fff;
}


 .dropdown .dropdown-menu li a{
    text-align: left;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.8;
    width: 170px;
    padding: 5px 10px;
}

 .dropdown:hover .dropdown-menu{
    position: absolute;
    top: 3rem;
    left: 0;
    display: grid;
    grid-template-columns: repeat(1,1fr);
}


/*==========Home  Section CSS===========*/

.carousel{
    height: 100vh;
    margin-top: 90px;
    width: 100vw;
    overflow: hidden;
    position: relative;
}
.carousel .list .item{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}
.carousel .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel .list .item video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel .list .item .content{
    position: absolute;
    top: 20%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}
.carousel .list .item .author{
    font-weight: bold;
    letter-spacing: 3px;
}
.carousel .list .item .title,
.carousel .list .item .topic{
    font-size: 5em;
    font-weight: bold;
    line-height: 1.3em;
}

.carousel .list .item .des{
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.3em;
}
.carousel .list .item .topic{
    color: #f1683a;
}
.carousel .list .item .buttons{
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}
.carousel .list .item .buttons button{
    border: none;
    background-color: #eee;
    letter-spacing: 3px;
    font-family: Poppins;
    font-weight: 500;
}
.carousel .list .item .buttons button:nth-child(2){
    background-color: transparent;
    border: 1px solid #fff;
    color: #eee;
}
/* thumbail */
.thumbnail{
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}
.thumbnail .item{
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.thumbnail .item .content{
    color: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
.thumbnail .item .content .title{
    font-weight: 500;
}

.thumbnail .item .content .description{
    font-weight: 300;
}
/* arrows */
.arrows{
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}
.arrows button{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee4;
    border: none;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
}
.arrows button:hover{
    background-color: #fff;
    color: #000;
}

.arrows #prev{
    font-size: 2rem;
}

.arrows #next{
    font-size: 2rem;
}
/* animation */
.carousel .list .item:nth-child(1){
    z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons
{
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.carousel .list .item:nth-child(1) .content .title{
    animation-delay: 1s!important;
}
.carousel .list .item:nth-child(1) .content .topic{
    animation-delay: 1s!important;
}
.carousel .list .item:nth-child(1) .content .des{
    animation-delay: 1s!important;
}
.carousel .list .item:nth-child(1) .content .buttons{
    animation-delay: 1s!important;
}
/* create animation when next click */
.carousel.next .list .item:nth-child(1) img{
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}
@keyframes showImage{
    to{
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1){
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.prev .list .item img{
    z-index: 100;
}
@keyframes showThumbnail{
    from{
        width: 0;
        opacity: 0;
    }
}
.carousel.next .thumbnail{
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext{
    from{
        transform: translateX(150px);
    }
}

/* running time */

.carousel .time{
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: #f1683a;
    left: 0;
    top: 0;
}

.carousel.next .time,
.carousel.prev .time{
    animation: runningTime 3s linear 1 forwards;
}
@keyframes runningTime{
    from{ width: 100%}
    to{width: 0}
}


/* prev click */

.carousel.prev .list .item:nth-child(2){
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img{
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}
@keyframes outFrame{
    to{
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1){
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.next .arrows button,
.carousel.prev .arrows button{
    pointer-events: none;
}
.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons
{
    animation: contentOut 1.5s linear 1 forwards!important;
}

@keyframes contentOut{
    to{
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}


/*==========Selection  Section CSS===========*/

.booking {
    width: 70%;
    height: 35vh;
    background-color: rgba(218, 220, 228, 0.582);
    position: absolute;
    bottom: -250px;
    left: 22rem;
    padding: 0px 26px;
    border-radius: 10px 0 10px 0;
    box-shadow: 2px 2px 14px rgb(145, 142, 142);
    z-index: 1000;
  }

  
  .booking__type {
    width: fit-content;
    padding: 5px;
    display: grid;
    grid-template-columns: max-content max-content max-content;
    align-items: center;
    background-color: #26374A;
    border-radius: 2px;
  }
  
  .booking__type > div {
    padding: 10px;
    color: #fff;
    border-radius: 2px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
  }

  .booking__type a{
    padding: 10px;
    color: #fff;
    border-radius: 2px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    list-style: none;
    transition: all 0.3s ease;
  }

  .booking__type a:hover{
    color: #5484dd;
    background-color: #fff;
  }
  
  .booking__type > :is(div:hover, div.active) {
    color: #5484dd;
    background-color: #fff;
  }
  
  .booking__form {
    padding: 1.5rem 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 2rem;
    background-color: rgb(218, 220, 228);
    border-radius: 2px;
    margin-top: 1rem;
  }

  .inputBox {
    padding: 1.5rem 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 3rem;
    background-color: rgb(218, 220, 228);
    border-radius: 2px;
  }

  .booking__input {
    display: grid;
    gap: 5px;
  }
  
  .booking__input label {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
  }
  
  .booking__input input {
    width: 100%;
    padding: 0.5rem;
    font-size: 1.8rem;
    color: #2d3436;
    outline: none;
    border: 1px solid var(--extra-light);
    border-radius: 2px;
    cursor: pointer;
  }

  .booking__input .drop_1 {
    width: 100%;
    padding: 0.5rem;
    font-size: 1.8rem;
    color: #2d3436;
    outline: none;
    border: 1px solid var(--extra-light);
    border-radius: 2px;
    cursor: pointer;
  }



  .booking__btn {
    text-align: right;
  }

  
  .booking__btn_1 {
    text-align: left;
  }

 .booking__btn a[type="submit"]{
    padding: 0.70rem 5rem;
    font-size: 1.8rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    background-color: #e06602;
    outline: none;
    border: none;
    border-radius: 20px;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 2rem;
}

 .booking__btn a[type="submit"]:hover{
    background-color: #e06602;
}

  /*==========validation one way form Section CSS===========*/

.inputBox .booking__input .item{
    width: 100%;
    padding: 0.5rem;
    font-size: 1.8rem;
    color: #2d3436;
    outline: none;
    border: 1px solid var(--extra-light);
    border-radius: 2px;
    cursor: pointer;
}



  

  .main_radio_div{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
    border-bottom: 1px solid var(--second-color);
  }

  .main_radio_div .sub_radio_div{
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--second-color);
    margin-bottom: 1rem;
  }

  .main_radio_div .sub_radio_div .radio{
    cursor: pointer;
    accent-color: #b91414;
  }


  
.booking__input .wrapper{
    width: 100%;
    margin: 0px auto 0;
  }

.booking__input .select-btn, li{
    display: flex;
    align-items: center;
    cursor: pointer;
  }

.booking__input .select-btn{
    height: 39px;
    padding: 0.8rem;
    font-size: 18px;
    background: #fff;
    border-radius: 5px;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
.booking__input  .select-btn i{
    font-size: 15px;
    transition: transform 0.3s linear;
  }
.booking__input .wrapper.active .select-btn i{
    transform: rotate(-180deg);
  }
.booking__input .content{
    position: absolute;
    display: none;
    padding: 10px;
    margin-top: 15px;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
.booking__input .wrapper.active .content{
    display: block;
  }
.booking__input .content .search{
    position: relative;
  }
.booking__input  .search i{
    top: 50%;
    left: 15px;
    color: #999;
    font-size: 20px;
    pointer-events: none;
    transform: translateY(-50%);
    position: absolute;
  }
.booking__input .search input{
    height: 50px;
    width: 100%;
    outline: none;
    font-size: 17px;
    border-radius: 5px;
    padding: 0 20px 0 43px;
    border: 1px solid #B3B3B3;
  }
.booking__input .search input:focus{
    padding-left: 42px;
    border: 2px solid #4285f4;
  }
.booking__input  .search input::placeholder{
    color: #bfbfbf;
  }
  .booking__input  .content .options{
    margin-top: 10px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 7px;
  }
  .booking__input  .options::-webkit-scrollbar{
    width: 7px;
  }
  .booking__input   .options::-webkit-scrollbar-track{
    background: #f1f1f1;
    border-radius: 25px;
  }
  .booking__input  .options::-webkit-scrollbar-thumb{
    background: #ccc;
    border-radius: 25px;
  }
  .booking__input  .options::-webkit-scrollbar-thumb:hover{
    background: #b3b3b3;
  }
  .booking__input .options li{
    height: 50px;
    padding: 0 13px;
    font-size: 21px;
  }
  .booking__input  .options li:hover, li.selected{
    border-radius: 5px;
    background: #f2f2f2;
  }



/*==========Active tab Product Section CSS===========*/

.tab_btn.active-tab {
    background: #fff;
    color: #000;
    border-radius: 2px;
}

.tab_item:not(.active-tab){
    display: none;
}

/*==========Active Radio tab Product Section CSS===========*/
.sub_radio_div.active-radio{
    background-color: var(--second-color);
    color: #fff;
    padding: 3px 5px;
    border-radius: 20px;
}


.tab_item_radio:not(.active-radio){
    display: none;
}

/*==========Scroll Progress Button Section CSS===========*/
#progress{
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 60px;
    height: 60px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
    cursor: pointer;
    z-index: 1000;
}

#progress_value{
    display: block;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    background-color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: var(--second-color);
}


/*==========About Section CSS===========*/

.about .row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 5rem;
}

.about .row .image{
    flex: 1 1 45rem;
}

.about .row .image img{
    width: 100%;
}

.about .row .content{
    flex: 1 1 45rem;
}

.about .row .content h3{
    color: #1e272e;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5;
}

.about .row .content p{
    color: #485460;
    padding: 1rem 0;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    justify-content: space-between;
}

.about .row .content .counter_div{
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.about .row .content .counter_div .counter h2{
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    font-size: 4rem;
    padding: 10px 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgb(145, 142, 142);
}


.btn-1{
    display: block;
    margin-top: 1rem;
    padding: .8rem 1.8rem;
    padding-left: 1rem;
    border: none;
    border-radius: 5rem;
    box-shadow: 0px 0px 4px rgb(145, 142, 142);
    background: #FFC265;
    color: var(--second-color);
    cursor: pointer;
    font-size: 2rem;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}


.btn-1 span{
    padding: .7rem 1rem;
    border-radius: .5rem;
    background: var(--main);
    color: #fff;
    margin-left: .5rem;
}

.btn-1:hover{
    background: var(--second-color);
    color: #fff;
}

.btn-1:hover span{
    color: var(--main);
    background: #fff;
    margin-left: 1rem;
}






/*==========Service Section CSS===========*/
.service_heading{
    color: var(--second-color);
    display: block;
    font-size: 3rem;
    line-height: 50px;
    text-align: center;
    padding: 20px 0px;
    position: relative;
}

.service_heading::before{
    content: '';
    position: absolute;
    top: 44px;
    left: 30px;
    width: 80px;
    background: #ffa801;
    height: 3px;
    width: 149px;
}

.service_heading::after{
    content: '';
    position: absolute;
    top: 44px;
    right: 30px;
    width: 80px;
    background: #ffa801;
    height: 3px;
    width: 149px;
}
.text1{
    line-height: 1.2;
}

.text1 a{
    background-color: #f39d12cb;
    color: #34495e;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 10px;
    text-decoration: none;
    outline: none;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    list-style: none;
    font-size: 1.5rem;
    
}

.text1 a:hover{
    background-color: #34495e;
    color: #fff;
    transition: all 0.3s ease;
    border: none;
}


.text2 a{
    background-color: #f39d12cb;
    color: #34495e;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 10px;
    text-decoration: none;
    outline: none;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    list-style: none;
    font-size: 1.5rem;
    margin-top: 18px;
    
}

.text2 a:hover{
    background-color: #34495e;
    color: #fff;
    transition: all 0.3s ease;
    border: none;
}

.text1 h5{
    color: #02ca6d;
    font-size: 25px;
}

.text1 h5:hover{
    color: #f39d12cb;
    transition: all 0.3s ease;
}


.card_heading a{
    list-style: none;
    text-decoration: none;
}

.card_heading h5{
    color: #02ca6d;
    font-size: 1.8rem;
    text-align: center;
}

.card_heading h5:hover{
    text-decoration: underline;
    color: #f39d12cb;
    transition: all 0.3s ease;
}
.umrah_package{
background-color: #F7F0E5;
}

.button{
    padding: 10px 25px;
    border-radius: 50px;
    background-color: #FFC265;
    color: #26374A; 
    font-size: 1.5rem;
    border: 2px solid #FFC265;
    outline: none;
    transition: all 0.3s ease-in;
}

.button:hover{
    background-color: #fff;
    color: #26374A;
    border: 2px solid #FFC265;
    transition: all 0.3s ease-in;
}

.button1{
    padding: 10px 25px;
    border-radius: 50px;
    background-color: #FFC265;
    color: #26374A; 
    font-size: 1.5rem;
    border: 2px solid #FFC265;
    outline: none;
    transition: all 0.3s ease-in; 
}

.button1:hover{
    background-color: #F7F0E5;
    color: #26374A;
    border: 2px solid #FFC265;
    transition: all 0.3s ease-in;
}


/*==========Highlight Section CSS===========*/

.highlight_heading{
    color: var(--second-color);
    display: block;
    font-size: 3rem;
    line-height: 50px;
    text-align: center;
    padding: 20px 0px;
    position: relative;
}

.highlight_heading::before{
    content: '';
    position: absolute;
    top: 44px;
    left: -10px;
    width: 80px;
    background: #ffa801;
    height: 3px;
    width: 149px;
}

.highlight_heading::after{
    content: '';
    position: absolute;
    top: 44px;
    right: -10px;
    width: 80px;
    background: #ffa801;
    height: 3px;
    width: 149px;
}

.highlight .box{
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 5rem;
}

.highlight .box img{
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgb(145, 142, 142);
}


.highlight .box h2{
    font-size: 2rem;
    color: var(--second-color);
}

.highlight .box p{
    font-size: 1.2rem;
    color: var(--second-color);
}


/*==========Popular Hajj packages section start===========*/

.btn1{
    background-color: #FFC265;
    color: #26374A;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 800;
    border: none;
    text-decoration: none;
}

.btn1:hover{
    background-color: var(--second-color);
    color: #fff;
    transition: all ease 0.3s;
}




/*==========Banner Section CSS===========*/


.banner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.8) url(image/banner_image_3.jpg);
    background-attachment: fixed;
    background-blend-mode: darken;
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
}

.banner h3{
    color: #fff;
    font-size: 3.5rem;
    padding: 10px 0;
}

.banner p{
    color: #fff;
    font-size: 1.5rem;
    padding: 10px 0;
}


.banner .normal{
    font-size: 15px;
    font-weight: 600;
    padding: 10px 30px;
    color: #fff;
    background: #ca5b00;
    border-radius: 40px;
    margin-bottom: -1rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    outline: none;
    transition: all 0.5s ease;
}

.banner .normal:hover{
    background: var(--second-color);
    color: #fff;
}

/*==========Review section end===========*/

.testimonial_heading{
    color: var(--second-color);
    display: block;
    font-size: 3rem;
    line-height: 50px;
    text-align: center;
    padding: 20px 0px;
    position: relative;
}

.testimonial_heading::before{
    content: '';
    position: absolute;
    top: 44px;
    left: 230px;
    width: 80px;
    background: #ffa801;
    height: 3px;
    width: 149px;
}

.testimonial_heading::after{
    content: '';
    position: absolute;
    top: 44px;
    right: 230px;
    width: 80px;
    background: #ffa801;
    height: 3px;
    width: 149px;
}

.testimonials .carousel{
    height: 20vh;
    width: 100%;
}

.user-details{
    border-left: 4px solid #077e66;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    justify-content: space-between;
    padding: 20px 20px; 
    border-radius: 10px;
    background: var(--second-color);
 }


 /*==========Visa Service section end===========*/
 .visa_service{
    background-color: #F7F0E5;
}

.visa_service_heading{
    color: var(--second-color);
    display: block;
    font-size: 3rem;
    line-height: 50px;
    text-align: center;
    padding: 20px 0px;
    position: relative;
}

.visa_service_heading::before{
    content: '';
    position: absolute;
    top: 44px;
    left: 180px;
    width: 80px;
    background: #ffa801;
    height: 3px;
    width: 149px;
}

.visa_service_heading::after{
    content: '';
    position: absolute;
    top: 44px;
    right: 180px;
    width: 80px;
    background: #ffa801;
    height: 3px;
    width: 149px;
}

.visa_service p{
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--second-color);
}


.visa_service .box-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}


.visa_service .box-container .box{
    overflow: hidden;
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
    border-radius: .5rem;
    width: 100%;
    height: 20rem;
    position: relative;
}


.visa_service .box-container .box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .8s;
    cursor: pointer;
}

.visa_service .box-container .box  img:hover{
    transform: scale(1.5);
    z-index: 2;
}
.visa_service .box-container .box .content{
    position: absolute;
    top: -10px; left: 0;
    margin-top: 150px;
    height: 100%;
    width: 100%;
    text-align:center;
    background: #1e272eb4;
    transition: .8s;
}


.visa_service .box-container .box .content a{
   text-decoration: none;
}

.visa_service .box-container .box .content h3{
    font-size: 2rem;
    color: #fff;
    margin-top: 2rem;
    text-decoration: none;
 }

.visa_service_button{
    width: 100%;
    margin-top: 5rem;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.button_1{
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 45px;
    border-radius: 50px;
    background-color: #FFC265;
    color: #26374A; 
    font-size: 1.8rem;
    font-weight: 600;
    border: none;
    outline: none;
    text-decoration: none;
    list-style: none;
    transition: all 0.2s ease-in;
}

.button_1:hover{
    background-color: var(--second-color);
    color: #fff;
}


.air_btn{
    width: 100%;
    margin-top: 5rem;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.air_btn .button_2{
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 45px;
    border-radius: 50px;
    background-color: #FFC265;
    color: #26374A; 
    font-size: 1.8rem;
    font-weight: 600;
    border: none;
    outline: none;
    text-decoration: none;
    list-style: none;
    transition: all 0.2s ease-in;
}

.air_btn .button_2:hover{
    background-color: var(--second-color);
    color: #fff;
}

.tour_button{
    width: 100%;
    margin-top: 5rem;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}


.tour_btn button{
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 45px;
    border-radius: 50px;
    background-color: #FFC265;
    color: #26374A; 
    font-size: 1.8rem;
    font-weight: 600;
    border: none;
    outline: none;
    text-decoration: none;
    list-style: none;
    transition: all 0.2s ease-in;
}

.tour_btn button:hover{
    background-color: var(--second-color);
    color: #fff;
}


 /*==========Search Top Airlines section end===========*/

 .air_heading{
    color: var(--second-color);
    display: block;
    font-size: 3rem;
    line-height: 50px;
    text-align: center;
    padding: 20px 0px;
    position: relative;
}

.air_heading::before{
    content: '';
    position: absolute;
    top: 44px;
    left: 230px;
    width: 80px;
    background: #ffa801;
    height: 3px;
    width: 149px;
}

.air_heading::after{
    content: '';
    position: absolute;
    top: 44px;
    right: 230px;
    width: 80px;
    background: #ffa801;
    height: 3px;
    width: 149px;
}


 .heading_area p{
    text-align: center;
    font-size: 1.5rem;
    color: #26374A;
    margin-bottom: 100px;
 }

.main_div .second_div{
    display: flex;
    width: 100%;
    height: 70px;
    padding: 10px 10px;
    border-radius: 15px;
    margin-top: 2rem;
    cursor: pointer;

 }

.main_div .second_div img{
    width: 40px;
    height: 40px;
    margin-top: 1rem;
 }

.main_div .second_div p{
    font-size: 1.5rem;
    color: #26374A;
    font-weight: 800;
    text-align: left;
    margin-left: -1rem;
    margin-top: 1.5rem;
 }

 .main_div .second_div h6{
    font-size: 1.2rem;
    color: #26374A;
    font-weight: 800;
    text-align: left;
    margin-left: 1rem;
    margin-top: 1.5rem;
 }

.main_div .second_div i{
    color: #a7a4a4;
    font-size: 1.8rem;
    margin-top: 1.5rem;
    transition: all 0.8s ease;
 }

 .main_div .second_div:hover {
    background-color: #fff;
    color: #26374A;
    box-shadow: 2px 2px 14px rgb(145, 142, 142);
    transition: all 0.3s ease;
 }

 .main_div .second_div:hover i{
    transform: rotate(360deg);
 }
 
/*==========Text Area  Section CSS===========*/
.text_area{
    background: #fff;
}

.text_area h2{
    font-size: 3rem;
    color: var(--second-color);
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
    font-weight: 700;
    line-height: 1.8;
    justify-content: space-between;
}


.button_2{
    margin-top: 1rem;
    padding: .9rem 1.8rem;
    padding-left: 1rem;
    border: none;
    border-radius: 5rem;
    box-shadow: 0px 0px 4px rgb(145, 142, 142);
    background: #FFC265;
    color: var(--second-color);
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}


.button_2 span{
    padding: .7rem 1rem;
    border-radius: .5rem;
    background: var(--main);
    color: #fff;
    margin-left: .5rem;
}

.button_2:hover{
    background: var(--second-color);
    color: #fff;
}

.button_2:hover span{
    color: var(--main);
    background: #fff;
    margin-left: 1rem;
}


/*==========TourPackage Section CSS===========*/

.tour_heading{
    color: var(--second-color);
    display: block;
    font-size: 3rem;
    line-height: 50px;
    text-align: center;
    padding: 20px 0px;
    position: relative;
}

.tour_heading::before{
    content: '';
    position: absolute;
    top: 44px;
    left: 290px;
    width: 80px;
    background: #ffa801;
    height: 3px;
    width: 149px;
}

.tour_heading::after{
    content: '';
    position: absolute;
    top: 44px;
    right: 290px;
    width: 80px;
    background: #ffa801;
    height: 3px;
    width: 149px;
}

.card_btn{
    width: 50%;
      background-color: #FFC265;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto;
      padding: 6px 20px;
      border-radius: 50px;
      font-size: 12px;
      color: #26374A;
      text-decoration: none;
      list-style: none;
      font-weight: 500;
      border: 1px solid #FFC265;
      margin-bottom: 20px;
      transition: all 0.5s ease;
  }
  .card_btn:hover{
      background-color: #26374A;
      color: #fff;
      border: 1px solid #26374A;
  }

/*==========Footer Section CSS===========*/

.footer{
    background: rgba(0, 0, 0, 0.3) url(image/Footer_image_2.jpg);
    background-blend-mode: darken;
    background-position: center;
    background-size: cover;
    margin-top: 0;
}

.footer .box-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.footer .box-container .box h3{
    font-size: 2.5rem;
    color: #fff;
    text-decoration: none;
    padding: 1rem 0;
}

.footer .box-container .box img{
    width: 40%; 
}

.footer .box-container .box .company_logo_description{
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 90%;
}

.footer .box-container .box .company_logo_description h2{
    font-size: 3rem;
    color: #ffa801;
    font-weight: 600;
    font-family: italic;
    margin-top: 2rem;
}

.footer .box-container .box .company_logo_description span{
    font-size: 3rem;
    color: #02a559;
    font-weight: 600;
}


.footer .box-container .box h3 i{
    color: #ffa801;
}

.footer .box-container .box .links{
    display: block;
    text-decoration: none;
    font-size: 1.6rem;
    color: #d1d8e0;
    padding: 1rem 0;
    text-transform: none;
}

.footer .box-container .box .links:hover{
    color: #fff;
}
.footer .box-container .box .links i{
    color: #ffa801;
    padding-right: .5rem;
}

.footer .box-container .box .link i{
    color: #ffa801;
    padding-right: .5rem;
}

.footer .box-container .box .links:hover i{
    padding-right: 2rem;
    color: #fff;
}
.footer .box-container .box p{
    line-height: 1.8;
    font-size: 1.6rem;
    color: #d1d8e0;
    text-decoration: none;
    padding: 1rem 0;
}

.footer .box-container .box .share a{
    height: 4rem;
    width: 4rem;
    text-decoration: none;
    line-height: 4rem;
    border-radius: .5rem;
    font-size: 2rem;
    color: #2f3542;
    margin-left: .2rem;
    background: #dfe6e9;
    text-align: center;
}


.footer .box-container .box .share a:hover{
    background: #00a164;
    color: #d1d8e0;
}

.footer .box-container .box .email{
    margin: .7rem 0;
    padding: 1rem;
    border-radius: .5rem;
    background: #eee;
    font-size: 1.6rem;
    color: #2d3436;
    text-transform: none;
}

.footer .box-container .box .payment-img{
    margin-top: 2rem;
    height: 3rem;
}


.footer .credit{
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    padding-top: 2.5rem;
    font-size: 2rem;
    font-weight: 500;
    color: #d1d8e0;
    border-top: var(--border);
}

.footer .credit span{
    color: #ffa801;
}

.footer .credit a{
    color: #1e90ff;
    text-decoration: none;
    text-transform: none;
}

.footer .credit a:hover{
    text-decoration: underline;
}































/*==========Responsive media queries===========*/

@media (max-width:991px){
    html{
        font-size: 55%;
    }
    .header-1{
        padding: 2rem;
    }
    section{
        padding: 2rem;
    }
    html,body{
        font-size: 62.5%;
        overflow-x: hidden;
        width: 100%;
        height: 100%;
        scroll-behavior: smooth;
        scroll-padding-top: 7rem;
    }

    .navbar-brand img{
        background: #ffffff;
        margin-top: -2rem;
        cursor: pointer;
        padding: 0px 5px;
    }


    .dropdown .dropdown-menu li a{
        text-align: left;
        font-size: 1.5rem;
        font-weight: 600;
        line-height: 1.8;
        width: 300px;
        padding: 5px 10px;
    }

    .booking {
        max-width: 100%;
        padding: 1.5rem;
      }

      .booking {
        width: 100%;
        height: 60vh;
        background-color: rgba(218, 220, 228, 0.582);
        position: relative;
        bottom: 2px;
        left: 0;
        padding: 0px 26px;
        border-radius: 10px 0 10px 0;
        box-shadow: 2px 2px 14px rgb(145, 142, 142);

      }
    
      .booking__form {
        padding: 1.5rem;
        grid-template-columns: repeat(1, 1fr);
      }

      .inputBox {
        padding: 1.5rem;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
      }
    
      .booking__input label {
        font-size: 1.5rem;
        font-weight: 500;
        color: var(--white);
      }

      .booking__type {
        width: fit-content;
        padding: 5px;
        display: grid;
        grid-template-columns: max-content max-content max-content;
        align-items: left;
        justify-content: left;
        text-align: left;
        margin-left: -2.2rem;
        background-color: #26374A;
        border-radius: 2px;
      }


      .button_2{
        margin-top: 1rem;
        padding: .9rem 1rem;
        padding-left: 1rem;
        border: var(--border);
        border-radius: 5rem;
        box-shadow: 0px 0px 4px rgb(145, 142, 142);
        background: #FFC265;
        color: var(--second-color);
        cursor: pointer;
        font-size: 1.5rem;
        font-weight: 600;
        align-items: center;
        justify-content: center;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
}


@media(max-width: 991px){
    .footer .box-container{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
        gap: 2.5rem;
    }

    .footer{
        text-align: left;
    }

    .footer .credit{
        text-align: center;
        margin-top: 2rem;
        padding: 1rem;
        padding-top: 2.5rem;
        font-size: 1.5rem;
        font-weight: 500;
        color: #d1d8e0;
        border-top: var(--border);
    }

    .main_div .second_div{
        display: flex;
        width: 100%;
        height: 70px;
        padding: 10px 10px;
        border-radius: 15px;
        cursor: pointer;
        background-color: #fff;
        box-shadow: 2px 2px 14px rgb(145, 142, 142);
        margin-top: 10px;
    
     }
    
    .main_div .second_div img{
        width: 40px;
        height: 40px;
     }
    
    .main_div .second_div p{
        font-size: 2rem;
        color: #26374A;
        font-weight: 600;
        text-align: left;
        margin-left: 1rem;
     }

     .main_div .second_div h6{
        font-size: 1.5rem;
        color: #26374A;
        font-weight: 900;
        text-align: left;
        margin-left: 1rem;
     }
    
    
    .main_div .second_div i{
        color: #a7a4a4;
        font-size: 1.8rem;
        margin-top: 1.5rem;
        transition: all 0.8s ease;
     }
    
     .main_div .second_div:hover {
        background-color: #fff;
        color: #26374A;
        box-shadow: 2px 2px 14px rgb(145, 142, 142);
        transition: all 0.3s ease;
     }
    
     .main_div .second_div:hover i{
        transform: rotate(360deg);
     }

     .banner{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background: rgba(0, 0, 0, 0.8) url(image/banner_image_3.jpg);
        background-attachment: fixed;
        background-blend-mode: darken;
        width: 100%;
        height: 90vh;
        background-size: cover;
        background-position: center;
    }

    .service_heading::before{
        display: none;
    }
    
    .service_heading::after{
      display: none;
    }

    .highlight_heading::before{
        display: none;
    }
    
    .highlight_heading::after{
      display: none;
    }

    .tour_heading::before{
        display: none;
    }
    
    .tour_heading::after{
      display: none;
    }


    .visa_service_heading::before{
        display: none;
    }
    
    .visa_service_heading::after{
      display: none;
    }

    .air_heading::before{
        display: none;
    }
    
    .air_heading::after{
      display: none;
    }

    

}

@media(max-width: 768px){
    .visa_service .box-container{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}



@media screen and (max-width: 678px) {
    .carousel .list .item .content{
        padding-right: 0;
    }
    .carousel .list .item .content .title{
        font-size: 30px;
    }
}

@media(max-width: 568px){
    .visa_service .box-container{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }
}




