
@import url('https://fonts.googleapis.com/css2?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');

  
/*-----------Default CSS -----------*/
:root {
        --primary-color:#1e3a8a; /*dark Blue */
        --accent-color:#FF7E29; /*bRIGHT ORANGE */
        --neutral-bg:#f7f7f7; /*Light Gray */
        --seconcary-color:#008080; /*Tea */
        --text-color:#333333;  /* Dark Gray */
        --bg-primary:#eaedf5;
        --bg-secondary:#0b90f8;
        --bg-third:#e2dbd5;
}
body {
    background-color: var(--neutral-bg) !important;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
}
.bg-lightt{
    background:#293236 !important;
}
/* Whatsapp button */
.whatsapp-button{
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 99;
    background-color: #25d366;
    border-radius: 50px;
    color: #ffffff !important;
    text-decoration: none;
    width: 55px;
    height: 55px;
    font-size: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    -moz-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    animation: effect 5s infinite ease-in;
}

@keyframes effect {
    20%, 100% {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
    0%, 10%{
        width: 55px;
        height: 55px;
        font-size: 35px;
    }
    5%{
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}
/* Links */
a {
    font-family: 'poppins', sans-serif;
    color:var(--text-color) !important;
    text-decoration: none !important;
  }

  .btn-primary a:hover,.btn-second a:hover{
    color:var(--seconcary-color);
    background-color: var(--seconcary-color);
    text-decoration: none;
    color: #f7f7f7;
    animation: btnSec 5s 2;
    animation-direction: alternate;
  }
  @keyframes btnSec {
    0% {
        background-color: #2ecc71;
    }
    100% {
        background-color: var(--seconcary-color);
    }
    
}

.btn-second{
    font-size: 14px;
    line-height: 25px;
    padding: 0 18px !important;
    background: #2ecc71;
    color: #f7f7f7 !important;
    -webkit-box-shadow: 0 1px 9px rgba(0, 0, 0, .2);
    box-shadow: 0 1px 9px rgba(0, 0, 0, .2);
    margin: 4px 6px 0 0 !important;
    
}

.arrowright {
    width: 28px;
    left: 105;
    fill: #fff;
    transition-duration: .5s;
    -webkit-transition-duration: 0.5;
    animation: myMove .5s infinite;
}
@keyframes myMove {
    0% {
      left: 0;
    }
    50% {
      left: 100%;
    }
    100% {
      left: 0;    
    }
  }
/*** Spinner Start ***/
#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;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


   .btn.btn-primary {
    color: #f7f7f7 !important;
    border: none;
    background-color: #FFA500;
    padding: 10px 20px;
    border-radius: 0px;
}


.btn.btn-primary:hover {
    background: var(--seconcary-color);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/ 
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    /* color: var(--text-color); */
    background-color: #008080;
    color: #ffffff !important
}


.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}
.dropdown-menu.show {
    position: relative;
    background-color: var(--seconcary-color) !important;
    border-radius: 0px !important;
    margin-top: 10px !important;
}
.dropdown-item{
    display: block;
    width: 100%;
    padding: .25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #ffffff !important;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.dropdown-menu{
    border-radius: 0px !important;
    margin-top: 10px !important;
    padding: 0px !important;
    line-height: 40px;
}

.dropdown .dropdown-menu .dropdown-item {
    background: #008080;
    color: #ffffff !important;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: #ffffff;
    color: #008080 !important;
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        /* background: var(--bs-light); */
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}
/*** Navbar End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: #ffffff !important;
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--seconcary-color)!important;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}
/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}
/*** copyright end ***/


/** Hero Section ****/
.Hero_section{
    position: relative;
    overflow: hidden;
    height: 500px;
    
}
#background-video{
    position: absolute;
    width: 100vw;
    height: auto;
    object-fit: cover;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
 .hero-text {
    display: flex;
    position: relative;
    margin-top: 120px;
    margin-left: 60px;
    /* transform: translate(-50%, -50%); */
    flex-direction: column;
    justify-content: left;
    align-items: start;
}
.hero-wel{
    font-family: 'poppins', sans-serif;
    font-size: 22px;
    color: var(--bs-white);
    font-weight: 500;
}
.hero-title{
    width: 75vw;
    margin-bottom: 50px;
    display: flex;
    justify-content: start;
    align-items: center;
    
    
}
.hero-title h1{
    font-family: 'poppins', sans-serif;
    font-weight: 600;
    font-size: 44px;
    line-height: 57px;
    margin: 10px 0 16px;
    background: #4489add9;
    padding: 13px;
    color: #ffffff;
    
}


#VideoBtn{
    background: #FFA500;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--bs-white);
    padding: 10px 20px;
    font-weight: 600;
    border: 1px solid #FFA500;
    border-radius: 50;
    margin-left: 50px;
    width: 90px;
    height: 70px;
    transition-duration: 0.5s;
    -webkit-transition-duration: 0.5;
   

}
#VideoBtn {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 80px;
    border: 2px solid #FFA500;
    border-radius: 50%;
    background: #FFA500;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
}
#VideoBtn span {
    position: relative;
    font-size: 72px;
    top: 5px;
    left: -5px;
}
#VideoBtn::after {
    opacity: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    height: 100%;
    width: 100%;
    background: #FFA500;
    border-radius: 100%;
    animation-name: ripple;
    animation-duration: 3s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    z-index: -1;
}
@keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(0.75, 0.75, 1);
   }
    to {
        opacity: 0;
        transform: scale3d(2, 2, 1);
   }
}
/* service section start */
.services{
    background: var(--bs-light);
    margin-bottom: 10px;
    padding: 40px 0px;
}
.sec-head{
    font-family: 'poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: var(--primary-color); 
    margin-bottom: 0px;
    text-align: center;
}
.sec-title{
    font-family: 'poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
    color: var(--primary-color);
}

.cards {
    display: grid;
    grid-auto-columns: 100%;
    grid-column-gap: 10px;
    grid-auto-flow: column;
    padding: 25px 0px;
    list-style: none;
    overflow-x: scroll;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
}

.card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 15%);
    scroll-snap-align: start;
    transition: all 0.2s;
}

.card:hover {
    color: #fff;
    background:#0a9396;

}

.card .card-title {
    font-size: 20px;
    color: var(--primary-text);
}

.card .card-content {
    margin: 20px 0;
    max-width: 85%;
}

.card .card-link-wrapper {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card .card-link {
    display: inline-block;
    text-decoration: none;
    color: white;
    background: var(--orange);
    padding: 6px 12px;
    border-radius: 8px;
    transition: background 0.2s;
}

.card:hover .card-link {
    background:#FFA500;
}

.cards::-webkit-scrollbar {
    height: 12px;
}

.cards::-webkit-scrollbar-thumb,
.cards::-webkit-scrollbar-track {
    border-radius: 92px;
}

.cards::-webkit-scrollbar-thumb {
    background: #FFA500;
}

.cards::-webkit-scrollbar-track {
    background: var(--thumb);
}

@media (min-width: 500px) {
    .cards {
        grid-auto-columns: calc(50% - 10px);
        grid-column-gap: 20px;
    }
}

@media (min-width: 700px) {
    .cards {
        grid-auto-columns: calc(calc(100% / 3) - 20px);
        grid-column-gap: 30px;
    }
}

@media (min-width: 1100px) {
    .cards {
        grid-auto-columns: calc(25% - 30px);
        grid-column-gap: 40px;
    }
    .srv-icon {
        width: 120px;
        height: 120px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgb(230, 235, 240);
        border-radius: 50%;
        margin: 10px auto;
    }

.srv-icon img{
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

}
@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        /* background: var(--bs-light); */
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--seconcary-color);
        color: var(--seconcary-color);
    }
}

/* service section End */

/* About us section start */
.aboutus-sec{
    margin: 0px 40px 0px 0px;
}
.about-img{
    display: block;
    margin-left: auto; 
    margin-right: auto;
}
.about-img img {
    width: 100%;
    height: 100%;
    max-width: 660px;
}
/* About us section End */

/* Our client sections start */
.our-client{
    background-color:var(--bg-primary);
    /* background-image: url(../images/client_sec.jpg); */
    width: 100%;
    padding: 60px 0px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}
.sec-title_seco{
    font-family: 'poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 54px;
    color: var(--primary-color);
}
.sec-head_seco{
    font-family: 'poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: #333333; 
    margin-bottom: 0px;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
   }
    100% {
        transform: translateX(calc(-250px * 7));
   }
}
.slider {
    height: 100px;
    margin: 40px auto;
    overflow: hidden;
    position: relative;
    /* width: 960px; */
}
.slider img {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
}
.slider img:hover {
    background-color: var(--seconcary-color);
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
}
.slider::before, .slider::after {
    background: linear-gradient(to right, #eaedf5 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
}
.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}
.slider::before {
    left: 0;
    top: 0;
}
.slider .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}
.slider .slide {
    height: 100px;
    width: 250px;
}

/* our client sections end */

/* sec contact us start */
.sec-contactus{
    background-color: var(--primary-color);
    position: relative;
    padding: 40px 0px;
    justify-content: center;
    align-items: center;
}
.head-title h1{
    font-family: 'poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 54px;
    color: #ffffff;
    margin-bottom: 0px;
}
.head-title p{
    font-family: 'poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color: #ffffff;
    margin: 10px 0px 0px 0px;
}
.btn-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}
/* sec contact us end */

/* testimonial section start */
.heading {
    position: relative;
}
.testimonials {
    background: url("https://i.ibb.co/JRrHmhv/shanghai.jpg") center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 130px 0 150px;
    color: #ffffff;
    position: relative;
}
.testimonials:before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    left: 0;
}
.testimonials .heading h2 {
    font-size: 25px;
    font-weight: 700;
    color: #ffffff;
}

.testimonials .heading h2 span {
    color: #ff0000;
}

.testimonials p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #d1e5e7;
    margin: 20px 0;
    padding: 0;
}

/* Image */
.testimonials .carousel-inner .carousel-item .team {
    width: 100px;
    height: 100px;
    border: 2px solid #ff0000;
    border-radius: 100%;
    padding: 5px;
    margin: 50px 0 15px;
}

.testimonials .carousel-inner .carousel-item h3 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
}

.testimonials .carousel-inner .carousel-item h4 {
    font-size: 14px;
    font-weight: 300;
    color: #e2e1e1;
    margin-bottom: 20px;
}

.testimonials .carousel-indicators {
    bottom: -30px;
}

.testimonials .carousel-indicators li {
    background-color: #b8b7b7;
    border-radius: 30px;
    height: 4px;
    width: 40px;
}

.testimonials .carousel-indicators .active {
    background-color: #ff0000;
}

.testimonials .control span {
    cursor: pointer;
}

.testimonials .icon {
    height: 40px;
    width: 40px;
    background-size: 100%, 100%;
    border-radius: 50%;
    font-size: 30px;
    background-image: none;
    color: #ffffff;
}
/* Testimonial sections end */

@media (min-width: 320px) and (max-width: 768px) {

    .sec-title{
        font-size: 25px;
        line-height: 40px;
    }
    .sec-head{
        font-size: 16px;
    }
    #background-video {
    height: 85vh;
    width: 100vw;
    }
    .Hero_section{
        height: 400px;
        position: relative;
        overflow: hidden;
    }
    .hero-text{
        margin-left: 0px;
    }
    .hero-title {
        width: 100vw;
        margin-bottom: 50px;
        display: flex;
        /* justify-content: start; */
        align-items: center;
    }
    .hero-wel{
        font-size: 16px;
    }
    .hero-text{
        margin-top: 40px;
    }
    .hero-title h1{
        font-size: 20px;
        line-height: 30px;;
    }

    /* services */
    .srv-icon img{
        display: flex;
        margin: auto auto;
    }
    .card .card-title{
        margin-top: 15px;
    }

    .sec-title_seco{
        font-size: 24px;
        line-height: 30px;
        
    }
    .slider::before, .slider::after {
        background:none;
        content: "";
        height: 100px;
        position: absolute;
        width: 200px;
        z-index: 2;
    }

}
/* services page start */

    .service_main{
        
    }
    .srv-data {
        /* background-color: #ffffff;
        opacity: 0.; */
        padding: 20px 25px;
        color: #fff;
    }
    thead.thead-dark {
        background-color: var(--bg-secondary);
        color: #ffff;
    }
    .service_des{
        background-image: url("../images/client_sec.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        background-position: center center;
    }

    .service_description {
        background-color: #ffffff;
        padding: 20px;
        opacity: 0.6;
        margin: 20px 0px;
    }
    .service_description h1{
        font-size: 24px;
        font-weight: 600;
        line-height: 30px;
        color: #000000;
    }
    

/* services page end */
