body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  height: 100%;
}

.topnav {
    background: linear-gradient(135deg, #009DE0 5%, #252042 95%);
    overflow: hidden;
    position: sticky;
    top:0;
    z-index: 1000;
  }
  
  .navbar-text {
    float: left;
    padding: 14px 16px;
    font-size: 18px;
    color: white;
  }
  
  .topnav a {
    float: right;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  .topnav a.active {
    background-color: #009DE0 ;
    color: white;
  }
  
  .topnav .icon {
    display: none;
    color: white;
  }


  .services-section {
    text-align: center;
    padding: 50px 0;
}

.services-section h1 {
    font-size: 2.5rem;
    color: black;
    margin-bottom: 10px;
}

.services-section p {
    color: #777;
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns per row */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    width: 100%;
    background-color: white;
    padding: 0.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
}

/* .service-box:hover{
  background-color: #009DE0;
  color: black;
} */

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: white;
    margin: 0 auto 20px;
    position: relative;

}

.icon-circle::after {
    content: '';
    position: absolute;
    width: 0; /* Set width to 0 since border will define the line */
    height: 40px;
    border-left: 2px solidi black; /* Create a dotted line */
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px 5px #009DE0;
    
}

.icon-circle.red { background-color: #252042;  }
.icon-circle.purple { background-color: #252042; }
.icon-circle.blue { background-color: #252042; }
.icon-circle.orange { background-color: #252042; }
.icon-circle.green { background-color: #252042; }
.icon-circle.teal { background-color: #252042; }
.icon-circle.yellow { background-color: #252042; }
.icon-circle.pink { background-color: #252042; }
.icon-circle.brown { background-color: #252042; }

.service-box h3 {
    font-size: 20px;
    color: #009DE0;
    margin-bottom: 10px;
    margin-top: 5rem;
}



.service-box p {
    font-size: 1rem;
    color: black;
}

/* Add responsiveness */
@media (max-width: 768px) {
  .services-container {
      grid-template-columns: 1fr; /* Stack all service boxes in one column */
      gap: 20px;
  }

  .service-box {
      width: 90%;
      margin: 0 auto;
  }

  .topnav a.icon {
    float: right;
    display: block;
    color: white;
  }

  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }

  .topnav a {
    display: none;
}

.topnav.responsive .navbar-text {
    float: none;
    display: block;
    text-align: center;
    padding-bottom: 0;
}

.topnav.responsive a {
    display: block;
    text-align: left;
    float: none;
    padding: 14px;
}

.topnav a.icon {
    display: block;
}



.topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
}
}

@media (max-width: 900px){
  .services-container {
    grid-template-columns: 1fr; /* Stack all service boxes in one column */
    gap: 20px;
}

.service-box {
  width: 90%;
  margin: 0 auto;
  /* border: #009DE0 solid; */
  box-shadow: 0px 0px 0px 1px #009DE0;
}
}


  