
.service-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
  text-align: center;
}
.bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.info-bar {
  font-size: 0.9rem;
  color: #6c757d;
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}
.info-bar div {
  padding: 5px 0;
}
/* Styling for Our Services Section */
.our-services {
margin: 30px auto;
}

.our-services h2 {
font-size: 2.5rem;
color: #333;
}

.our-services p {
font-size: 1.2rem;
color: #666;
margin-bottom: 30px;
}

.service-circle {
width: 150px;
height: 150px;
border-radius: 50%;
background-color:rgb(255, 255, 255);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 15px;
padding: 100px;
box-shadow: 0px 4px 6px rgba(36, 32, 32, 0.1);
transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
cursor: pointer;
text-align: center;
position: relative;
}

.service-circle .icon {
font-size: 3rem;
color: #007bff; /* Default color for icons */
}

.service-circle p {
margin: 8px 0 0;
font-size: 0.9rem;
color: #333;
}

.service-circle:hover {
transform: scale(1.2);
background-color:rgb(168, 197, 206);
box-shadow: 0px 8px 12px rgba(0, 123, 255, 0.6);
}

.service-circle:hover .icon {
color:#4a90e2; /* Darker blue on hover */
}

.service-circle:hover::after {
content: '';
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
box-shadow: 0 0 30px rgba(0, 123, 255, 0.7);
top: 0;
left: 0;
z-index: -1;
}
/* footer */

/* Footer Styles */
.footer {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  background-color: #2c3e50;
  color: white;
  flex-wrap: wrap;
}

.footer-section {
  width: 22%;  /* Adjust width for each section */
  margin: 10px;
  padding: 20px;
  box-sizing: border-box;
  border-right: 1px solid #34495e;
}

.footer-section h4 {
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
}

.service-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  text-align: center;
}

.service-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.features ul, .support ul {
  list-style-type: none;
  padding: 0;
}

.features li, .support li {
  margin-bottom: 10px;
  text-align: center;
}

.features li a, .support li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.features li a:hover, .support li a:hover {
  color: #3498db;
}

.social-icons {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.social-icons a {
  margin: 0 10px;
  display: inline-block;
}

.social-icons img {
  width: 30px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.contact-us p {
  font-size: 14px;
  text-align: center;
  color: #bdc3c7;
}

/* For Responsiveness */
@media (max-width: 768px) {
  .footer-section {
      width: 48%;
  }
}

@media (max-width: 480px) {
  .footer-section {
      width: 100%;  /* Stack sections for mobile */
  }
}
