@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/*
==========================
    Font Family CSS
==========================
*/


body{
    font-family: 'robot', sans-serif;
}





/*
==========================
    Utillity CSS
==========================
*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #39b456;
    --blue: #0a4f6c;
    --white: #ffff;
    --darkL: #0a1016;
    --grey: #e4e0e0;
    --goodGreen: #22cd6f;
}

.universe {
    width: 100vw;
    height: auto;
}
.border-examample {
    border: 1px solid --green;
}
/*
====================================================
    Container width is defined in media query
====================================================
*/

.container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;

}

.gap-bw-flex {
    gap: 20px;
}

.align-self-center {
    align-self: center;
}

.text-center {
    text-align: center;
}
.just-content-center {
    justify-content: center;
}


/*
==========================
    Space CSS
==========================
*/

.space-100 {
    width: 100%;
    height: 100px;
}
.space-60 {
    width: 100%;
    height: 60px;
}
.space-40 {
    width: 100%;
    height: 40px;
}
.space-20 {
    width: 100%;
    height: 20px;
}

/*
======================
    HeadLine Css
======================
*/


.headLine {
    position: relative;
    z-index: 2;
}

.headLine strong .filltextHollow {
    font-size: 80px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #171c1e;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.headLine strong .filltextBold {
    font-size: 80px;
    text-transform: uppercase;
    -webkit-text-fill-color: #f1f1f1;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}





/*
======================
    Button Css
======================
*/


/* Give .btn-green Class to "a" */

.btn-green {
    padding: 15px 60px 15px 30px;
    background: var(--green);
    border-radius: 5px;
    color: var(--white);
    font-size: 15px;
    text-transform: uppercase;
    border: 1px solid transparent;
    text-decoration: none;
    
}

.btn-green:hover {
    border-color: var(--goodGreen);
    background: transparent;
    color: var(--goodGreen);
    transition: all 0.3s;
}


/*
======================
    Button Arrow Css
======================
*/

.nav-arrow-div > div {
    height: 45px;
    width: 45px;
    cursor: pointer;
    background: transparent;
    border: 1px solid #06a950;
    text-align: center;
    line-height: 45px;
    border-radius: 4px;
    color: #06a950;
    font-size: 16px;
    display: inline-block;
    margin: 0 5px;
    transition: all .3s;
}

.nav-arrow-div > div:hover {
    background: #06a950;
    border-color: #06a950;
    color: #fff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}



/*
======================
    heading
======================
*/

.headingW {
    position: relative;
    z-index: 2;
}

.headingW small {
    color: #39b456;
    font-size: 16px;
    text-transform: uppercase;
}
.headingW h2 {
    font-size: 48px;
    line-height: 62px;
    text-transform: uppercase;
    color: #0b0d0e;
}

.headingW strong.bHeading-style-fill {
    font-size: 80px;
    text-transform: uppercase;
    -webkit-text-fill-color: #f1f1f1;
    position: absolute;
    left: 0;
    top: -20px;
    z-index: -1;
}

.headingW strong.bHeading-style-border {
    font-size: 80px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #f5f5f5;
    position: absolute;
    left: 0;
    top: -20px;
    z-index: -1;
}


/*
======================
    heading End
======================
*/


/*
=========================================
          Animation on Scroll
=========================================
*/



.auto-rotate {
    animation: AutoRotateAnimation;
    animation-timeline: view();
}
@keyframes AutoRotateAnimation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}



.auto-show {
    animation: TextAppear both;
    animation-timeline: view();
    animation-range: entry 20% cover 100vh;
}
@keyframes TextAppear {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }    
}



.image-reveal {
    animation: ImageReveal both;
    animation-timeline: view(99% 5%);
}
@keyframes ImageReveal {
    from {
        filter: saturate(0) contrast(4) brightness(0.1) blur(5px);
        opacity: 0;
        scale: 0.95;
        translate: 0 4rem;
    }
    to {
        filter: none;
        opacity: 1;
        scale: 1;
        translate: 0 0;
    }
    
}


/*
=========================================
        Animation on Scroll END
=========================================
*/

/*
====================================================
                 Page css
====================================================
*/

.logo-menu-wrapper {
    display: flex;
    align-items: center;
    
}
#logo-box{
    margin-right: auto;
}





.logos {
    display: flex;
    height: 120px;
}

.logo-company {
    width: 140px;
    height: 120px;
}

.logo-2030 {
    width: 110px;
    height: 69px;
    margin-top: 28px;
}

.logo-company img, .logo-2030 img {
    width: 100%;
    height: 100%;
}

.logo{
    object-fit: contain;
}






.nav-a{
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    /* border: 1px solid green; */
    color: #7a7a7a;
    display: inline-block;
    padding: 10px 5px;
    margin-right: 30px;
    position: relative;
    
}
.nav-a:hover{
    color: #000000;
}
.nav-a:after{
    content: '';
    width: 0;
    height: 3px;
    background: #f92428;
    position: absolute;
    top: 50px;
    left: 0;
    transition: 0.8s;
    
}
.nav-a:hover:after{
    width: 100%;
}

.btn-hw {
    height: 50px;
    width: 180px;
    margin-right: 50px;
    padding: 15px 0;
}

.btn-lb{
    height: 50px;
    width: 180px;
    margin-right: 50px;
    padding: 15px 15px;
}















.hero-wrapper {
    width: 98vw;
    height: auto;
    min-height: 500px;
    position: relative;
    background-image: url(/images/hero-image.jpg);
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center;
    display: grid;
    padding-bottom: 10px;
    text-align: center;
    align-items: end;

}
.hero-wrapper::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(115, 0, 255, 0.1) 36%, rgba(0, 0, 0, 0.77) 100%);
    z-index: -1;
   
}

.hero-heading {
    
    
    color: var(--white);
    padding: 30px 20px 10px 20px;

}
.hero-heading strong {
    font-size: clamp(2rem, 5vw + 1rem, 3rem);
}








.containt-main{
    position: relative;
}
.gola {
    position: absolute;
    background: url(/images/gola-1.png);
    background-size: cover;
    content: '';
    min-height: 500px;
    width: 500px;
    top: -200px;
    left: -200px;
    z-index: -1;
}

.text-content{
    display: flex;
    
    flex-direction: column;
    justify-content: center;

    width: 600px;
    height: 800px;
    padding: 30px 10px 10px 20px;
    
}


.image-content{
   width: 540px;
    height: 100%;
    padding: 30px 10px 10px 20px;
}





.text-content h1 {
    font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
    font-weight: 800;
}
.text-content h2 {
    font-size: clamp(2rem, 4vw + 1rem, 2.5rem);
    font-weight: 200;
    color: #494949;
}
.text-content p {
    font-size: clamp(1rem, 3vw + 1rem, 1.2rem);
}







.image-content-wrapper {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(5, 1fr);
gap: 5px;
}

.div1 { grid-area: 1 / 1 / 3 / 2; }
.div2 { grid-area: 1 / 2 / 2 / 3; }
.div3 { grid-area: 2 / 2 / 3 / 3; }
.div4 { grid-area: 3 / 1 / 4 / 3; }
.div5 { grid-area: 4 / 1 / 6 / 2; }
.div6 { grid-area: 4 / 2 / 5 / 3; }
.div7 { grid-area: 5 / 2 / 6 / 3; }









.div1, .div5{
    overflow: hidden;
    width: 255px;
    height: 360px;
}
.div2, .div3, .div6, .div7 {
    width: 250px;
    height:176px;
  
}
.div4 {
    height:175px;
    width: 510px;
    overflow: hidden;
    
}

.image-content-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.div2 img{
    object-fit: cover top;

}
.div2{
    
}
.image-container-large {
    display: flex;
    width: 100%;
    animation: slide1 17s infinite;
}

.image-container-small{
    display: flex;
    width: 100%;
    animation: slide2 27s infinite;   
}
.image-container-small-2{
    display: flex;
    width: 100%;
    animation: slide3 41s infinite;
}
@keyframes slide1 {
    0%{
        transform: translateX(0);
    }
        25%{
        transform: translateX(0);
    }
        30%{
        transform: translateX(-100%);
    }
        50%{
        transform: translateX(-100%);
    }
            55%{
        transform: translateX(-200%);
    }
            75%{
        transform: translateX(-200%);
    }
                80%{
        transform: translateX(-300%);
    }
                100%{
        transform: translateX(-300%);
    }

    
}
@keyframes slide2 {
    0%{
        transform: translateX(0);
    }
        25%{
        transform: translateX(0);
    }
        30%{
        transform: translateX(-300%);
    }
        50%{
        transform: translateX(-300%);
    }
            55%{
        transform: translateX(-200%);
    }
            75%{
        transform: translateX(-200%);
    }
                80%{
        transform: translateX(-100%);
    }
                100%{
        transform: translateX(-100%);
    }

    
}
@keyframes slide3 {
    0%{
        transform: translateX(0);
    }
        25%{
        transform: translateX(0);
    }
        30%{
        transform: translateX(-100%);
    }
        50%{
        transform: translateX(-100%);
    }
            55%{
        transform: translateX(-200%);
    }
            75%{
        transform: translateX(-200%);
    }
                80%{
        transform: translateX(-300%);
    }
                100%{
        transform: translateX(-300%);
    }

    
}


.services-wrapper {
    content: '';
    background-image: url(/images/bg-full.png.webp);
    background-size: cover;
    background-position: center;
}

.serv-heading{
    font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
    font-weight: 800;
    position: relative;
}

.serv-heading:after{
    content: '';
    width: 40%;
    height: 3px;
    background: #f92428;
    position: absolute;
    top: 75px;
    left: 0;
    transition: 0.8s;
    
}
.serv-heading:hover:after {
    content: '';
    width: 100%;
    height: 3px;
    background: #f92428;
    position: absolute;
    top: 75px;
    left: 0;
    transition: 0.8s;
    
}





.serv-grid-container {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(4, 1fr);
grid-column-gap: 10px;
grid-row-gap: 10px;
}

.serv-1 { grid-area: 1 / 1 / 3 / 3; }
.serv-2 { grid-area: 1 / 3 / 2 / 4; }
.serv-3 { grid-area: 2 / 3 / 3 / 4; }
.serv-4 { grid-area: 1 / 4 / 2 / 5; }
.serv-5 { grid-area: 2 / 4 / 3 / 5; }
.serv-6 { grid-area: 3 / 1 / 4 / 2; }
.serv-7 { grid-area: 3 / 2 / 4 / 3; }
.serv-8 { grid-area: 3 / 3 / 4 / 4; }
.serv-9 { grid-area: 3 / 4 / 4 / 5; }
.serv-10 { grid-area: 4 / 1 / 5 / 2; }
.serv-11 { grid-area: 4 / 2 / 5 / 3; }
.serv-12 { grid-area: 4 / 3 / 5 / 4; }
.serv-13 { grid-area: 4 / 4 / 5 / 5; }

.serv-1 {
    width: 510px;
    height: 510px;
    background-color: var(--goodGreen);
}
.serv-2, .serv-3, .serv-4, .serv-5, .serv-6, .serv-7, .serv-8, .serv-9, .serv-10, .serv-11, .serv-12, .serv-13{
    width: 250px;
    height: 250px;
}
.ser-image-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.ser-image-container {

    width: 100%;
    height: 100%;
    position: relative;
    

}

.overlay {
    position: absolute;
    background-color: #0a4f6c;
    transition: all .3s ease-in;

}

.overlayLeft{
    height: 20px;
    width: 100%;
    bottom: 0;
    left: 0;

}

.ser-image-container:hover .overlayLeft{
    height: 100%;
}


.serv-desc{
    position: absolute;
    color: var(--white);
    left: 20px;
}

.serv-dec-div{
    padding: 25px;
    color: var(--white);
}









.special-service-image {
    position: relative;
    width: 65vw;
    height: 50vh;
    margin-left: 50px;
}
.special-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.special-service-text {
    position: absolute;
    width: 70%;
    height: 70%;
    background-color: #f3f3f3;
    top: 15%;
    right: -40%;
    padding: 40px;
    
}
.special-service-text h1 {
    font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
}
.special-service-text h2 {
    font-weight: 200;
}

.line{
    width: 80%;
    height: 2px;
    background-color: #969696;
    margin-left: auto;
    margin-right: auto;
}
.copyright-footer  {
    display: flex;
    justify-content: center;
    
}
/*
====================================================
             Page css END
====================================================
*/

/*
======================
    Media Query
======================
*/

@media(min-width:1140px){
    .container{
        max-width: 1140px;
    }
}