/* introduction */
.intro-container {
    /* height: 60vh; */
    padding:4em 0;
    /* text-align: center; */
}


.intro-container p {
    width: 35vw;
    margin: 0 auto;
}

.service-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap:1rem;
    padding: 2em 0;
}

.service-item {
    position: relative; /* Ensure the parent has a relative position */
    text-align: center; /* Center text below the image */
}

.service-item-image {
    display: inline-block; /* Ensure the image behaves like an inline block */
    position: relative; /* Ensure pseudo-element is positioned relative to the image */
}

.service-item-divider {
    height: 2px;
    width: 95%;
    padding:0;
    margin: 18px auto 2px;
    background-color: #000000;
    border: none;
    opacity: 0.9;
    /* border-radius: 70px; */
     
}



@media only screen and (max-width: 768px) {
    .intro-container {
        height: 75vh;
        padding: 2em 0;
    }
    .intro-container p {
        width: 85vw;
    }

    .service-container {
        justify-content: space-between;
    }
}

@media screen and (max-width: 403px) {
    .service-container {
        /* flex-direction: column; */
    }
}

/* End of intro section */

/* Milestones begins */
.milestone-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.milestone-item h4 {
    font-weight: 25px !important;
    font-weight: 'Roboto', sans-serif !important;
}
/* End of Milestones */


.about-heading {
    font-size: 35px;
    position: relative;
    padding-top: 25px;
    color: #333 !important;
}

.about-heading:before {
    content: "\27BF";
    font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
    color: rgb(184, 182, 182);
    font-size: 50px;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: -30px;
    font-weight: 400 !important;
}


.text-slogan {
    font-weight: bold;
}


.action-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 40px 50px;
    align-items: center;
    flex-wrap: wrap;
}

.action-wrapper .action-text {
    flex: 3;
}

.action-text h2 {
    color: white;
}
.action-text p {
    max-width: 668px;
    color: #e1e1e1;
}
.action-wrapper .action-btn {
    flex:1;
}

@media screen and (max-width: 992px) {
    .action-wrapper {
        flex-direction: column;
        align-items: center;
        padding: 30px 10px;
    }


}


#get-started-wrapper {
    background: rgb(33,37,41) !important;
    background: linear-gradient(90deg, rgba(33,37,41,1) 0%, rgba(250,124,31,1) 0%, rgba(11,153,182,1) 100%) !important;
}




/* Custom CSS for Digital Presence Section */
.digital-presence-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
     /* Background color for the section */
  }
  
  .digital-presence-image {
    flex: 1;
    max-width: 100%;
    min-width: 300px; /* Set a minimum width to prevent excessive shrinking */
  }
  
  .digital-presence-image img {
    width: 100%;
    height: 65vh;
    object-fit: cover;
  }
  
  .digital-presence-content {
    flex: 1;
    color: #fff; /* Text color for better contrast */
    background: #fa7c1f;
    padding: 40px 70px;
    height: 65vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .digital-presence-content h1 {
    font-size: 30px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
  }
  
  .digital-presence-content p {
    font-size: 16px;
    line-height: 1.6;
  }

  @media (max-width: 992px) { 
    .digital-presence-content h1 {
        font-size: 1.5rem;
      }

      .digital-presence-content {
        padding: 25px;

      }
  }

  
  /* Responsive Behavior */
  @media (max-width: 767.98px) {
    .digital-presence-container {
      flex-direction: column;
    }
  
    .digital-presence-image {

      display: none;
      
    }
  
    .digital-presence-content {
      text-align: center;
      padding: 50px 30px;
    }
  
    .digital-presence-content h1 {
      font-size: 2rem;
    }
  }

  .tagline {
    font-weight: bold ;
  }