.section-padding {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  opacity: 1;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 40px;
}

.text-column, 
.image-column {
  flex: 1;
  min-width: 300px;
}

.section-divider {
  height: 3px;
  width: 60px;
  background: linear-gradient(90deg, #3c8a70, #2b7ab8);
  margin: 15px auto 30px;
  border-radius: 2px;
  opacity: 0.8;
}

.text-align-right {
  text-align: right;
}

.text-color-7accb4 {
  color: #45a396;
}

.text-color-3D9BE9 {
  color: #2b7ab8;
}

.text-color-6dc3a1 {
  color: #3c8a70;
}

.text-color-FFD56B {
  color: #e6b84d;
}

.section-title {
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.modern-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

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

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  will-change: transform;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-text-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  padding: 0 20px;
}

.hero-text {
  text-align: center;
  color: white;
  max-width: 900px;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  letter-spacing: 0.3px;
}

.hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.primary-btn, 
.secondary-btn {
  padding: 8px 25px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: none;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  min-height: 44px;
  line-height: 1;
}

.primary-btn {
  background: linear-gradient(135deg, #58dac0 0%, #4bb3a4 100%);
  color: white;
  border: none;
}

.primary-btn:focus {
  outline: 3px solid #FFD56B;
  outline-offset: 2px;
}

.primary-btn:hover {
  background: linear-gradient(135deg, #4bb3a4 0%, #58dac0 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.secondary-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.secondary-btn:focus {
  outline: 3px solid #FFD56B;
  outline-offset: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #58dac0;
  border-color: #58dac0;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  color: white;
}

.scroll-indicator a {
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.scroll-indicator a:hover {
  opacity: 1;
}

.mouse-icon {
  width: 30px;
  height: 50px;
  border: 2px solid white;
  border-radius: 25px;
  margin-bottom: 10px;
  position: relative;
}

.mouse-wheel {
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouse-wheel 1.5s infinite;
}

@keyframes mouse-wheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-item {
  background-color: white;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border-bottom: 4px solid var(--line-color, #58dac0);
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.product-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.title-container {
  text-align: center;
  margin-bottom: 20px;
}

.title-container h3 {
  font-size: 1.4rem;
  color: #333;
  margin: 0;
}

.section-line {
  height: 3px;
  width: 50px;
  background-color: var(--line-color, #58dac0);
  margin: 20px auto 0;
}

.product-item.line-color-green {
  --line-color: #7accb4;
  border-top-color: #7accb4;
}

.product-item.line-color-blue {
  --line-color: #3D9BE9;
  border-top-color: #3D9BE9;
}

.product-item.line-color-yellow {
  --line-color: #FFD56B;
  border-top-color: #FFD56B;
}

.product-item .section-line {
  height: 3px;
  width: 50px;
  background-color: var(--line-color, #58dac0);
  margin: 20px auto 0;
}

.product-item .product-icon img {
  transition: filter 0.3s ease;
}

.product-item.line-color-green:hover .product-icon img {
  filter: hue-rotate(0deg) saturate(1.5) brightness(1.1);
  filter: drop-shadow(0 0 3px rgba(122, 204, 180, 0.6));
}

.product-item.line-color-blue:hover .product-icon img {
  filter: hue-rotate(210deg) saturate(1.5) brightness(1.1);
  filter: drop-shadow(0 0 3px rgba(61, 155, 233, 0.6));
}

.product-item.line-color-yellow:hover .product-icon img {
  filter: hue-rotate(45deg) saturate(1.5) brightness(1.1);
  filter: drop-shadow(0 0 3px rgba(255, 213, 107, 0.6));
}

.product-item:hover .product-icon {
  transform: scale(1.1) translateY(-5px);
}

.product-item .product-icon {
  transition: transform 0.3s ease;
}

.product-item .product-svg {
  stroke: var(--line-color, #58dac0);
  transition: all 0.3s ease;
}

.product-item.line-color-green .product-svg {
  stroke: #7accb4;
}

.product-item.line-color-blue .product-svg {
  stroke: #3D9BE9;
}

.product-item.line-color-yellow .product-svg {
  stroke: #FFD56B;
}

.product-item:hover .product-svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-item {
  background-color: white;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.service-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-item:hover .service-icon-wrapper {
  border-color: #58dac0;
}

.service-item:hover .service-icon-wrapper img {
  transform: scale(1.1);
}

.service-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.why-choose-us {
  background-color: #f9f9f9;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-choose-item {
  background-color: white;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.why-choose-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 2rem;
}

.why-choose-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.why-choose-item p {
  color: #666;
  line-height: 1.6;
}

.why-choose-us {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(88, 218, 192, 0.05) 0%, rgba(105, 152, 225, 0.03) 60%, transparent 70%);
  bottom: -150px;
  left: -150px;
  border-radius: 50%;
}

.why-choose-us::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 213, 107, 0.05) 0%, rgba(105, 152, 225, 0.03) 60%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.why-choose-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.why-choose-item:nth-child(1) {
  border-top: 4px solid #6dc3a1;
}

.why-choose-item:nth-child(2) {
  border-top: 4px solid #3D9BE9;
}

.why-choose-item:nth-child(3) {
  border-top: 4px solid #FFD56B;
}

.why-choose-item:nth-child(4) {
  border-top: 4px solid #6998e1;
}

.why-choose-item::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  top: 0;
  left: 0;
  z-index: 1;
}

.why-choose-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  border-radius: 12px;
}

.feature-svg {
  width: 35px;
  height: 35px;
}

.why-choose-item:nth-child(1) .feature-svg {
  stroke: #6dc3a1;
}

.why-choose-item:nth-child(2) .feature-svg {
  stroke: #3D9BE9;
}

.why-choose-item:nth-child(3) .feature-svg {
  stroke: #FFD56B;
}

.why-choose-item:nth-child(4) .feature-svg {
  stroke: #6998e1;
}

.why-choose-item h3 {
  margin: 0 0 15px;
  color: #333;
  position: relative;
  z-index: 2;
  font-weight: 600;
}

.why-choose-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 992px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  
  .why-choose-item {
    padding: 25px;
  }
  
  .why-choose-icon {
    width: 60px;
    height: 60px;
  }
}

.stats-container {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  text-align: center;
  min-width: 120px;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #58dac0;
  margin-bottom: 5px;
}

.stat-label {
  color: #666;
  font-size: 1rem;
}

.testimonials-section {
  background-color: #f9f9f9;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-item {
  padding: 0 20px;
}

.testimonial-content {
  background-color: white;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  color: rgba(88, 218, 192, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  padding-left: 40px;
  color: #333;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  margin: 0;
}

.author-position {
  font-weight: 400;
  color: #555;
  margin: 0;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.slider-prev,
.slider-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #58dac0;
  background: transparent;
  color: #58dac0;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
  background-color: #58dac0;
  color: white;
}

.slider-dots {
  display: flex;
  gap: 10px;
  margin: 0 20px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d0d0d0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dot.active {
  background-color: #58dac0;
}

.cta-section {
  background: linear-gradient(135deg, #071b4d, #134e8a);
  color: white;
  position: relative;
  overflow: hidden;
  will-change: transform, opacity;
}

.cta-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease;
  visibility: visible;
}

.js-enabled .cta-content {
  opacity: 1;
  transform: translateY(20px);
  visibility: visible;
}

.cta-content.animated {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.cta-section .reveal-text, 
.cta-section .cta-button, 
.cta-section .cta-button-alt,
.cta-section .cta-features {
  transition-delay: 0s !important;
  animation-delay: 0s !important;
}

.cta-background-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 218, 192, 0.2) 0%, rgba(105, 152, 225, 0.1) 70%, transparent 100%);
  top: -300px;
  right: -200px;
  z-index: 1;
}

.cta-title {
  margin-bottom: 20px;
  font-weight: 700;
  background: linear-gradient(90deg, #ffffff, #f1d47a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-subtitle {
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 16px 32px;
  background-color: #58dac0;
  color: #071b4d;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  border: 2px solid #58dac0;
  box-shadow: 0 5px 15px rgba(88, 218, 192, 0.4);
  text-transform: none;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background-color: #4cc7af;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.cta-button-alt {
  display: inline-block;
  padding: 16px 32px;
  background-color: transparent;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  border: 2px solid white;
  text-transform: none;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-button-alt:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-icon {
  color: #58dac0;
  font-weight: bold;
  font-size: 1.2rem;
}

.feature-text {
  font-size: 1rem;
  opacity: 0.9;
}

@media screen and (max-width: 768px) {
  .cta-title {
    font-size: 2.2rem;
  }
  
  .cta-subtitle {
    font-size: 1.1rem;
    max-width: 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

@media screen and (max-width: 768px) {
  .cta-section {
    padding: 40px 20px;
  }
  
  .cta-title {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  
  .cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
    width: 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  
  .cta-button, 
  .cta-button-alt {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 14px 20px;
    font-size: 1rem;
    text-align: center;
  }
  
  .cta-features {
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
    gap: 15px;
  }
  
  .cta-feature {
    width: 100%;
    /*max-width: 280px;*/
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  
  .feature-text {
    font-size: 0.95rem;
  }
  
  .cta-background-shape {
    opacity: 0.3;
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
  }
}

@media screen and (max-width: 480px) {
  .cta-section {
    padding: 30px 15px;
  }
  
  .cta-title {
    font-size: 1.6rem;
  }
  
  .cta-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .cta-button, 
  .cta-button-alt {
    padding: 12px 15px;
    font-size: 0.8rem;
  }
}

.brands-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.client-logo {
  max-width: 150px;
  height: auto;
  opacity: 0.85;
  filter: grayscale(1);
  transition: all 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-3px);
}

.floating-image-container {
  position: relative;
  padding: 50px;
}

.floating-image-container img {
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.image-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid #58dac0;
  border-radius: 10px;
  top: 0;
  left: 0;
  z-index: 1;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.benefits-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #58dac0;
  font-weight: bold;
}

.reveal-section {
  visibility: hidden;
}

.reveal-text {
  visibility: hidden;
}

.reveal-img {
  visibility: hidden;
}

.reveal-item {
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-section.is-visible,
.reveal-text.is-visible,
.reveal-img.is-visible,
.reveal-item.is-visible {
  visibility: visible;
  opacity: 1;
}

.animate-title {
  opacity: 1;
  animation: fadeInUp 1s forwards;
  animation-delay: 0.3s;
}

.animate-subtitle {
  opacity: 1;
  animation: fadeInUp 1s forwards;
  animation-delay: 0.6s;
}

.animate-btn {
  opacity: 1;
  animation: fadeInUp 1s forwards;
  animation-delay: 0.9s;
}

.pulse-btn {
  animation: pulse 2s infinite;
}

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(88, 218, 192, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(88, 218, 192, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(88, 218, 192, 0);
  }
}

@media screen and (max-width: 992px) {
  .hero-text h1 {
    font-size: 2.8rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .content-wrapper {
    flex-direction: column;
  }
  
  .text-column, .image-column {
    width: 100%;
  }
  
  .image-column {
    order: -1;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .primary-btn, .secondary-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .services-container,
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-container {
    flex-direction: column;
    align-items: center;
  }
  
  .modern-hero {
    height: 80vh;
  }
  
  .floating-image-container {
    padding: 10px;
  }
  
  .image-decoration {
    transform: translate(10px, 10px);
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-subtitle {
    font-size: 1.1rem;
  }
  
  .button-container, 
  .cta-box,
  .hero-cta-buttons {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  
  .text-align-right {
    text-align: center;
  }
  
  .style-button,
  .primary-btn,
  .secondary-btn,
  .cta-button,
  .cta-button-alt,
  .services-button,
  .pulse-btn {
    width: 100%;
    max-width: 280px;
    margin: 10px auto;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    line-height: 1;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .hero-cta-buttons .primary-btn,
  .hero-cta-buttons .secondary-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
    word-wrap: break-word;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .section-padding {
    padding: 30px 10px;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 10px;
  }
  
  p, .section-description {
    font-size: 0.95rem;
  }
  
  .primary-btn,
  .secondary-btn {
    padding: 12px 16px;
    font-size: 0.9rem;
    min-height: 44px;
  }
}

.hero-mobile-image {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/public/images/index/OutsourcingDev_HomePage.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.feature-svg {
  width: 48px;
  height: 48px;
  stroke: #58dac0;
  transition: all 0.3s ease;
  transform: scale(0.95);
  opacity: 0.9;
}

.service-icon {
  height: 80px;
  stroke: #58dac0;
  transition: all 0.3s ease;
  transform: scale(0.95);
  opacity: 0.9;
}

.why-choose-item:hover .feature-svg,
.service-item:hover .service-icon {
  stroke: #3D9BE9;
  transform: scale(1.05);
  opacity: 1;
}

.svg-interactive {
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .hero-section {
    height: 100vh;
    min-height: 600px;
  }

  .hero-video {
    display: none;
  }

  .hero-mobile-image {
    display: block;
  }

  .hero-content-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-text-container {
    padding: 20px;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .hero-text {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }

  .hero-cta-buttons {
    margin-top: 20px;
    flex-direction: column;
    gap: 15px;
  }

  .primary-btn, 
  .secondary-btn {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    padding: 12px 20px;
  }

  .hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .overlay {
    opacity: 0.7;
  }

  .scroll-indicator {
    bottom: 20px;
  }

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

@media screen and (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-text-container {
    padding: 15px;
  }

  .hero-mobile-image {
    background-position: center center;
    background-size: cover;
  }
}

@media screen and (max-height: 700px) and (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
  }

  .hero-text h1 {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    margin-bottom: 15px;
  }

  .scroll-indicator {
    transform: scale(0.8);
    bottom: 10px;
  }
}

/* Add performance optimizations */
/* .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  will-change: transform; /\* Optimize for animation \*/
} */

/* Improve CTA button contrast and accessibility */
/* .primary-btn {
  background: linear-gradient(135deg, #58dac0 0%, #4bb3a4 100%);
  color: white;
  border: none;
  min-height: 44px; /\* Ensure touch target size \*/
  position: relative;
}

.primary-btn:focus {
  outline: 3px solid #FFD56B;
  outline-offset: 2px;
}

.secondary-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
  min-height: 44px;
}

.secondary-btn:focus {
  outline: 3px solid #FFD56B;
  outline-offset: 2px;
  background: rgba(255, 255, 255, 0.1);
} */

/* Optimize animations for better performance */
/* @media (prefers-reduced-motion: reduce) {
  .animate-title,
  .animate-subtitle,
  .animate-btn,
  .pulse-btn {
    animation: none;
  }
  
  .product-item:hover,
  .service-item:hover,
  .why-choose-item:hover {
    transform: none;
  }
} */

/* Improve mobile responsiveness */
/* @media screen and (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  .primary-btn,
  .secondary-btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
} */

/* Add loading states */
/* .loading-state {
  opacity: 0.6;
  pointer-events: none;
}

.loading-state::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #58dac0;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
} */

/* Improve contrast for accessibility */
/* .text-color-FFD56B {
  color: #e6b84d; /\* Improved contrast ratio \*/
}

.testimonial-text {
  color: #333; /\* Better readability \*/
  line-height: 1.7; /\* Improved line spacing \*/
} */
/* Improve contrast for accessibility */
/* .text-color-FFD56B {
  color: #e6b84d; /\* Improved contrast ratio \*/
}

.testimonial-text {
  color: #333; /\* Better readability \*/
  line-height: 1.7; /\* Improved line spacing \*/
} */
} */

/* Add loading states */
/* .loading-state {
  opacity: 0.6;
  pointer-events: none;
}

.loading-state::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #58dac0;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
} */

/* Improve contrast for accessibility */
/* .text-color-FFD56B {
  color: #e6b84d; /\* Improved contrast ratio \*/
}

.testimonial-text {
  color: #333; /\* Better readability \*/
  line-height: 1.7; /\* Improved line spacing \*/
} */
/* Improve contrast for accessibility */
/* .text-color-FFD56B {
  color: #e6b84d; /\* Improved contrast ratio \*/
}

.testimonial-text {
  color: #333; /\* Better readability \*/
  line-height: 1.7; /\* Improved line spacing \*/
} */
