* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #fff !important;
}
/* Banner Section */
.banner {
  position: relative;
  background-image: url("../img/web/banner-pattern.png");
  overflow: hidden;
  padding: 80px 0;
  min-height: 700px;
  display: flex;
  align-items: center;
}
.banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 10;
}
.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.banner-text {
  flex: 1;
  color: white;
  animation: fadeInLeft 0.8s ease;
  opacity: 0;
  animation-fill-mode: forwards;
}
.banner-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}
.banner-subtitle {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}
.banner-description {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.9;
}
.banner-button {
  background-color: white;
  border: none;
  padding: 8px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease;
  opacity: 0;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(5, 202, 148, 0.3);
}
.arrow-right {
  margin-left: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.banner-button:hover .arrow-right {
  margin-left: 12px;
}
.banner-stats {
  display: flex;
  gap: 40px;
  animation: fadeInUp 0.8s ease;
  opacity: 0;
  animation-delay: 0.4s;
  animation-fill-mode: forwards;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stat-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
.stat-text {
  font-size: 14px;
  opacity: 0.9;
}
/* Banner Cards */
.banner-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  animation: fadeInRight 0.8s ease;
  opacity: 0;
  animation-fill-mode: forwards;
}
.card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  padding: 10px;
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.card-1 {
  animation: slideInUp 0.6s ease;
  opacity: 0;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
}
.card-2 {
  animation: slideInUp 0.6s ease;
  opacity: 0;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
}
.card-3 {
  animation: slideInUp 0.6s ease;
  opacity: 0;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
.card-4 {
  animation: slideInUp 0.6s ease;
  opacity: 0;
  animation-delay: 1.2s;
  animation-fill-mode: forwards;
}
.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* SEO Section */
.seo {
  padding: 80px 0;
  background-color: white;
}
.seo-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.seo-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #333;
  animation: fadeInUp 0.8s ease;
  opacity: 0;
  animation-fill-mode: forwards;
}
.seo-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease;
  opacity: 0;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
}
.seo-logos {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
}
.logo-item {
  opacity: 0.7;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease;
  opacity: 0;
  animation-fill-mode: forwards;
}
.logo-item:hover {
  opacity: 1;
  transform: translateY(-5px);
}
.logo-item img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
}
/* Animation delays for logo items */
.logo-item:nth-child(1) { animation-delay: 0.3s; }
.logo-item:nth-child(2) { animation-delay: 0.4s; }
.logo-item:nth-child(3) { animation-delay: 0.5s; }
.logo-item:nth-child(4) { animation-delay: 0.6s; }
.logo-item:nth-child(5) { animation-delay: 0.7s; }
.logo-item:nth-child(6) { animation-delay: 0.8s; }
.logo-item:nth-child(7) { animation-delay: 0.9s; }
.logo-item:nth-child(8) { animation-delay: 1s; }
.logo-item:nth-child(9) { animation-delay: 1.1s; }
.logo-item:nth-child(10) { animation-delay: 1.2s; }
.logo-item:nth-child(11) { animation-delay: 1.3s; }
.logo-item:nth-child(12) { animation-delay: 1.4s; }
.logo-item:nth-child(13) { animation-delay: 1.5s; }
.logo-item:nth-child(14) { animation-delay: 1.6s; }
.logo-item:nth-child(15) { animation-delay: 1.7s; }
.logo-item:nth-child(16) { animation-delay: 1.8s; }
.logo-item:nth-child(17) { animation-delay: 1.9s; }
.logo-item:nth-child(18) { animation-delay: 2s; }
.logo-item:nth-child(19) { animation-delay: 2.1s; }
.logo-item:nth-child(20) { animation-delay: 2.2s; }
.logo-item:nth-child(21) { animation-delay: 2.3s; }
.logo-item:nth-child(22) { animation-delay: 2.4s; }
.logo-item:nth-child(23) { animation-delay: 2.5s; }
.logo-item:nth-child(24) { animation-delay: 2.6s; }
.logo-item:nth-child(25) { animation-delay: 2.7s; }
/* Responsive design */
@media (max-width: 1200px) {
  .seo-logos {
    grid-template-columns: repeat(8, 1fr);
    gap: 25px;
  }
}
@media (max-width: 1024px) {
  .seo {
    padding: 60px 0;
  }
  .seo-logos {
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    padding: 50px 20px;
  }
  .seo-title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .seo-logos {
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    padding: 40px 15px;
  }
  .seo-title {
    font-size: 24px;
  }
  .seo-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .logo-item img {
    max-height: 30px;
  }
}
@media (max-width: 480px) {
  .seo-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 30px 10px;
  }
  .seo-title {
    font-size: 20px;
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive Design */
@media (max-width: 1200px) {
  .banner-content {
    gap: 40px;
  }
  .banner-title {
    font-size: 42px;
  }
  .banner-subtitle {
    font-size: 32px;
  }
  .banner-cards {
    height: 420px;
    gap: 15px;
  }
}
@media (max-width: 1024px) {
  .banner-content {
    flex-direction: column;
    gap: 50px;
  }
  .banner-text {
    text-align: center;
  }
  .banner-stats {
    justify-content: center;
    gap: 30px;
  }
  .banner-cards {
    width: 100%;
    max-width: 600px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .banner {
    padding: 60px 0;
    min-height: 600px;
  }
  .banner-container {
    padding: 0 20px;
  }
  .banner-title {
    font-size: 36px;
  }
  .banner-subtitle {
    font-size: 28px;
  }
  .banner-description {
    font-size: 15px;
  }
  .banner-cards {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    height: auto;
    gap: 15px;
  }
  .card {
    min-height: 120px;
  }
}
@media (max-width: 480px) {
  .banner {
    padding: 50px 0;
    min-height: 550px;
  }
  .banner-title {
    font-size: 32px;
  }
  .banner-subtitle {
    font-size: 24px;
  }
  .banner-description {
    font-size: 14px;
  }
  .banner-button {
    padding: 13px 35px;
    font-size: 15px;
  }
  .banner-stats {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .card {
    min-height: 100px;
  }
}
.allow-right {
  width: 16px;
  height: 16px;
  margin-left: 6px;
  margin-top: 2px;
}
/* Company Section */
.company {
  padding: 20px 0;
}
.company-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.company-title {
  text-align: center;
  font-size: 20px;
  color: #1e293b;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease;
  opacity: 0;
  text-align: center;
  animation-fill-mode: forwards;
  display: inline-block;
  width: 100%;
}
.company-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  animation: fadeInUp 0.8s ease;
  opacity: 0;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
}
.logo-img {
  width: 192px;
  height: auto;
}
/* .logo-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    opacity: 1;
} */
/* Responsive Design */
@media (max-width: 1200px) {
  .company-logos {
    gap: 35px;
  }
}
@media (max-width: 1024px) {
  .company-logos {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .company {
    padding: 60px 0;
  }
  .company-container {
    padding: 0 20px;
  }
  .company-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .company-logos {
    gap: 25px;
  }
}
@media (max-width: 480px) {
  .company {
    padding: 50px 0;
  }
  .company-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .company-logos {
    gap: 20px;
  }
  .logo-img {
    max-width: 100px;
    max-height: 50px;
  }
}
/* Platform Section */
.platform {
  background-color: #f1faf6;
  padding: 62px 0;
}
.platform-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.platform-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
  animation: fadeInUp 0.8s ease;
  opacity: 0;
  animation-fill-mode: forwards;
}
.platform-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666666;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease;
  opacity: 0;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
}
.platform-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
}
.platform-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease;
  opacity: 0;
  animation-fill-mode: forwards;
}
.platform-card:nth-child(1) {
  animation-delay: 0.3s;
}
.platform-card:nth-child(2) {
  animation-delay: 0.4s;
}
.platform-card:nth-child(3) {
  animation-delay: 0.5s;
}
.platform-card:nth-child(4) {
  animation-delay: 0.6s;
}
.platform-card:nth-child(5) {
  animation-delay: 0.7s;
}
.platform-card:nth-child(6) {
  animation-delay: 0.8s;
}
.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.platform-card .card-image {
  width: 100%;
  height: 196px;
  object-fit: cover;
  margin-bottom: 20px;
}
.platform-card .card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}
.platform-card .card-description {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}
/* Responsive Design */
@media (max-width: 1200px) {
  .platform-cards {
    gap: 25px;
  }
  .platform-card {
    padding: 25px;
  }
  .platform-card .card-image {
    height: 180px;
  }
}
@media (max-width: 1024px) {
  .platform-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .platform-card .card-image {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .platform {
    padding: 60px 0;
  }
  .platform-container {
    padding: 0 20px;
  }
  .platform-title {
    font-size: 28px;
  }
  .platform-subtitle {
    font-size: 15px;
    margin-bottom: 50px;
  }
  .platform-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .platform-card {
    padding: 30px;
  }
  .platform-card .card-image {
    height: 220px;
  }
}
@media (max-width: 480px) {
  .platform {
    padding: 50px 0;
  }
  .platform-title {
    font-size: 24px;
  }
  .platform-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .platform-card {
    padding: 25px;
  }
  .platform-card .card-image {
    height: 180px;
  }
  .platform-card .card-title {
    font-size: 16px;
  }
  .platform-card .card-description {
    font-size: 13px;
  }
}
/* Carousel Section */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
  gap: 20px;
}
.case-card {
  flex-shrink: 0;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease;
  opacity: 0;
  animation-fill-mode: forwards;
  margin-bottom: 20px;
}
.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.case-image-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.case-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.case-content {
  padding: 0 10px;
}
.case-description {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.case-client {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
.client-logo {
  width: 80px;
  height: auto;
  object-fit: contain;
}
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 20px;
  color: #1e293b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.carousel-control:hover {
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.carousel-control-prev {
  left: 10px;
}
.carousel-control-next {
  right: 10px;
}
/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}
.indicator.active {
  background-color: #05ca94;
  width: 10px;
  border-radius: 6px;
}
.indicator:hover {
  background-color: #cbd5e1;
}
.indicator.active:hover {
  background-color: #05ca94;
}
/* Responsive Design */
@media (max-width: 1200px) {
  .case-image {
    height: 180px;
  }
  .case-description {
    font-size: 13px;
  }
  .play-button {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 1024px) {
  .case-card {
    width: 33.333%;
  }
  .case-image {
    height: 160px;
  }
}
@media (max-width: 768px) {
  .case-card {
    width: 50%;
  }
  .case-image {
    height: 200px;
  }
  .carousel-control {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .carousel-control-prev {
    left: 5px;
  }
  .carousel-control-next {
    right: 5px;
  }
}
@media (max-width: 480px) {
  .case-card {
    width: 100%;
  }
  .case-image {
    height: 180px;
  }
  .play-button {
    width: 45px;
    height: 45px;
  }
  .case-description {
    font-size: 12px;
  }
}
.chat-img {
  width: 100%;
  margin-top: 38px;
}
.highlight-img {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}
.card-line {
  width: 42px;
  height: 1px;
  background-color: #05ca94;
  margin: 20px 0;
}
/* Content Section */
.content {
  padding: 60px 20px;
}
.content-container {
  max-width: 1200px;
  margin: 0 auto;
}
.content-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 60px;
  text-align: center;
} /* Case Grid */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}
/* Case Card */
.case-card {
  width: 100%;
  max-width: 380px;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease;
  opacity: 0;
  animation-fill-mode: forwards;
}
.case-card:nth-child(1) {
  animation-delay: 0.1s;
}
.case-card:nth-child(2) {
  animation-delay: 0.2s;
}
.case-card:nth-child(3) {
  animation-delay: 0.3s;
}
.case-card:nth-child(4) {
  animation-delay: 0.4s;
}
.case-card:nth-child(5) {
  animation-delay: 0.5s;
}
.case-card:nth-child(6) {
  animation-delay: 0.6s;
}
.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
/* Case Image Container */
.case-image-container {
  position: relative;
  width: 100%;
  padding-top: 60%;
  overflow: hidden;
  background-color: #f3f4f6;
}
.case-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.case-card:hover .case-image {
  transform: scale(1.05);
}
/* Play Button */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  opacity: 0;
  z-index: -1;
}
.play-button:hover::before {
  opacity: 1;
  width: 80px;
  height: 80px;
}
/* Case Content */
.case-content {
  padding: 25px;
}
.case-description {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 20px;
}
.case-client {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.client-logo {
  height: 30px;
  object-fit: contain;
}
/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive Design */
@media (max-width: 1200px) {
  .case-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  .case-card {
    max-width: 340px;
  }
  .content-title {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .case-card {
    max-width: 420px;
  }
}
@media (max-width: 768px) {
  .content {
    padding: 60px 20px;
  }
  .content-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .case-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .case-card {
    max-width: 100%;
  }
  .case-content {
    padding: 20px;
  }
  .case-description {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .content {
    padding: 40px 15px;
  }
  .content-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .case-grid {
    gap: 20px;
  }
  .case-content {
    padding: 15px;
  }
  .case-description {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .play-button svg {
    width: 32px;
    height: 32px;
  }
}
/* Check Section */
.check {
  background: linear-gradient(to bottom, #c1f2d4, #ffffff);
  padding: 60px 0;
}
.check-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.check-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease;
  opacity: 0;
  animation-fill-mode: forwards;
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
}
.check-card {
  background-color: white;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease;
  opacity: 0;
  animation-fill-mode: forwards;
}
.check-card:nth-child(1) {
  animation-delay: 0.1s;
}
.check-card:nth-child(2) {
  animation-delay: 0.2s;
}
.check-card:nth-child(3) {
  animation-delay: 0.3s;
}
.check-card:nth-child(4) {
  animation-delay: 0.4s;
}
.check-card:nth-child(5) {
  animation-delay: 0.5s;
}
.check-card:nth-child(6) {
  animation-delay: 0.6s;
}
.check-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.card-icon {
  width: 80px;
  height: 80px;
  background-color: #f1faf6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  padding: 15px;
  animation: fadeInUp 0.8s ease;
  opacity: 0;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
}
.icon-image {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.check-card .card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
  animation: fadeInUp 0.8s ease;
  opacity: 0;
  animation-delay: 0.4s;
  animation-fill-mode: forwards;
}
.check-card .card-description {
  font-size: 14px;
  color: #64748b;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease;
  opacity: 0;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
/* Responsive Design */
@media (max-width: 1200px) {
  .check-grid {
    gap: 25px;
  }
  .check-card {
    padding: 35px 25px;
  }
  .card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .check-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .check-card {
    padding: 40px 30px;
  }
}
@media (max-width: 768px) {
  .check {
    padding: 60px 0;
  }
  .check-container {
    padding: 0 20px;
  }
  .check-title {
    font-size: 28px;
    margin-bottom: 50px;
  }
  .check-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .check-card {
    padding: 35px 25px;
  }
}
@media (max-width: 480px) {
    .check {
        padding: 50px 0;
    }
    .check-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    .check-card {
        padding: 30px 20px;
    }
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    .check-card .card-title {
        font-size: 16px;
    }
    .check-card .card-description {
        font-size: 13px;
    }
}
/* Users Section */
.users {
    padding: 80px 0;
    background-color: #ffffff;
}
.users-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}
.users-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease;
    opacity: 0;
    animation-fill-mode: forwards;
}
.users-subtitle {
    text-align: center;
    font-size: 16px;
    color: #64748b;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease;
    opacity: 0;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
}
/* Carousel Rows */
.carousel-row {
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}
.carousel-track-container {
    overflow: hidden;
    width: 100%;
}
.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.3s linear;
    will-change: transform;
}
/* User Cards */
.user-card {
    flex-shrink: 0;
    width: 320px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
    opacity: 0;
    animation-fill-mode: forwards;
    min-height: 240px;
}
.user-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.stars {
    color: #05ca94;
    font-size: 16px;
    margin-bottom: 15px;
}
.user-comment {
    font-size: 14px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}
.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f1f5f9;
    padding: 3px;
}
.user-details {
    display: flex;
    flex-direction: column;
}
.user-name {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3px;
}
.user-role {
    font-size: 12px;
    color: #94a3b8;
}
/* Responsive Design */
@media (max-width: 1200px) {
    .user-card {
        width: 300px;
        padding: 25px 20px;
    }
    .carousel-track {
        gap: 25px;
    }
}
@media (max-width: 1024px) {
    .users {
        padding: 70px 0;
    }
    .users-title {
        font-size: 28px;
    }
    .users-subtitle {
        font-size: 15px;
        margin-bottom: 50px;
    }
    .user-card {
        width: 280px;
    }
}
@media (max-width: 768px) {
    .users {
        padding: 60px 0;
    }
    .users-container {
        padding: 0 20px;
    }
    .users-title {
        font-size: 24px;
    }
    .users-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }
    .user-card {
        width: 250px;
        padding: 25px 20px;
    }
    .carousel-track {
        gap: 20px;
    }
    .user-comment {
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .users {
        padding: 50px 0;
    }
    .users-title {
        font-size: 22px;
    }
    .users-subtitle {
        font-size: 13px;
        margin-bottom: 30px;
    }
    .user-card {
        width: 220px;
        padding: 20px 15px;
        min-height: 220px;
    }
    .carousel-track {
        gap: 15px;
    }
    .stars {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .user-comment {
        font-size: 12px;
        margin-bottom: 15px;
    }
    .user-avatar {
        width: 35px;
        height: 35px;
    }
    .user-name {
        font-size: 13px;
    }
    .user-role {
        font-size: 11px;
    }
}
.users {
  background: linear-gradient(to bottom, #ffffff, #c1f2d4);
  padding: 60px 0;
}
/* Web Content Section */
.web-content {
  background-image: url("../img/web/Mask_group.png");
  padding: 120px 0;
  overflow: hidden;
  position: relative;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.web-content-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}
.web-content-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #333;
  animation: fadeInUp 0.8s ease;
  opacity: 0;
  animation-fill-mode: forwards;
}
.web-content-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease;
  opacity: 0;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
}
.web-content-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  animation: fadeInUp 0.8s ease;
  opacity: 0;
  animation-delay: 0.4s;
  animation-fill-mode: forwards;
}
.web-content-button {
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.web-content-button.primary {
  background-color: #05ca94;
  color: white;
}
.web-content-button.primary:hover {
  background-color: #04b886;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(5, 202, 148, 0.3);
}
.web-content-button.secondary {
  background-color: transparent;
  color: #05ca94;
  border: 2px solid #05ca94;
}
.web-content-button.secondary:hover {
  background-color: #05ca94;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(5, 202, 148, 0.3);
}
.play-icon {
  width: 22px;
  height: 22px;
}
/* Responsive Design for Web Content */
@media (max-width: 1024px) {
  .web-content {
    padding: 100px 0;
  }
  .web-content-title {
    font-size: 36px;
  }
  .web-content-subtitle {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .web-content {
    padding: 80px 0;
  }
  .web-content-title {
    font-size: 28px;
  }
  .web-content-buttons {
    flex-direction: column;
    gap: 20px;
  }
  .web-content-button {
    width: 200px;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .web-content {
    padding: 60px 0;
  }
  .web-content-title {
    font-size: 24px;
  }
  .web-content-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .web-content-button {
    padding: 10px 30px;
    font-size: 14px;
    width: 180px;
  }
}
