:root {
  --primary-color: #4a90e2;
  --secondary-color: #f8f9fa;
  --accent-color: #2c5aa0;
  --text-primary: #2c3e50;
  --text-secondary: #6c757d;
  --border-color: #e9ecef;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
}

.services-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  padding: 80px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-badge {
  background: var(--primary-color);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-block;
  border: none;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0;
  line-height: 1.3;
}

.service-card {
  border: none;
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
  overflow: hidden;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card .card-img-top {
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.service-card:hover .card-img-top {
  transform: scale(1.05);
}

.service-card .card-body {
  padding: 30px;
}

.service-card .card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.service-card .card-text {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.9rem;
  position: relative;
  padding-left: 25px;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 0.8rem;
}

.service-card-overlay {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary-color);
  color: white;
  padding: 10px 15px;
  border-radius: 0 15px 0 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .service-card .card-body {
    padding: 20px;
  }

  .services-section {
    padding: 60px 0;
  }
}


/* WhatsApp Css */

.whatsapp-float {
  position: fixed;
  left: 25px;
  bottom: 25px;
  z-index: 1055;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.whatsapp-btn {
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: box-shadow 0.2s;
  cursor: pointer;
  outline: none;
}
.whatsapp-btn:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  background: #1ebe57;
}
.whatsapp-popup {
  background: #fff;
  color: #222;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  padding: 18px 22px 18px 18px;
  margin-bottom: 12px;
  max-width: 260px;
  font-size: 1rem;
  display: none;
  align-items: center;
  animation: fadeInWhatsapp 0.4s;
}
@keyframes fadeInWhatsapp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.whatsapp-popup .close-popup {
  background: none;
  border: none;
  color: #888;
  font-size: 1.2rem;
  margin-left: 10px;
  cursor: pointer;
}


/* Blog Section Enhancements */
.blog-section .shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  transition: all 0.3s ease;
}

.blog-section .shadow-sm:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-2px);
}

.blog-section .btn-primary {
  background: linear-gradient(45deg, #007bff, #0056b3);
  border: none;
  transition: all 0.3s ease;
}

.blog-section .btn-primary:hover {
  background: linear-gradient(45deg, #0056b3, #004085);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.blog-section .rounded-circle {
  border: 2px solid #f8f9fa;
}

.blog-section .text-muted {
  font-size: 0.875rem;
}
