:root {
  --primary: #2cb34f;
  --accent: #fd6a21;
  --accent2: #2cb34f;
  --bg: #f7f8fa;
  --card: #fff;
  --border: #e3e6ee;
  --radius: 16px;
  --shadow: 0 2px 16px rgba(20,35,91,0.04);
  /* --transition: all 0.25s cubic-bezier(.4,0,.2,1); */
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

section .line {
  display: inline-block;
  width: 30px;
  height: 4px;
  background: #2cb34f;
  margin-right: 10px;
  border-radius: 2px;
}

/* Topbar */
.topbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 3vw;
  font-size: 0.93rem;
}
.topbar-contact {
  display: flex;
  gap: 1.3rem;
  align-items: center;
  color: #fd6a21;
}
.topbar-contact i { 
  color: #fd6a21;  
  margin-right: 0.4em; 
}
.topbar-social {
  display: flex;
  gap: .7rem;
}
.topbar-social a {
  color: #fd6a21;
  text-decoration: none;
  font-size: 1.13em;
  transition: color .15s;
}
.topbar-social a:hover { 
  color:  #555;
}

/* Navbar */
.btn2{
    margin-left: 29px;
    padding: 10px;
    /* background: #2cb34f; */
    border: 2px solid #eaf2f5;
    border-radius: 9px;
}
.btn2:focus{
  border-color: #ff5e14;
}

header{
    /* background-image: url('../images/shape-a.png'); */
    background-color: #fff;
    border-bottom: 1px solid #e3e6ee;
    width: 100%;
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
    position: relative;
}
header .top-nav-container{
    transition: all 0.0s ease-in-out;
    -webkit-transition: all 0.0s ease-in-out;
    -moz-transition: all 0.0s ease-in-out;
    -ms-transition: all 0.0s ease-in-out;
    -o-transition: all 0.0s ease-in-out;
}
header .top-nav-container.fixed{
    position: fixed;
    /* margin-top: -38px; */
    width: 100%;
    background-color: #fff;
    /* height: 70px; */
    z-index: 2;
    box-shadow: 0px 0 50px 0px rgb(80 101 142 / 8%);
}
header .top-nav-container .top-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 90px;
    transition: all 0.0s ease-in-out;
    -webkit-transition: all 0.0s ease-in-out;
    -moz-transition: all 0.0s ease-in-out;
    -ms-transition: all 0.0s ease-in-out;
    -o-transition: all 0.0s ease-in-out;
}


.top-nav .logo {
    color: #2cb34f;
    font-weight: 700;
    font-size: 1.3em;
    display: flex;
    align-items: center;
}
.top-nav .logo img {
  width: 100px; 
  /* height: 36px;  */
  border-radius: 50%;
  /* background: var(--accent); */
  display: inline-block;
}
header .top-nav-container .btn-icon{
    display: block;
    cursor: pointer;
    position: absolute;
    right: 5%;
    z-index: 3;
}
header .top-nav-container .btn-icon svg{
    font-size: 26px;
    color: #2cb34f;
}
header .overlay{
    background-color: rgb(44, 179, 67, 0.7);
    position: fixed;
    display: none;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
header .top-nav-container .close-icon{
    display: none;
    cursor: pointer;
    position: fixed;
    right: 5%;
    z-index: 3;
    width: 35px;
    height: 35px;
    padding: 4px 9px;
    background-color: #f7f9fe;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
header .top-nav-container .close-icon svg{
    font-size: 26px;
    color: #555;
}
header .overlay-menu{
    display: none;
    position: fixed;
    width: 250px;
    height: 100vh;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: white;
    padding: 30px;
}
header .overlay-menu ul li{
    list-style: none;
    margin: 15px;
}
header .overlay-menu ul li a{
    text-decoration: none;
    color: #555;
    font-weight: bold;
    font-size: 14px;
}
header .overlay-menu ul li a:hover{
    color: #fd6a21;
    /* background: #f9f2ed; */
    /* padding: 8px;
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    -ms-border-radius:4px;
    -o-border-radius:4px; */
}
header nav ul li{
    list-style-type: none;
    display: inline-block;
    margin:0 10px;
}
header nav ul li a{
    text-decoration: none;
    color: #687187;
    text-transform: capitalize;
    font-weight: bold;
    font-size: 14px;
}
.active{
    color: #fd6a21;
    /* background: #f9f2ed; */
}
.overlay-menu ul li a.active{
    color: #fd6a21;
    /* background: #f9f2ed; */
}
header nav{
    display: none;
}
header .top-nav-container .icon-top{
    z-index: 3;
    display: none;
    position: fixed;
    padding: 2px;
    right: 2.5%;
    bottom: 3.5%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background-color: #2cb34f;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
header .top-nav-container .icon-top a{
    text-decoration: none;
    color: white;
    font-size: 20px;
}





/* ----------------------------------responsive---------------------------- */

@media (min-width: 768px) {
    .protect{
        left: 75%;
    }
    .protect {
        right: 75%;
    }
    /* contact us */
    .contact-title .contact-crane {
      display: block;
    }
}
@media (min-width: 992px) {
    header nav{
        display: flex;
    }
    header .top-nav-container .btn-icon{
        display: none;
    }
    header {
        flex-direction: row;
    }
    header .banner {
        font-size: 85px;
    }
    header .banner {
        text-align: left;
    }
    header .banner {
        flex-direction: row;
    }
    header .banner {
        flex-direction: row;
        justify-content: space-between;
    }
    /* hero */
    .genral-hero-div .line2 {
        display: inline-block;
        align-self: center;
        width: 6px;
        height: 60px;
        background: #2cb34f;
        margin: 20px;
    }

}

@media (max-width: 992px){
  header .top-nav-container.fixed {
    margin-top: -40px;
  }
    /* hero */
    .genral-hero-div{
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .hero-content{
        padding: 60px 100px;
    }
    .hero-content h1 {
        font-size: 1.7em;
    }
    .hero-main{
        margin: 12px 0;
        padding-right: 48px;
    }
    .hero-main img
    {
        width: 250px;
    }
    .hero-stats
    {
        min-width: 100px;
    }
    .hero-stats > div {
    font-size: 10px;
    }
    /* About Us Family Business */
    .testimonials-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .testimonial-card {
        max-width: 95vw;
        min-width: 0;
    }
    .testimonials-header h2 {
        font-size: 2rem;
    }

    /* stocks */
  .navbar-links { gap: 1em; }
  .navbar-cta { margin-left: .5em; }
  .projects-list { padding: 0 2vw; }
  .project-card, .project-card.reverse { flex-direction: column; }
  .project-img, .project-info { max-width: 100%; flex-basis: 100%; }
  .project-info { padding: 1.3em 1.3em 1.7em 1.3em; }

    /* steps */
  .steps-flow {
    gap: 16px;
  }
  .steps-flow::before {
    left: 2%;
    right: 2%;
  }
  .step-item {
    min-width: 140px;
    max-width: 170px;
    font-size: 0.95em;
  }
  .step-circle {
    width: 40px;
    height: 40px;
    font-size: 1.05em;
  }
}

@media (max-width: 768px){
    .award-badge
    {
        font-size: 1em;
    }
    .hero-content h1 {
        font-size: 1.5em;
    }

    /* our partners */
            .button-group {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .image-btn {
                width: 90%;
                max-width: 300px;
            }
            
            .modal-content {
                max-width: 95%;
                max-height: 70vh;
                margin-top: 35%;
            }
            
            .close {
                top: 15px;
                right: 20px;
                font-size: 35px;
            }
            
            .caption {
                font-size: 1.2rem;
                padding: 15px 0;
            }
            
            h1 {
                font-size: 2rem;
            }
     /* steps */
    .steps-flow {
        margin-top: 31px;
        gap: 2p
    }
    .steps-flow::before {
        display: none;
    }
    .step-item {
        max-width: 320px;
        min-width: 0;
    }
}

@media (max-width: 668px){
    header .top-nav-container.fixed {
      margin-top: -60px;
    }
    .topbar{
        font-size: 0.8rem;
    }
    /* hero */
    section .line {
        width: 20px;
    }
    .genral-hero-div{
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .hero-content{
        padding: 10px;
    }
    .award-badge
    {
        color: #555;
        font-size: 0.8em;
    }
    .genral-hero-div {
        gap: 0px;
    }
    .hero-content h1 {
        font-size: 1em;
    }
    .hero-services
    {
        margin: 1em 0 1em 0;
        padding: 12px 15px;
    }
    .hero-services span {
        font-size: 0.8em;
    }
    .hero-discrip
    {
        max-width: 400px;
    }
    .hero-main{
        display: block;
        padding: 0px;
    }
    .hero-main img
    {
        margin: -45px 0px 0px 0px;
    }
    .hero-stats
    {
        display: inline-flex;
        gap: 2em;
    }
    .hero-stats > div {
        font-size: 10px;
    }
    .hero-main-footer {
        width: 100%;
        height: 100%;
        padding: 0px;
        margin-top: 0px;
    }

    /* About Us Family Business */
    .testimonials-subtitle{
        font-size: 0.8em;
    }
    .testimonials-list .discrip
    {
        font-size: 85%;
    }
    .testimonials-section {
        padding: 25px;
    }
    .testimonial-card {
        padding: 20px 12px 18px 12px;
        font-size: 0.98rem;
    }
    .testimonials-header h2 {
        font-size: 1.3rem;
    }

    /* our partners */
    .service-content .steps-desc{
        margin: 20px 10px;
    }

    /* stocks */
  .topbar, .navbar { flex-direction: column; gap: .6em;}
  .navbar-links { flex-wrap: wrap; gap: .7em; }
  .navbar, .topbar { padding: .7em 2vw; }
  .hero h1 { font-size: 1.4em; }
  .section-title h2 { font-size: 1.2em; }
  .projects-list { gap: 1.3em; }
  .project-info { padding: 1em; }
  .slider-images {margin-top: 15%;}

   /* steps */
    .steps-section h2 {
        font-size: 1.15em;
        margin-bottom: 28px;
    }
    .steps-label {
        font-size: 0.97em;
    }
    .step-title {
        font-size: 1em;
  }

  /* contact us */
  .form-row{
    display: block;
  }
}

@media (max-width: 400px){
    header .top-nav-container.fixed   
    {
      margin-top: -60px  !important;
    }
    .topbar{
        font-size: 0.8rem;
        font-size: 10px;
    }
    .top-nav .logo img{
        width: 80px;
        margin-left: 11px;
    }
    .top-nav .logo {
        font-size: 0.8em;
    }
    /* hero */
    .award-badge {
        margin-bottom: 7px;
        font-size: 0.8em;
    }
    .hero h1 {
        font-size: 0.8em;
    }
    .hero-services
    {
        /* margin: 1em 1em 0.5em; */
        padding: 12px 15px;
    }
    .hero-services span {
        font-size: 0.5em;
    }
    .hero-discrip
    {
        font-weight:600 ;
        font-size: 0.8em;
        margin: 0 22px;
        margin-bottom: 1em;
    }
    .hero-main{
        display: block;
        padding: 0px;
    }
    .hero-main img
    {
        margin: -45px 0px 0px 0px;
    }
    .hero-stats
    {
        display: inline-flex;
        gap: 2em;
    }
    .hero-stats > div {
        font-size: 8px;
    }
    .hero-main-footer {
        width: 100%;
        height: 100%;
        padding: 0px;
        margin-top: 0px;
    }

    /* About Us Family Business */
    .testimonials-section {
        padding: 25px;
        margin-top: 30px;
    }
    .testimonials-subtitle .line{
      width: 20px;
    }
    .testimonials-subtitle{
        font-size: 0.8em;
    }
    .testimonials-list .discrip
    {
        font-size: 69%;
        text-align: justify;
        margin-bottom: 15px;
    }
    .testimonial-card {
        padding: 20px 15px 18px 15px;
        font-size: 0.98rem;
    }
    .testimonials-header h2 {
        font-size: 1.3rem;
    }
    .testimonial-card h3 {
      font-size: 1rem;
    }
    .testimonial-card p {
      font-size: 0.8em;
    }

    /* our partners */
    .service-content .steps-desc{
        margin: 20px 10px;
    }

    /* stocks */
  .topbar, .navbar { flex-direction: column; gap: .6em;}
  .navbar-links { flex-wrap: wrap; gap: .7em; }
  .navbar, .topbar { padding: .7em 2vw; }
  /* .hero h1 { font-size: 1.4em; } */
  .section-title h2 { font-size: 1.2em; }
  .projects-list { gap: 1.3em; }
  .project-info { padding: 1em; }
  .slider-images {margin-top: 15%;}

   /* steps */
    .steps-section h2 {
        font-size: 1.15em;
        margin-bottom: 28px;
    }
    .steps-label {
        font-size: 0.97em;
    }
    .step-title {
        font-size: 1em;
  }

  /* contact us */
  .form-row{
    display: block;
  }
}


@media (min-width:1000px){
    header .top-nav-container.fixed {
    margin-top: -40px;
  }
    .container,.container-lg,.container-md,.container-sm,.container-xl{
        max-width:1200px
    }
    .btn{
        font-size: 12px;
        padding: 10px 12px;
    }
    header nav ul li {
        margin: 0 8px;
    }
    header nav ul li a {
        font-size: 13px;
    }
    .top-nav .logo
    {
        font-size: 1.1em;
    }
    .top-nav .logo img
    {
        width: 90px;
    }
}



/* main */

li:hover{
    color: #fd6a21;
    /* background: #f9f2ed; */
    /* padding: 8px;
    border-radius: 4px; */
}
 @media (min-width:576px){
    .container,.container-sm{
        max-width:800px
    }
}

@media (min-width:768px){
    .container,.container-md,.container-sm{
        max-width:900px
    }
}

@media (min-width:992px){
    .container,.container-lg,.container-md,.container-sm{
        max-width:960px
    }
}



@media (min-width:1200px){
    .container,.container-lg,.container-md,.container-sm,.container-xl{
        max-width:1200px
    }
    .btn{
        margin-left: 41px;
    }
}

@media (min-width:1400px){
    .container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{
        max-width:1320px
    }
}
