@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --bg-color: #141414;
    --video-bg-color: #201f1f;
    --font-color: #ffffff;
    --theme-color: #ffa424;
}

body {
    background-color: var(--bg-color);
    color: var(--font-color);
    font-family: "Poppins";
}

header {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    background-color: var(--bg-color);
}

header .navbar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 25px;
}

header .navbar .options {
    display: flex;
    align-items: center;
    gap: 30px;
}

header .navbar .options a {
    color: var(--font-color);
    text-decoration: none;
    transition: 0.2s;
}

header .navbar .options a:hover {
    color: var(--theme-color);
    cursor: pointer;
    transition: 0.2s;
}

header .navbar .options .texts {
    display: flex;
    gap: 15px
}


header .navbar .options .icons {
    display: flex;
    gap: 5px
}

.home {
    position: relative;
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url("assets/kt_cover.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: blur(8px);
}

.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: 0;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
    animation: float-up linear forwards;
    image-rendering: pixelated;

}

@keyframes float-up {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-50vh);
        opacity: 0;
    }
}

.videos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 25px 0;
}

.videos .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px 10%;
}

.videos .title {
    font-size: 40px;
  margin-bottom: 10px;
  color: var(--theme-color);
  text-shadow: 0 0 10px var(--theme-color);
}

.videos .container .video {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--video-bg-color);
    border-radius: 15px;
    border: solid 1px #201f1f4f;
    padding: 10px;
}

.videos .container .video img {
    border-radius: 10px;
}

    .videos .container {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
    }
    .videos .video {
      cursor: pointer;
      flex: 1 1 calc(33% - 10px);
      max-width: 300px;
    }
    .videos .video img {
      width: 100%;
      border-radius: 10px;
      transition: transform 0.2s ease;
    }
    .videos .video img:hover {
      transform: scale(1.05);
    }

    .video-popup {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.8);
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }
    .video-popup.active {
      display: flex;
    }
    .video-popup .content {
      position: relative;
      width: 80%;
      max-width: 800px;
      background: #000;
      border-radius: 10px;
      overflow: hidden;
    }
    .video-popup iframe {
      width: 100%;
      height: 450px;
    }
    .video-popup .close {
      position: absolute;
      top: 10px; right: 15px;
      font-size: 28px;
      cursor: pointer;
      color: #fff;
    }

.reviews {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 25px 0;
}

.reviews .container {
    display: flex;
    gap: 30px;
    padding: 20px 10%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.reviews .title {
    font-size: 40px;
}

.reviews .container .review {
    display: flex;
    flex-direction: column;
    background-color: var(--video-bg-color);
    border-radius: 15px;
    border: solid 1px #201f1f4f;
    padding: 10px;
    max-width: 250px;
    max-height: 150px
}

.reviews .container .review .description {
    display: flex;
    padding: 0;
    margin: 0;
}

.reviews .container .review .description p {
    display: -webkit-box;
    -webkit-line-clamp: 10;       
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

.reviews .container .review .profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviews .container .review .profile img {
    border-radius: 50%;
}

.reviews .container .reviews .profile img {
    border-radius: 15px;
    width: 50px;
    height: 50px;
}

.features {
  text-align: center;
  padding: 50px 20px 30px;
}

.features .title {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--theme-color);
  text-shadow: 0 0 10px var(--theme-color);
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature {
  background: #1a1a1a;
  padding: 25px 20px;
  border-radius: 15px;
  width: 250px;
  color: #fff;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 10px rgba(255, 208, 0, 0.2);
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(246, 255, 0, 0.7);
}

.feature .icon {
  font-size: 50px;
  color: var(--theme-color);
  margin-bottom: 15px;
  text-shadow: 0 0 10px var(--theme-color), 0 0 20px var(--theme-color);
  transition: transform 0.3s, text-shadow 0.3s;
}

.feature:hover .icon {
  transform: scale(1.2) rotate(10deg);
  text-shadow: 0 0 20px var(--theme-color), 0 0 30px var(--theme-color);
}

.feature h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
  color: #ccc;
}
