/********** Template CSS **********/
:root {
    --primary: #e3572a;
    --secondary: #777777;
    --light: #F8F8F8;
    --dark: #252525;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
    z-index: 999;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid rgba(256, 256, 256, .1)
    }
}
.hero-img img{
  height: 650px;
}
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../image/newimages/BurjKhalifa.webp) center center no-repeat;
    background-size: cover;
}

.page-header2 {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../image/newimages/turkey.jpg) center center no-repeat;
    background-size: cover;
}

.page-header3 {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../image/newimages/uganda.jpg) center center no-repeat;
    background-size: cover;
}

.page-header4 {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../image/newimages/rwanda.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}



/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid #e3572a;
    border-radius: 6px;
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: none;
    border: 1px solid #DEE2E6;
}


/*** Feature ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Project ***/
.project-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover a {
    opacity: 1;
}

.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-text {
    position: relative;
    height: 65px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-item:hover .team-title {
    top: -65px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 65px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #e3572a !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

 /* //new css start// */

.logo-h{
    height: 70px;
}

.servises{
  row-gap: 100px;
}
.servises img{
    height: 80px;

}
.servises .col-lg-3 div{
display: flex;
flex-direction: column;
align-items: center;}


/* travel start */

.trvel-body{
    background-image:linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(2,0,36,0.5746673669467788) 0%),url(https://images.pexels.com/photos/289563/pexels-photo-289563.jpeg);
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;    
    position: static;
  }

  .service-body {
    background-color: #8e8a8a63;
  }
.container-trv {
    margin-top: 47px;
    padding-bottom: 70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .dark {
    background: #fff5e0 !important;
  }
  .darkS {
    background: #8decb4 !important;
  }
  .scard {
    width: 300px;
    height: 400px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    margin: 10px;
    text-align: start;
  }

  .scard {
    position: relative;
    overflow: hidden;
  }
  
  .scard .imgb {
    transition: transform 0.3s ease-in-out;
  }
  
  .scard:hover .imgb {
    transform: scale(1.05); /* Adjust the scale value as needed */
  }
  
  .imgb {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background-position: bottom;
    background-size: cover;
    border-radius: 10px;
  }
  .descrb {
    height: 100%;
  }
  .icons {
    display: flex;
    padding: 5px 0px;
    display: none;
  }
  .icon {
    display: block !important;
  }
  
  .icons i {
    margin-right: 15px;
  }
  .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .amt {
    color: #141e46;
    font-weight: bold;
  }
  .read {
    border: none;
    background: #141e46;
    color: #fff;
    padding: 5px 8px;
    border-radius: 15px;
  }
  .footer i {
    background: #ff9000;
    padding: 5px;
    color: white;
    border-radius: 15px;
  }

  /* tust company */
  .trust-company{
    row-gap: 100px;
  }
  .trust-company img{
    height: 100px;
  }
  .nav-icons{
    column-gap: 20px;
  }
.faq-sec button{
    background-color: rgba(244, 120, 11, 0.555);
    color: black;
}
  /* chat boot */
#chatbot-container{
    z-index: 999;
    color: #efe7e9;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: grayscale(0.8);
  }
  
  #chatbot-interface {
    height: 70vh;
    width: 60vw;
    background-color: #e8e0e2;
    border-radius: 1rem;
  }
  
  #chatbot-header {
    font-weight: 600;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    background-color: #ff9000;
    padding: 0.2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  
  #chatbot-chat{
    height: calc(100% - 56.9px - 6rem);
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    padding: 1rem;
    overflow-y: scroll;
    display: flex;
    flex-direction: column-reverse;
  }
  
  .chatbot-messages {
    padding: 1rem;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    border-radius: 1rem;
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
    width: fit-content;
  }
  
  .chatbot-received-messages {
    background-color: #ff9000;
    filter: grayscale(0.3);
    border-top-left-radius: 0rem;
  }
  
  .chatbot-sent-messages {
    color: white;
    background-color: #e8e0e2;
    border-top-right-radius: 0rem;
    margin-left: auto; 
    margin-right: 0;
  }
  
  #chatbot-footer {
    padding: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
  }
  
  #chatbot-input-container{
    width: calc(100%);
  }
  
  #chatbot-input {
    width: calc(100% - 2rem);
    padding: 0.5rem;
    color: white;
    background-color: #d8d8d8;
    border: 0.1rem solid #e2dedf;
    border-radius: 1rem;
  }
  
  #chatbot-input:focus {
    outline-offset: 0px !important;
    outline: none !important;
    background-color: #ff9000;
    box-shadow: 0 0 5px #FDB931 !important;
  }
  
  #chatbot-new-message-send-button{
    cursor: pointer;
  }
  
  #send-icon {
    color:#0f0e0e;
  }
  
  
  #chatbot-open-container {
    position: fixed;
    bottom: 7rem;
    right: 30px;
    background-color: #ff9000;
    padding: 1rem;
    border-radius: 31%;
    width: 4.5rem;
    height: 3.5rem;
    text-align: center;
    cursor: pointer;
    z-index: 1000;
  }
  
  #chatbot-open-container i{
    padding-top: 0.25rem;
    font-size: 14px;
    color: #f6f4f4;
    margin: 0px 0px 0px -9px;
    font-weight: 800;
  }
/* chat boot */

.whatsapp-float img{
    width: 50px;
    position: fixed;
    bottom: 40px;
    left: 20px;
    border-radius: 10px;
    z-index: 1;
}

.trustcompanysection{
    /* background-color: red; */
    background-image: linear-gradient(to right bottom, #f04812, #ee5a2a, #eb693e, #e77751, #e28464, #e88f7f, #eb9d98, #eaabae, #eec0ce, #efd6e6, #f3ebf6, #ffffff);
    width: 100%;
    margin: 0px auto;

    p {
        color: #fff;
    }
}

.helpdesksection {
    width: 100%;
    margin: 0px auto;
}

.w-100 {
    width: 100%;
}

.helpdesksection {
    p {
        color: #fff;
    }
}



/* Service box */
.ts-service-box .ts-service-icon i {
    font-size: 36px;
    float: left;
    color: #ffb600;
  }
  
  .ts-service-box .ts-service-box-content {
    margin-left: 62px;
    margin-bottom: 30px;
  }
  
  .tab-content .ts-service-box .ts-service-box-content {
    margin-left: 90px;
  }
  
  .ts-service-box .ts-service-box-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 28px;
  }
  
  .ts-service-box .ts-service-box-info {
    margin-left: 25px;
    margin-bottom: 40px;
  }
  
  .service-box-title {
    font-size: 16px;
    margin: 0 0 10px;
  }
  
  .service-box-title a {
    color: #333;
  }
  
  .service-box-title a:hover {
    color: #ffb600;
  }
  
  /* Service box bg */
  .ts-service-box-bg {
    background: #25252594;
    color: #fff;
    padding: 30px;
    border-radius: 30px;
  }
  
  .ts-service-box-bg h4,
  .ts-service-box-bg h3 {
    color: #fff;
  }
  
  /* Service box 
  
  .ts-service-box .ts-service-icon i {
    font-size: 24px;
    float: left;
    color: #fff;
    background: $color-primary;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
  }
  
  .ts-service-box .ts-service-box-content {
    margin-left: 80px;
    margin-bottom: 30px;
  }
  
  .tab-content .ts-service-box .ts-service-box-content {
    margin-left: 90px;
  }
  
  .ts-service-box .ts-service-box-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .ts-service-box .ts-service-box-info {
    margin-left: 90px;
    margin-bottom: 40px;
  }
  
  .service-box-title {
    font-size: 18px;
    margin: 0 0 10px;
  }
  
  .service-box-title a {
    color: #333;
  }
  
  .service-box-title a:hover {
    color: $color-primary;
  }
  
  .service-center-img {
    padding: 0 20px;
  }
  */
  /* Icon squre */
  .ts-service-icon.icon-round i {
    font-size: 24px;
    color: #fff;
    background: #ffb600;
    text-align: center;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin-bottom: 20px;
    position: relative;
    float: none;
  }
  
  /* Icon left */
  .ts-service-box.icon-left .ts-service-box-icon {
    float: left;
  }
  
  .ts-service-box.icon-left .ts-service-box-icon i {
    background: #ffb600;
    color: #fff;
  }
  
  .ts-service-box.icon-left .ts-service-box-info {
    margin-left: 90px;
  }
  
  .ts-service-box.icon-left .ts-service-box-info h3 {
    margin-top: 0;
    margin-bottom: 5px;
  }
  
  /* Service no box */
  .service-no {
    font-size: 48px;
    color: #dbdbdb;
    float: left;
    margin-top: 10px;
  }
  
  .ts-service-box-content .ts-service-box-info {
    margin-left: 90px;
  }
  
  /* Service Image */
  .ts-service-image-wrapper {
    margin-bottom: 30px;
  }
  
  .ts-service-icon i {
    font-size: 28px;
    margin-right: 15px;
    margin-top: 2px;
  }
  
  .ts-service-info {
    margin-left: 30px;
  }
  
  .ts-service-info h3 {
    font-size: 16px;
  }
  
  .ts-service-info .learn-more {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
  }
  
  .ts-service-info .learn-more:hover {
    color: #ffb600;
  }
  
  /* Service Classic */
  .ts-service-classic .ts-service-icon i {
    font-size: 24px;
    float: left;
    color: #fff;
    background: #ffb600;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    transition: all 0.3s;
  }
  
  .ts-service-classic .ts-service-box-info {
    margin-left: 80px;
  }
  
  .ts-service-classic:hover .ts-service-icon i {
    background: #ffb600;
  }
  

.ctc-box {
    height: 240px;
}

.ctc_img {
    border: 3px solid #e3572a;
    border-radius: 20px;
    box-shadow: -15px 10px 20px #cd5c5cb0;
}















