@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.nav{
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: 100px;
    line-height: 100px;
    background: linear-gradient(rgba(39,39,39, 0.6), transparent);
    z-index: 100;
  }
  .nav-logo p{
    color: white;
    font-size: 25px;
    font-weight: 600;
  }
  .nav-menu ul{
    display: flex;
  }
  .nav-menu ul li{
    list-style-type: none;
  }
  .nav-menu ul li .link{
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    padding-bottom: 15px;
    margin: 0 10px;
  }
  .link:hover, .active{
    border-bottom: 2px solid #fff;
    cursor:pointer;
  }
  .nav-button .btn{
    width: 130px;
    height: 40px;
    background: #3E8EDE;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: .3s ease;
    font-size: 20px;
    font-weight: bold;
  }
  .btn:hover{
    background: rgba(255, 255, 255, 0.3);
    cursor:pointer;
  }

  .nav-logo {
      display: flex;
      align-items: center; /* Align items vertically */
  }

  .nav-logo img {
      width: 70px; /* Adjust the width of the logo as needed */
      margin-right: 10px; /* Add some spacing between the logo and text */
      margin-top: -10px;
  }






button{
    background-color: transparent;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    font-size: 15px;
    transition:.4s;
}




.video-container {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   overflow: hidden;
   z-index: -1; /* Move the video behind other content */
}

.video {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
}



.services h1 {
    color: transparent;
    font-size: 5rem;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: transparent;
    letter-spacing: 4px;
    background: linear-gradient(9deg, rgb(244, 251, 244) 0%, rgb(85, 73, 121) 41%, rgb(37, 1, 41) 100%);
    background-clip: text;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    text-align: center; /* Center the text */
    width: 100%; /* Ensure full width */
    padding-top: 50px;
}

.services h1 span {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-60%);
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #6d0c0c;
    animation: anim 5s linear infinite;
}

@keyframes anim {
  95%{
      opacity:1;
  }
  100%{
       opacity:0;
       left:88%;
    }
}
.container {
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start; /* Align cards at the top of the container */
}

.card {
    height: 700px;
    width: 400px;
    background-color: transparent;
    padding: 4% 8%;
    border: 0.2px solid rgba(2, 1, 50, 0.2);
    border-radius: 10px;
    transition: background-color 0.6s;
    margin: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-color: #02821e;
}

.card:hover {
    background-color: #020b22;
    transform: translateY(-8px);

}

.card h2 {
    color: beige;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 20px;
}

.card p {
    text-align: left-center;
    font-size: 25;
    width: 100%;
    margin: 12px 0;
    color: whitesmoke;
}
.card i{
    color:#72e2ae;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 4.8rem;
}
.card:hover i{
    color:#00ff37;
}


.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

@media screen and (max-width: 900px) {
    .card {
        width: calc(50% - 40px);
    }
}



footer {
    background-color: black;
    color: white;
    padding: 20px;
    position: relative; /* Required for absolute positioning */
}

.footer-content {
    position: relative; /* Change to relative positioning */
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo {
    position: absolute;
    top: 70px; /* Adjust the top position to move the company logo upwards */
    left: 40%; /* Adjust the left position to center the logo horizontally */
    transform: translateX(-50%);
}

.company-logo img {
    width: 200px !important; /* Adjust size as needed */
    height: auto !important; /* Maintain aspect ratio */
}

.company-details {
    text-align: left;
    margin-top: 80px; /* Adjust the margin-top as needed */
}

.social-media {
    position: absolute;
    top: 0;
    left: 0;
}

.social-icons {
    list-style: none;
    padding: 10;
    margin-left: 40px;
    margin-top: -120px;
}

.social-icons li {
    display: inline-block;
    margin: 0 10px;
}

.social-media img {
    width: 30px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    margin-top: 100px;
}

.slogan {
    position: absolute; /* Position the slogan relative to the parent company-logo */
    bottom: -40px; /* Adjust the distance from the logo */
    left: 35%; /* Center the text horizontally */
    transform: translateX(-15%); /* Center the text horizontally */
    color: white;
    font-weight: bold;
}

.copyright {
    text-align: center;
    margin-top: 20px;
}


.terms-link {
    text-decoration: none;
    color: white; /* Choose your desired link color */
    margin-right: 20px; /* Adjust the spacing between the link and the text */
}

