/* home-1 */
.diagonal-bg-blue {
  background-color: #2483C5;
  clip-path: polygon(41% 0, 100% 0, 100% 100%, 20% 100%);
  z-index: -2;
  width: 80%;
}
.diagonal-bg-pink {
  width: 41%;
  background-color: #E1709F;
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}
.hero-content {
  color: white;
  font-size: 7.5rem;
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  line-height: 1.15;
  position: absolute;
  left: 5%;
  text-align: right;
}

.logo-container {
  max-width: 200px;
  margin-bottom: 35px;
}
.btn-learn-more {
  background-color: #2980b9;
  color: white;
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  width: fit-content;

}
.btn-learn-more:hover {
  color: white !important;
  background: linear-gradient(90deg, #54a6ff -13.29%, #00559a 110.76%);
}
.home-1 .description{
  max-width: 305px;
}
#video-popup {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

#video-popup-content {
  position: relative;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
#close-btn {
  position: fixed !important;
  top: 10px;
  right: 10px;
  font-size: 19px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  padding: 7px;
  width: 40px;
  height: 46px;
}

video {
  width: 70vw; 
  height: 70vh;
}

.diagonal-bg-pink{
  color:#2483C5
}
/* home-2 + 3 */
.diagonal-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 100%;
  background-color: #2483C5;
  clip-path: polygon(0 0, 46% 0, 0 53%);
  z-index: -1;
}
.diagonal-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20%;
  height: 70%;
  background-color: #2483C5;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  z-index: -1;
}
.pink-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10%;
  height: 37%;
  background-color: #E1709F;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  z-index: 1;
}
.main-title {
  color: #333;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 24px !important;
}
.description {
  margin-bottom: 0rem;
}
.service-card {
  border: 1px solid #e9ecef;
  border-radius: 5px;
  padding: 10px 15px;
  text-align: center;
  height: 100%;
  background-color: white;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 4px 0px #0000000D;
}
.home-3 .service-card{
  min-height: 250px
}
.service-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.service-icon {
  color: #1a75bb;
  font-size: 3rem;
  margin-bottom: 20px;
}
.service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}
.service-card .service-des{
  display: none;
  font-size: 16px;
  padding-top: 10px;
}
.service-card:hover .service-des{
  display: block;
}
.service-card:hover img{
  height: 80px !important;
}
.service-card:hover{
  background: #F4FBFD;
  box-shadow: 0px 4px 4px 0px #0000000D;
  border: 1px solid #2483C5
}
.btn-next:hover{
  font-weight: 500;
  color: #00a3ff
}
.btn-next span{
  margin-left: 12px;
  margin-top: 3px;
  font-size: 12px;
  margin-right: 4px;
}

.tabs div{
  width: 76px;
  height: 5px; 
  margin-right: 10px; 
  border-radius: 2px
}
@media screen and (max-width: 768px) {
  /* home-1 */
  .home-1 {
    padding-top: 70px;
  }
  .home-1 .description{
    max-width: 200px;
    font-size: 15px;
  }
  .btn-learn-more{
    padding: 8px 6px;
    font-size: 14px;
  }
  .logo-container {
    margin-bottom: 32px;
    display: flex;
    align-items: end;
  }
  .logo-container img {
    height: 50%;
  }

  .diagonal-bg-blue{
    width: 45%;
  }
  .diagonal-bg-pink{
    width: 20%;
  }
  .tabs div{
    width: 40px;
  }
  .hero-content {
    display: none;
    color: black;
    top: unset;
    left: unset;
    transform: unset;
    font-size: 24px;
  }
  .service-card img{
    width: 30%;
  }
  .service-card {
    min-height: unset !important;
  }
  .diagonal-bg::before{
    width: 10%;
  }
  .diagonal-bg::after{
    width: 10%;
  }
  .pink-accent {
    width: 5%;
  }
}