*{
  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 {
            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;
        }

            .top-menu li a:hover {
                text-decoration: underline;
            }

.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: 220px;
    background-color: #fff;
    border-radius: 0;
    top: 100%;
    left: 50%;
    transform: translate(-53%);
    padding: 0 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;
}

.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: block;
    padding: 0;
}

    .main-menu li > .sub-menu li a {
        text-decoration: none;
        line-height: 20px;
        font-size: 14px;
        display: block;
        padding: 10px 0;
        color: #111111;
        border-bottom: 1px solid rgb(0 0 0 / 3%);
        border-top: none;
    }

        .main-menu li > .sub-menu li a:hover {
            color: #6e55d5;
        }

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;
    }


/*--------------------------*/
.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 > .carousel-item.active.right, .carousel-inner > .carousel-item.next {
            }

            .carousel-inner > .carousel-item.active.left, .carousel-inner > .carousel-item.prev {
            }

                .carousel-inner > .carousel-item.active, .carousel-inner > .carousel-item.next.left, .carousel-inner > .carousel-item.prev.right {
                }


        .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-size: 25px !important;
                }

        .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-caption p {
        }


        .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%;
        }

        .carousel-inner {
        }
    }

    @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:80px 0;
}

.section-title{
  text-align:center;
  margin-bottom:50px;
}

.section-title h2{
  font-size:38px;
  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;
}


/* SERVICES */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.service-card{
  padding:40px 25px;
  border-radius:18px;
  text-align:center;
}

.service-card i{
  font-size:50px;
  margin-bottom:20px;
}

.service-card h3{
  margin-bottom:15px;
  
}

.underline{
  width:60px;
  height:4px;
  background:#160e55;
  margin:10px auto 25px;
}

.service-card p{
  color:#666;
  line-height:1.7;
}

.service1{background:#f7ebe4;}
.service2{background:#f5e6f2;}
.service3{background:#eee6fa;}
.service4{background:#e7f0f8;}
.service5{background:#e8f1f1;}
.service6{background:#f6f4c7;}


/* INDUSTRIES */
.industries-slider{
    margin-top: 60px;
    overflow: hidden;
}

.industries-slider .swiper-wrapper{
    transition-timing-function: linear !important;
}

.industry-card{
    height: 180px;
    border: 1px solid #ececec;
    border-radius: 20px;
    background: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 20px;
}

.industry-card img{
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-bottom: 18px;
}

.industry-card h3{
    font-size: 18px;
    font-weight: 300;
    line-height: 1.3;
    margin-top: 15px;
    color: #4a4a4a;
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;
}

@media(max-width:768px){

    .industry-card{
        height: 150px;
    }

    .industry-card img{
        width: 45px;
        height: 45px;
    }

}


/* COUNTER */
.counter-section{
  background:linear-gradient(90deg,#1d2f9d,#122056);
}

.white-text h2,
.white-text p{
  color:#fff !important;
}

.counter-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:25px;
}

.counter-card{
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.15);
  padding:40px 20px;
  border-radius:20px;
  text-align:center;
  color:#fff;
}

.counter-card i{
  font-size:35px;
  margin-bottom:20px;
}

.counter-card h2{
  font-size:36px;
  margin-bottom:10px;
}


/* TECHNOLOGY SECTION */

.technology-section{
    padding:80px 5%;
    text-align:center;
    background:#fff;
}

.technology-section h2{
    font-size:38px;
    font-weight:300;
    margin-bottom:20px;
    color: #4a4a4a;;
}

.technology-section p{
    font-size:18px;
    color:#666;
    margin-bottom:60px;
}

/* GRID */

.tech-grid{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    margin-top: 60px; 
  
}

.tech-card{
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e5e5e5;
    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 #e5e5e5;
}

.tech-card img{
    width: 130px;
    height: 70px;
    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;
    }

}


/* CTA */
.cta-box{
  background:linear-gradient(90deg,#edf7ff,#fff0ea);
  border-radius:25px;
  padding:60px;
  text-align:center;
  
}

.cta-box h2{
  font-size:38px;
  margin-bottom:20px;
  font-weight: 300;
  color: #4a4a4a;
  
}

.cta-box p{
  color: #4a4a4a;;
  margin-bottom:30px;
}

.cta-btns{
  display:flex;
  justify-content:center;
  gap:20px;
}

.btn-dark,
.btn-light{
  padding:15px 30px;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
}

.btn-dark{
  background:#000;
  color:#fff;
}

.btn-light{
  background:#fff;
  color:#000;
}


.testimonial-section{
    padding: 100px 0;
    
}

.section-title{
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2{
    font-size: 38px;
    font-weight: 300;
    color: #4a4a4a;
}

.section-title p{
    margin-top: 10px;
    color: #777;
}



.testimonial-slider .swiper-slide{
    opacity: 0.35;
    transition: 0.4s;
}

.testimonial-slider .swiper-slide-active,
.testimonial-slider .swiper-slide-next{
    opacity: 1;
}

.testimonial-card{
    background: #f5f7fb;
    border-radius: 25px;
    padding: 40px;
    min-height: 280px;
}

.testimonial-card img{
    width: 120px;
    margin-bottom: 25px;
}

.testimonial-card p{
    color: #555;
    line-height: 2;
    font-size: 16px;
}

.testimonial-slider{
    overflow: hidden;
    position: relative;
    padding-bottom: 100px;
}

.testimonial-slider .swiper-wrapper{
    padding-bottom: 50px;
}



.testimonial-slider .swiper-pagination{
    position: absolute;
    bottom: 20px !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: 38px;
    }

    .testimonial-card{
        padding: 30px;
    }

}


/* FOOTER */
.footer{
  background:#101b2b;
  color:#fff;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
}

/* FOOTER LOGO BOX */

.footer-logo-box{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

/* LOGO */

.footer-logo{
    width:45px;
    height:auto;
}

/* TEXT */

.footer-logo-text{
    display:flex;
    flex-direction:column;
}

/* TITLE */

.footer-logo-text h2{
    color:#fff;
    font-size:18px;
    font-weight:600;
    margin-bottom:4px;
    line-height:0.8;
    font-family:"Architects Daughter", cursive ;
}

/* TAGLINE */

.footer-logo-text p{
    color:#ccc;
    font-size:10px;
    margin:0;
    line-height:1.5;
    font-family: "Architects Daughter", cursive;
}

/* 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;
}

.footer-col p,
.footer-col li{
  color:#cfcfcf;
  line-height:1.8;
  margin-bottom:10px;
}

.footer-col a{
  color:#cfcfcf;
  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: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.1);
  text-align:center;
  padding:25px 0;
  margin-top:50px;
}


/* 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;
  }
}

