@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
html{
    scroll-behavior: smooth;
}
body{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}
h1{
    margin: 0;
    padding: 0;
}
h2{
    margin: 0;
    padding: 0;
}
h3{
    margin: 0;
    padding: 0;
}
h4{
    margin: 0;
    padding: 0;
}
h5{
    margin: 0;
    padding: 0;
}
h6{
    margin: 0;
    padding: 0;
}
p{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    color: #000;
}
.container{
    max-width: 960px;
    margin: 0 auto;
}
.row{
    display: flex;
}
.justify-content{
    justify-content: center;
}
.col-lg-12{
    width: 100%;
}
.col-lg-9{
    width: 75%;
}
.col-lg-8{
    width: 65%;
}
.col-lg-6{
    width: 50%;
}
.col-lg-4{
    width: 33.333%;
}
.col-lg-3{
    width: 25%;
}
.main .left-side{
    width: 20%;
    background: #000;
    height: 100vh;
    position: fixed;
}
.main .left-side .logo{
    text-align: center;
    margin-top: 5vh;
}
.main .left-side .logo img{
    width: 170px;
}
.main .left-side .menu{
    width: 100%;
    position: absolute;
    height: 100vh;
    top: 0;
    margin: 30vh 0;
}
.main .left-side .menu ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
    padding: 0 40px;
    box-sizing: border-box;
}
.main .left-side .menu ul li{
    display: block;
    width: 100%;
}
.main .left-side .menu ul li a{
    display: block;
    padding: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    border-bottom: 1px solid #2b2d31;
    margin-bottom: 10px;
    text-align: left;
    transition: .3s;
}
.main .left-side .menu ul li a:hover{
    color: #D60404;
}
.main .left-side .menu ul li .navigation__link.active{
    color: #D60404;
}
.main .left-side .menu ul li #active {
    color: #D60404;
}


.main .left-side .social-icon{
    width: 100%;
    position: absolute;
    bottom: 5vh;
}
.main .left-side .social-icon ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}
.main .left-side .social-icon ul li{
    display: inline-block;
}
.main .left-side .social-icon ul li a{
    display: inline-block;
    font-size: 30px;
    margin: 5px;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    transition: .1s;
}
.main .left-side .social-icon ul li a:hover{
    background: #11212E;
    border-color: #11212E;
    scale: 1.2;
}
.main .left-side .social-icon .fb{
    background: #4064AC;
    border: 2px solid #4064AC;
}
.main .left-side .social-icon .mail{
    background: #DF574B;
    border: 2px solid #DF574B;
}
.main .left-side .social-icon .wp{
    background: #00beee;
    border: 2px solid #00beee;
}
.main .left-side .social-icon .fb i{
    color: #fff;
    font-size: 25px;
    padding: 12px 9px;
}
.main .left-side .social-icon .mail i{
    color: #fff;
    font-size: 25px;
    padding: 12px 9px;
}
.main .left-side .social-icon .wp i{
    color: #fff;
    font-size: 20px;
    padding: 15px 9px;
}

.main .right-side{
    width: 80%;
    margin-left: 20%;
}




#text-animate {
   overflow: hidden;
}

#text1,
#text2 {
    position: absolute;
    width: 100%;
    display: inline-block;
    font-size: 90px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    user-select: none;
    max-width: 80%;
    overflow: hidden;
}


.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.hero-section .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
  
.hero-section .content h2{
    position: relative;
    font-size: 5vw;
    color: #7396FF;
    -webkit-text-stroke: 0.2vw #000;
    text-transform: uppercase;
}
.hero-section .content h2::before{
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    -webkit-text-stroke: 0vw #fff;
    border-right: 2px solid #fff;
    overflow: hidden;
    animation: animate 10s linear infinite;

}
@keyframes animate{
    0%,10%,100%{
        width: 0;
    }
    70%,90%{
        width: 100%;
    }
}

.hero-section .content p{
    color: #fff;
    font-size: 25px;
    text-align: center;
    margin-top: 25px;
}
  

.about-section {
    width: 100%;
    background-color: white;
    padding: 50px 0;
    margin-top: 50px;
}
.about-section .details {
    padding-right: 15px;
}
.about-section .details h2{
    font-size: 35px;
    color: #1d1d1d;
    padding-top: 30px;
}
.about-section .details p{
    font-size: 20px;
    font-weight: 300;
    color: #000;
    line-height: 1.6em;
    margin-top: 15px;
}
.about-section .image img{
    width: 100%;
}

.services-section{
    background: #f1f1ff;
    padding: 70px 0;
}
.services-section .heading h2{
    font-size: 35px;
    text-align: center;
    margin-bottom: 50px;
}

.services-section .content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}
.services-section .content .card {
    background: #fff;
    text-align: center;
    padding: 20px;
    padding-top: 25px;
    border-radius: 5px;
    box-shadow: 0 1px 20px #ddd;
}
.services-section .content .card i{
    font-size: 35px;
    color: #010167;
    margin-bottom: 25px;
}
.services-section .content .card h2{
    font-size: 20px;
    margin-bottom: 10px;
}
.services-section .content .card p{
    font-size: 16px;
    line-height: 1.5em;
}

.client-section{
    padding: 60px 0;
}
.client-section .heading h2{
    font-size: 35px;
    text-align: center;
    margin-bottom: 20px;
}
.client-section .content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.client-section .content .card img{
    width: 100%;
}



.client-section img {
    max-width: 100%;
}
.client-section .swiper-slide{
  margin-right: 20px !important;
  width: 150px !important;
}
.client-section .swiper-container {
    padding: 40px 50px;
    box-sizing: border-box;
}
.client-section .client__box img {
    display: block;
    margin: 0 auto;
}
  
@media only screen and (max-width: 767px) {
    .client-section .swiper-container {
      padding: 0 0 40px;
}
.client-section .client__box {
      padding: 0;
      text-align: center;
}
.client-section .swiper-button-prev,
    .client .swiper-button-next {
      display: none;
    }
}




.gallery-section {
    width: 100%;
}
.gallery-section .heading{
    padding-bottom: 40px;
    background-color: #F9F9F9;
}
.gallery-section .heading h2{
    font-size: 35px;
    font-weight: 500;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}
.gallery-section .gallery-content .card{
    display: grid;
    overflow: hidden;
    position: relative;
    border: 3px solid #fff;
    transition: .3s;
}
.gallery-section .gallery-content .image img{
    width: 100%;
    height: 100%;
    transition: .4s;
}
.gallery-section .gallery-content .details{
    position: absolute;
    background: rgba(0,0,0,0.6);
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: .3s;
}
.gallery-section .gallery-content .card:hover .details{
    opacity: 1;
}
.gallery-section .gallery-content .card:hover img{
    scale: 1.2;
}
.gallery-section .gallery-content .details h4{
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 15px;
}
.gallery-section .gallery-content .details p{
    font-size: 16px;
    color: #fff;
    font-weight: 300;
}
.video-section {
    margin-top: 80px;
}
.video-section .heading h2{
    font-size: 35px;
    text-align: center;
}
.video-section .content{
    display: flex;
    justify-content: center;
}
.video-section video{
    height: 400px; 
    width: 700px;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}




.get-estimate{
    background: #282828;
    padding: 70px 0;
    margin-top: 0;
    margin-top: 0;
}
.get-estimate .content{
    text-align: center;
}
.get-estimate .content h2{
    font-size: 25px;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}
.get-estimate .content p{
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.6em;
    margin: 0;
    padding: 0;
}
.get-estimate .content a{
    background: #00beee;
    display: inline-block;
    color: #282828;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    padding: 15px 30px;
    margin-top: 20px;
}
.get-estimate .content a:hover{
    background: #00a7d1;
}
.map-section{
    margin-top: 50px;
}
.map-section .contact-info{
    height: 400px;
    background: #F9F9F9;
    padding: 60px;
    box-sizing: border-box;
}

.map-section .contact-info h2{
    font-size: 30px;
    color: #444;
}
.map-section .contact-info h4{
    font-size: 20px;
    color: #444;
    margin-top: 50px;
}
.map-section .contact-info p{
    font-size: 18px;
    color: #555;
    margin-top: 10px;
}
.map-section .contact-info .info {
    margin-top: 50px;
}
.map-section .contact-info .info strong{
    display: block;
    color: #282828;
    font-weight: 600;
    margin-top: 10px;
}
footer{
    background: #282828;
    padding: 40px 0;
}
footer .left p{
    color: #ddd;
}
footer .right{
    text-align: right;
}
footer .right a{
    color: #ddd;
}

.page-header{
    height: 200px;
    background-size: cover;
    background-position: center;
    margin-bottom: 80px;
}
.page-header .overlay{
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
}
.page-header .caption h2{
    font-size: 35px;
    color: #fff;
    padding: 82px 0;
    text-align: center;
}
 

.contact-heading h2{
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;
}
.contact-section{
    border: 1px solid #ddd;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 30px;
    border-top: 5px solid #010167;
}
.contact-section form .form-group{
    margin-bottom: 15px;
}
.contact-section form .mr-2{
    margin-right: 10px;
}
.contact-section form  input{
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 30px;
    outline: none;
    padding: 15px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.contact-section form  textarea{
    height: 150px;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 30px;
    outline: none;
    padding: 15px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.contact-section form .submit-btn{
    text-align: center;
}
.contact-section form button{
    background: #010167;
    color: #fff;
    padding: 15px 20px;
    font-size: 18px;
    border: none;
    width: 150px;
    cursor: pointer;
    border-radius: 30px;
}
.contact-section form button:hover{
    background: #000053;
}







.toggle-icon{
    display: none;
}
.left-side .toggle-icon i{
    display: none;
}

/* Mobile Responsive Design */
@media screen and (max-width: 767px) {
    .row{
        display: block;
    }
    .col-lg-9{
        width: 100%;
    }
    .col-lg-8{
        width: 100%;
    }
    .col-lg-6{
        width: 100%;
    }
    .col-lg-4{
        width: 100%;
    }
    .col-lg-3{
        width: 100%;
    }
    .toggle-icon{
        display: block;
        position: absolute;
        right: 15px;
        top: 20px;
        z-index: 100;
    }
    .toggle-icon i{
        font-size: 35px;
        color: #fff;
        border: 1px solid #fff;
        border-radius: 5px;
        padding: 10px 15px;
    }
    .left-side .toggle-icon i{
        display: block;
        font-size: 35px;
        color: #fff;
        border: 1px solid #fff;
        border-radius: 5px;
        padding: 10px 15px;
    }
    .main .left-side{
        width: 100%;
        position: absolute;
        z-index: 100;
        display: none;
    } 
    .navigation-bar-show{
        display: block;
    }
    .main .left-side .logo img{
        width: 120px;
    }
    .main .left-side .menu{
        position: inherit;
        margin: 0;
        height: auto;
        margin-top: 30px;
    }



    .main .right-side{
        width: 100%;
        margin-left: 0;
    }
    .container{
        padding: 0 10px;
    }

    #text1,
#text2 {
    font-size: 35px;
    font-weight: 800;
    max-width: 100%;
}
.hero-section .content{
    padding: 10px;
    box-sizing: border-box;
}
.hero-section .content h2{
    font-size: 7vw;
}
.hero-section .content p{
    font-size: 20px;
}
.about-section{
    padding: 40px 10px;
    margin-top: 0;
    box-sizing: border-box;
}
.about-section .image img{
    margin-top: 20px;
}
.client-section .content{
    padding: 10px;
    box-sizing: border-box;
}
.services-section .content{
    grid-template-columns: repeat(1, 1fr);
    padding: 0 10px;
    box-sizing: border-box;
}

.client-section .content{
    grid-template-columns: repeat(2, 1fr);
}
.map-section{
    margin-top: 30px;
    padding: 10px;
    box-sizing: border-box;
}

.gallery-section .heading p{
    font-size: 20px;
    padding: 10px;
    box-sizing: border-box;
}

.gallery-section .gallery-content .card{
    margin-bottom: 20px;
    padding: 0 10px;
}

.get-estimate{
    padding: 50px 0;
    margin-top: 50px;
}
.get-estimate p{
    font-size: 20px;
}
.map-section .contact-info{
    padding: 30px 10px;
    padding-top: 50px;
    height: auto;
}
.map-section .contact-info h2 {
    font-size: 28px;
}
.map-section .contact-info h4 {
    margin-top: 30px;
}
.map-section .contact-info .info{
    margin-top: 35px;
}
footer{
    padding: 20px 0;
}
footer .heading h2{
    margin-top: 40px;
}
footer .left{
    text-align: center;
}
footer .left p{
    margin-bottom: 10px;
}
footer .right{
    text-align: center;
}
.contact-section{
    margin: 10px;
    box-shadow: none;
    box-sizing: border-box;
}
.video-section video{
    width: 100%;
    height: 100%;
}
    
    
}









