@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
  font-family: 'Roboto', 'Noto Sans', 'Helvetica Neue', Arial, sans-serif;
}

.teek-gradient-text-horizontal {
  background: linear-gradient(to right, #ebb746, #f9a94a, #dd7722);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 18px;
  font-weight: 600;
}

.teek-gradient-title {
  color: #dd7722;
}

.nav-title {
  color: #dd7722;
  font-size: 18px;
  font-weight: 600;

}

.bg-gradient-to-r.from-indigo-600.to-blue-600.bg-clip-text.text-transparent {
  background: linear-gradient(to right, #ffcf66, #f9a94a, #dd7722);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.teek-gradient-border-rounded {
  background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, #ffcf66, #f9a94a, #dd7722) border-box;
  border: 2px solid transparent;
  border-radius: 8px;
}

.teek-gradient-border {
  position: relative;
  border-radius: 8px;
}

.teek-gradient-border::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(to right, #ffcf66, #f9a94a, #dd7722);
  border-radius: 10px;
  /* Lớn hơn border-radius của phần tử chính */
  z-index: -1;
}

.gradient-bg {
  background: linear-gradient(135deg, #4f46e5 0%, #2563eb 100%);
}

.nav-btn {
  background: linear-gradient(to right, #ffcf66, #f9a94a, #dd7722) !important;
  font-weight: 700;
  font-size: 18px;
}

.nav-btn:hover {
  box-shadow: 0 10px 15px -3px rgba(221, 119, 34, 0.3) !important;
}

.text-gradient {
  background: linear-gradient(90deg, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: textShine 2s linear infinite;
}

/* Navigation  */
.nav-bg {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4f46e5, #2563eb);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.nav-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s ease;
}

.nav-btn:hover::before {
  left: 100%;
}

/* End Navigation  */

/* Hero Section Styles */
.hero-bg {
  background: radial-gradient(circle at 10% 20%, #4f46e5 0%, #2563eb 100%);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  padding-top: 5rem;
  /* pt-20 */
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float-hero 6s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  animation-delay: 2s;
}

.hero-content {
  position: relative;
  color: white;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
  padding: 2rem 0;
}

.hero-image {
  opacity: 0;
  transform: translateY(30px);
  animation: imageIn 1s ease forwards;
  animation-delay: 0.8s;
}

.stat-card {
  animation: slideIn 0.5s ease forwards;
  animation-delay: 1.2s;
  opacity: 0;
}

.hero-btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transform: skewX(-15deg);
  animation: shimmer 3s infinite;
}


/* About Section Styles */
.about-section {
  position: relative;
  overflow: hidden;
}

/* Background Decorations */
.bg-decoration {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg,
      rgba(79, 70, 229, 0.1) 0%,
      rgba(37, 99, 235, 0.1) 100%);
  animation: float-decoration 6s ease-in-out infinite;
}

.bg-decoration-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
}

.bg-decoration-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
  animation-delay: 2s;
}

/* Video Wrapper Styles */
.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
  z-index: 2;
}

/* End Hero Section Styles */

/* Services Grid  */

.services-section {
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
  position: relative;
  overflow: hidden;
}

.section-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(79, 70, 229, 0.1) 1px,
      transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
}

.service-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-icon-wrap {
  position: absolute;
  bottom: -30px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4f46e5, #2563eb);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
  transition: transform 0.3s ease;
}

.service-card {
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(10deg);
}

.service-content {
  padding: 2rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.service-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.service-card:hover .feature-tag {
  background: #eef2ff;
  color: #4f46e5;
}

.feature-tag {
  padding: 0.5rem 1rem;
  background: #f3f4f6;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: #4b5563;
  transition: all 0.3s ease;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4f46e5;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.learn-more:hover {
  gap: 0.75rem;
}

/* End Services Grid  */

/* Section Header */
.section-header {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.section-header h2 {
  background: linear-gradient(90deg, #4f46e5, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: textGradient 4s linear infinite;
}

/* Image Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* End Image Gallery  */

/* Experience Badge */
.experience-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(30px);
  animation: slideIn 0.8s ease forwards;
  animation-delay: 0.5s;
}

.badge-circle {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #4f46e5, #2563eb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}

/* End Experience Badge  */

/* Feature Icons */
.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-icon:hover {
  transform: scale(1.1);
}

/* Feature List */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(79, 70, 229, 0.05);
  transform: translateX(10px);
}

.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  flex-shrink: 0;
}

/* End Feature  */

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 5rem;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.stat-card:nth-child(1) {
  animation-delay: 0.2s;
}

.stat-card:nth-child(2) {
  animation-delay: 0.4s;
}

.stat-card:nth-child(3) {
  animation-delay: 0.6s;
}

.stat-card:nth-child(4) {
  animation-delay: 0.8s;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(90deg, #4f46e5, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

/* End Stats Grid  */

/* CTA Button */
.cta-button {
  background: linear-gradient(90deg, #4f46e5, #2563eb);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transform: skewX(-15deg);
  transition: 0.5s;
}

.cta-button:hover::after {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

/* End CTA Button  */

/* product */
.products-section {
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
  position: relative;
  overflow: hidden;
}

.section-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: radial-gradient(#4f46e5 0.5px, transparent 0.5px);
  background-size: 24px 24px;
  opacity: 0.1;
}

.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #4f46e5, transparent);
  border-radius: 2px;
}

.filter-button {
  position: relative;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  background: transparent;
  overflow: hidden;
}

.filter-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #4f46e5, #2563eb);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.filter-button:hover::before,
.filter-button.active::before {
  opacity: 1;
}

.filter-button:hover,
.filter-button.active {
  color: white;
  transform: translateY(-2px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  transition: all 0.3s ease-in-out;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}

.product-card {
  animation: fadeIn 0.5s ease-out forwards;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
}

.product-image-wrapper {
  position: relative;
  padding-top: 75%;
  /* 4:3 Aspect Ratio */
  overflow: hidden;
  background: #99999933;
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: all 0.4s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-category {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.product-content {
  padding: 2rem;
}

.product-title {
  color: #1f2937;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.product-specs {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-spec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
}

.product-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(90deg, #4f46e5, #2563eb);
  color: white;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.product-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(90deg, #4f46e5, #2563eb);
  color: white;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.view-all-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transform: rotate(45deg);
  transition: 0.5s;
}

.view-all-btn:hover::after {
  left: 100%;
}

.view-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.3);
}

/* end product  */
/* contact */
.contact-section {
  background: linear-gradient(to bottom right, #f8fafc, #eef2ff);
  position: relative;
  overflow: hidden;
}

.contact-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234F46E5' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: rgba(79, 70, 229, 0.05);
  transform: translateX(10px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #4f46e5, #2563eb);
  color: white;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  flex: none;
}

.contact-info-item:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: white;
  border: 2px solid transparent;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-size: 1rem;
  color: #1f2937;
}

.form-input:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
  outline: none;
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #4b5563;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.submit-button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #4f46e5, #2563eb);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-button::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transform: skewX(-45deg) translateX(-150%);
  transition: all 0.5s ease;
}

.submit-button:hover::after {
  transform: skewX(-45deg) translateX(150%);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: white;
  color: #4f46e5;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.social-link:hover {
  background: #4f46e5;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

/* end contact */
/* Mobile Menu Enhanced Styles */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 9999;
  display: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 0 0 0.5rem 0.5rem;
}

.mobile-menu.show {
  display: block;
  animation: menuSlideDown 0.3s ease-out forwards;
}

.mobile-menu-container {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  gap: 1rem;
}

.mobile-menu-item:hover {
  background-color: #f8fafc;
  transform: translateX(4px);
}

.menu-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.menu-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-title {
  font-weight: 600;
  color: #1f2937;
  font-size: 1rem;
}

.menu-desc {
  font-size: 0.875rem;
  color: #6b7280;
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #4f46e5, #2563eb);
  color: white;
  padding: 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mobile-menu-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.cta-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
}

/* Menu Button Animation */
.mobile-menu-button.active i {
  transform: rotate(90deg);
}

.menu-open {
  overflow: hidden;
}

/* Backdrop styles */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-backdrop.show {
  opacity: 1;
}

/* Gallery Modal Styles */
.gallery-slider {
  aspect-ratio: 16/9;
}

.gallery-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gallery-thumbnails {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.gallery-thumbnail {
  width: 80px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.gallery-thumbnail.active {
  opacity: 1;
  border: 2px solid #dd7722;
}

.gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* feature tooltip  */
.feature-tooltip {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  margin-top: 0.5rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.feature-tooltip::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background-color: white;
  box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.06);
}

.feature-tooltip.active {
  display: block;
  opacity: 1;
}
.hero-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: calc(100vh - 5rem);
  display: flex;
  align-items: center;
}
/* Responsive  */

@media (max-width: 896px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
  }

  .hero-content-wrapper {
    min-height: auto;
    padding: 100px 0;
  }
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-badge {
    bottom: -1rem;
    right: -1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    order: 2;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-section {
    height: auto;
    min-height: 100vh;
    padding-top: 4rem;
  }

  .video-wrapper {
    position: absolute;
    height: 100%;
  }

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

  .video-container video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Center the video content */
  }

  .hero-content {
    padding: 1rem;
    text-align: center;
  }

  .hero-content-wrapper {
    position: relative;
    z-index: 3;
    padding: 2rem 0;
    min-height: calc(100vh - 4rem);
    /* Account for top padding */
    display: flex;
    align-items: center;
  }

  .feature-tooltip {
    position: fixed;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: calc(100% - 32px);
    max-width: 320px;
    margin: 0;
    z-index: 100;
  }

  .feature-tooltip::before {
    display: none;
  }

  .stats-grid .stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .gallery-slider {
    aspect-ratio: 4/3;
  }

  .gallery-thumbnails {
    display: none;
  }
}

@media (max-width: 480px) and (orientation: portrait) {
  .video-container video {
    object-position: 55% center;
  }
  .hero-content-wrapper {
    display: block;
  }
  .contact-info-item {
    padding: 0rem;
  }
  
}

/* Animation Styles */

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes float-hero {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(10px, -10px) rotate(5deg);
  }

  50% {
    transform: translate(0, -20px) rotate(0deg);
  }

  75% {
    transform: translate(-10px, -10px) rotate(-5deg);
  }
}

@keyframes imageIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float-decoration {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-20px, 20px) rotate(5deg);
  }
}

@keyframes textGradient {
  to {
    background-position: 200% center;
  }
}

@keyframes shimmer {
  from {
    left: -100%;
  }

  to {
    left: 100%;
  }
}

@keyframes textShine {
  to {
    background-position: 200% center;
  }
}

@keyframes menuSlideDown {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==== HERO ==== */
/* Floating Text Hero CSS */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 5rem;
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Styling */


.hero-content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

/* Text Effect */
/* .hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
} */

/* .hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
} */

.hero-content h1.teek-gradient-text-horizontal {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #ffcf66, #f9a94a, #dd7722);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0px 2px 15px rgba(255, 207, 102, 0.3);
  letter-spacing: -0.5px;
}

.hero-content p.teek-gradient-text-horizontal {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  background: linear-gradient(to right, #f9a94a, #dd7722);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0px 1px 6px rgba(221, 119, 34, 0.2);
}

/* Buttons */
.hero-content .flex-wrap {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  gap: 0.5rem;
  min-width: 180px;
}

.hero-btn i {
  font-size: 1.1rem;
}

/* Primary Button */
.hero-btn.primary {
  background: white;
  color: #4f46e5;
}

.hero-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Secondary Button */
.hero-btn.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.hero-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .hero-content {
    padding: 0 1.5rem;
  }

  .hero-content .flex-wrap {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 100%;
    max-width: 280px;
  }

  .video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .hero-content h1.teek-gradient-text-horizontal {
    font-size: 2.5rem;
  }

  .hero-content p.teek-gradient-text-horizontal {
    font-size: 1rem;
  }
  .hero-content-wrapper {
    padding: 1rem 0;
  }
  
}
@media (max-width: 480px) and (orientation: portrait) {
 
  .hero-content-wrapper {
    display: block;
  }
  .hero-content h1.teek-gradient-text-horizontal {
    margin-bottom: 20rem;
    font-size: 2rem;
  }
  .hero-content p.teek-gradient-text-horizontal {
    font-size: 1.2rem;
  }
}

/* Optional Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content>* {
  animation: fadeUp 0.8s ease-out forwards;
}

.hero-content h1 {
  animation-delay: 0.2s;
}

.hero-content p {
  animation-delay: 0.4s;
}

.hero-content .flex-wrap {
  animation-delay: 0.6s;
}

nav.w-full {
  position: relative;
  z-index: 1000; /* Cao hơn video wrapper */
}
.menu-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  z-index: 990;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-backdrop.show {
  opacity: 1;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem;
  background-color: white;
  border-radius: 0 0 1rem 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.mobile-menu.show {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
}