
  .home-sec-wrapper {
    position: relative;
    width: 100%;
    height: 110vh; /* Set the height as needed */
    background-image: url('img/bg.webp');
    background-size: cover;
    background-position: center;
    color: black;
    text-align: center;
    display: flex;
    justify-content: center;
}
  .title-head {
    font-size: 60px;
    line-height: 1.2;
    text-align: left;
  }
  .title-two {
    font-size: 40px;
    line-height: 1.2;
    text-align: left;
  }
  .text-animation {
    font-size: 16px;
    opacity: 1;
    animation: fadeInAndGrow 3s ease forwards;;
}

@keyframes fadeInAndGrow {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.home-sec-two {
  background-color: #fff;
  background-size: 100%;
  width: 100vw;
}

.card-body {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100vh; */
  margin: 0;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  /* margin-top: 20px; */
  padding:40px;
}

.second-container {
  display: flex;
  flex-wrap: wrap;
  padding:0px 80px 20px 80px;
}

.card {
  text-align: center;
  padding: 16px;
  width: 300px;
  border: none;
  overflow: hidden;
  height: 340px;
}

.card img {
  display: block;
  margin: 0 auto;
  width: 90px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.card h2 {
  margin-top: 34px;
  font-size: 1.5rem;
}
.card p {
  /* margin-top: 4px; */
}
.card a {
  background-color: white;
  margin-top: auto;
    padding: 4px;
    color: black;
    border: 2px solid black;
    border-radius: 20px;
    cursor: pointer;
}

.card a:hover {
  border: 2px solid #0056b3;
  color: #0056b3; 
}

.home-sec-three {
  position: relative;
  width: 100%;
  height: 50vh; 
  background: url('img/three-bg.webp') ;
  background-size: cover;
  background-position: center;
  color: black;
  text-align: center;
  display: flex;
  justify-content: center;
  position: relative;

}
.home-sec-three::before {
  position: absolute;
  top:0;
  left: 0;
content: "";
background-color: #07152562;
height: 100%;
width: 100%;
}

.text-overlay {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  text-align: center;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 74.25%; /* 16:9 aspect ratio */
}

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

.home-sec-four {
  position: relative;
  width: 100%;
  height: 50vh; 
  background: url('img/four.webp') ;
  background-size: cover;
  background-position: center;
  color: black;
  text-align: center;
  display: flex;
  justify-content: center;
  position: relative;

}
.home-sec-four::before {
  position: absolute;
  top:0;
  left: 0;
content: "";
background-color: #07152562;
height: 100%;
width: 100%;
}

.image-container {
  max-width: 18%; 
  text-align: center;
}

img {
  max-width: 100%; 
  height: auto; 
}

.home-sec-five {
  position: relative;
  width: 100%;
  height: 50vh; 
  background: url('img/five.webp') ;
  background-size: cover;
  background-position: center;
  color: black;
  text-align: center;
  display: flex;
  justify-content: center;
  position: relative;

}
.home-sec-five::before {
  position: absolute;
  top:0;
  left: 0;
content: "";
background-color: #07152562;
height: 100%;
width: 100%;
}

.home-sec-six {
  position: relative;
  width: 100%;
  height: 50vh; 
  background: url('img/six.webp') ;
  background-size: cover;
  background-position: center;
  color: black;
  text-align: center;
  display: flex;
  justify-content: center;
  position: relative;

}
.home-sec-six::before {
  position: absolute;
  top:0;
  left: 0;
content: "";
background-color: #07152562;
height: 100%;
width: 100%;
}








.home-sec-nine {
  background-color: #f7f7f7;
  background-size: 100%;
  width: 100vw;
  padding: 40px;
}

.card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.card1 {
  width: 400px;
  background-color: white;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.card1 img {
  max-width: 100%;
  height: auto;
}

.card1-title {
  font-size: 1.1rem;
  margin-top: 10px;
}

.card1-list {
  list-style-type: disc;
  /* margin: 10px 0; */
  padding-left: 20px;
}

.card1-list li {
  margin-bottom: 5px;
}

.card1 a {
  background-color: white;
  margin-top: auto;
    padding: 0px 16px 0px 16px;
    color: black;
    border: 2px solid black;
    border-radius: 20px;
    cursor: pointer;
}

.card1 a:hover {
  border: 2px solid #0056b3;
  color: #0056b3; 
}

.button-top {
  border: none;
  border-radius: 4px;
  padding: 6px 22px 6px 22px;
  color: white;
  font-weight: bolder;
  background-color: red;
  transition: background-color 0.3s, font-size 0.3s;
}

.button-top:hover {
  background-color: darkred; /* Change color on hover */
  font-size: 110%; /* Increase font size on hover */
}

.btn-bg {
  background-color: #f1f1f1;
  padding: 30px;
}