

@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=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&family=Quicksand:wght@300..700&display=swap');



:root{

    /* Background Color */
    
    --bg-black: #090b3c;
    --bg-white: #fff;   
    --bg-light-white: #fcfcfc;
    --bg-light-2:#f2f7fa;
    --bg-dark-green: #0e9d80;
    --bg-features-1: #fff6d6;
    --bg-features-2: #ebdcf9;
    --bg-features-3:#ddf5fc;
    --bg-features-4: #dcf6e8;
    --bg-features-5: #f8e4e1;
    --bg-features-6:#fbffd4;
    
    --text-black: #0000;
    --text-white: #fff;
    --text-dark-gray: #4c535d;
    --text-light-2: #798089;
    --text-light-3: #5e5e72;
    --text-light-4: #ΑΘΑΘΑΘΕ;
    --text-dark-green: #12c4a0;
    --text-orange: #ff5d2a;

    --primary-font : 'Quicksand', sans-serif;
    --secondary-fons:'Poppins' , 'sans-serif';
    --normal-font-weight:400;
    --bold-font-weight:700;


}



body{

    font-family :var(--primary-font);
    font-weight: var(--normal-font-weight);
    background-color: var(--bg-white);

}

.learn-more-btn {
    background-color:var(--bg-black);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white) !important;
    padding: 12px 29px !important;
    border-radius: 12px;
    border: 1px solid var(--bg-black);
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
    display: inline-block;
    text-decoration: none;
    transition: 0.7s;
    
    }
    
 .btn-extra-header {

    color: var(--text-dark-gray) !important;
    background-color: transparent;
    border: 2px solid var(--text-dark-gray);
    
}

.header_wrappeer .navbar{
    -webkit-transition: all 0.2 linear;
    -o-transition: all 0.2 linear;
    -moz-transition: all 0.2 linear;
   transition: all 0.2 linear;

}

.header_wrappeer .navbar-brand img{
    max-width: 200px;
    height: auto;
}

.header_wrappeer .menu-navbar-nav{
    width: 70%;
    display: flex;
    justify-content: center;
}

.header_wrappeer  .nav-item{
    margin: 0 10px;
}

.header_wrappeer .nav-item .nav-link {
    font-weight: var(--bold-font-weight);
    font-size: 18px;
    color: var(--text-dark-gray);
    line-height: 1;
}
.header_wrappeer .nav-item .nav-link.active{
    color: var(--text-dark-green);
}

.header-scrolled{
    position:fixed;
    margin-top: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    background: var(--bg-white);
    -webkit-box-shadow: 0 4px 6px 0 rgba(12, 0, 46, 0.1);
    box-shadow: 0 4px 6px 0 rgba(12, 0, 46, 0.1);
}

.header-scrolled .navbar-brand img{
    width: 190px;
    height: auto;
    animation: animated 0.1s ease-in-out;
}

@keyframes animated{
    0%{
        width: 210px;
    }
    50%{
        width: 200px;
    }100%{
        width: 190px;
    }
}

.header-scrolled .nav-item .nav-link{
    font-size: 18px;
}

.banner_wrapper{
    display: flex;
    width: 100%;
    padding: 100px 0 125px ;
    background:url(../images/bg.png) no-repeat ;
    background-size: cover;
    justify-content: center;
    align-items: center;
}

.banner_wrapper .banner_subtitles{
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
    color: var(--text-light-3);
}

.banner_wrapper .banner-title{
    font-family: var(--secondary-fons);
    font-weight: 800;
    font-size: 60px;
    text-transform: capitalize;
    line-height: 1.15;
    margin-bottom: 25px;
    /* color: var(--text-black); */
}


.banner_wrapper .banner-title span{
    color: var(--text-orange);
}

.banner_wrapper .banner-title-text{
    font-size: 17px;
    font-weight: 600;
    list-style: 1.5;
    margin-bottom: 40px;
    color: var(--text-light-2);
}

.banner_wrapper .learn-more-btn-section{
    display: flex;
    justify-content: left;
    align-items: center;

}

.banner_wrapper .header-img-section img{
    width: 100%;
    animation: float 5s ease-in-out infinite;
}

@keyframes float{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(20px);
    }
    100%{
        transform: translateY(0px);
    }
}

.owl-carousel .item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.owl-carousel .item img {
    width: 150px; 
    height:auto; 
    border-radius: 50%; 
    border: 1px solid var(--text-black);
    object-fit: cover;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); 
}

.owl-carousel .item-details h3 {
    font-size: 1.25rem;
    margin: 0.5rem 0 0;
}

.owl-carousel .item-details p {
    font-size: 1rem;
    color: #666;
    margin: 0.25rem 0 0;
}


.employee{
    padding: 0px 0px 30px;
    background: var(--bg-light-2);
}

.employee h2{
    font-weight: bold;
    font-size: 2rem;
    
    
}

.client-slider-section .item{
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}


.about_wrapper{
    padding: 100px 0 30px;
    background: var(--bg-light-2);
}

.about_content{
    margin-bottom: 40px;
}


.about_wrapper .about_number{
    font-family: var(--secondary-fons);
    font-weight: 800;
    font-size: 24px;
    padding: 4px 17px;
    border-radius: 10px;
    margin-bottom: 25px;
    max-width: 44px;
    color: var(--text-white);
    background-color: var(--text-orange);

}

.about_wrapper .about_title{
    font-family: var(--secondary-fons);
    font-weight: 800;
    font-size: 34px;
    line-height: 1.25;
    max-width: 1000px;
    margin-bottom: 25px;
    
}


.about_wrapper .about_text{
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
    max-width: 700px;
    color: var(--text-light-2);
}

.about_img{
    max-height: 350px;
    max-width: auto;
}

.about_wrapper .projects{
    padding: 30px 0;
    background: white !important;
}

.about_wrapper .projects h2{
    color: var(--text-orange);
    font-size: var(--primary-font);
    font-weight: 900;
    font-size: 50px;
    line-height: 1.5;
    margin-bottom: 0;
}

.about_wrapper .projects p{
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    font-weight: var(--text-light-2);
}


.service_div{
    max-width: 80vw;
    margin: auto;
}


.service_wrapper .head{
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 18px;
    color: var(--text-orange);
    margin-bottom: 10px;
    line-height: 1.5;
}

.service_wrapper .service_title{
    font-family: var(--secondary-fons);
    font-weight: 800;
    font-size: 34px;
   
    margin-bottom: 15px;
    line-height: 1.25;
}

.service_wrapper img{
    max-height: 70px;
    width: auto;
    border-radius: 30%;
    margin-bottom: 10px;
}

.service_wrapper h4{
    font-weight: 600;
    font-family: var(--secondary-fons);
    margin-bottom: 7px;
    font-size: 22px;
    line-height: 1.7;
}

.service_wrapper .desc{
    font-size: 16px;
    margin-bottom: 35px;
}








.contact_wrapper {
   
    padding: 50px 0px 120px;
    background-color: #fff;
    background: url(../images/bg_footer.png) no-repeat;
}

.contact_wrapper .contact_subtitle{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.contact_wrapper .contact_subtitle h1{
    font-family: var(--secondary-fons);
    font-size: 45px;
    font-weight: 600;
    color: var(--text-orange);
    
}

.contact-image img {
    max-width: 100%;
    height: auto;
}

.contact-heading {
    font-weight: bold;
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.contact-text {
    margin-bottom: 30px;
}

.form-control {
    border-radius: 10px;
    padding: 12px;
    font-size: 15px;
}

.btn-custom {
    background-color: #000;
    color: #fff;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 10px;
}

@media (max-width: 768px) {
    .contact-form {
        margin-top: 30px;
    }
}

