html {
  scroll-behavior: smooth;
}


body{
    font-family: "Poppins",sans-serif !important;
}
.section1{
    padding: 50px;
}
.section1 .feature-item {
    display: flex;
    align-items: left;
    margin-bottom: 20px;
}

.section1 .feature-icon {
    flex-shrink: 0; /* Prevent the icon from shrinking */
    margin-right: 10px; /* Space between the icon and text */
}

.section1 .feature-text p {
    margin: 0;
    font-size: 16px;
}

.section1 .fa-check {
    font-size: 15px; /* Adjust size of the icon */
    color: #049b04; /* Change icon color */
}

.section1 .image-column {
    position: relative;
}

.section1 .texts {
    position: absolute;
    top: 1px;
    left: 15px;
    z-index: 1;
    color: #fff; /* White text for contrast */
    background-color: black;
    padding: 10px;
}

.section1 .image-wrapper {
    position: relative;
}

.section1  .first-image {
    width: 100%;
    height: auto; /* Adjust this as necessary */
    display: block;
}

.second-image {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(0%);
    width: 300px;
    height: 250px;
    border: 10px solid white;
    object-fit: cover; /* Make sure the image covers the space while maintaining its aspect ratio */
}
.sec1btn{
    padding:13px 35px;
     border:none;
     border-radius: 5px;
     text-decoration: none;
     outline: none;
     background-color: #049b04;
     color: white;
     margin-top: 10px;
     display: inline-block;
}
.seccol1{
    margin-top: 50px;
}

.section2 {
    padding: 0px 0;
    text-align: center;
}

.section2 h5 {
    font-size: 18px;
    color: #049b04;
}

.section2 h2 {
    font-size: 30px;
    color: #333;
    margin-bottom: 40px;
}

.section2 .card {
    border: 2px dotted green;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
    margin-bottom: 5px;
    height: 450px;
}

.section2 .card-body {
    padding: 25px;
    position: relative;
}
  
.section2  .card-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.section2  .card h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}
 
.section2 .card p {
    font-size: 16px;
    color: #555;
}

.section2 .card:hover {
    background-color: black;
    color: white;
}

.section2 .card:hover h2,
.section2 .card:hover p {
    color: white;
}

.section2 .card:hover .card-img {
    background-color: white;
}

.section2 .card:hover {
    border-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.section2 .sec2btn{
      padding:13px 35px;
     border:none;
     border-radius: 5px;
     text-decoration: none;
     outline: none;
     background-color: #049b04;
     color: white;
     margin-top: 10px;
     display: inline-block;
}


.section4{
    background-color: #00112b;
 
    padding: 50px;

  }
  .section4 h1{
    color: white;
    font-size: 22px;
  }
  .section4 h5{
    color: #049b04;
    text-transform: uppercase;
  }
   .section4 .step {
     padding: 0px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    background-color: cream;
  }

  .v-stepper {
    position: relative;
  }

  /* Regular Circle */
  .step .circle {
    background-color: white;
    border: 3px solid gray;
    border-radius: 100%;
    width: 30px;    /* +6 for border */
    height: 30px;
    display: inline-block;
  }

  /* Line connecting the steps */
  .step .line {
    top: 30px;
    left: 14px;
    height: 100%;
 
  
    position: absolute;
    border-left: 1px solid lightgray !important;
  }

  /* Completed Step: Add Checkmark */
  .step.completed .circle {
    visibility: visible;
    background-color: #049b04;
    border-color: #049b04;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
   
  }

  .step.completed .circle:before {
    content: '\f00c'; /* FontAwesome checkmark icon */
    font-family: 'FontAwesome';
    font-size: 14px;
  }

  /* Completed Line */
  .step.completed .line {
    border-left: 3px solid #049b04;
  }

  /* Active Step: Blue Circle */
  .step.active .circle {
    visibility: visible;
    border-color: #049b04;
  }

  /* Empty Step: Hidden Circle */
  .step.empty .circle {
    visibility: hidden;
  }

  .step.empty .line {
    top: 0;
    height: 150%;
  }

  /* Hide Line for Last Step */
  .step:last-child .line {
    border-left: 3px solid white;
    z-index: -1;
  }

  /* Content Style */
  .content {
    margin-left: 20px !important;
    display: inline-block;
  }
  .section4 .content h5{
    color: #049b04;
  }
  .section4 .content p{
    color: white;
  }
.sec4img img{
    margin-top: 0px;;
    border-radius: 10px;;
    padding: 10px;
}


@media (max-width: 767px) {
  .section2 .card-body {
    padding: 3px;
    position: relative;
}
.section2 .card h2 {
  font-size: 12px;
  color: #333;
  margin-bottom: 10px;
}
.section2 .card p {
  font-size: 10px;
  color: #555;
}
.section2 .sec2btn {
  padding: 6px 13px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  outline: none;
  background-color: #049b04;
  color: white;
  margin-top: 0px;
  font-size: 11px;
  display: inline-block;
}
.section2 .card{
  height: 255px !important;
}
.section2  .card-img {
  width: 100%;
  height: 70px;
  border-radius: 5px;
  margin-bottom: 15px;
}
/* .section2{
  padding:20px !important;
} */

.section1 .feature-text p {
  margin: 0;
  font-size: 12px;
}
}



.about_us {
  background:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/client.png)no-repeat;
  background-attachment: cover;
  background-repeat: no-repeat;
  background-size: cover;
  width:100%;
  height: auto;
  padding: 50px 10px;
}


.about_us {
  border-bottom: 5px solid #28a745;
}

.breadcromb-box {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  border-radius: 10px;
  margin-top: 115px;
}

.about-us-title {
   font-family: 'Roboto', sans-serif;
   font-weight: 700; /* Bold text */
   font-size: 30px;
   color: #fff;
   letter-spacing: 3px;
   margin-bottom: 20px; /* Space below the heading */
}

.breadcrumb-list {
   list-style: none;
   padding-left: 0;
   display: flex;
   justify-content: center; /* Center the breadcrumb items */
   align-items: center;
}

.breadcrumb-list li {
   margin: 0 5px; /* Space between breadcrumb items */
   color: white;
   font-size: 13px;
}

.breadcrumb-link {
  color: white;
  text-decoration: none;
  font-weight: 500; /* Medium weight for links */
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: #28a745; /* Highlight color on hover */
}

.breadcrumb-icon {
  color: #28a745; /* Color for the icons */
}

/* Adjusting responsiveness */
@media (max-width: 768px) {
  .about-us-title {
      font-size: 22px;
  }

  .breadcrumb-list {
      font-size: 14px; /* Smaller font size on mobile */
  }

  .breadcromb-box {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 10px;
    margin-top: 78px;
    margin-bottom: 0px;
}
}

/* @media screen and (min-width:320px) and (max-width: 658px) {
  .section2 .card p {
    font-size: 9px;
    color: #555;
}
.section2 .card {
  height: 280px !important;
}
.service_btn {
  margin-bottom: 10px !important;
}
} */

/* Section Styling */
.section2 {
 
  background:linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)),url(images/testimonial-bg.jpeg)no-repeat;
  background-attachment: cover;
  background-repeat: no-repeat;
  background-size: cover;
  width:100%;
  height: auto;
  padding: 50px 10px;
 
 }
 
 /* Header (h3) Styling */
 .section2 h3 {
     font-size: 2rem; /* Larger font size for the heading */
     font-weight: 600; /* Slightly bold */
     color: #ffffff; /* Dark text color for better contrast */
   
 }
 
 /* Paragraph Styling */
 .section2 p {
     font-size: 1.1rem; /* Slightly larger text */
     color: #ffffff; /* Medium grey color for the paragraph */
    
     line-height: 1.6; /* Better line height for readability */
    
 }
 
 /* Button Styling */
 .section2 button {
     padding: 12px 30px; /* Adequate padding for the button */
     font-size: 1.1rem; /* Slightly larger font for the button */
     background-color: white; /* Blue background color */
     color: #000000; /* White text color */
     border: none; /* Remove border */
     border-radius: 5px; /* Rounded corners for the button */
     cursor: pointer; /* Pointer cursor on hover */
     transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition */
     margin-top: 40px;;
 }
 
 .section2 button:hover {
     background-color: #ffb600; /* Darker blue on hover */
     transform: scale(1.05); /* Slight zoom effect on hover */
     color: white;
 }
 
 /* Responsive Design */
 @media (max-width: 768px) {
     /* Adjust the heading and paragraph sizes on smaller screens */
     .section2 h3 {
         font-size: 1.7rem;
     }
 
     .section2 p {
         font-size: 1rem;
     }
 
     .section2 button {
         font-size: 1rem;
         padding: 10px 25px; /* Adjust button padding for smaller screens */
     }
 }
 