/* google font */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lexend', sans-serif;
}

a {
    text-decoration: none;
}

body{
    scroll-behavior: smooth;
}

p{
    font-weight: 300;
}
:root {
    --white-col: #fff;
    --black-col: #000;
    --primary-col: #3B56A5;
}


/* navbar */
.hexa-navbar{
    transition: all .4s ease-in-out;
}
.hexa-navbar .container {
    padding-left: 0;
    padding-right: 0;
}

.hexa-navbar .navbar-brand img {
    width: 280px;
}

.hexa-navbar .nav-link {
    color: var(--white-col);
    font-size: 18px;
    font-weight: 300;
    margin-left: 40px;
    transition: all .2s ease-in-out;
}

.hexa-navbar .container{
    padding-left: 0;
    padding-right: 0;
}

.header.active{
    position: fixed;
    width: 100%;
    top:0;
    left: 0;
    background-color: #fff;
    padding: 7px 10px;
    z-index: 999;
    transition: all .4s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}
.hexa-navbar{
    padding: 7px 0;
    padding-bottom: 0;
    padding-top: 0;
    
}
.logo-hexa{
    transition: .3s ease-in-out;
}




/* hero section */

.hero-section {
    height: 100vh;
    background-image: url('../images/carousel-9.jpg');
    background-position-x: -100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;

}

.hero-content-section {
    height: calc(100% - var(--header-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--header-height);
}

.hero-content-section h1 {
    color: var(--white-col);
    font-size: 60px;
    font-style: normal;
    font-weight: 300;
    line-height: 70px;
    margin-bottom: 20px;
}

.hero-section p {
    color: var(--white-col);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    width: 36%;
    margin-bottom: 20px;
}

.hero-content-section a {
    display: inline-block;
    border-radius: 5px;
    background: rgba(215, 204, 204, 0.38);
    padding: 10px 30px;
    width: fit-content;
    color: var(--white-col);
    filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.04));
}

/* about section */
.about-section {
    padding: 100px 140px;
}

.about-section .container {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
}

.about-section .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sm-head {
    font-size: 20px;
    font-weight: 300;
    color: var(--black-col);
    margin-bottom: 0;
    position: relative;
    padding-left: 25px;
}

.sm-head::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 19px;
    background: linear-gradient(111deg, #70C17E 6.35%, #3B56A5 94.18%);
    left: 0;
    top: 5px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.lg-head {
    font-size: 44px;
    font-weight: 300;
    color: var(--black-col);
}

.about-points li {
    list-style: none;
    position: relative;
    margin-bottom: 7px;
    font-size: 18px;
    font-weight: 300;
}

.about-points li::before {
    content: '';
    position: absolute;
    background-image: url('../images/icons/point-icon.png');
    background-position: center;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    background-size: contain;
    left: -35px;
}

.btn1 {
    padding: 7px 30px;
    border: 2px solid var(--primary-col);
    color: var(--primary-col);
    border-radius: 10px;
    margin-top: 5px;
    width: fit-content;
    display: inline-block;
    transition: all .3s ease-in;
}

.btn1:hover {
    background-color: var(--primary-col);
    color: var(--white-col);
}

.about-section .right {
    padding-left: 50px;
    position: relative;
}

.about-section .right img {
    border-radius: 7px;
}

.counter-year {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--white-col);
    padding: 10px 0 0 10px;
    min-width: 160px;
}

.counter-year .box {
    background-color: var(--primary-col);
    padding: 10px;
    border-radius: 0 0 7px 0;
}

.counter-year .counter-div {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    line-height: 40px;
    font-weight: 300;
    color: var(--white-col);
}

.counter-year .counter-div span {
    font-size: 34px;
    line-height: 40px;
    font-weight: 300;
    color: var(--white-col);
}

.counter-year .counter-label {
    text-align: center;
    color: var(--white-col);
    font-size: 16px;
}


.core-value-section .container-fluid {
    padding: 140px 10px;
    background-image: url('../images/carousel-5.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.core-value-section .head {
    font-size: 44px;
    line-height: 54px;
    font-weight: 300;
    color: var(--white-col);

}

.core-value-section .head-desc {
    font-size: 18px;
    line-height: 24px;
    color: var(--white-col);
    width: 50%;
}

.corevalue-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
    position: relative;
}

.corevalue-boxes .corevalue-box {
    background: #22457582;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    padding: 50px 40px;
    overflow: hidden;
    cursor: pointer;
    transition: .3s all ease-in-out;
}

.corevalue-boxes .corevalue-box h4 {
    font-size: 28px;
    line-height: 36px;
    color: var(--white-col);
}

.corevalue-boxes .corevalue-box p {
    font-size: 16px;
    line-height: 24px;
    color: var(--white-col);
    width: 95%;
}

.core-value-icon {
    position: absolute;
    right: 30px;
    bottom: -200px;
    transition: bottom .7s ease-in-out;
}

.corevalue-box:hover .core-value-icon {
    bottom: 10px;
}


/* mission and vision section */

.mission-vision-section {
    padding: 0px 10px 100px;
    /* background-color: #f8f8f8; */
}

.mission-vision-section .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mission-vision-box {
    padding: 40px 30px;
    border-radius: 10px;

}

.mission-vision-box img {
    width: 80px;
}

.mission-vision-box h5 {
    font-size: 24px;
    line-height: 30px;
    margin: 20px 0;
    color: var(--black-col);
}

.mission-vision-box p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.801);
    text-align: justify;
}

.products-section {
    padding: 100px 10px;
    overflow: hidden;
}

.products-section .head-desc {
    padding: 0 20%;
    margin-bottom: 30px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.product-grid h5 {
    font-size: 26px;
    margin-bottom: 10px;
}

.item1 {
    grid-column: 1 / span 2;
    grid-row: 1;
    background: linear-gradient(to right, #325392, #00256a);
    color: var(--white-col);
    padding: 30px 20px;
    border-radius: 10px;
    background-image: url('../images/grid-bg.jpg');
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.item2 {
    grid-column: 1 / span 1;
    grid-row: 2 / span 1;
    background-color: #021b46;
    color: var(--white-col);
    padding: 30px 20px;
    border-radius: 10px;
    background-image: url('../images/grid-bg.jpg');
    background-size: cover;
    background-position: top;
}

.item3 {
    grid-column: 2 / span 1;
    grid-row: 2 / span 1;
    background-color: #021b46;
    color: var(--white-col);
    padding: 30px 20px;
    border-radius: 10px;
    background-image: url('../images/grid-bg.jpg');
    background-size: cover;
    background-position: top;

}

.item4 {
    grid-column: 3 / span 1;
    grid-row: 1 / span 1;
    background-color: #021b46;
    color: var(--white-col);
    padding: 30px 20px;
    border-radius: 10px;
    background-image: url('../images/grid-bg.jpg');
    background-size: cover;
    background-position: top;

}

.item5 {
    grid-column: 3 / span 1;
    grid-row: 2 / span 1;
    background: linear-gradient(to right, #325392, #00256a);
    color: var(--white-col);
    padding: 30px 20px;
    border-radius: 10px;
    background-image: url('../images/grid-bg.jpg');
    background-size: cover;
    background-position: top;

}

.grid-box::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #00000085;
    z-index: -1;
    border-radius: 10px;
}
/* service section */

.details-section {
    padding: 50px 10px 100px;
}

.details-section .container {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
}

.details-section .container .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.details-section .container img {
    margin-left: 50px;
    border-radius: 10px;
}

.md-head {
    font-size: 30px;
    line-height: 36px;
    font-weight: 300;
    color: var(--black-col);
}

/* service section */

.service-section {
    padding: 100px 10px 10px;
}

.service-card-div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-card img {
    height: 60px;
}

.service-card:hover img {
    animation: UpDown 1.5s infinite ease-in-out;

}

.service-card h4 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 300;
    margin: 15px 0;
}



/* contact-section */
.contact-section {
    background-image: url('../images/contact-section.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 10px 0;
    background-position: top;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.white-sm-head {
    color: var(--white-col);
}

.white-lg-head {
    color: var(--white-col);
}

.contact-details-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.contact-detils-box {
    margin-bottom: 40px;
}

.contact-detils-box h3 {
    color: #70C17E;
    font-size: 22px;
}

.contact-detils-box .location {
    font-size: 16px;
    color: var(--white-col);
    margin-bottom: 10px;
}

.contact-detils-box a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
    color: var(--white-col);
}


@keyframes UpDown{
    0%,100%{
        transform: translate3d(0,0,0);
    }50%{
        transform: translate3d(0,5px,0);
    }
}


/* footer copyright */


.ftr-copyright{
    padding: 15px 10px;
    background: #03101d94;
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    margin-top: 310px;
    margin-bottom: 10px;
}

.ftr-copyright p{
    text-align: center;
    color: #fff;
    margin-bottom: 0;
}


/* navbar */
.navbar-toggler:focus{
    box-shadow: none;
}
.navbar-toggler-icon{
    background-image: url('../images/menu.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px;
    height: 45Px;

}



/* offcanvas */
.offcanvas-end{
    width: 320px;
}
.mobile-logo img{
    width: 180px;
}
.mobile-nav {
    margin-top: 15%;
}
.mobile-nav li a{
    color: var(--black-col);

}



/* loader */

.loader-div{
    height: 100%;
    width: 100%;
    background-color: var(--white-col);
    position: fixed;
    z-index: 1111;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-img {
    animation: circle infinite 3s linear; /* Removed unnecessary properties */
    width: 200px;
}

@keyframes circle {
    0% {
        transform: scale(.7);
    }
    100% {
        transform: scale(1.6);
    }
}
/* ipad */

@media screen and (max-width:999px) {
    .hero-section{
        padding: 0 10px;
        height: 60vh;
    }
    .hero-content-section h1 {
        font-size: 50px;
        font-weight: 300;
        line-height: 60px;
        margin-bottom: 10px;
    }
    .hero-section p{
        width: 60%;
    }
    .about-section{
        padding: 100px 10px;
    }
    .about-section .container{
        grid-template-columns: 1fr;
    }
    .about-section .right{
        padding-left: 0;
        margin-top: 40px;
    }
    .mission-vision-section .container{
        gap: 10px;
    }
    .mission-vision-box{
        padding: 20px 10px;
    }
    .core-value-section .container-fluid{
        padding: 100px 10px;
    }
    .corevalue-boxes{
        gap: 10px;
    }
    .core-value-section .head-desc{
        width: 75%;
    }
    .service-card-div{
        grid-template-columns: repeat(1, 1fr);
    }
    .service-section .lg-head{
        text-align: center;
    }
    .products-section .head-desc{
        padding: 0 5%;
    }
    .products-section{
        padding: 100px 0;
    }
    .details-section .container{
        grid-template-columns: 1fr;
    }
    .details-section .container img {
        margin-left: 0;
    }
    .lg-head{
        font-size: 40px;
    }
    .contact-section{
        padding: 50px 0 5px;
    }
    .ftr-copyright p{
        font-weight: 300;
    }
    .ftr-copyright p{
        font-size: 14px;
    }
    .contact-detils-box{
        margin-bottom: 20px;
    }
    .contact-details-boxes{
        gap: 10px;
    }
    .contact-detils-box h3{
        font-size: 20px;
    }
}


@media screen and (max-width:767px) {
    .hexa-navbar .navbar-brand img{
        width: 200px;
    }
    .hero-content-section h1{
        font-size: 30px;
        line-height: 40px;
    }
    .hero-section p{
        width: 90%;
    }
    .hero-content-section p{
        font-weight: 300;
    }
    .hero-content-section a{
        background-color: #f7f7f761;
    }
    .lg-head {
        font-size: 28px;
    }
    .about-section {
        padding: 50px 10px;
    }
    .mission-vision-section{
        padding: 0 10px 50px;
    }
    .mission-vision-section .container{
        grid-template-columns: 1fr;
    }
    .core-value-section .head{
        font-size: 30px;
        line-height: 40px;
    }
    .core-value-section .head-desc{
        width: 100%;
        font-weight: 300;
    }
    .corevalue-boxes{
        grid-template-columns: 1fr;
    }
    .core-value-section .container-fluid{
        padding: 50px 10px 50px;
    }
    .core-value-section .head{
        font-weight: 300;
    }
    .service-section{
        padding: 50px 10px;
    }
    .products-section{
        padding: 50px 10px;
    }
    .products-section .head-desc{
        padding:  0 0%;
    }
    .product-grid{
        grid-template-columns: 1fr;
    }
    .item1 {
        grid-column: 1 / span 2;
        grid-row: 1;
    }
    
    .item2 {
        grid-column: 1 / span 2;
        grid-row: 2;
    }
    
    .item3 {
        grid-column: 1 / span 2;
        grid-row: 4;
    
    }
    
    .item4 {
        grid-column: 1 / span 2;
        grid-row: 3;
    
    }
    
    .item5 {
        grid-column: 1 / span 2;
        grid-row: 5;
    
    }
    .details-section{
        padding: 0 10px 80px;
    }
    .contact-section{
        height: auto;
        background-image: url('../images/mobile-contact-secion.jpg');
    }
    .ftr-copyright p {
        font-size: 12px;
        font-weight: 300;
    }
    .contact-details-boxes{
        grid-template-columns: repeat(1, 1fr);
    }
    .corevalue-boxes .corevalue-box h4 {
        font-size: 24px;
        line-height: 30px;
    }
    .corevalue-boxes .corevalue-box p {
        font-weight: 300;
        font-size: 14px;
    }
    .core-value-section .head-desc{
        font-size: 16px;
    }
    
}