
/*whatsapp button fixed*/
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;        /* 👈 LEFT SIDE */
  width: 55px;
  height: 55px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  line-height: 55px;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:hover {
  color: #fff;
  background-color: #20ba5a;
}




/*our core services*/

section#Services {
    text-align: center;
}


/* General container styling */
.core.service {
  background: #fff; /* Clean white background */
  border-radius: 12px; /* Smooth rounded corners */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Soft shadow */
  padding: 10px 15px;
  margin: 5px;
  text-align: center;
}

/* Image Styling */
.core.service img {
  width: 100%;
    height: 210px;
  /*object-fit: contain;*/
  margin-bottom: 20px;
}

/* Heading Styling */
.core.service h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #1a1a1a;
  font-weight: 600;
  position: relative;
}

/* Add a nice underline animation */
.core.service h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #007BFF;
  margin: 8px auto 0;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.core.service:hover h3::after {
  width: 80px;
}

/* List Styling */
.core.service ul {
  list-style-type: none;
  padding: 0;
  text-align: left;
}

.core.service ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  color: #555;
}

/* Custom bullet */
.core.service ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #007BFF;
  font-weight: bold;
}

/* Hover animation for card */
.core.service:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}



/* Responsive adjustments */
@media (max-width: 768px) {
  .core.service {
    display: block;
    max-width: 90%;
    margin: 20px auto;
  }
}



/*footer css*/
span.sitename {
    font-size: 30px;
    color: wheat;
}

