/*
 * Styles for Services pages */

 .service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 100%;
  height: 200px; /* consistent height for all images */
  object-fit: cover; /* crops image nicely */
}

.service-card .card-content {
  padding: 16px;
  flex-grow: 1;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}


 .card-img-container {
  position: relative;
  overflow: hidden;
  height: 200px; /* Consistent height */
}

.card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image crops without distortion */
  transition: transform 0.4s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  text-align: center;
  font-size: 0.9rem;
  transition: bottom 0.4s ease;
}

.card:hover .service-overlay {
  bottom: 0;
}


.service-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}


.service-card:hover .service-overlay {
  opacity: 1;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #0d6efd;
}

.service-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 0.75rem;
}

/* About page Hero Section Styles*/
.hero {
      background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
      color: white;
      padding: 80px 0;
    }
    .value-icon {
      font-size: 2rem;
      color: #0d6efd;
    }
    .team-img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 8px;
    }

/* WhatsApp Floating Button Styles */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  animation: pulse 1.5s infinite;
}
/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float:hover {
  transform: scale(1.15);
  color: white;
}

/*career page styles*/
body {
      font-family: 'Segoe UI', sans-serif;
    }
    .hero {
      background: linear-gradient(120deg, #0d6efd 0%, #0dcaf0 100%);
      color: white;
      padding: 80px 0;
    }
    .hero h1 {
      font-size: 2.5rem;
    }

/*Blog floating share button styles*/
.social-share {
  margin-top: 2rem;
  padding: 1rem 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.social-share span {
  font-weight: bold;
  margin-right: 10px;
}

.share-btn {
  display: inline-block;
  margin-right: 10px;
  padding: 8px 14px;
  color: white;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.share-btn i {
  margin-right: 5px;
}

.share-btn.linkedin {
  background-color: #0077b5;
}

.share-btn.linkedin:hover {
  background-color: #005582;
}

.share-btn.x {
  background-color: #000000;
  color: white;
}

.share-btn.x:hover {
  background-color: #333333;
}

.share-btn.facebook {
  background-color: #3b5998;
}

.share-btn.facebook:hover {
  background-color: #2d4373;
}


.share-btn.whatsapp {
  background-color: #25D366;
}
.share-btn.whatsapp:hover {
  background-color: #1ebe5b;
}
.share-btn.reddit {
  background-color: #FF4500;
}
.share-btn.reddit:hover {
  background-color: #cc3700;
}
.share-btn.email {
  background-color: #7f7f7f;
}
.share-btn.email:hover {
  background-color: #5e5e5e;
}
