.banner{
    height: 90vwh;
    width: 100%;
    background-color: #3A5661;
    padding: 40px 30px;
    /* margin-top: 100px; */
   
}
.banner .banner-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    height: 100%;
}


/* solution */
.solution{
    margin-top: 50px;
    /* height: 100vh; */
    width: 100%;
    height: 80vh;
    @media screen and (max-width: 1200px) {
        height: auto;
    }
}   
.solution .solution-content{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80%;
}
.solution .solution-content .solution-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 1em;
    border: none;
    cursor: pointer;
    height: 80%;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  @media screen and (max-width: 1200px) {
    width: 30%;
    
  }

    @media screen and (max-width: 768px) {
        width: 80%;
    }
}

.solution .solution-content .solution-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(0, 0, 0, 0.45) 0px 10px 25px;
}

.solution-card h3{
    font-size: 18px;
    font-weight: 600;
    height: 20%;
}
.solution-text{
    font-size: 16px;
    height: 40%;
    
}
.solution .solution-content .solution-card img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
    object-position: center;
}


/* numbers */
.numbers{
    margin-top: 80px;
    /* height: 100vh; */
    width: 100%;
    height: 50vh;
    background-color: #3A5661;
    @media screen and (max-width: 768px) {
        height: auto;
    }
}
.numbers .numbers-content{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
    height: 30%;

}
.numbers .row{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75%;
}

.numbers .num{
    font-size: 40px;
    font-weight: bold;
    color: #f5f5f5;
    text-transform: uppercase;

}
.numbers .col p{
    font-size: 20px;
    font-weight: 600;
    color: #f5f5f5;
    text-transform: uppercase;
}


/* vision */

.vision{
    height: 70vh;
    width: 100%;   
    margin-top: 50px;
}
.vision .row .left h2{
    font-size: 30px;
    font-weight: 700;
    color: black;

}
.vision .left {
    display: flex;
    flex-direction: column;
    /* align-items: flex-start; */
    justify-content: space-around;
    height: 100%;
    gap: 10px;
}
.vision .left ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.bi-check{
    margin-right: 10px;
    ;
}
.vision .left ul li{
    font-size: 16px;
    font-weight: 500;
    color: black;
    margin-bottom: 10px;
    line-height: 1.5;
}
.vision .right{
    display: flex;
   
    height: 100%;
    flex-direction: column;
    justify-content: end;
    margin-top: 75px;
}
.vision .row .right h2{
    font-size: 30px;
    font-weight: 700;
    color: black;

}
.vision .right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* partner */

.partner {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
  overflow: hidden;
}

.partner h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}

.partner p {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 30px;
}

/* Container */
.partner-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 150px;
  margin-top: 40px;
}

/* Track */
.slider-track {
  display: flex;
  width: calc(150px * 12); /* 12 = number of slides */
  animation: scroll 30s linear infinite;
}

.slide {
  flex: 0 0 auto;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
}

.slide img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  transition: transform 0.3s ease, filter 0.5s ease;
}

.slide img:hover {
  transform: scale(1.05);
  /* filter: grayscale(0%); */
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive tweaks */
@media (min-width: 768px) {
  .slide {
    width: 180px;
  }

  .slider-track {
    width: calc(180px * 12);
  }
}

@media (min-width: 1024px) {
  .slide {
    width: 200px;
  }

  .slider-track {
    width: calc(200px * 12);
  }
}





/* form */
/* Basic Reset */
form {
  max-width: 400px;
  margin: 80px auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 12px;
  border: 2px solid #000000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}


.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #3A5661; /* Bootstrap primary color */
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
}

button[type="submit"] {
  width: 100%;
  padding: 0.75rem;
  background-color:#3A5661;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #084298;
}



/* media query */

@media screen and (max-width: 990px) {
    .solution .solution-content .solution-card {
        width: 80%;
    }
     .banner{
        height: auto;
    }
     .solution{
        height: auto;
    } 
    .numbers{
        height: auto;
    }
    .vision{
        height: auto;
    }
    .partner{
        height: auto;
    }
    
}