@import url('https://fonts.googleapis.com/css?family=Manjari:100,400,700&display=swap');
@import url('./home.css');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #13A2D4;
    --secondary: #0F323F;
}
body, html, .wrapper{
    min-height: auto ;
    scroll-behavior: smooth;
}
body.site_loading{
    overflow-X: hidden;
}
body{
    position: relative;
}
body .bg-primary {
    background-color: var(--primary) !important;
}
p.content{
    opacity: 0.8;
}
.bg_secondary{
    background-color: var(--secondary);
}
.row {
    row-gap: 25px;
    .col-md-6, .col-md-5, .col-md-7{
        padding-left: 15px;
        padding-right: 15px;
    } 
}
body .btn-primary {
    color: #fff;
    background: linear-gradient(to right, var(--primary), var(--secondary));
       border: none;
    box-shadow: none;
    &:hover, &:active, &:focus{
        background: linear-gradient(to right, var(--secondary), var(--primary));
          border: none;
    }
    &:active{
        position: relative;
        top: 2px;
    }
}
.text-justify{
    text-align: justify;
}

.py-10 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
}

.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 5rem !important;
}

body {
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    font-family: "Raleway", sans-serif;
    transition: .5s;
}

.main {
    padding-left: 0px;
    padding-right: 0px;
}

img {
    width: 100%;
    /* Can add different width adjustments if needed */
}
/* .bg_secondary{
    background-color: var(--secondary);
    color: #ffffff;
} */
.table-wrapper{
    background: #fff;
    border-radius: 10px;
    border: 1px solid #cccc;
    overflow: auto;
}
.section-title, .section_title{
    margin-bottom: 20px;
    /*font-family: "Caveat", serif;*/
    font-size: 1.7rem;
}
.section_subtitle {
    font-size: 0.91rem;
}
.products{
    .product_title{
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    .product_content{
        opacity: 0.8;
    }
    .image_container{
        height: 300px;
        width: 300px;
        margin: 0 auto; 
        border-radius: 100%;
        /* clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);  */
        margin-bottom: 15px;
        overflow: hidden;
        border-radius: 100%;
        border: 1px dashed #ffffff;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}
.inner_page{
    .products{
        .image_container{
            width: 90%;
            height: 300px;
            background-size: cover;
            /* clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%); */
            border-radius: 20px; /* Adjusts the ro*/
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }
    }
}
/* service section */
.service_item {
    margin-bottom: 0px;

    .btn {
        background: var(--secondary);
        border: 0;
        position: relative;
        bottom: 20px;
        width: 75%;
        padding: 13px 10px;
        font-weight: 600;
        border-radius: 10px;
        transition: 0.2s;
    }

    &:hover {
        cursor: pointer;

        .btn {
            background: var(--primary);
            transition: 0.2s;
        }

        .image_container:after {
            opacity: 0.6;
            transition: 0.2;
        }
    }

    .image_container:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: #000;
        left: 0;
        top: 0;
        border-radius: 15px;
        opacity: 0;
        transition: 0.2;
    }

    .image_container {
        position: relative;
        height: 300px;
        border-radius: 15px;
        overflow: hidden;
        img{
            height: 100%;
            width: 100%;
            object-fit: cover;
            object-position: center;
        }
    }
}

.raw_materials {
    .material_item {
        background: var(--secondary);
        color: #ffffff;
        padding: 30px 20px;
        border-radius: 10px;
        position: relative;

        &:hover {
            &:after {
                transform: rotate(3deg);
                transition: 0.5s;
            }
        }

        &:after {
            content: '';
            box-shadow: 0px 0px 0px 2px var(--primary);
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            background: var(--primary);
            z-index: -1;
            border-radius: 9px;
            transform: rotate(-3deg);
            transition: 0.5s;
        }

        .icon_container {
            font-size: 30px;
        }
    }
}
.clients.bg-light{
    display: none;
}

.clients {
    background-color: #444444;
    position: relative;
    color: #fff;
    &::after{
        content: '';
        background-image: url(../img/building-bg.jpg);
        position: absolute;
        top: 0  ;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.1;
        background-size: cover;
        background-position: center;
    }
    .container{
        z-index: 1;
        position: relative;
    }
    .client_item {
        background-color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        height: 100px;
        transition: 0.2s;
        &:hover{
            transform: scale(.91);
            transition: 0.2s;
            filter: grayscale(1);
        }
        img{
            width: auto;
            height: 100%;
            width: 100%;
            object-fit: contain;
            padding: 10px;
        }
    }
}

.question_section {
    .question_content_wrapper {
        display: flex;
        align-items: center;
        padding: 30px;
        padding-top: 57px;
        height: 100%;

        .question_content {
            position: relative;
            z-index: 11;
        }

        .bg_shape {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(1.3);
            z-index: 1;
            transition: 0.4s;
        }

        &:hover {
            .bg_shape {
                transition: 0.4s;
                transform: translate(-50%, -50%) scale(1.35);
            }
        }
    }
}
 

/* banner section */
.banner_section {
    position: relative;
    background-image: url(../img/banner-section-bg.jpg);
    background-size: 100%;
    /*.video-container{*/
    /*    border-radius: 40% 0 0 50%;*/
    /*    overflow: hidden;*/
    /*}*/
    .video-container {
    /*background-color: #053457; */
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding: 20px;
}
    .video_tag{ 
        /*max-width: 80%;    */
        border-radius: 15px;
    }
    #banner_slider{
        transform: scale(1.2);
        position: relative;
        top: -50px;
        right: -50px;
        .banner_image {
            height: calc(100vh - 76px);
            border-radius: 100%;
            overflow: hidden;
            img{
                height: 100%;
                object-fit: cover;
            }
            &::after{
                content: "";
                background: var(--secondary);
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                border-radius: 100%;
                overflow: hidden;
                opacity: 0.5;
            }
        }
    }

    .overlay_content {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        z-index: 1;
    }

    h1 {
        font-weight: 300;        
        font-family: "Caveat", serif;
        font-size: 2.3rem;
    }

    span.highlight_text {
        font-weight: 700;
        color: var(--primary);
    }
}
.our_plants{
    position: relative;
    z-index: 1;
    .truck-img{
        position: relative;
        top: 6px;
        transform: scale(1.1);
    }
}

/* our resources */
.section.our_resources{
    overflow: hidden;
    background-color: var(--secondary);
    .resource-menu{
        padding: 0;
    }
    ul.resource-menu li {
        height: 100px;
        background:  #ffffff;
        margin-bottom: 15px;
        border-radius: 9px;
        display: flex;
        align-items: center;
        padding: 20px 30px;
        color: var(--secondary);
        i{
            padding-right: 15px;
        }
        sup{
            padding-right: 5px;
        }
    }
    .resourc_img_row{
       width: 80%;
       margin: 0 auto;
       position: relative;
       height: 420px;
       width: 100%;
       max-width: 420px;
       overflow: hidden;
       margin: 0 auto;
       border-radius: 15px;
       .owl-nav{
        position: absolute;
        bottom: 0;
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: space-between;
        background: linear-gradient(to top, #000000, transparent);
        padding: 10px 20px;
        border-radius: 0 0 15px 15px;
       }
    }
}
/* testing plan */
.testing_plan{
    table{
        th{
            background-color: var(--secondary);
            color: #ffffff;
        }
        th, td{
            border: 1px;
            border-color: inherit;
            border-style: solid;
            font-size: 14px;
            text-align: center;
            border-color: #0e323f3d;
            padding: 8px;
        } 
        /*td{*/
        /*    background-color : var(--primary);*/
        /*    border-color: #ffffff; */
        /*}*/
    }
}

/* inner pages */
.page_wrapper{
    .aboutus{
        .image_container{
            padding-right: 2rem;
        }
        .content{
            text-align: justify;
        }
        .experience_card{
            position: absolute;
            width: 150px;
            height: calc(190px - 1vh);
            background: var(--primary);
            border-radius: 7px;
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: space-between;
            color: #ffff;
            padding: 20px;
            text-align: center;
            /* position: relative; */
            font-weight: 600;
            &:before{
                content: '';
                position: absolute;
                left: 0;
                top: -50px;
                width: 100%;
                height: 70%;
                background-color: #ffffff;
                opacity: 0.2;
                border-radius: 100%;
                z-index: 0;
            }
            .count{
                font-size: 2rem;
                position: relative;
                z-index: 1;
            }
        }
    }
    .leadership{ 
        .leader-card {
            background: #ffff;
            padding: 30px;
            border-radius: 20px;
        }
         .leadership_img {
            height: 130px;
            width: 130px;
            background: var(--secondary);
            color: #fff;
            font-size: 45px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 100px;
            margin: 0 auto;
            margin-bottom: 10px;
        }
        .title{
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--primary);
        }
        .subtitle {
            font-weight: 500;
            opacity: 0.8;
            margin-bottom: 10px;
        }
        p{
            opacity: 0.8;
        }
        .leaders_row{
            text-align: left;
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
            .leadership_img {
                height: 70px;
                width: 70px;
                font-size: 25px;
            }
            .title{
                font-size: 1.1rem;
                font-weight: 500;
                color: var(--primary);
            }
            p{
                text-align: left;
            }
        }
    }

    /* vision mission */

    .vision_card{
        background-color: #ffffff;
        padding: 40px 30px;
        border-radius: 15px;
        text-align: center;
        box-shadow: -10px -10px 0px 1px var(--primary);
        border: 2px solid var(--primary);
        transition: 0.3s;
        &.vision{
            box-shadow: -10px -10px 0px 1px var(--primary);
            &:hover{
                box-shadow: 10px 10px 0px 1px var(--primary);
                transition: 0.3s;
            }
        }
        &.mission{
            box-shadow: 10px 10px 0px 1px var(--primary);
            &:hover{
                box-shadow: -10px -10px 0px 1px var(--primary);
                transition: 0.3s;
            }
        }
        .icon {
            width: 60px;
            margin: 0 auto;
            margin-bottom: 20px;
        }
    }
}
/* page title box */
.page_title_box{
    background-image: url(../img/page-banner.jpg);
    background-color: #000;
    padding: 50px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    background-position: bottom;
    background-size: 100%;
    &:after {
        content: '';
        position: absolute;
        left: 0;
        height: 100%;
        background: #000000;
        width: 100%;
        top: 0;
        opacity: 0.7;
    }
    > .container{
        z-index: 11;
        position: relative;
    }
}

.contact_list {
    .list_item {
        padding-left: 60px;
        margin-bottom: 15px;
        .title{
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        .icon{
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 100px;
            position: absolute;
            left: 0;
            
        }
        a{
            display: block;
            width: fit-content;
            color: #000000;
            &:hover{
                color: var(--primary);
            }
        }
        &:hover{
            .icon{
                background: var(--secondary);
            }
        }
    }
}

.enquiry_card{
    padding: 40px 50px;
    background: var(--secondary);
    color: #ffffff;
    border-radius: 10px;
    .card_title{
        margin-bottom: 30px;
    }
    .form_group{
        margin-bottom: 20px;
    }
}

/* header */
.header-top{
    background-color: #ffffff; 
    position: relative;
    z-index: 11;
    padding: 4px;
    .contact{
        &.mail{
            text-align: right;
        }
        a{
            color: var(--secondary);
            font-size: 13px;
            opacity: 0.8;
            font-weight: 600;
        }
    }
}

header {
    background: linear-gradient(rgb(20, 160, 210), rgb(13, 133, 185));
    box-shadow: 0px 0px 10px #6d6d6d2e;
    position: sticky;
    z-index: 1111;
    top: 0;
    .navbar-nav{
        .nav-link {
            font-size: 1.1rem;
            position: relative;
            transition: 0.2s;
            &.active{
                color: #ffffff;
                font-weight: 600;
                opacity: 1;
            }
            &:not(.active){
                color: #ffffff;
                opacity: 0.8;
                &:after{
                    opacity: 0;
                }
                &:hover{
                    color: #000000;
                    transition: 0.2s;
                    font-weight: 600;
                }
            }
            &:after{
                content: '';
                background-image: url(../img/menu-icon.png);
                position: absolute;
                left: 13px;
                top: -1px;
                width: 80%;
                height: 20px;
                background-size: 38px;
                background-repeat: no-repeat;
                opacity: 1;
                filter: contrast(0) brightness(4) saturate(0);
            }
        }
    }
}

header .logo {
    height: 60px;
    padding: 0;
    img {
        height: 100%;
        width: auto;
    }
}
.clients_carousel{
    .owl-nav button {
        position: absolute;
        font-size: 20px;
        top: -52%;
        transition: 0.3s; 
        &.owl-prev{
            left: 0;
        }
        &.owl-next{
            right: 0;
        }
        /*  */
        i{
            font-size: 20px;
            color: #ffffff;
        }
    }
}

div#webiste_loader01{
    display: none; 
    z-index: 1111111;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f323ff7;
    .loading_box{ 
            width: 200px;
            height: 200px;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            /* padding: 20px; */
            border-radius: 100%;
            filter: saturate(8.5) hue-rotate(272deg) brightness(16.5);
            display: flex;
            align-items: center;
    }
}

/*recognition*/
.recognition_image_wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
      .img_item {
          max-width: 400px;
            width: 100%;
        height: 350px;
        img{
            width: 100%;
            height: 100%;
        object-fit: contain;
        }
    }
}
 
.testimonial_item{
    padding: 10px;
    
    .testimonial-card {
              background: #eef5f8;
        border-radius: 10px;
        /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
        padding: 20px;
        text-align: center;
        transition: transform 0.3s;
      transition: transform 0.3s;        text-align: left;
      .testimonial-header {
        display: flex ;
        align-items: center;
        gap: 10px;
    }
        .profile-image {
          width: 40px;
          height: 40px;
          border-radius: 50%;
          margin-bottom: 15px;
        }
        .name {
            font-size: 0.81rem;
            font-weight: 400;
            margin-bottom: 0;
          text-align: left;
        }
        
        .stars {
          color: #FFD700; /* Gold color for stars */
          font-size: 1rem;
          margin-bottom: 15px;
          text-align: left;
        }
        
        .review {
          font-size: 0.9rem;
          color: #555;
          line-height: 1.5;
        }
    }
}

.testimonial-card:hover {
  transform: scale(1.05);
}
.testimonial_section{
    display: none;
}


 
section.slogan_section {
    /*background: #25495a;*/
    color: #25495a;
        font-family: "Caveat", serif;
    font-size: 23px;
    font-weight: 600;
    display: flex;
    padding: 20px 0;
}

/* footer */
.footer-bg {
    background: url(../img/footer-bg.png);
    background-size: cover;
    /*border-top: 4px solid #ffffff;*/
}
.map_section{
    margin-bottom: -10px;
}

.footer_top .social-links {
    a.social-link {
        display: inline-block;
        background: var(--primary);
        color: #fff;
        border-radius: 100px;
        margin-right: 10px;
        position: relative;

        &:hover {
            background: #fff;
            color: var(--primary);

            &::after {
                transform: translate(-50%, -50%) scale(1.2);
                transition: 0.5s;
            }
        }

        i {
            height: 40px;
            width: 40px;
            display: grid;
            place-items: center;
        }

        &::after {
            width: 40px;
            height: 40px;
            transform: translate(-50%, -50%) scale(0);
            border: 2px solid;
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            border-radius: 100px;
        }
    }
}

.footer_top .footer_logo {
    display: flex;
    align-items: center;
    font-size: 40px;
    gap: 10px;

    img {
        width: 80px;
    }
}

.footer_col {
    ul.footer-menus {
        padding-left: 20px;

        li {
            padding-bottom: 10px;

            a {
                color: #ffffff;
                transition: 0.2s;

                &:hover {
                    transform: translateX(10px);
                    transition: 0.2s;
                }
            }
        }
    }

    &.contact_us {
        ul.footer-menus {
            li {
                list-style-type: none;
                position: relative;
                padding-left: 20px;

                i {
                    position: absolute;
                    left: -10px;
                    top: 5px;
                }
            }
        }
    }
}

.footer_copyright {
    padding: 10px;
}

@media (max-width: 767px){
    .question_content_wrapper{
        padding: 0 !important;
        margin-top: 15px;
        .question_content{
            background-color: var(--primary);
            padding: 30px;
            border-radius: 15px;
        }
        .bg_shape{
            display: none;
        }
    }
    #mobilenav_close_button{
        display: block !important;
        position: absolute ;
        right: 10px;
        top: 10px;
        background-color: transparent;
        border: 0;
        color: #ffffff;
    }
    .banner_section {
        h1{
            color: #ffffff;
            font-size: 2rem;
        }
        .banner_image {
            height: auto;
        }
        .row{
            row-gap: 0;
        }
    }
    section{
        overflow: hidden;
    }
    .header-top{
        .row{
            row-gap: 0;
        }
        .contact{
            .text{
                display: none
            }
        }
    }
    .banner_section{
        #banner_slider{
            top: inherit;
            right: inherit;

            .banner_image{
                height: auto ;
                border-radius: 0;
                &:after{
                    border-radius: 0;
                }
            }
        }
    }
    .our_resources {
        .resourc_img_row{
            .owl-nav{
                position: inherit;
            }
        }
    }
    .footer_copyright{
        flex-direction: column;
        font-size: 0.8rem;
        text-align: center;;
    }
    .py-6{
        padding-top: 2rem !important;
        padding-bottom: 3rem !important;
    }
    .question_section{
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    header .navbar{
        padding: 0 8px;
    }
    header {
        & .navbar-nav {
            & .nav-link {
                &:not(.active) {
                    color: #ffffff;
                }
            }
        }
    }
    p{
        font-size : 0.9rem;
    }
    .section.our_resources {
        & .resourc_img_row {
            height: auto;
            .owl-nav{
                position: inherit;
            }
        }
    }
}

@media (max-width: 425px){
    .page_wrapper .aboutus{
        .experience_card{
            width: 26%;
            height: auto;
            .count{
                font-size : 1.6rem;
            }
            .label{
                font-size: 0.8rem;
            }
        }
    }
}

@media (min-width: 768px) {

    /* For medium screens and up */
    .flex-nowrap-desktop {
        display: flex;
        flex-wrap: nowrap;
    }

    .question_section {
        .right_col {
            position: relative;
            right: 88px;

        }
    }

    .footer_top {
        .about_comp{
            max-width: 30%;
            flex-basis: 30%;
        }
        .services{
            max-width: 20%;
            flex-basis: 20%;
        }
    }
}