* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #222;
    background: #fff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

header {
    width: 100%;
    z-index: 999;
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    justify-content: space-between;
    align-items: center;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}



.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    padding: 20px 0;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.logo .logoimg {
    width: 55px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.logo .logotext {
    height: 48px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.head-right {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.top-info {
    display: flex;
    color: #fff;
    justify-content: right;
    align-items: center;
    padding: 5px 0;
    margin-top: 10px;
}

.top-menu {
    display: flex;
    margin: 0;
    list-style: none;
    column-gap: 40px;
}

.top-menu li {
    position: relative;
}

.top-menu li::after {
    content: "";
    position: absolute;
    background: #ffffff;
    height: 11px;
    border-right: 1px solid;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}

.top-menu li:last-child::after {
    display: none;
}

.top-menu li a,
.top-menu li .lbtn {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgb(0 0 0 / 36%);
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
}

.top-menu li a:before,
.top-menu li .lbtn:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    border-radius: 5px;
    background-color: #fff;
    bottom: -2px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

.top-menu li a:hover:before,
.top-menu li .lbtn:hover:before {
    transform-origin: left;
    transform: scaleX(1);
}


.top-social {
    display: flex;
    margin: 0;
    list-style: none;
    column-gap: 12px;
}

.top-social li a {
    display: flex;
    background: #6e55d5;
    color: #ffffff;
    width: 40px;
    height: 40px;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    opacity: 0.8;
}

.top-social li a:hover {
    opacity: 1;
}

.navigation {
    position: relative;
    z-index: 100;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 100px 0 0 100px;
    padding-left: 30px;
    box-shadow: 1px 1px 2px rgb(0 0 0 / 10%);
}

.main-menu {
    padding: 0;
    margin: 0;
    display: block;
}

.main-menu li {
    display: inline-block;
    padding: 16px 8px;
    position: relative;
}

.main-menu li:last-child {
    padding-right: 0;
}

.main-menu li a {
    font-size: 14px;
    font-weight: normal;
    display: block;
    color: #111111;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.main-menu li a:hover,
.main-menu li:hover a {
    color: #6e55d5;
}

.main-menu li a i {
    font-size: 12px;
    color: #6e55d5;
}

.navigation:after {
    content: '';
    z-index: -1;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #ffffff;
    width: 1000%;
    height: 100%;
}

.sub-menu {
    opacity: 0;
    z-index: 9999;
    position: absolute;
    width: 600px;
    background-color: #fff;
    border-radius: 0;
    top: 100%;
    left: 50%;
    transform: translate(-53%);
    padding: 15px 20px;
    visibility: hidden;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1);
    border-top: 3px solid #6e55d5;
    column-count: 2;
}

.main-menu li:hover>.sub-menu {
    opacity: 1;
    z-index: 1;
    visibility: visible;
    transition: .3s ease-in-out;
}

.main-menu li>.sub-menu li {
    list-style: none;
    display: inline-block;
    width: 100%;
    padding: 2px 0;
}

.main-menu li>.sub-menu li a {
    text-decoration: none;
    line-height: 20px;
    font-size: 14px;
    display: flex;
    padding: 8px 10px;
    color: #111111;
    border-bottom: 1px solid rgb(0 0 0 / 3%);
    border-top: none;
    align-items: center;
    border-radius: 10px;
}

.main-menu li>.sub-menu li a i {
    font-size: 22px;
    color: #6e55d5;
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 5px;
    background: #ffffff;
}

.main-menu li>.sub-menu li:nth-child(1) a i {
    color: #f7766d;
}

.main-menu li>.sub-menu li:nth-child(2) a i {
    color: #3475b4;
}

.main-menu li>.sub-menu li:nth-child(3) a i {
    color: #71cc5e;
}

.main-menu li>.sub-menu li:nth-child(4) a i {
    color: #9c57b5;
}

.main-menu li>.sub-menu li:nth-child(5) a i {
    color: #fa9d2f;
}

.main-menu li>.sub-menu li:nth-child(6) a i {
    color: #e0e014;
}

.main-menu li>.sub-menu li:nth-child(7) a i {
    color: #3475b4;
}

.main-menu li>.sub-menu li:nth-child(8) a i {
    color: #f7766d;
}

.main-menu li>.sub-menu li:nth-child(9) a i {
    color: #9c57b5;
}





.main-menu li>.sub-menu li a:hover {
    background: #ececff;
}

header.fixed-header {
    background-color: #fff;
    box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, .2);
    position: fixed !important;
}


header.fixed-header .top-info {
    display: none;
}

header.fixed-header .logo {
    padding: 10px 0;
}

header.fixed-header .logo .logoimg {
    width: 45px;
}

header.fixed-header .logo .logotext {
    height: 40px;
}

header.fixed-header .navigation {
    box-shadow: none;
}

/* ---- mobile ---- */
.mobile-header{
    position: fixed;
    background:#ffffff;
}
.btn-cls{
    display: none;
}
.btn-menu{
    display: none;
}
.only-mobile{
    display: none;
}
.mobile-header .top-menu {
    display: none;
}

.mobile-header .only-mobile {
    display: flex !important;
    background: #6e55d5;
    white-space: nowrap;
    font-size: 12px;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #ffffff;
}
.mobile-header .only-mobile .lbtn, .mobile-header .only-mobile a {
    font-size: 12px;
    color: #ffffff !important;
    padding: 5px 10px !important;
    text-transform: capitalize;
    background: #3F51B5;
    border-radius: 5px;
    margin: 5px;
    outline: none;
    border-bottom: none !important;
}

.mobile-header .main-menu {
    display: block;
    position: fixed;
    left: -100%;
    width: 100%;
    background: #ffffff;
    border: 1px solid;
    top: 0px;
    opacity: 0;
    transition: all 0.4s ease;
    height: 100%;
}
.mobile-header .main-menu.activemenu {
    display: block;
    opacity: 1;
    left: 0 !important;
    overflow-y: auto;
}
.mobile-header .logo .logoimg {
    width: 35px;
}
.mobile-header .logo .logotext {
    height: 20px;
}
.mobile-header .top-social {
    column-gap: 6px;
    padding: 0;
}
.mobile-header .top-social li a {
    width: 32px;
    height: 32px;
    font-size: 14px;
}
.mobile-header .btn-menu{
    display: block;
    background: #f0f3f8;
    padding: 5px;
    border-radius: 5px;
}
.mobile-header .head-right {
    flex-direction: row;
}
.mobile-header .top-info {
    margin-top: 0;
}
.mobile-header .navigation {
    padding-left: 10px;
    box-shadow: none;
}
.mobile-header .btn-cls{
    display: block;
    width: 36px;
    height: 36px;
    font-size: 14px;
    float: right;
    margin: 15px;
    background: #444444;
    color: #ffffff;
    border-radius: 3px;
    outline: none;
}
.mobile-header .main-menu li {
    width: 100%;
    padding: 0 10px;
}
.mobile-header .main-menu li a {
    font-size: 12px;
    border-bottom: 1px solid #f5f5f5;
    padding: 13px;
}
.mobile-header .main-menu li:last-child{
display: none;
}
.mobile-header .sub-menu {
    opacity: 1 !important;
    position: unset;
    width: 100%;
    transform: unset;
    padding: 0;
    visibility: visible !important;
    box-shadow: none;
    border-top: 0;
    column-count: 1;
    background: #f8f8f8;
    display: none;
}
.mobile-header .sub-menu.activesubmenu {
    display: block;
}
.mobile-header .main-menu li>.sub-menu li a {
    font-size: 12px;
    padding: 5px 10px;
    color: #111111;
    border-top: none;
}
.mobile-header .main-menu li>.sub-menu li a i {
    font-size: 16px;
    width: 30px;
    height: 30px;
    margin-right: 5px;
    min-width: 30px;
    min-height: 30px;
}
.mobile-header .rotate-icon {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
  position: absolute;
}

/*--------------------------*/
.banner-wrap {
    width: 100%;
    padding: 0;
    position: relative;
    background-color: #fff;
}


.bg-slide {
    width: 100%;
    height: 100vh;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}




.carousel-caption {
    position: absolute !important;
    left: 0 !important;
    top: 0;
    width: 100%;
    height: 100%;
    display: table;
    z-index: 1;
    padding: 0;
}

.bg-slide .container {
    position: relative;
}

.caption-wrap {
    width: 59%;
    text-align: left;
    position: relative;
    padding-bottom: 50px;
}


.google-review {
    display: inline-flex;
    column-gap: 15px;
    align-items: center;
    padding: 15px 0;
    opacity: 0;
}

.rating-box {
    display: inline-flex;
    background: #ffffff;
    flex-flow: column;
    padding: 5px 8px;
    align-items: center;
    border-radius: 5px;
}

.gicon {
    color: #2196F3;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    column-gap: 5px;
    height: 30px;
}

.gicon .g-logo {
    width: 25px;
    height: 25px;
}

.stars {
    color: #FFC107;
    font-size: 10px;
}

.g-review {
    color: #666666;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}









.child {
    display: table-cell;
    vertical-align: bottom;
}




.carousel-inner>.carousel-item>a>img,
.carousel-inner>.carousel-item>img,
.img-responsive,
.thumbnail a>img,
.thumbnail>img {
    display: block;
    max-width: 100%;
    height: auto
}

.carousel {
    position: relative;
    width: 100%;
}


.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner>.carousel-item {
    position: relative;
    display: none;
    -webkit-transition: .6s ease-in-out left;
    -o-transition: .6s ease-in-out left;
    transition: .6s ease-in-out left;
}

.carousel-inner>.carousel-item>a>img,
.carousel-inner>.carousel-item>img {
    line-height: 1
}





/************fade in fade out settings********/
@media all and (transform-3d),
(-webkit-transform-3d) {
    .carousel-inner>.carousel-item {
        /*backface-visibility: visible;*/
        perspective: 1000px;
        transition: opacity 0.7s ease-in-out 0s;
        background-color: #000;
        /*perspective: 1000px*/
    }

    .carousel-inner>.carousel-item.active.right,
    .carousel-inner>.carousel-item.next {
        left: 0;
        -webkit-transition: opacity 0.7s ease-in-out;
        -moz-transition: opacity 0.7s ease-in-out;
        -ms-transition: opacity 0.7s ease-in-out;
        -o-transition: opacity 0.7s ease-in-out;
        transition: opacity 0.7s ease-in-out;
        opacity: 0;
    }

    .carousel-inner>.carousel-item.active.left,
    .carousel-inner>.carousel-item.prev {
        left: 0;
        -webkit-transition: opacity 0.7s ease-in-out;
        -moz-transition: opacity 0.7s ease-in-out;
        -ms-transition: opacity 0.7s ease-in-out;
        -o-transition: opacity 0.7s ease-in-out;
        transition: opacity 0.7s ease-in-out;
        opacity: 0;
    }

    .carousel-inner>.carousel-item.active,
    .carousel-inner>.carousel-item.next.left,
    .carousel-inner>.carousel-item.prev.right {
        left: 0;
        opacity: 1;
    }




    .carousel-inner .carousel-item .zoom-img {
        transform: scale(1.2);
        transition: all 4s ease 0s;
    }

    .carousel-inner .carousel-item.active .zoom-img {
        transform: scale(1);
    }

    /************fade in fade out settings end********/

    /**************sliding settings************/

    @media all and (transform-3d),
    (-webkit-transform-3d) {
        .carousel-inner>.carousel-item {
            -webkit-transition: -webkit-transform .6s ease-in-out;
        }




        .carousel-inner>.active,
        .carousel-inner>.next,
        .carousel-inner>.prev {
            display: block
        }

        .carousel-inner>.active {
            left: 0
        }

        .carousel-inner>.next,
        .carousel-inner>.prev {
            position: absolute;
            top: 0;
            width: 100%
        }

        .carousel-inner>.next {
            left: 100%
        }

        .carousel-inner>.prev {
            left: -100%
        }

        .carousel-inner>.next.left,
        .carousel-inner>.prev.right {
            left: 0
        }

        .carousel-inner>.active.left {
            left: -100%
        }

        .carousel-inner>.active.right {
            left: 100%
        }




        .carousel-control {
            position: absolute;
            left: auto;
            bottom: 50px;
            width: auto;
            font-size: 20px;
            color: #fff;
            text-align: center;
            z-index: 1;
        }

        .carousel-control.left {
            right: 49%;
        }

        .carousel-control.right {
            right: calc(49% - 60px);
            left: auto;
        }

        /***********controls****/

        .carousel-control .bi {
            position: absolute;
            top: 50%;
            z-index: 5;
            display: inline-flex;
            margin-top: -30px;
            width: 50px !important;
            height: 50px !important;
            background-size: 30px !important;
            position: relative;
            -webkit-transition: all 300ms ease-in-out;
            -moz-transition: all 300ms ease-in-out;
            transition: all 300ms ease-in-out;
            border-radius: 100%;
            border: 1px solid #fff;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }


        .carousel-control .bi:hover {
            background-color: #6e55d5;
        }

        .carousel-caption h2 {
            color: #111111;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            opacity: 0;
        }
    }

    @media screen and (max-width:1180px) {}



    @media screen and (max-width:767px) {

        .banner-wrap {
            top: 0;
        }


        .bg-slide {
            height: 170px;
        }

        .carousel-caption {
            width: 100%;
            padding: 0 0px;
            text-align: center;
        }

        .bg-slide .child {
            vertical-align: bottom;
            padding-bottom: 30px;
            padding-top: 30px;
        }






        .caption-wrap {
            width: 100%;
        }

        .carousel-caption h2 {
            color: #333333;
            font-size: 4rem;
        }




        .carousel-indicators .active:after {
            display: none;
        }
    }



    /*-------------*/
    @media screen and (max-width:980px) {
        .bg-slide {
            height: 470px;
        }

        .carousel-caption h2 {
            font-size: 30px;
        }

        .carousel-caption h3 {
            margin: 0 0 2px 0;
            font-size: 25px;
            line-height: 25px;
        }

        .caption-wrap {
            width: 100%;
        }


    }

    @media screen and (max-width:800px) {
        .bg-slide {
            height: 353px;
        }

        .carousel-caption h3 {
            margin: 0 0 2px 0;
            font-size: 20px;
            line-height: 20px;
        }
    }

    @media screen and (max-width:767px) {
        .bg-slide {
            height: 350px;
        }

        .carousel-caption h2 {
            font-size: 24px;
        }
    }

    @media screen and (max-width:640px) {
        .bg-slide {
            height: 275px;
        }
    }

    @media screen and (max-width:575px) {
        .bg-slide {
            height: 245px;
        }
    }

    @media screen and (max-width:480px) {
        .bg-slide {
            height: 225px;
        }

        .carousel-caption h2 {
            font-size: 18px;
            margin: 0 0 10px 0;
        }
    }

    @media screen and (max-width:360px) {
        .bg-slide {
            height: 170px;
        }
    }

    @media screen and (max-width:320px) {
        .bg-slide {
            height: 150px;
        }
    }
}



.fadeInLeft {
    animation: fadeInLeftSlide 1s ease 0s 1 normal forwards running;
    animation-duration: 500ms;
    animation-delay: 500ms;
}

.fadeInLeft2 {
    animation: fadeInLeftSlide 1s ease 0s 1 normal forwards running;
    animation-duration: 800ms;
    animation-delay: 800ms;
}

@keyframes fadeInLeftSlide {
    0% {
        opacity: 0;
        transform: translateX(-30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

img {
    max-width: 100%;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-padding {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 300;
    color: #4a4a4a;
}

.section-title p {
    color: #777;
    line-height: 1.7;
}



/* TEXT */

.logo-text h2 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
    line-height: 1.1;
    font-family: "Architects Daughter", cursive;
}

.logo-text p {
    font-size: 10px;
    color: #111;
    line-height: 1.5;
    font-family: "Architects Daughter", cursive;

}

/* RESPONSIVE */

@media(max-width:767px) {

    .hero-logo {
        width: 45px;
    }

    .logo-text h2 {
        font-size: 18px;
    }

    .logo-text p {
        font-size: 11px;
    }
}

.top-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-links a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar {
    background: #fff;
    border-radius: 50px;
    padding: 2px 30px;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-menu li a {
    text-decoration: none;
    color: #222;
    font-size: 14px;
    font-weight: 300px;
}

.enquiry-btn {

    color: Black;

    padding: 14px 24px;
    border-radius: 40px;

    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s;
}

/* HOVER */

.enquiry-btn:hover {
    background: #101b2b;
    color: #fff;
}

/* ICON */

.enquiry-btn i {
    font-size: 13px;
}

/* RESPONSIVE */

@media(max-width:767px) {

    .enquiry-btn {
        justify-content: center;
        width: 100%;
    }
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}


/* HERO */
.hero-section {
    background: url('banner.jpg') center/cover no-repeat;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.hero-left h1 {
    font-size: 70px;
    line-height: 1.2;
    color: black;
    margin-bottom: 30px;
}

.rating-box {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.rating {
    background: #fff;
    color: #000;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: bold;
}

.hero-slider-btns {
    display: flex;
    gap: 15px;
}

.hero-slider-btns button {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

/* Welcome */

.welcome-section {
    background: linear-gradient(180deg, rgba(42, 123, 155, 0) 0%, rgba(87, 199, 134, 0) 50%, rgb(250, 250, 250) 100%);
    padding: 70px 0;
}

.welcome-section h1 {
    font-size: 36px;
    font-weight: 300;
    color: #333333;
    margin-bottom: 20px;
}

.welcome-section h1 b {
    font-weight: 700;
}

.welcome-section p {
    color: #333333;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
}

.welcome-section ul {
    color: #333333;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
}

.welcome-section ul i {
    color: #6e55d5;
    font-size: 22px;
    vertical-align: middle;
    margin-right: 10px;
}

.welcome-section .btn1 {
    background: #6e55d5;
    margin-left: 35px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 45px;
    text-decoration: none;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.service-card {
    padding: 40px 25px;
    border-radius: 70px 0;
    text-align: center;
    text-decoration: none;
}

.service-card:hover {
    box-shadow: 0 3.4px 2.7px -30px rgba(0, 0, 0, .059), 0 8.2px 8.9px -30px rgba(0, 0, 0, .071), 0 25px 40px -30px rgba(0, 0, 0, .2);
}

.service-card i {
    font-size: 50px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #222222;
}

.underline {
    width: 50px;
    height: 3px;
    background: #160e55;
    margin: 10px auto 15px;
}

.service-card p {
    color: #333333;
    line-height: 1.5;
    font-weight: 300;
}

.service1 {
    background: #fef0ef;
}

.service2 {
    background: #f0f5f9;
}

.service3 {
    background: #f5fbf3;
}

.service4 {
    background: #f8f5fa;
}

.service5 {
    background: #fff9ed;
}

.service6 {
    background: #ffffeb;
}

.fa-laptop-code {
    color: #f7766d;
}

.fa-mobile-screen {
    color: #3475b4;
}

.fa-cart-shopping {
    color: #71cc5e;
}

.fa-pen-ruler {
    color: #9c57b5;
}

.fa-user-tie {
    color: #fa9d2f;
}

.fa-cloud-arrow-down {
    color: #e0e014;
}

.fa-laptop-file {
    color: #3475b4;
}

.fa-globe {
    color: #f7766d;
}

.fa-graduation-cap {
    color: #9c57b5;
}






/* INDUSTRIES */
.industries-section {
    background: #fbfbfb;

}


.industries-slider {
    margin-top: 60px;
    overflow: hidden;
    position: relative;
}

.industries-slider .swiper-wrapper {
    transition-timing-function: linear !important;
    padding: 5px 0;

}

.industries-slider::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), #fbfbfb);
    right: 0;
    top: 0;
    z-index: 11;
}

.industries-slider::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.1), #fbfbfb);
    left: 0;
    top: 0;
    z-index: 11;
}

.industry-card {
    height: 160px;
    border-radius: 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-shadow: 1px 1px 2px rgb(0 0 0 / 5%);
}

.industry-card .icon-box {
    background: #f1f5f9;
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    border-radius: 18px;
}

.industry-card img {
    width: 36px;
    height: 36px;
}

.industry-card h3 {
    font-size: 16px;
    line-height: 1.3;
    margin-top: 10px;
    color: #4a4a4a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}

@media(max-width:768px) {

    .industry-card {
        height: 150px;
    }

    .industry-card img {
        width: 45px;
        height: 45px;
    }

}


/* COUNTER */
.counter-section {
    background: linear-gradient(90deg, #122056, #153daf, #122056);
}

.white-text h2,
.white-text p {
    color: #fff !important;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.counter-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
}

.counter-card .icon-box {
    display: flex;
    width: 64px;
    height: 64px;
    margin: 15px auto;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
}

.counter-card .icon-box.bg-1 {
    background: #fb2c36;
}

.counter-card .icon-box.bg-2 {
    background: #2c80fd;
}

.counter-card .icon-box.bg-3 {
    background: #fe9900;
}

.counter-card .icon-box.bg-4 {
    background: #ae46ff;
}

.counter-card .icon-box.bg-5 {
    background: #00b8dc;
}

.counter-card .icon-box .icon {
    background-size: 100% !important;
    display: block;
    width: 36px;
    height: 36px;
}

.counter-card .icon-box .icon.icon-1 {
    background: url(../images/icons/icon-grow.svg) no-repeat center;
}

.counter-card .icon-box .icon.icon-2 {
    background: url(../images/icons/icon-suitcase.svg) no-repeat center;
}

.counter-card .icon-box .icon.icon-3 {
    background: url(../images/icons/icon-globe.svg) no-repeat center;
}

.counter-card .icon-box .icon.icon-4 {
    background: url(../images/icons/icon-team.svg) no-repeat center;
}

.counter-card .icon-box .icon.icon-5 {
    background: url(../images/icons/icon-support.svg) no-repeat center;
}



.counter-card h2 {
    font-size: 34px;
    margin: 5px auto;
    font-weight: 700;
}

.counter-card p {
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
}

/* TECHNOLOGY SECTION */

.technology-section {
    padding: 60px 10%;
    text-align: center;
    background: #fff;
}

.technology-section h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #333333;
    ;
}

.technology-section p {
    font-size: 16px;
    color: #333;
    margin-bottom: 60px;
    font-weight: 300;
}

/* GRID */

.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin-top: 60px;
    margin-bottom: 40px;
}

.tech-card {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #f1f1f1;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.tech-card:nth-child(6n) {
    border-right: none;
}

.tech-card:nth-child(-n+6) {
    border-bottom: 1px solid #f1f1f1;
}

.tech-card img {
    width: 120px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: auto;
}



/* responsive */

@media(max-width:992px) {

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:576px) {

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-card {
        height: 140px;
    }

    .tech-card img {
        width: 100px;
        height: 50px;
    }

}

body.modal-open {
    padding-right: 0 !important;
}

.invalid-feedback {
    position: absolute;
    bottom: -16px;
    background: #f00;
    width: auto !important;
    color: #ffffff !important;
    font-size: 11px !important;
    padding: 0px 15px;
}

/* CTA */
.cta-section {
    padding-bottom: 60px;
    background: linear-gradient(100deg, #e5f1fb, #ffffff, #ffeee7);
}

.cta-box {
    /* background: linear-gradient(100deg, #e5f1fb, #ffffff, #ffeee7); */
    border-radius: 25px;
    padding: 60px;
    text-align: center;

}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 300;
    color: #333333;

}

.cta-box p {
    color: #4a4a4a;
    width: 80%;
    margin: 15px auto 30px auto;
    max-width: 700px;
    font-size: 14px;
}

.cta-btns {
    display: inline-flex;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
}

.btn-dark,
.btn-light {
    padding: 10px 18px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-dark i,
.btn-light i {
    font-size: 22px;
    vertical-align: middle;
}

.btn-dark {
    background: #37bc69;
    color: #fff;

}

.btn-light {
    background: #fff;
    color: #000;
    box-shadow: 0px 1px 3px rgb(0 0 0 / 6%);
}

.btn-dark:hover,
.btn-light:hover {
    box-shadow: 0px 1px 3px rgb(0 0 0 / 10%);
}

.testimonial-section {
    padding: 60px 0;

}

.testimonial-section .swiper-button-prev::after,
.testimonial-section .swiper-button-next::after {
    display: none;
}

.navigation-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
    padding-bottom: 5px;
}

.swiper-button-prev,
.swiper-button-next {
    position: relative !important;
    color: #6e55d5;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    box-shadow: 0px 1px 3px rgb(0 0 0 / 10%);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #6e55d5;
    color: #ffffff;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    width: 16px !important;
    height: 16px !important;
}








.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 300;
    color: #333333;
}

.section-title p {
    color: #333333;
    font-weight: 300;
    width: 80%;
    max-width: 900px;
    margin: 10px auto;
    font-size: 16px;
}



.testimonial-slider .swiper-slide {
    opacity: 0.35;
    transition: 0.4s;
}

.testimonial-slider .swiper-slide-active,
.testimonial-slider .swiper-slide-next {
    opacity: 1;
}

.testimonial-wrap {
    background: #ffffff;
    border-radius: 25px;
    padding: 30px 80px;
    min-height: 280px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.img-wrap {
    padding: 50px;
    position: relative;
}

.img-wrap img {
    width: 150px;
    min-width: 150px;
    height: 150px;
    border: 5px solid #ffffff;
    box-shadow: 0 10px 40px 10px rgba(140, 152, 164, 0.24);
    position: relative;
    object-fit: cover;
}

.img-wrap::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    top: 40%;
    right: 40%;
    background: url(../images/testimonial/dots-1.svg) no-repeat center;
    background-size: 98%;
}

.person {
    font-size: 16px;
    color: #333333;
    margin-bottom: 5px;
}

.designation {
    font-size: 14px;
    color: #666666;
    margin-bottom: 0;

}


.testimonial-text {
    width: 90%;
    padding-top: 30px;
    min-height: 145px;
    position: relative;
    font-size: 18px;
    color: #444444;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.5px;
    text-align: justify;
    margin-bottom: 15px;
}

.testimonial-text::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    top: -20px;
    left: 0;
    background: url(../images/testimonial/icon-quotes.svg) no-repeat center;
    background-size: 100%;
}





.testimonial-slider {
    overflow: hidden;
    position: relative;
    padding-bottom: 100px;
}

.testimonial-slider .swiper-wrapper {
    padding-bottom: 50px;
}



.testimonial-slider .swiper-pagination {
    position: absolute;
    bottom: 70px !important;
    left: 50%;
    transform: translateX(-50%);
}

.swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    background: #d8d8d8;
    opacity: 1;
    margin: 0 5px !important;
    border-radius: 50%;
    transition: 0.3s;
}

.swiper-pagination-bullet-active {
    width: 12px;
    height: 16px;
    background: #8b5cf6 !important;
    transform: scale(1.1);
}

@media(max-width:768px) {

    .section-title h2 {
        font-size: 36px;
    }

    .testimonial-card {
        padding: 30px;
    }

}


/* FOOTER */
.footer {
    background: #1d262d;
    color: #fff;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

/* FOOTER LOGO BOX */

.footer-logo-box {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-bottom: 20px;
}

/* LOGO */

.footer-logo {
    width: 40px;
    height: auto;
}

/* TEXT */

.footer-logo-text {
    display: flex;
    flex-direction: column;
    filter: invert(80%);
    height: 40px;
}

/* TITLE */


/* RESPONSIVE */

@media(max-width:767px) {

    .footer-logo-box {
        justify-content: center;
        align-items: center;
    }

    .footer-logo {
        width: 45px;
    }

    .footer-logo-text h2 {
        font-size: 18px;
    }

    .footer-logo-text p {
        font-size: 11px;
    }
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 14px;
    color: #b8bcbe;
    font-weight: 700;
}

.footer-col ul {
    margin: 0;
    padding: 0;
}

.footer-col p,
.footer-col li {
    color: #b8bcbe;
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 14px;
    max-width: 330px;
    text-align: justify;
}

.footer-col li .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    background-size: 90% !important;
    margin-right: 3px;
}

.footer-col li .icon.icon-1 {
    background: url(../images/icons/icon-location.svg) no-repeat center;
}

.footer-col li .icon.icon-2 {
    background: url(../images/icons/icon-mail.svg) no-repeat center;
}

.footer-col li .icon.icon-3 {
    background: url(../images/icons/icon-phone.svg) no-repeat center;
}

.footer-col a {
    color: #b8bcbe;
    text-decoration: none;
    transition: all .3s ease-in-out;
    position: relative;
}

.footer-col a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    border-radius: 5px;
    background-color: #fff;
    bottom: -2px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out
}

.footer-col a:hover:before {
    transform-origin: left;
    transform: scaleX(1)
}

.footer-col a:hover {
    color: #ffffff;
    text-decoration: none
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;

}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: #fff;


    display: flex;
    justify-content: center;
    align-items: center;

    color: #000;
    font-size: 16px;

    transition: 0.3s;
}

.footer-social a::before {
    opacity: 0;
}

.footer-social a:hover {
    background: yellowgreen;
    color: #111;
}






/* MOBILE */

@media(max-width:767px) {

    .footer-social {
        justify-content: flex-start;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    padding: 25px 0;
    margin-top: 50px;
}

.copyright p {
    color: #b8bcbe;
    font-size: 13px;
}


/* RESPONSIVE */
@media(max-width:991px) {

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        display: none;
        border-radius: 0 0 20px 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .hero-left h1 {
        font-size: 55px;
    }

    .services-grid,
    .counter-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid,
    .technology-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media(max-width:767px) {

    .topbar {
        flex-direction: column;
        gap: 20px;
    }

    .top-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-left h1 {
        font-size: 42px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .services-grid,
    .industries-grid,
    .counter-grid,
    .technology-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 40px 25px;
    }

    .cta-box h2 {
        font-size: 30px;
    }

    .cta-btns {
        flex-direction: column;
    }

    .navbar {
        padding: 15px 20px;
    }

    .section-padding {
        padding: 60px 0;
    }
}


/* Footprint start */
.footprint-section {
    background: #122056;
    background: linear-gradient(90deg, #122056, #153daf, #122056);
    padding: 60px 0;
    border-top: 1px solid #888888;
}

/* #KE{
    fill: #62d12a;
} */
#IN {
    cursor: pointer;
    position: relative;
}

#IN::after {
    content: "as";
    position: absolute;
    top: 0;
}

#IN {
    fill: #62d12a;
}

.ripple {
    fill: rgba(255, 86, 34, 0.667);
    transform-origin: center;
    animation: rippleAnim 2s infinite;
}

.ripple2 {
    animation-delay: 1s;
}

.center-dot {
    fill: #ff5722;
}

@keyframes rippleAnim {
    0% {
        r: 12;
        opacity: 0.8;
    }

    100% {
        r: 40;
        opacity: 0;
    }
}

.custom-tooltip {
    position: fixed;
    z-index: 999;
    padding: 10px 18px;

    background: #ec00ec;
    backdrop-filter: blur(12px);

    color: white;
    font-size: 14px;
    font-weight: 600;

    border-radius: 5px;

    border: 1px solid rgba(255, 255, 255, 0.1);

    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.25);

    pointer-events: none;

    transform: translateY(-50%);

    animation: fadeIn 0.2s ease;

}

.custom-tooltip::after {
    content: "";
    position: absolute;
    left: -15px;
    width: 18px;
    top: 20px;
    border-top: 2px dashed #ec00ec;
    border-left: 2px dashed #ec00ec;
    ;
    height: 50px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-40%);
    }

    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

.country-list {
    list-style: none;
    display: flex;
    flex-flow: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.country-list button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 10px;
    border-radius: 2px;
    text-align: center;
    color: #fff;
    min-width: 150px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Footprint end */

.row-input {
    width: 100%;
    margin: 15px 0;
    position: relative;
    display: inline-block;
}

.row-input .lbl1 {
    position: absolute;
    top: -12px;
    left: 12px;
    font-size: 13px;
    color: #333333;
    font-weight: 600;
    background: #ffffff;
    padding: 0 5px;
}

.row-input .txt1 {
    border: 1px solid #d1d1d1;
    width: 100%;
    outline: none;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 1px;
    height: 40px;
    box-shadow: none;
}

.row-input .txt1::-moz-placeholder {
    color: #bbbbbb;
    font-weight: 300
}

.row-input .txt1::placeholder {
    color: #bbbbbb;
    font-weight: 300
}

.row-input .txt1:hover {
    border: 1px solid #999999
}

.row-input .txt1:focus {
    border: 1px solid #002df5 !important
}

.page-header {
    height: 200px;
    background: url(../images/header-bg.jpg) no-repeat center;
    background-size: cover;
}

.page-content {
    padding: 60px 0;
}

.page-title {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333333;
}

.page-content h2 {
    font-size: 36px;
    font-weight: 300;
    color: #333333;
    margin-bottom: 30px;
}

.page-content p {
    color: #333333;
    font-weight: 300;
    font-size: 16px;
    text-align: justify;
    line-height: 1.7;
}

.about-img {
    display: inline-block;
    width: 75%;
    position: relative;
}

.about-img img {
    border-radius: 15px;
}

.img-caption {
    position: absolute;
    bottom: -80px;
    background: #ffffff;
    color: #6e55d5;
    ;
    padding: 40px 30px;
    font-size: 22px;
    text-align: center;
    font-weight: 600;
    border-radius: 15px;
    left: -80px;
}

.list-1 {
    font-size: 16px;
    font-weight: 300;
    color: #333333;
    font-weight: 400;
}

ul.list-1 li {
    margin: 10px 0;
    padding: 5px 0;
}

.list-1 .icon {
    background: #ffffff;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #6e55d5;
    font-size: 16px;
    border-radius: 10px;
}

.box-1 {
    background: #ffffff;
    padding: 20px;
    border-radius: 30px;
}

.box-1 h3 {
    color: #ffffff;
    font-size: 18px;
    background: #6e55d5;
    display: block;
    width: fit-content;
    margin: 10px auto;
    padding: 8px 15px;
    border-radius: 30px;
}

.box-1 p {
    min-height: 120px;
    line-height: 1.5;
}

.box-1 img {
    width: 50%;
    display: block;
    margin: 0 auto;
    max-width: 120px;
}

.imgcon {
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
    background: linear-gradient(90deg, #122056, #153daf, #122056);
    width: 100%;
    border-radius: 60px 0;
    border: 5px solid #ffffff;
}

.imgcon h2 {
    position: absolute;
    color: #ffffff;
    z-index: 1;
    width: 100%;
    top: 40px;
    font-size: 32px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgb(0 0 0 / 50%);
}

.imgcon .img-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all linear 500ms;
    transition: all linear 500ms;
    padding: 25px 20px;
    left: -100%;
    font-size: 18px;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.imgcon img {
    position: relative;
    -webkit-transition: all linear 500ms;
    transition: all linear 500ms;
    left: 0;
    top: 0;
    float: left;
    width: 100%;
}

.imgcon:hover .img-overlay {
    left: 0;
}

.imgcon:hover img {
    left: 100%;
}


.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    cursor: pointer;
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: #2563eb;
    cursor: pointer;
}

.btn-dark svg,
.btn-light svg {
    transition: transform 0.3s ease;
}

.btn-dark:hover svg,
.btn-light:hover svg {
    transform: translateX(4px);
}

.whatsapp-icon {
    background: #ecfdf3;
    color: #25d366;
}

.iconic-box {
    text-align: center;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #d4f0ff;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    box-shadow: 0 3.4px 2.7px -30px rgba(0, 0, 0, .059), 0 8.2px 8.9px -30px rgba(0, 0, 0, .071), 0 25px 40px -30px rgba(0, 0, 0, .2);
    min-height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    -webkit-transition: 1.2s cubic-bezier(.17, .85, .438, .99);
    -o-transition: 1.2s cubic-bezier(.17, .85, .438, .99);
    transition: 1.2s cubic-bezier(.17, .85, .438, .99);
}

.iconic-box>.title {
    font-size: 16px;
    color: #373737;
    font-weight: 500;
    display: inline-block;
    width: 100%;
    margin: 5px 0;
}

.srv-img {
    border-radius: 70px 0;
}

@media (max-width: 1199px){
.banner-wrap{
    margin-top: 85px;
}
        .carousel-control {
            bottom: 10px;
            transform: scale(0.6);
        }
        .g-review {
            display: none;
        }
        .welcome-section h1, .section-title h2 {
    font-size: 22px;
    text-align: center;
}
.welcome-section p {
    font-size: 13px;
}
.country-list {
    gap: 5px;
}
.country-list button {
    padding: 8px 5px;
    font-size: 12px;

}
.footprint-section{
    padding-bottom: 0;
}
.testimonial-wrap {
    padding: 30px;
    flex-flow: column;
}
.testimonial-text {
    width: 100%;
    font-size: 14px;
}

.testimonial-slider .swiper-wrapper {
    padding-bottom: 10px;
}
.img-wrap {
    padding-top: 0;
}

}