/* heading */
.kineticwall-section {
    position: relative;
    width: 100%;
    background-color: #1e1d2d;
    color: black;
    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 */
.kineticwall-content {
    position: relative;
    z-index: 1;
}

/* Heading */
.kineticwall-content h2 {
    font-size: 64px;
    color: white;
    font-weight: bold;
    /*margin-bottom: 20px;*/
}
.kineticwall-content p {
    font-size: 16px;
    color: white;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Button Group */
.button-group {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    /* margin-top: 40px; */
    /* padding-top: 40px; */
}

/* Buttons */
.btn-orange,
.btn-white {
    background-color: white;
    color: black;
    font-weight: bold;
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-orange:hover,
.btn-white:hover {
    background-color: #f46706;
    /* light gray */
    color: rgb(255, 255, 255);
}

.para-section {
    background-color: #F0F8FF;
    /* Light grey-blue background */
    padding: 0px 80px;
    text-align: justify;
    font-family: 'Inter', sans-serif;
    padding-top: 40px;

}

.para-section1 {
    background-color: #E5EDF5;
    /* Light grey-blue background */
    padding: 0px 80px;
    text-align: justify;
    font-family: 'Inter', sans-serif;
    padding-top: 40px;

}
/** Scroll animation for both para-section and para-section1 */
.para-section,
.para-section1,.Our-Industries-Experties
 {
  /*opacity: 0;*/
  transform: translateY(80px);
  transition: all 0.8s ease-out;
}

.para-section.visible,  
.para-section1.visible ,.Our-Industries-Experties.visible{
  opacity: 1;
  transform: translateY(0);
}


.container {
    max-width: 100%;
    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;
    /*left: 60px;*/
    font-size: 16px;
    color: black;
    line-height: 1.6;
    margin-bottom: 10px;
    /*width: 980px;*/
}
.para-description strong {
    font-weight: bold;
}
.capabilities-list {
  margin-top: 10px;
  padding-left: 90px;
  list-style-type: disc;
  color: black;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.capabilities-list strong{
    font-weight: bold;
}
ol {
    padding-left: 90px;
    color: black;
    font-size: 1rem;
    line-height: 1.6;
    list-style-position: outside;
    /* safer */
    list-style-type: decimal;
    margin-bottom: 20px;
    /* ensures numbers show */

}

/* ol li {
  margin-bottom: 20px;
} */
ol li strong {
    font-weight: bold;
}

.underline {
    width: 1000px;
    height: 3px;
    background: linear-gradient(to right, #0077ff, #00c6ff, transparent 97%);
    /* Blue gradient line */
    margin: 0 auto;
    border-radius: 2px;
}

.Our-Industries-Experties {
  /* padding: 50px 20px; */
  text-align: center;
  /* background-color: #f9f9f9; optional for better contrast */
}

.Our-Industries-Experties-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.Our-Industries-Experties-box {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Our-Industries-Experties-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.Our-Industries-Experties-icon {
  width: 50px;
  height: auto;
  margin-bottom: 15px;
}

.Our-Industries-Experties-box h3 {
  font-size: 20px;
    font-family: 'Orbitron', sans-serif;
  margin-bottom: 12px;
  font-weight: 700;
  color: #111;
}

.Our-Industries-Experties-box p {
    font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .Our-Industries-Experties-box h3 {
    font-size: 18px;
  }

  .Our-Industries-Experties-box p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .Our-Industries-Experties {
    padding: 30px 10px;
  }

  .Our-Industries-Experties-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .Our-Industries-Experties-icon {
    width: 40px;
  }

  .Our-Industiries-Experties-box h3 {
    font-size: 17px;
  }

  .Our-Industries-Experties-box p {
    font-size: 13.5px;
  }
}
