/* heading */
.product-section {
  position: relative;
  width: 100%;
  background-color: #1e1d2d;
  /*color: white;*/
  padding: 200px 20px;
  text-align: center;
  overflow: hidden;
}

/* Background video styles */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Covers upper part only */
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  /* Optional: adjust visibility */
  pointer-events: none;
  /* Makes sure clicks go to buttons */
}

/* Content container */
.product-content {
  position: relative;
  z-index: 1;
    font-family: 'Inter', sans-serif;
}

/* Heading */
.product-content h2 {
  font-size: 64px;
  color: white;
  font-weight: bold;
  margin-bottom: 40px;
}

/* Heading */
.product-content p {
    font-family: 'Inter', sans-serif;
  font-size: 30px;
  color: white;
  font-weight: bold;
  margin-bottom: 0px;
  /* position: absolute;
  left: 70px; */
}



.para-section {
  background-color: #F0F8FF;
  /* Light grey-blue background */
  padding: 0px 100px;
  text-align: justify;
    font-family: 'Inter', sans-serif;
  padding-top: 40px;

}

.para-section1 {
  background-color: #E5EDF5;
  /* Light grey-blue background */
  padding: 0px 100px;
  text-align: justify;
    font-family: 'Inter', sans-serif;
  padding-top: 40px;

}

.container {
  max-width: 990px;
  margin: 0 auto;
}

.para-title {
  width: 100%;
  font-size: 32px;
  font-weight: 800;
  color: black;
  /* Deep navy/black */
  margin-bottom: 20px;
  text-align: center;
}

.para-description {
    position: relative;
  font-size: 16px;
  color: black;
  line-height: 1.6;
  margin-bottom: 30px;
}

.underline {
  width: 300px;
  height: 3px;
  background: linear-gradient(to right, #0077ff, #00c6ff);
  /* Blue gradient line */
  margin: 0 auto;
  border-radius: 2px;
}

body {
  margin: 0;
    font-family: 'Inter', sans-serif;

  background-color: #f2f7fd;
  color: #222;
}
/* ==========================
   Implementations Section
========================== */
.implementations {
  text-align: center;
  padding: 60px 20px;
  background-color: #f8fafc;
}

.implementations h2 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  color: #000;
  margin-bottom: 40px;
  text-align: center;
}

/* ==========================
   Grid Layout
========================== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(460px, 2fr));
  gap: 30px;
  justify-items: center;
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto;
}

/* ==========================
   Card Styling
========================== */
.card {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
  gap: 20px;
  width: 100%;
  max-width: 520px;
  transition: all 0.3s ease;
}

/* Hover effect */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* ==========================
   Card Image
========================== */
.card img {
  width: 130px;
  height: 110px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.card img:hover {
  transform: scale(1.05);
}

/* ==========================
   Card Content
========================== */
.card-content {
  flex: 1;
}

.card h3 {
  margin: 0 0 8px;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: bold;
  color: #000;
}

.card p {
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.5;
  margin-bottom: 15px;
  color: #333;
  text-align: justify;
}

.highlight {
  font-weight: bold;
  color: #000;
}

/* ==========================
   Card Button
========================== */
.card .btn-card {
  display: inline-block;
  padding: 6px 12px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 8px;
  font-weight: bold;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 2px 2px 0 #888;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #000;
}

.card .btn-card:hover {
  background-color: #121c44;
  color: white;
  border-color: #121c44;
  box-shadow: none;
}

/* ==========================
   Responsive Breakpoints
========================== */

/* Tablets (≤1024px) */
@media (max-width: 1024px) {
  .grid {
    gap: 24px;
  }

  .card {
    max-width: 480px;
    height: auto;
  }

  .card img {
    width: 120px;
    height: 100px;
  }

  .card h3 {
    font-size: 18px;
  }
}

/* Mobiles (≤768px) */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
    max-width: 40%;
  }

  .card-content {
    text-align: center;
  }

  .card img {
    width: 70%;
    height: auto;
    margin-bottom: 15px;
  }

  .card p {
    text-align: center;
  }

  .card .btn-card {
    font-size: 12px;
    padding: 5px 10px;
  }
}

/* Extra Small Devices (≤480px) */
@media (max-width: 480px) {
  .implementations {
    padding: 40px 10px;
  }

  .card {
    padding: 12px;
    gap: 12px;
  }

  .card img {
    width: 80%;
    height: auto;
  }

  .card h3 {
    font-size: 16px;
  }

  .card p {
    font-size: 13px;
  }

  .card .btn-card {
    font-size: 12px;
    padding: 4px 8px;
  }
}