/* Global Reset */
* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #111;
  color: #fff;
}

/* Grid Background */
.grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: 30px 30px;
  background-image:
    linear-gradient(to right, rgba(111, 109, 109, 0.2) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(99, 98, 98, 0.2) 1px, transparent 1px);
  animation: gridMove 60s linear infinite;
  pointer-events: none;
}

/* Hero Section */
header {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.85);
  padding-top: 5rem;
}

.company-name {
  font-size: 3rem;
  color: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: 'Poppins', sans-serif; /* Use Poppins font here */
}

.company-name + hr {
  border: none;
  height: 3px;
  background-image: linear-gradient(90deg, #d2e0e0, #245c5f, #d2e0e0);
  margin: 15px auto;
  width: 20%;
}

.product-title {
  font-size: 3rem;
  background-image: linear-gradient(90deg,#f7fafa, #19ac63, #f7fafa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: pulseText 5s ease-in-out infinite;
}
.lead{
  margin-top: 30px;
}

@keyframes pulseText {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.btn-custom {
  background-color: #19ac63;
  border: none;
  color: white;
  background-image: linear-gradient(180deg, #19ac63, #04292b);
  background-size: 200% 200%;
  animation: slideGradient 5s linear infinite;
  transition: color 0.3s ease;
}

@keyframes slideGradient {
  0% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 100% 0%;
  }
}

/* About Section */
section {
  padding: 60px 20px;
  background-color: #fff;
  color: #111;
}

section:nth-of-type(even) {
  background-color: #f8f9fa;
}

section h2 {
  font-weight: 700;
  margin-bottom: 40px;
  background-image: linear-gradient(180deg, #19ac63, #032a16);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: slideTextGradient 5s linear infinite;
}

@keyframes slideTextGradient {
  0% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 100% 0%;
  }
}

/* Service Card Styling */
.card {
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  height: 100%;
}

.card-body {
  background-color: #232323;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #19ac63;
}

.card-text {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.5;
}

/* Service Cards Alignment */
.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service-col {
  flex: 1 1 calc(33.33% - 20px);
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .service-col {
    flex: 1 1 100%;
  }
}

/* Footer Section */
.footer {
  background-color: #000;
  color: #bbb;
  text-align: center;
  padding: 20px 10px;
}

/* Buttons and Links */
a, .btn-custom {
  color: #fff;
}
