
.our-serv-section {
    padding: 50px 0;
}

.serv-heading h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
}

.our-service-card {
    background-color: #f8f9fa;
    border: none;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.number-box {
    background-color: #0056ff;
    color: white;
    font-size: 20px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.card-body h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-body p {
    font-size: 14px;
    color: #666;
}

.offer-title {
    font-size: 48px;
    font-weight: bold;
    color: #000;
}

.offer-description {
    font-size: 14px;
    color: #555;
    margin: 20px auto;
    max-width: 800px;
    line-height: 1.6;
}

.ul-about {
    padding-left: 0;
}
.ul-about-list {
    font-size: 18px;
    color: #000;
    margin-bottom: 20px;
    padding: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
}

.ul-about-list i {
    color: #0056ff;
    font-size: 20px;
    margin-right: 10px;
}

.ul-about-list span {
    font-size: 14px;
    color: #555;
    display: block;
    margin-top: 5px;
}

/* Hover Effect */
.ul-about-list:hover {
    background-color: #f0f7ff;
    color: #0056ff;
    cursor: pointer;
}

.ul-about-list:hover i {
    color: #003bb3;
}

/* Responsive Design */
@media (max-width: 992px) {
    .offer-description {
        font-size: 16px;
    }
}


.our-serv-section {
    position: relative;
    padding: 50px;
    background-color: #80808012;
}

.serv-heading h1 {
    font-size: 80px;
    font-weight: 700;
}
.Our-ser-list1 {
    position: relative;
    margin-top: 30px;
}
.number-box {
    background-color: #0056ff;
    color: white;
    font-size: 20px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 20px;
}
.mission1-contain {
    position: relative;


}
.mission1 {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    cursor: pointer;
}
.mission1:hover {
    transform: translateY(-5px); /* Lifts the container slightly */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.15);
}

.mission1-contain h3 {
    font-size: 24px;
    transition: color 0.3s ease;
}
.mission1-contain p {
    font-size: 16px;
    text-align: justify;
    padding-right: 50px;
    padding-top:10px ;
}


.services {
    background-color:#f8f9fa8c;
    
}




.heading-service {
    position: relative;
    text-align: center;
    font-size: 26px;
    letter-spacing: 5px;
    cursor: pointer;
    display: inline-block;
}

.heading-service span {
    color: blue;
    display: inline-block;
    position: relative;
}

.heading-service span:before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: blue;
    transform: scaleX(0);
    /* Initially hide the line */
    transform-origin: left;
    /* Ensure the line scales from left to right */
    transition: transform 1.5s ease;/
}

.heading-service span:hover::before {
    transform: scaleX(1);
    /* Show the line on hover */
}


.stepper-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: left;
  margin-bottom: 20px;
  
}
.stepper-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: left;
  flex: 1;

  @media (max-width: 768px) {
    font-size: 12px;
  }
}
.stepper-item::before {
  position: absolute;
  content: "";
  border-bottom: 2px solid #ccc;
  width: 100%;
  top: 20px;
  left: -100%;
  z-index: 2;
}

.stepper-item .step-counter {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  color: black;
  border: 2px solid #c5c5c5;
  font-size: bold;
  margin-bottom: 6px;
  box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}
.stepper-item .step-counter:hover {
  background-color: #007bff; /* Change background color on hover */
  color: #fff; /* Change text color on hover */
  border-color: #0056b3; /* Change border color on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
  transform: scale(1.1); /* Slightly enlarge the counter on hover */
}

.stepper-item.completed::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #ccc;
  width: 100%;
  top: 20px;
  left: 10%;
  z-index: 3;
}

.stepper-item:first-child::before {
  content: none;
}
.stepper-item:last-child::after {
  content: none;
}

.step-contain-heading {
    position: relative;
    padding-right: 20px;
    cursor: pointer;
}

.step-contain-heading h3 {
    font-size: 16px;
    font-weight: bold;
}
.step-contain-heading p {
    font-size: 14px;
    text-align: justify;
}
/*
.service-card {
    
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 10px 10px rgba(0, 0, 0, 0.4) !important;
    cursor: pointer;
    background-color: whitesmoke !important;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 60px 20px rgba(0, 0, 0, 0.1);
}

.card-body-ser {
    padding: 20px;
}

.card-body-ser h4 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
}

.card-body-ser p {
    font-size: 14px;
    color: #000000;
}

.fa-laptop-code,
.fa-database,
.fa-shield-alt,
.fa-desktop,
.fa-network-wired,
.fa-cloud,
.fa-envelope,
.fa-code,
.fa-globe,
.fa-server,
.fa-tools {
    color: #1212afa8;
}

.fa-3x {
    font-size: 3rem;
    margin-bottom: 15px;
}

.text-center .col-md-4 {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .card-title {
        font-size: 18px;
    }

    .card-text {
        font-size: 14px;
    }
}
*/
#web-development {
    padding: 20px;
    height: auto;
    background: #f8f9fa;
    border-bottom: 1px solid black;
    border-top: 1px solid black;

}


/* exprerience section */

#success-wrappar {
    position: relative;
    background: rgb(227 227 227 / 58%);
}

.display-1 {
    font-size: 8rem;
    color: #D2B48C;
    /* Light brown color */
    font-weight: bold;
    margin-bottom: 0;
}

.lead {
    font-size: 1.25rem;
    color: #999;
    font-weight: 300;
}

h2 {
    font-size: 1.75rem;
    font-weight: 700;
}

.text-primary {
    color: #007bff;
}

.specialize-text {
    font-size: 1rem;
    color: #333;
    margin-top: 1rem;
}

.availability-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 2rem;
}


.services-section {
    text-align: center;
    padding: 2rem 0;
    background: #f8f9fa8c;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.service-card {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
    text-replace: 2s esay;
}
.icon-container {
    font-size: 2.5rem;
    color: #D2B48C;
    /* Light brown color */
}

.service-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #007bff;
}

.service-card p {
    font-size: 12px;
    color: #666;
    margin-top: 0.5rem;
}

.counters-section {
    padding: 2rem 0;
}

.counter-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.counter-card h1 {
    color: #007bff;
    /* Blue color for numbers */
    font-size: 3rem;
    font-weight: 700;
}

.counter-card p {
    color: #D2B48C;
    /* Light brown color */
    font-weight: 600;
    font-size: 1rem;
}

.counter-card h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
}


#networking-services {

    height: auto;
    background: #f8f9fa;
    border-bottom: 1px solid black;

}

#cloud-services {
    padding-top: 50px;
    height: auto;
    background: #f8f9fa;
    border-bottom: 1px solid black;
}

#data-recovery-backup {
    padding-top: 50px;
    height: auto;
    background: #f8f9fa;

}


.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    padding-top: 30px;
    color: white;

}

.section-subtitle {
    font-size: 16px;
    color: #6c757d;
    text-align: center;
    padding-bottom: 30px;
    color: white;
}

.accordion-button {
    font-size: 16px;
    font-weight: 400;
    color: #495057;
}

.accordion-button:not(.collapsed) {
    background-color: #007bff;
    color: #ffffff;
}

.accordion-body {
    font-size: 1rem;
    color: #495057;
    padding: 1rem;
}

.banner-service1,
.banner-service2,
.banner-service3 {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    text-align: center;
    box-shadow: 5px 5px 2px rgba(0, 0, 0, 0.3);
    padding: 5px;

}

.banner-service1 img,
.banner-service2 img,
.banner-service3 img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-service4 {
    position: relative;
    width: 85%;
    height: 80%;
    overflow: hidden;
    border-radius: 10px;
    text-align: center;
    box-shadow: 5px 5px 2px rgba(0, 0, 0, 0.3);
    padding: 5px;

}

.banner-service4 img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}