/* *! MAIN */
*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.fusion-row {
    background-color: #1b202d;
}
.fusion-row {
    color: aliceblue;
    font: bold;
}

.text-gray-600 body-font{
    background-color: #1b202d;
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 28%; /* This value maintains a 16:9 aspect ratio */
    /* padding-bottom: 31.58%; This value maintains a 16:9 aspect ratio */
  }
  
  /* Style the iframe to fill its container */
  .iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  /* Media Query for responsiveness */
  @media (max-width: 768px) {
    .iframe-container {
      padding-bottom: 85px; /* For 9:16 aspect ratio on smaller screens */
      margin-bottom: 50px;
    }
  }
/* *! END */

/* *todo For Bright Background */

.container_service {
  max-width: 100%;
  padding: 25px;
}

h1 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.col {
  flex-basis: 22%;
  margin: 10px;
  text-align: center;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.5s ease-out;
}

.top-image{
  align-items: center;
  padding-left: 32%;
}

.col h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #555;
}

.col ul {
  list-style: none;
  padding-left: 0;
}

.col ul li {
  margin-bottom: 5px;
}

.col ul li a {
  text-decoration: none;
  color: #007bff;
  transition: color 0.3s ease;
}

.col ul li a:hover {
  color: #0056b3;
}

/* .header-container {
  background: linear-gradient(135deg, #f5f5f5, #ffffff);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #e2e8f0;
  padding: 10px 20px;
} */

.copyrightText{
  width: 100%;
  /* background: #181818; */
  background: #1b202d;
  padding: 8px 100px;
  text-align: center;
  color: #ffffff;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  .col {
    flex-basis: 45%;
  }
}

@media screen and (max-width: 768px) {
  .col {
    flex-basis: 90%;
  }
}
