: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: 'Montserrat', Arial, 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 */
.btn{
    font-size: 15px;
    font-weight: bold;
    color: white;
    background-color: #2CB343;
    padding: 12px 19px;
    text-transform: capitalize;
    border: none;
    border-radius: 23px;
    -webkit-border-radius: 23px;
    -moz-border-radius: 23px;
    -ms-border-radius: 23px;
    -o-border-radius: 23px;
}
.btn:hover{
    background: #555;
    color: #fff;
}

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.6s ease-in-out;
}
header .top-nav-container.fixed{
    /* position: fixed; */
    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.6s 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: #555;
    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{
    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;
}

/* HERO */
.hero {
    background: #f0f1f5;
    padding: 1.5rem 0 1.5rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2em;
  flex-wrap: wrap;
  padding: 0 2vw;
}
.award-badge {
  color: #555;
  font-size: 0.97em;
  font-weight: 600;
  /* margin-bottom: .8em; */
}
.hero-content h1 {
  font-size: 2.1em;
  font-weight: 800;
  margin: 0 0 .3em 0;
  letter-spacing: -1.5px;
  color: var(--accent);
}
.hero-content .highlight {
  color: #2cb34f;
}
.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1em 0 1em 0;
}
.hero-services span {
  background: #fff;
  color: #555;
  font-size: 0.98em;
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.genral-hero-div{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hero-discrip{
    font-weight: 600;
    max-width: 560px;
    margin: 1em 0 1em 0;
    color: #555;
}

.hero-main {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
}

.hero-main img {
    width: 400px;
    /* height: 220px; */
    object-fit: cover;
    margin: -60px 0 0 28px;
}
.hero-stats {
    /* margin: 0 80px 0 0; */
    display: inline-grid;
    gap: 0.7em;
    background: #2cb34f;
    padding: 1.5em 2em;
    border-radius: 4%;
    color: #fff;
    height: 15%;
    min-width: 210px;
    box-shadow: 0 5px 25px rgba(1 1 1 / 200%);
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stat-big {
  font-size: 2em;
  font-weight: 800;
  line-height: 1;
}
.stat-label {
  font-size: 1em;
  font-weight: 500;
  margin-top: .1em;
}

.hero-main-footer{
    text-align: -webkit-center;
    display: inline-block;
    align-self: center;
    width: 100%;
    height: 100px;
    padding: 1px;
    background: #fd6a21;
    margin-top: -29px;
}

.hero-main-footer img{
 width: 10%;
}

/* About Us Family Business */
.testimonials-section {
  background: #fff;
  padding: 60px 100px;
  color: #fff;
  padding-top: 8%;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 10px;
}

.testimonials-subtitle {
  display: inline-flex;
  align-items: center;
  color: #555;
  font-size: 0.97em;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.testimonials-subtitle .line {
  display: inline-block;
  width: 30px;
  height: 4px;
  background: #2cb34f;
  margin-right: 10px;
  border-radius: 2px;
}

.testimonials-header h2 {
  color: #fd6a21;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 15px;
}

.testimonials-header .highlight {
  color: #2cb34f;
}

.testimonials-list {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonials-list .discrip{
    font-size: 100%;
    font-weight: 600;
    margin: 10px;
    color: #555;
    text-align: center;
}

.project-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  margin-top: auto;
  transition: color .15s;
  display: inline-block;
}

.project-link:hover {
  color: #555;
  text-decoration: underline;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 32px 28px 28px 28px;
  box-shadow: 0 4px 20px #7b7d8c;
  max-width: 420px;
  min-width: 290px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
  margin-top: -17px;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.stars {
  color: #fd6a21;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-right: 7px;
  font-family: 'Arial Rounded MT Bold', Arial, sans-serif;
}

.score {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
}

.testimonial-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 8px 0 12px;
  color: #2cb34f;
}

.testimonial-card p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 28px;
  min-height: 58px;
}

.testimonial-client {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.testimonial-client img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 14px;
    border: 3px solid #2cb34f;
    object-fit: cover;
    background: #fff;
}

.client-name {
  font-weight: 700;
  color: #fd6a21;
  font-size: 1.07rem;
}

.client-role {
  font-size: 0.97rem;
  color: #2cb34f;
  margin-top: 2px;
}



/* Services Section */
.services {
  background: #f7f8fa;
  padding: 3em 0 4em 0;
  padding-top: 8%;
}
.section-title {
  text-align: center;
  margin-bottom: 2.5em;
}
.section-title .section-subtitle {
    display: inline-flex;
    align-items: center;
    color: #555;
    font-size: 0.97em;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
}
.section-title h2 {
  color: #fd6a21;
  font-size: 2em;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0;
}
.section-title .highlight {
  color: #2cb34f;
  font-weight: 800;
}
.services-list {
  margin: 1% 10%;
  display: flex;
  gap: 2em;
  justify-content: center;
  flex-wrap: wrap;
}
.service-card {
    box-shadow: 0 7px 0px rgb(44 179 79);    
    background: #fff;
    border-radius: var(--radius);
    /* box-shadow: var(--shadow); */
    padding: 1.6em 1.3em 2em 1.3em;
    max-width: 300px;
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--border);
}
.service-card img {
  width: 100%;
  /* max-width: 90px; */
  height: 70%;
  object-fit: cover;
  border-radius: 12px;
  /* margin-bottom: 1em; */
}
.service-card h3 {
  margin: .2em 0 .5em 0;
  font-size: 1.2em;
  color: var(--accent);
}
.service-card p {
  font-size: .98em;
  color: #555;
  margin-bottom: 1.1em;
}
.service-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: color .15s;
}
.service-link:hover {
  color: #d94d05;
  text-decoration: underline;
}
.project-meta {
  list-style: none;
  margin: 0 0 1.3em 0;
  padding: 0;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: .45em;
  font-size: 1em;
}

.project-meta li {
  display: flex;
  align-items: center;
  gap: .5em;
  color: #555;
}

.project-meta i {
  /* color: var(--accent); */
  font-size: 1.1em;
}


/* Our partners2 */
.service-section {
  position: relative;
  width: 100%;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../image/1.png') center/cover no-repeat;
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding: 2.5em 0;
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: #666666ad;
    z-index: 1;
}

.service-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1em 1em 2em 1em;
}

.service-content .section-subtitle {
    /* color: #b1b5c9; */
    font-size: 1em;
    font-weight: 500;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: .5em;
}

.service-content .line {
    display: inline-block;
    width: 30px;
    height: 4px;
    background: #2cb34f;
    margin-right: 10px;
    border-radius: 2px;
}

.service-content h2 {
    font-size: 2.05em;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 0;
}

.service-content .highlight {
    color: var(--accent);
    font-weight: 800;
}

.service-features {
  display: flex;
  justify-content: center;
  gap: 2.5em;
  flex-wrap: wrap;
}

.service-features a{
  text-decoration: none;
}

.service-feature {
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 1.5em 1em 1.3em 1em;
  box-shadow: 0 2px 12px 0 rgba(10,20,60,0.05);
  max-width: 220px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  min-width: 180px;
  transition: background 0.18s;
  height: 100%;
}

.service-feature:hover {
  background: rgba(255,255,255,0.11);
}

.feature-number {
    width: 60px;
    height: 60px;
    /* background: #fff; */
    border-radius: 50%;
    margin-bottom: 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    font-size: 2.1em;
    font-weight: bold;
    box-shadow: 0 5px 12px 0 rgba(44, 68, 130, 0.08);
    border: 3px solid #ffff;
}

.service-feature h4 {
  margin: 0 0 0.55em 0;
  font-size: 1.05em;
  font-weight: 700;
  color: #fff;
}

.service-feature p {
  font-size: 0.97em;
  /* color: #ffe6d2; */
  margin: 0;
  line-height: 1.5;
}

/* Our partners2 */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .button-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            margin: 40px 0;
        }
        
        .image-btn {
          background: rgba(255, 255, 255, 0.04);
          border-radius: 16px;
          padding: 1.5em 1em 1.3em 1em;
          box-shadow: 0 2px 12px 0 rgba(10, 20, 60, 0.05);
          max-width: 220px;
          flex: 1 1 180px;
          display: flex;
          flex-direction: column;
          align-items: center;
          color: #fff;
          min-width: 180px;
          transition: background 0.18s;
          border: none;
        }
        
        .image-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        
        .image-btn:hover::before {
            transform: translateX(100%);
        }

        .image-btn .feature-number {
          width: 60px;
          height: 60px;
          /* background: #fff; */
          border-radius: 50%;
          margin-bottom: 1.1em;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #ffff;
          font-size: 2.1em;
          font-weight: bold;
          box-shadow: 0 5px 12px 0 rgba(44, 68, 130, 0.08);
          border: 3px solid #ffff;
        }

      .image-btn .service-feature h4 {
        margin: 0 0 0.55em 0;
        font-size: 1.05em;
        font-weight: 700;
        color: #fff;
      }

      .image-btn .service-feature p {
        font-size: 0.97em;
        /* color: #ffe6d2; */
        margin: 0;
        line-height: 1.5;
      }

        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            overflow: auto;
            animation: fadeIn 0.4s;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .modal-content {
            margin: 5% auto;
            display: block;
            max-width: 80%;
            max-height: 80vh;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
            border: 4px solid #fff;
            animation: zoom 0.4s;
        }
        
        @keyframes zoom {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        
        .close {
            position: absolute;
            top: 25px;
            right: 40px;
            color: #f1f1f1;
            font-size: 45px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
            z-index: 1001;
            text-shadow: 0 0 10px rgba(0,0,0,0.8);
        }
        
        .close:hover {
            color: #f44336;
            transform: rotate(90deg);
        }
        
        .caption {
            color: #fff;
            text-align: center;
            padding: 20px 0;
            font-size: 1.5rem;
            max-width: 80%;
            margin: 0 auto;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
        }
   
        
 /* Our Stocks  */
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;700&display=swap");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
.slider-container{
  /* margin-top: -10%; */
  width: 100%;
  /* height: 100vh; */
  background-image: url('Images/bg-img.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-images{
  display: flex;
  align-items: center;
  gap: 21px;
  width: 100%;
}
.slider-images img{
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  border-radius: 6px;
}
.slider-img{
  width: 110px;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  transition: 0.7s ease;
}
.slider-images .slider-img:first-child, .slider-images .slider-img:last-child{
  height: 300px;
  box-shadow: 0 4px 20px #7b7d8c;
}
.slider-images .slider-img:nth-child(2), .slider-images .slider-img:nth-child(6){
  height: 350px;
  box-shadow: 0 4px 20px #7b7d8c;
}
.slider-images .slider-img:nth-child(3), .slider-images .slider-img:nth-child(4), .slider-images .slider-img:nth-child(5){
  height: 400px;
  box-shadow: 0 4px 20px #7b7d8c;
}
.slider-img h1{
    /* font-family: "Jost", sans-serif; */
    font-size: 120%;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    top: 50%;
    left: -50%;
    right: -50%;
    transform: rotate(270deg);
    transition: 0.7s ease;
}
.details{
  position: absolute;
  bottom: 43px;
  left: 43px;
}
.details h2{
  font-family: "Jost", sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-align: left;
  line-height: 44px;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  transition: 0.7s ease;
  display: none;
}
.details p{
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  line-height: 33px;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  transition: 0.7s ease;
  display: none;
}
.slider-img.active{
  width: 766px !important;
  height: 450px !important;
}
.slider-img.active h1{
   display: none;
}
.slider-img.active .details p, .slider-img.active .details h2{
  display: block;
}

/* Projects List */
.projects-list {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  max-width: 950px;
  margin: 0 auto 3.5rem auto;
}

.project-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .2s;
}

.project-card:hover {
  box-shadow: 0 6px 28px rgba(20,35,91,0.11);
}

.project-card.reverse {
  flex-direction: row-reverse;
}

.project-img {
  flex: 1 1 320px;
  min-width: 240px;
  max-width: 350px;
  background: #dde3f6;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.project-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-tags {
  position: absolute;
  left: 1em; bottom: 1em;
  display: flex;
  gap: .6em;
  flex-wrap: wrap;
}

.tag {
  background: rgba(20,35,91,.95);
  color: #fff;
  font-size: .92em;
  padding: .34em .9em;
  border-radius: 1em;
  margin-right: 0.2em;
  font-weight: 500;
  opacity: .96;
  transition: background .15s;
}

.project-info {
  flex: 2 1 350px;
  padding: 2em 2em 2em 2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-info h3 {
  margin: 0 0 .5em 0;
  font-size: 1.35em;
  font-weight: 700;
  color: var(--primary);
}

.project-info p {
  color: #555;
  font-size: 1em;
  margin: 0 0 1.1em 0;
  font-weight: 400;
}

.project-meta {
  list-style: none;
  margin: 0 0 1.3em 0;
  padding: 0;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: .45em;
  font-size: 1em;
}

.project-meta li {
  display: flex;
  align-items: center;
  gap: .5em;
  color: #555;
}

.project-meta i {
  /* color: var(--accent); */
  font-size: 1.1em;
}

.project-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  margin-top: auto;
  transition: color .15s;
  display: inline-block;
}

.project-link:hover {
  color: #555;
  text-decoration: underline;
}


/* Section steps */
.section-steps {
  padding: 15%;
  background-color: #f0f1f5;
  text-align: center;
  /* margin: 2rem 0 2.5rem 0; */
}

section .line {
    display: inline-block;
    width: 30px;
    height: 4px;
    background: #2cb34f;
    margin-right: 10px;
    border-radius: 2px;
}

.section-steps .section-subtitle {
  color: #555;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: .5em;
}

.section-steps h2 {
  color: #fd6a21;
  font-size: 2em;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0;
}

.section-steps .highlight {
  color: #2cb34f;
  font-weight: 800;
}

/* steps */
.steps-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 16px;
  text-align: center;
}

.steps-label {
  color: #ff9800;
  font-size: 1em;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.steps-section h2 {
  color: #13223a;
  font-size: 2.1em;
  margin-bottom: 44px;
  font-weight: 700;
  line-height: 1.3;
}

.steps-flow {
  padding-top: 6%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  position: relative;
  flex-wrap: wrap;
}

.steps-flow::before {
content: "";
    position: absolute;
    top: 75px;
    left: 20%;
    right: 20%;
    border-top: 3px dashed #2cb34f;
    z-index: 1;
    height: 0;
}

.step-item {
  /* background: #fff; */
  z-index: 1;
  min-width: 200px;
  max-width: 250px;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-circle {
  width: 50px;
  height: 50px;
  background: #2cb34f;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.3em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(255,152,0,0.10);
  position: relative;
  z-index: 1;
}

.step-title {
  font-weight: 600;
  color: #555;
  font-size: 1.09em;
  margin-bottom: 8px;
  margin-top: 0;
}


.step-desc {
  color: #757575;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0 5px;
}


/* Contact Section */
.contact-main {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 0 24px;
}
.contact-title {
  text-align: center;
  position: relative;
  margin-bottom: 14px;
}
.section-label {
  color: #fc7b1e;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.contact-title h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.18;
  color: #1b2340;
}
.contact-title h2 span {
  color: #fc7b1e;
}
.contact-crane {
  width: 52px;
  position: absolute;
  right: 16%;
  top: 15%;
  z-index: 1;
  display: none;
}
@media (min-width:800px) {
  .contact-title .contact-crane {
    display: block;
  }
}

.contact-content {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 40px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}
.contact-form {
    /* flex: 2 1 390px; */
    width: 50%;
    /* min-width: 300px; */
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 24px rgba(20, 23, 38, 0.2);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.form-row {
  display: flex;
  gap: 18px;
}
.form-group {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form label {
  font-size: 1rem;
  font-weight: 500;
  color: #1b2340;
}
.contact-form input,
.contact-form textarea {
    /* width: 100%;  */
    /* margin: 2%; */
    padding: 12px 3px;
    border: 1.5px solid #e8e8ef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: #f8f9fd;
    resize: none;
}
.contact-form textarea {
  min-height: 90px;
}
.btn-primary {
  background: #fc7b1e;
  color: #fff;
  border: none;
  border-radius: 23px;
  padding: 13px 32px;
  font-weight: 600;
  font-size: 1.07rem;
  margin-top: 8px;
  cursor: pointer;
  letter-spacing: 0.4px;
  box-shadow: 0 2px 11px rgba(252, 123, 30, 0.09);
  transition: background 0.2s;
}
.btn-primary:hover {
  background: #1b2340;
  color: #fff;
}

.contact-map {
  flex: 1 1 265px;
  min-width: 220px;
}



/* ----------------------------------responsive---------------------------- */

@media (min-width: 768px) {
    .protect{
        left: 75%;
    }
    .protect {
        right: 75%;
    }
}
@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){
    /* 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){
    .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;
  }
}



@media (min-width:1000px){
    .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
    }
}
