
/* Styling for the entire services section */
.services-section {
    padding-top:30px;
}

/* Service card container */
.services-section .service-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    padding: 20px;
    position: relative;
}

/* Hover effect for service card */
.services-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Image container for the service card */
.services-section .service-image {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

/* Styling for service image */
.services-section .service-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Hover animation for service image */
.services-section .service-card:hover .service-image img {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Service title styling */
.services-section .service-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 15px 0 10px;
}

/* Service description styling */
.services-section .service-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-section .service-card {
        padding: 15px;
    }
}



.service-round-element {
    margin-left: 36%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: rgba(0, 204, 55, 0.7);
    position: relative; }
    .service-round-element:before {
      content: '';
      position: absolute;
      top: 0px;
      left: 0px;
      width: 150px;
      height: 150px;
      -webkit-transform: translateX(-15px) translateY(-15px);
      transform: translateX(-15px) translateY(-15px);
      border-radius: 50%;
      z-index: -1;
      background-color: rgba(0, 204, 55, 0.25); }
    .service-round-element:after {
      content: '';
      position: absolute;
      top: 0px;
      left: 0px;
      width: 180px;
      height: 180px;
      -webkit-transform: translateX(-30px) translateY(-30px);
      transform: translateX(-30px) translateY(-30px);
      border-radius: 50%;
      z-index: -2;
      background-color: rgba(0, 204, 55, 0.15);
      -webkit-animation: pulse 2s infinite;
      animation: pulse 2s infinite; }



div.col-lg-9.col-12.flex-col-center.order-2.order-lg-0,div.col-lg-9.col-12.flex-col-center.col{
     background: #02001c !important;
}

div.col-lg-3.col-md-4.footer-col.flex-col-center{
    background: #02001c !important;
}





   