@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&display=swap');
:root{
    --primary: #1c75bc;
    --secondary: #2bb673;
    --third: #d2d2d2;
    --bg: #e2f3ff;
    --bg2:#e2fff1;
    --white: #ffffff;
    --black: #000000;
    --black2: #242423;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Inter Tight", sans-serif; */
    font-family: "PT Sans Narrow", sans-serif;
    /* font-family: "Montserrat", sans-serif; */
    scroll-behavior: smooth;
}

/********* Back To Top Button Start *********/

#top{
    display: inline-block;
    background-color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: background-color .3s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.6);
  }
  #top::after {
    content: "\f102";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1.5em;
    line-height: 50px;
    color: #fff;
  }
  #top:hover {
    cursor: pointer;
    background-color: var(--secondary);
  }
  #top:active {
    background-color: var(--secondary);
  }
  #top.show {
    opacity: 1;
    visibility: visible;
  }

/********* Back To Top Button End *********/

/********* Header Section Start *********/


#nav .menu ul{
    justify-content: center;
    display: flex;
}
#nav .nav-item{
    padding: 15px 0;
    margin: 0 10px;
    list-style: none;
}
#nav .nav-link{
    opacity: 1;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    color: var(--white);
    position: relative;
    transition: .4s ease-in-out;
}
#nav .menu ul li a:hover{
    opacity: 1;
}
#nav{
    position: fixed;
    top: 0;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    z-index: 999999999;
    /* background-color: var(--white); */
    background: rgba(28, 117, 188, 0.8);
    margin: 0 auto !important;
    transition: .4s ease-in-out;
    /* box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.3); */
}
#nav img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7497%) hue-rotate(240deg) brightness(117%) contrast(99%);
}
#nav .nav-item .active{
    border-bottom: 5px solid var(--secondary) !important;
}
.menu-color{
    background-image: none !important;
    background-color: var(--white) !important;
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.3);
}
.col-black{
    color: var(--black) !important;
}
.logo-white img{
    filter: none !important;
}

/********* Header Section End *********/

/********* Banner Section Start *********/

#banner{
    overflow: hidden;
    width: 100%;
    height: 953px;
}

/********* Banner Section End *********/

/********* About Section Start *********/

#about h3{
    font-size: 25px;
    font-weight: 400;
    line-height: 1.8;
}
#about p{
    font-size: 15px;
    line-height: 1.7;
    color: #6e6e6e;
}
.small-head{
    font-family: "Inter Tight", sans-serif;
    position: relative;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
    font-size: 20px;
}
.big-head{
    margin-bottom: 0;
    font-weight: 400;
    text-transform: capitalize;
    font-size: 45px;
    color: var(--primary);
}
.big-head span{
    color: var(--secondary);
}
#about .abtn a{
    color: #878787;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: .4s ease-in-out;
}
#about .abtn a:hover{
    color: var(--red);
}
#about .a-col{
    background-color: var(--blue);
}
#about .a-wrap{
    background-color: var(--bg);
    margin: 15px 0;
}
#about .a-wrap .a-icon i{
    font-size: 50px;
}
#about .a-wrap h4{
    font-weight: 700;
    font-size: 20px;
}
#about .a-wrap p{
    color: var(--white);
    opacity: 0.9;
    font-size: 15px;
}
#about .a-wrap i{
    color: var(--primary);
}
#about h2{
    font-weight: 400;
    margin-bottom: 0;
    margin-left: 15px;
    font-size: 25px;
}
#about h2.span{
    text-transform: uppercase;
    color: var(--primary);
    padding-bottom: 0px;
}
#about .a-wrap2{
    background-color: var(--bg2);
}
#about .a-wrap2 h2 span{
    color: var(--secondary);
}
#about .a-wrap2 i{
    color: var(--secondary);
}
#about a{
    color: var(--secondary);
    font-size: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: .3s ease-in-out;
}
#about a:hover{
    color: var(--primary);
}
#about a i{
    font-size: 22px;
    margin-left: 0px;
    font-weight: 700;
    transition: .3s ease-in-out;
}
#about a:hover i{
    margin-left: 4px;
}
#about h1{
    color: var(--primary);
    font-weight: 400;
    font-size: 50px;
}
/********* About Section End *********/

/********* Product Section Start *********/

#pro .p-wrap{
    background-color: var(--primary);
    height: auto;
}
#pro .p-wrap2{
    background-color: var(--secondary) ;
}

#pro .p-wrap i{
    color: var(--white);
    opacity: 0.4;
    font-size: 60px;
     opacity: 0;
     transition: .3s ease-in-out;
}
#pro .p-wrap i:hover{
    opacity: 1;
}
#pro a{
    text-decoration: none;
    color: var(--white);
}
#pro .p-wrapper{
    overflow: hidden;
    position: relative;
}
#pro img{
     transition: .4s ease-in-out;
}
#pro .overlay{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(43, 182, 115, 1);
    opacity: 0.5;
    transition: .4s ease-in-out;
}
#pro .overlay2{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(28, 117, 188, 1) !important;
    opacity: 0.5;
    transition: .4s ease-in-out;
}
#pro a:hover .overlay{
     opacity: 0;
}
#pro a:hover .overlay2{
     opacity: 0;
}
#pro a:hover img{
     transform: scale(1.2) rotate(5deg);
}
#pro .p-text{
    transform: translateY(80px);
    transition: .4s ease-in-out;
}
#pro a:hover .p-text{
    transform: translateY(0);
}
#pro a:hover i{
    opacity: 0.6;
}
#pro p{
    font-size: 20px;
    opacity: 0;
    transition: .4s ease-in-out;
}
#pro a:hover p{
    opacity: 0.8;
}
#pro h2{
    font-weight: 400;
    font-size: 45px;
}

/********* Product Section End *********/

/********* Mission Section Start *********/

#miss{
    background-image: url(./img/miss.webp);
}
#miss .m-wrap{
    background-color: var(--white);
    box-shadow: 0 15px 25px 0 rgba(0, 0, 0, 0.01);
    border: 1px solid #eeeeee;
}
#miss .m-icon{
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
    width: 70px;
    height: 70px;
    background-color: var(--secondary);
    font-size: 40px;
}
#miss .m-text h4{
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
}
#miss .m-text p{
    margin-bottom: 0;
    font-weight: 400;
    font-size: 16px;
    opacity: 0.7;
    color: #585858;
}
#miss .m-btn a{
    text-decoration: none;
    color: var(--primary);
    font-size: 20px;
    padding: 12px 25px;
    /* border-radius: 10px; */
    border: 1px solid var(--primary);
    transition: .4s ease-in-out;
}
#miss .m-btn a:hover{
    background-color: var(--primary);
    color: var(--white);
}

/********* Mission Section End *********/

/********* Industry Section Start *********/

#industry h1{
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--primary);
}
#industry h4{
    font-size: 22px;
    margin-bottom: 0;
    line-height: 1.4;
    color: #585858;
}
#industry h4 span{
    color: var(--secondary);
}
#industry .i-wrap{
    /* border-radius: 15px; */
    overflow: hidden;
    position: relative;
}
#industry .i-over{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: .8s ease-in-out;
}
#industry .i-wrap:hover .i-over{
    background-color: rgba(0, 0, 0, 0.15);
}
#industry .i-wrap:hover h2{
    bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 1);
}
#industry h2{
    font-size: 35px;
    font-weight: 400;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
    color: var(--white);
    margin-bottom: 0;
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;
    transition: .4s ease-in-out;
}

/********* Industry Section End *********/

/********* Counter Section End *********/

#counter{
    background-image: url(./img/counter.webp);
    background-size: cover;
}
#counter .c-wrap{
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    /* border-radius: 20px; */
}
#counter h3{
    margin-bottom: 0;
    font-size: 60px;
    font-weight: 400;
    color: var(--secondary);
}
#counter h3 span{
    margin-bottom: 0;
    font-size: 50px;
    font-weight: 700;
    color: var(--white);
}
#counter h6{
    margin-bottom: 0;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--white);
}

/********* Counter Section End *********/

/********* Better Section Start *********/

#better .b-wrapper{
    background-color: var(--primary);
}
#better .b-wrapper h1:after{
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 80px;
    height: 5px;
    background-color: var(--secondary);
}
#better .b-wrapper2 h1:after{
    background-color: var(--primary);
}
#better .b-wrapper2{
    background-color: var(--secondary);
}
#better .b-wrap{
    color: var(--white);
    padding: 0 100px 0 150px;
}
#better .b-wrap h1{
    position: relative;
    font-size: 60px;
}
#better .b-wrap h4{
    opacity: 0.7;
}


/* Custom positioning for the controls */
.carousel-controls-bottom-right {
  position: absolute;
  left: 35px;
  bottom: 40px;
  display: flex;
  gap: 5px; /* Space between buttons */
  z-index: 1;
}

/* Override default Bootstrap styles */
.carousel-control-prev,
.carousel-control-next {
  position: relative;
  width: 60px;
  height: 60px;
  margin-right: 8px;
  background-color: rgba(28, 117, 188, 0.9);
  border-radius: 50%;
  opacity: 1;
  transform: none;
  box-shadow:  0 0 20px 0 rgba(0, 0, 0, 0.35);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: rgba(43, 182, 115, 0.9);
}

/* Adjust icon sizes if needed */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 30px;
  height: 30px;
}
.car{
    position: absolute;
    bottom: 20px;
    right: 20px;
}

/********* Better Section End *********/

/********* Certification Section Start *********/

#certificate{
    background-color: #eeeeee;
}
#certificate .c-btn a{
    background-color: transparent;
    color: var(--primary);
    font-size: 18px;
    font-weight: 400;
    border: 1px solid var(--primary);
    text-decoration: none;
    /* border-radius: 10px; */
    padding: 12px 25px;
    transition: .4s ease-in-out;
}
#certificate .c-btn a:hover{
    background-color: var(--primary);
    color: var(--white);
}
#certificate .c-btn a i{
    font-size: 18px;
    margin-left: 5px;
    transition: .4s ease-in-out;
}
#certificate .c-btn a:hover i{
    transform: rotate(360deg);
}
#certificate p{
    font-size: 19px;
    opacity: 0.9;
    color: #585858;
}

/********* Certification Section End *********/

/********* News Section Start *********/

#news a{
    text-decoration: none;
}
#news .n-wrap{
    overflow: hidden;
    transition: .4s ease-in-out;
}
#news .n-img{
    overflow: hidden;
}
#news .n-img img{
    transition: .4s ease-in-out;
}
#news .n-wrap h4{
    font-weight: 700;
    font-size: 24px;
    color: var(--primary);
    transition: .4s ease-in-out;
}
#news .n-wrap p{
    font-weight: 400;
    font-size: 16px;
    opacity: 0.8;
    color: #585858;
    transition: .4s ease-in-out;
}
#news .n-wrap h6{
    font-weight: 400;
    color: var(--secondary);
    transition: .4s ease-in-out;
}

#news a:hover h4{
    color: var(--secondary);
}
#news a:hover img{
    transform: scale(1.2) rotate(4deg);
}
#news .m-btn a{
    text-decoration: none;
    color: var(--primary);
    font-size: 20px;
    padding: 12px 25px;
    /* border-radius: 10px; */
    border: 1px solid var(--primary);
    transition: .4s ease-in-out;
}
#news .m-btn a:hover{
    background-color: var(--primary);
    color: var(--white);
}
#news .n-icon{
    width: 40px;
    color: var(--white);
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    background-color: var(--secondary);
    transition: .4s ease-in-out;
}
#news .n-icon:hover{
    width: 60px;
    background-color: var(--primary);
}

/********* News Section End *********/

/********* Contact Section Start *********/

#contact{
    position: relative;
    z-index: 2;
}
#contact .c-wrap{
    /* border-radius: 40px; */
    background-color: var(--secondary);
}
#contact .c-wrap h2{
    font-weight: 700;
    color: var(--white);
    font-size: 35px;
}
#contact .c-wrap h4{
    color: var(--white);
    font-size: 24px;
    margin-bottom: 0;
}
#contact .c-btn a{
    font-size: 22px;
    /* border-radius: 12px; */
    padding: 15px 30px;
    text-decoration: none;
    color: var(--secondary);
    background-color: var(--white);
    border: 1px solid var(--white);
    transition: .4s ease-in-out;
}
#contact .c-btn a:hover{
    background-color: var(--black2);
    color: var(--white);
    border-color: var(--black2);
}


/********* Contact Section End *********/

/********* Footer Section Start *********/

#footer{
    position: relative;
    z-index: 1;
    /* background-color: var(--primary); */
    background-image: url(./img/footer.webp);
    background-size: cover;
    background-position: center;
}
#footer .logo img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7497%) hue-rotate(240deg) brightness(117%) contrast(99%) !important;
}
#footer p{
    opacity: 0.7;
    color: var(--white);
    font-size: 15px;
}
#footer h4{
    font-weight: 400;
    font-size: 25px;
    color: var(--white);
}
#footer .men a{
    color: var(--white);
    opacity: 0.6;
    font-weight: 400;
    font-size: 18px;
    text-decoration: none;
    transition: .4s ease-in-out;
}
#footer .men ul{
    padding-top: 10px;
}
#footer .men a:hover{
    opacity: 1;
}
#footer .men a i{
    transition: .4s ease-in-out;
    margin-right: 0;
}
#footer .men a:hover i{
    margin-right: 5px;
}
#footer .men ul li{
    margin-bottom: 7px;
    list-style: none;
}
#footer .social ul li{
    margin-right: 20px;
    list-style: none;
}
#footer .social ul li a{
    font-size: 25px;
    color: var(--white);
    opacity: 0.8;
    transition: .3s ease-in-out;
}
#footer .social ul li a:hover{
    opacity: 1;
}
#footer .social ul{
    justify-content: right;
    display: flex;
}
#footer .contact i{
    margin-right: 15px;
    opacity: 0.7;
    color: var(--white);
    font-size: 20px;
}
#footer .contact li{
    padding-bottom: 8px;
}
#footer span a{
    text-decoration: none;
    font-weight: 500;
    opacity: 0.8;
    font-size: 15px;
    color: var(--white);
    transition: .4s ease-in-out;
}
#footer span a:hover{
    opacity: 1;
    text-decoration: underline;
}
#footer hr{
    border-color: #fff;
}
#footer .f-about{
    font-size: 18px;
    opacity: 0.7;
}
#footer h5{
    opacity: 0.7;
}

/********* Footer Section End *********/
