* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background-color: #F8F8F8;
  color: #333;
  line-height: 1.6;
}

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

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-250px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomOut {
  0% {
    opacity: 0; 
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes flipInX {
  0% {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    opacity: 1;
    transform: perspective(400px) rotateX(10deg);
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  100% {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
  }
}

@keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    opacity: 1;
    transform: perspective(400px) rotateY(10deg);
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  100% {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDownFromTop {
  0% {
    opacity: 0;
    transform: translateY(-100%) scaleY(0);
    transform-origin: top;
  }
  50% {
    opacity: 0.8;
    transform: translateY(-50%) scaleY(0.5);
    transform-origin: top;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    transform-origin: top;
  }
}

@keyframes rotateIn {
  0% {
    opacity: 0;
    transform: rotate(-200deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
  }
}

@keyframes rotateInDownLeft {
  0% {
    opacity: 0;
    transform: rotate(-45deg);
    transform-origin: left bottom;
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
    transform-origin: left bottom;
  }
}

@keyframes rotateInDownRight {
  0% {
    opacity: 0;
    transform: rotate(45deg);
    transform-origin: right bottom;
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
    transform-origin: right bottom;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.1);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.1);
  }
  70% {
    transform: scale(1);
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}

@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(0, 0, 128, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 0, 128, 0.8), 0 0 30px rgba(0, 0, 128, 0.4);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale(0.1) translateY(250px);
  }
  60% {
    opacity: 1;
    transform: scale(1.05) translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale(0.1) translateY(-250px);
  }
  60% {
    opacity: 1;
    transform: scale(1.05) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes elasticIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.animate {
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

.fadeIn { animation-name: fadeIn; }
.fadeInDown { animation-name: fadeInDown; }
.fadeInUp { animation-name: fadeInUp; }
.fadeInLeft { animation-name: fadeInLeft; }
.fadeInRight { animation-name: fadeInRight; }
.fadeOut { animation-name: fadeOut; }

.zoomIn { animation-name: zoomIn; }
.zoomOut { animation-name: zoomOut; }
.zoomInUp { animation-name: zoomInUp; }
.zoomInDown { animation-name: zoomInDown; }

.slideInLeft { animation-name: slideInLeft; }
.slideInRight { animation-name: slideInRight; }
.slideInUp { animation-name: slideInUp; }
.slideInDown { animation-name: slideInDown; }
.slideDownFromTop { animation-name: slideDownFromTop; }

.rotateIn { animation-name: rotateIn; }
.rotateInDownLeft { animation-name: rotateInDownLeft; }
.rotateInDownRight { animation-name: rotateInDownRight; }

.bounceIn { animation-name: bounceIn; }
.flipInX { animation-name: flipInX; }
.flipInY { animation-name: flipInY; }
.elasticIn { animation-name: elasticIn; }

.hover-pulse:hover {
  animation: pulse 1s infinite;
}

.hover-bounce:hover {
  animation: bounceIn 0.6s ease;
}

.hover-shake:hover {
  animation: shake 0.5s ease-in-out;
}

.hover-wobble:hover {
  animation: wobble 1s ease-in-out;
}

.hover-swing:hover {
  animation: swing 1s ease-in-out;
}

.hover-glow:hover {
  animation: glow 2s ease-in-out infinite alternate;
}

.btn-hover-pulse {
  transition: all 0.3s ease;
}

.btn-hover-pulse:hover {
  animation: pulse 1s infinite;
  transform: translateY(-2px) !important;
}

.btn-hover-pulse:not(:hover) {
  animation: none;
  transform: translateY(0) !important;
}

.btn-hover-bounce {
  transition: all 0.3s ease;
}

.btn-hover-bounce:hover {
  animation: bounceIn 0.6s ease;
  transform: translateY(-2px) !important;
}

.btn-hover-bounce:not(:hover) {
  animation: none;
  transform: translateY(0) !important;
}

.btn-hover-shake {
  transition: all 0.3s ease;
}

.btn-hover-shake:hover {
  animation: shake 0.5s ease-in-out;
}

.btn-hover-glow {
  transition: all 0.3s ease;
}

.btn-hover-glow:hover {
  animation: glow 2s ease-in-out infinite alternate;
  transform: translateY(-2px) !important;
}

.btn-hover-glow:not(:hover) {
  animation: none;
  transform: translateY(0) !important;
}

.btn-whatsapp.btn-hover-pulse {
  transition: all 0.3s ease;
}

.btn-whatsapp.btn-hover-pulse:hover {
  animation: pulse 1s infinite;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
}

.btn-whatsapp.btn-hover-pulse:not(:hover) {
  animation: none;
  transform: translateY(0) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.shimmer {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  background-size: 200px 100%;
  animation: shimmer 2s infinite;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

.animate-fast { animation-duration: 0.5s; }
.animate-slow { animation-duration: 2s; }
.animate-slower { animation-duration: 3s; }

.animate-infinite {
  animation-iteration-count: infinite;
}

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

.heartbeat-infinite {
  animation: heartbeat 1.5s infinite;
}

.glow-infinite {
  animation: glow 2s infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

.reveal-bounce {
  opacity: 0;
  transform: translateY(0);
  transition: all 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  will-change: opacity, transform;
}

.reveal-bounce.active {
  opacity: 1;
  animation: bounceInFromZero 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes bounceInFromZero {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-slide-bounce {
  opacity: 0;
  transform: translateX(0);
  transition: all 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  will-change: opacity, transform;
}

.reveal-slide-bounce.active {
  opacity: 1;
  animation: slideBounceIn 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes slideBounceIn {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  50% {
    opacity: 0.8;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal-scale-bounce {
  opacity: 0;
  transform: scale(1);
  transition: all 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  will-change: opacity, transform;
}

.reveal-scale-bounce.active {
  opacity: 1;
  animation: scaleBounceIn 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes scaleBounceIn {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.reveal-fade-slide {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal-fade-slide.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-rotate {
  opacity: 0;
  transform: rotate(-10deg) scale(0.9);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal-rotate.active {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.reveal-flip {
  opacity: 0;
  transform: perspective(400px) rotateY(90deg);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal-flip.active {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@media (max-width: 768px) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-bounce,
  .reveal-slide-bounce,
  .reveal-scale-bounce,
  .reveal-fade-slide,
  .reveal-rotate,
  .reveal-flip {
    transition-duration: 0.6s;
    transform: translateY(20px) !important;
  }

  .section-divider {
    padding: 30px 0;
  }

  .divider-line {
    width: 60px;
  }

  .divider-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .reveal-left {
    transform: translateX(-20px) !important;
  }

  .reveal-right {
    transform: translateX(20px) !important;
  }

  .reveal-bounce.active,
  .reveal-slide-bounce.active,
  .reveal-scale-bounce.active {
    animation-duration: 0.8s;
  }

  @keyframes bounceInFromZero {
    0% {
      opacity: 0;
      transform: translateY(0);
    }
    50% {
      opacity: 0.8;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideBounceIn {
    0% {
      opacity: 0;
      transform: translateX(0);
    }
    50% {
      opacity: 0.8;
      transform: translateX(-20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes scaleBounceIn {
    0% {
      opacity: 0;
      transform: scale(1);
    }
    50% {
      opacity: 0.8;
      transform: scale(0.85);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  .reveal-delay-1 { transition-delay: 0.05s; }
  .reveal-delay-2 { transition-delay: 0.1s; }
  .reveal-delay-3 { transition-delay: 0.15s; }
  .reveal-delay-4 { transition-delay: 0.2s; }
  .reveal-delay-5 { transition-delay: 0.25s; }
}

.stat-number {
  font-weight: 700;
  font-size: 2.5rem;
  color: #000080;
  transition: all 0.3s ease;
  will-change: transform;
}

.stat-number.animated {
  animation: counterPulse 0.6s ease-out;
}

@keyframes counterPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 2rem;
  }

  .stat-number.animated {
    animation-duration: 0.4s;
  }

  @keyframes counterPulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .stat-number.animated {
    animation: none;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-bounce,
  .reveal-slide-bounce,
  .reveal-scale-bounce,
  .reveal-fade-slide,
  .reveal-rotate,
  .reveal-flip {
    transition: opacity 0.3s ease;
    transform: none !important;
  }

  .reveal-bounce.active,
  .reveal-slide-bounce.active,
  .reveal-scale-bounce.active {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-bounce,
  .reveal-slide-bounce,
  .reveal-scale-bounce,
  .reveal-fade-slide,
  .reveal-rotate,
  .reveal-flip {
    transition: opacity 0.3s ease;
    transform: none !important;
  }

  .reveal-bounce.active,
  .reveal-slide-bounce.active,
  .reveal-scale-bounce.active {
    animation: none;
  }
}

.hero-section {
  display: flex;
  min-height: 750px;
  flex-direction: row;
  align-items: center;
  gap: 0px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  background-image: url("imgs/banner.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  border-radius: 0 0 0 247px;
  margin-top: -60px;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-left: 110px;
}

@media (max-width: 768px) {
  .hero-container {
    padding-left: 20px;
    padding-right: 20px;
    align-items: center;
    justify-content: center;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 600px;
  left: 200px;
}

@media (max-width: 768px) {
  .hero-content {
    left: 0;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
}

.hero-title {
  font-family: "Montserrat", Sans-serif;
  font-size: 53px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  margin-top: 0px;
  margin-left: 0px;
  margin-right: 0px;
  text-shadow: 2px -3px 10px rgba(0, 0, 0, 0.36);
  text-align: left;
  line-height: 1.2;
}

.hero-subtitle {
  font-family: "Montserrat", Sans-serif;
  font-size: 22px;
  font-weight: 100;
  text-shadow: 0 -2px 0 rgba(0, 0, 0, 0.3);
  color: #ffffff;
  text-align: left;
  margin-bottom: 0px;
  margin-top: 0px;
  margin-left: 0px;
  margin-right: 0px;
  line-height: 1.4;
}

.hero-button {
  margin: 30px 0px 0px 0px;
  padding: 0px;
  align-self: flex-start;
}

.btn-whatsapp {
  background-color: transparent;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background-image: linear-gradient(139deg, #000059 0%, #223E70 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  padding: 15px 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  border: none;
  cursor: pointer;
  overflow: hidden;
}

.btn-whatsapp::before,
.btn-whatsapp::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 0;
  background-color: #25D366;
  transition: width 0.5s ease;
  z-index: -1;
}

.btn-whatsapp::before { 
  left: 0; 
  border-radius: 50px 0 0 50px;
}
.btn-whatsapp::after { 
  right: 0; 
  border-radius: 0 50px 50px 0;
}

.btn-whatsapp:hover::before,
.btn-whatsapp:hover::after {
  width: 50%;
}

.btn-whatsapp:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:active,
.btn-whatsapp:focus {
  outline: none;
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-content {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}

.btn-icon {
  font-size: 18px;
  color: #ffffff;
}

.btn-text {
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-section {
  padding: 120px 0;
  background: #f8f8f8;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 20px;
  background: #f8f8f8;
}

.about-text .section-description {
  line-height: 1.6 !important;
  font-size: 20px !important;
}

@media (max-width: 768px) {
  .about-text .section-description,
  .about-text .section-description1 {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  .section-title,
  .section-title1 {
    font-size: 20px !important;
    margin-bottom: 15px !important;
    margin-top: 0 !important;
  }

  .section-title1 {
    text-align: left !important;
  }

  .section-description1 {
    font-size: 12px !important;
    line-height: 1.4 !important;
    text-align: left !important;
  }
}

.about-text:first-child {
  grid-row: 1;
  grid-column: 1;
}

.about-image:first-of-type {
  grid-row: 1;
  grid-column: 2;
}

.about-image:last-of-type {
  grid-row: 2;
  grid-column: 1;
}

.about-text:last-child {
  grid-row: 2;
  grid-column: 2;
}

.section-title {
  font-family: "Montserrat", Sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #000080;
  margin-bottom: 40px;
  line-height: 0.9;
  text-align: right;
}

.section-title1 {
  font-family: "Montserrat", Sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #000080;
  margin-bottom: 40px;
  line-height: 1.1;
  text-align: left;
}


.product-title1 {
  font-family: "Montserrat", Sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: right;

}
.product-title2 {
  font-family: "Montserrat", Sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center;

}

.section-description {
  font-family: "Montserrat", Sans-serif;
  font-size: 20px;
  color: #4D7279;
  line-height: 1.6;
  font-weight: 400;
  text-align: right;
}
.section-description1 {
  font-family: "Montserrat", Sans-serif;
  font-size: 20px;
  color: #4D7279;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
}
.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 450px;
  height: 600px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.about-image-right img {
  border-radius: 20px 80px 80px 20px !important;
}

.about-image-left img {
  border-radius: 80px 20px 20px 80px !important;
}

.about-image img:hover {
  transform: scale(1.02);
}

.process-section {
  padding: 120px 0;
  background: #f8f8f8;
}

.process-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.process-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px;
}

.process-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.process-image img {
  width: 100%;
  max-width: 500px;
  height: 600px;
  object-fit: cover;
  border-radius: 100px 20px 20px 100px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.process-image img:hover {
  transform: scale(1.02);
}

.projects-section {
  padding: 100px 0;
  background: #f8f8f8;
  text-align: center;
}

.projects-header {
  margin-bottom: 60px;
}

.projects-header .section-title {
  font-size: 48px;
  font-weight: 700;
  color: #000080;
  margin-bottom: 20px;
  line-height: 1.1;
  text-align: center;
}

.projects-header .section-description {
  font-size: 20px;
  color: #4D7279;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.project-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.project-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

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

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-content {
  padding: 30px;
}

.project-title {
  font-family: "Montserrat", Sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.2;
}

.project-link {
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000080;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.project-link:hover {
  color: #25D366;
}

.quality-section {
  padding: 100px 0;
  background: #f8f8f8;
  text-align: center;
}

.quality-section .section-title {
  font-size: 25px;
  max-width: 1200px;
  margin: 0 auto;
  background: #e6e6e6;
  padding: 40px 80px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: #2f4f4f;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}
.products-section {
  padding: 100px 0;
  background: #f8f8f8;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

.product-card {
  background: #f8f8f8;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.product-title {
  font-family: "Montserrat", Sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.product-description {
  font-family: "Montserrat", Sans-serif;
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  font-weight: 400;
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  background: #ffffff;
  position: relative;
}

.divider-line {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #000059, transparent);
  margin: 0 20px;
}

.divider-icon {
  background: linear-gradient(139deg, #000059 0%, #223E70 100%);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 89, 0.3);
  position: relative;
  z-index: 2;
}

.divider-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(139deg, #000059 0%, #223E70 100%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
  filter: blur(8px);
}

.testimonials-section {
  padding: 100px 0;
  background: #ffffff;
  text-align: center;
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  z-index: -1;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-title {
  font-family: "Montserrat", Sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #000080;
  margin: 0 0 20px 0;
  line-height: 1.1;
  text-align: center;
}

.testimonials-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 50px;
}

.carousel-container {
  overflow-x: hidden;
  overflow-y: visible;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 0;
  overflow-y: visible;
}

.carousel-item {
  min-width: 100%;
  padding: 0 10px;
  opacity: 0.4;
  transform: scale(0.85);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  filter: blur(1px);
}

.carousel-item.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
  filter: blur(0);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
  user-select: none;
}

.carousel-btn:hover {
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.9));
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
  left: 5px;
}

.carousel-next {
  right: 5px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
  user-select: none;
}

.indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.indicator.active {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.3);
}

.indicator.active::before {
  background: #333;
  transform: translate(-50%, -50%) scale(1.2);
}

.indicator:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.6);
}

.testimonial-text {
  position: relative;
  max-height: 120px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.testimonial-text.expanded {
  max-height: none !important;
  overflow: visible !important;
  height: auto !important;
}

.read-more-btn {
  background: none;
  border: none;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  padding: 5px 0;
  text-decoration: underline;
  opacity: 0.8;
  transition: all 0.3s ease;
  display: none;
}

.read-more-btn:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.read-more-btn::after {
  content: ' ▼';
  font-size: 12px;
  transition: transform 0.3s ease;
}

.read-more-btn.expanded::after {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .testimonials-carousel {
    padding: 0 30px;
  }

  .carousel-container {
    padding: 15px;
  }

  .carousel-btn {
    width: 50px;
    height: 50px;
    font-size: 18px;
    min-width: 50px;
    min-height: 50px;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
  }

  .carousel-prev {
    left: 5px;
  }

  .carousel-next {
    right: 5px;
  }

  .carousel-item {
    padding: 0 5px;
  }
  
  .indicator {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
  }

  .testimonial-text {
    max-height: 100px;
    font-size: 14px;
    line-height: 1.4;
  }

  .testimonial-text.expanded {
    max-height: none !important;
    overflow: visible !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .testimonials-carousel {
    padding: 0 20px;
  }

  .carousel-container {
    padding: 10px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .section-divider {
    padding: 20px 0;
  }

  .divider-line {
    width: 40px;
  }

  .divider-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .testimonial-text {
    max-height: 80px;
  }

  .testimonial-text.expanded {
    max-height: none !important;
    overflow: visible !important;
    height: auto !important;
  }
}

.indicator:hover {
  background: #25D366;
}

@media (max-width: 768px) {
  .testimonials-title {
    font-size: 36px;
  }

  .testimonials-subtitle {
    font-size: 16px;
  }

  .testimonials-summary {
    margin-top: 40px;
    padding: 30px 15px;
  }

  .google-badge {
    flex-direction: column;
    gap: 8px;
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .testimonials-title {
    font-size: 28px;
  }

  .testimonials-subtitle {
    font-size: 14px;
  }

  .testimonials-summary {
    margin-top: 30px;
    padding: 25px 10px;
  }

  .summary-text {
    font-size: 14px;
  }

  .summary-stars i {
    font-size: 18px;
  }

  .google-badge {
    padding: 12px 15px;
  }

  .google-text {
    font-size: 12px;
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.testimonial-card {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.testimonial-info {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex: 1;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.testimonial-card:nth-child(1) .testimonial-avatar {
  background: #ff6b35;
}

.testimonial-card:nth-child(2) .testimonial-avatar {
  background: #8e44ad;
}

.testimonial-card:nth-child(3) .testimonial-avatar {
  background: #27ae60;
}

.testimonial-card:nth-child(4) .testimonial-avatar {
  background: #3498db;
}

.testimonial-card:nth-child(5) .testimonial-avatar {
  background: #e74c3c;
}

.testimonial-details {
  display: flex;
  flex-direction: column;
  margin-left: 5px;
}

.testimonial-name {
  font-weight: 700;
  color: #000;
  font-size: 16px;
  margin-bottom: 2px;
}

.testimonial-date {
  font-size: 14px;
  color: #000;
  font-weight: 400;
}

.google-icon {
  width: 20px;
  height: 20px;
  background: #4285f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

.testimonial-stars {
  color: #f39c12;
  margin-bottom: 15px;
}

.testimonial-stars i {
  margin-right: 2px;
}
.testimonials-summary {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.summary-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.summary-text {
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.summary-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  color: #f39c12;
}

.summary-stars i {
  font-size: 20px;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 20px;
  border-radius: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.google-logo {
  width: 60px;
  height: 20px;
}

.google-text {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.testimonial-summary {
  margin-top: 40px;
  padding: 30px;
  background: #f8f8f8;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-summary h3 {
  font-size: 24px;
  color: #2c3e50;
}

.rating-stars {
  color: #f39c12;
  font-size: 24px;
}

.rating-stars i {
  margin-right: 5px;
}

.google-logo {
  font-size: 24px;
  color: #4285f4;
}

.gallery-section {
  padding: 100px 0;
  background: #f8f8f8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.talentus-box-section {
  padding: 100px 0;
  background: #f8f8f8;
  text-align: center;
}

.talentus-box {
  background: linear-gradient(139deg, #000059 0%, #223E70 100%);
  padding: 60px 80px;
  margin: 0 auto;
  max-width: 600px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 89, 0.3);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.talentus-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  z-index: 1;
}

.talentus-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 89, 0.4);
}

.talentus-title {
  font-family: "Montserrat", Sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.2;
  text-align: center;
  position: relative;
  z-index: 2;
}

.talentus-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  position: relative;
  z-index: 2;
}

.talentus-button:hover {
  background: #20b85a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: #ffffff;
}

.talentus-button i {
  font-size: 14px;
}

.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.floating-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.floating-whatsapp a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
  * {
    -webkit-overflow-scrolling: touch;
  }

  html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }

  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .btn-whatsapp,
  .floating-whatsapp a {
    min-height: 44px;
    min-width: 44px;
  }

  section {
    scroll-margin-top: 70px;
  }
}

@media (max-width: 1024px) {
  .hero-section {
    min-height: 516px;
  }

  .hero-title {
    font-size: 45px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

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

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

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

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

  .about-content {
    gap: 30px;
    padding: 0 30px;
  }

  .about-image img {
    width: 100%;
    max-width: 400px;
    height: 500px;
  }
}

@media (max-width: 900px) {
  .hidden-tablet {
    display: none;
  }

  .hero-content {
    left: 200px;
    max-width: 500px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .section-title {
    font-size: 42px;
  }

  .section-title1 {
    font-size: 42px;
  }


  .about-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 25px;
    padding: 0 25px;
  }


  .about-text {
    text-align: center;
    padding: 20px 15px;
  }

  .section-title {
    text-align: center;
  }

  .section-description {
    text-align: center;
  }

  .section-description1 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .hero-section {
    min-height: 600px;
    justify-content: flex-start;
    align-items: stretch;
    padding: 20px;
    border-radius: 0;
    margin-top: 0;
    background-position: center center;
  }

  .hero-container {
    padding-left: 20px;
    justify-content: center;
  }

  .hero-content {
    left: 0;
    max-width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 35px;
    margin-top: 0;
    margin-left: 0;
    text-align: center;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 18px;
    margin-left: 0;
    text-align: center;
    line-height: 1.3;
  }

  .hero-button {
    margin: 25px auto 0 auto;
    padding: 0;
    align-self: center;
  }

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

  .about-content {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 15px !important;
    padding: 0 15px !important;
  }

  .about-text {
    padding: 5px !important;
  }

  .about-text:first-child {
    grid-row: 1;
    grid-column: 1;
  }

  .about-image:first-of-type {
    grid-row: 1;
    grid-column: 2;
  }

  .about-image:last-of-type {
    grid-row: 2;
    grid-column: 1;
  }

  .about-text:last-child {
    grid-row: 2;
    grid-column: 2;
  }

  .about-image img {
    width: 100%;
    max-width: 100%;
    height: 350px;
    object-fit: cover;
  }

  .about-image-right img {
    border-radius: 20px !important;
  }

  .about-image-left img {
    border-radius: 20px !important;
  }
  .quality-section {
    text-align: center !important;
  }

  .quality-section .section-title {
    font-size: 20px !important;
    padding: 30px 20px !important;
    margin: 0 auto !important;
    max-width: 95% !important;
    text-align: center !important;
    line-height: 1.4 !important;
  }

  .section-title,
  .section-title1 {
    font-size: 20px !important;
    margin-bottom: 15px !important;
    margin-top: 0 !important;
  }

  .section-title {
    text-align: right !important;
  }

  .section-title1 {
    text-align: left !important;
  }

  .section-description,
  .section-description1 {
    font-size: 12px !important;
    line-height: 1.4 !important;
    color: #4D7279 !important;
    font-weight: 400 !important;
    margin: 0 !important;
  }

  .section-description {
    text-align: right !important;
  }

  .section-description1 {
    text-align: left !important;
  }

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

  .products-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }

  .product-card {
    padding: 40px 30px;
    text-align: center;
  }

  .product-card-allvale {
    padding: 40px 30px;
    max-width: 100%;
  }

  .product-title {
    font-size: 24px;
  }

  .product-description {
    font-size: 16px;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 20px;
  }

.testimonials-carousel {
  padding: 40px 0;
  min-height: 350px;
  max-width: 100%;
}

.carousel-track::before,
.carousel-track::after {
  width: 400px;
  height: 150px;
  border-radius: 200px 200px 0 0;
}

.carousel-track::after {
  border-radius: 0 0 200px 200px;
}

.carousel-item {
  width: 220px;
  min-height: 250px;
  height: auto;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  font-size: 14px;
}

.carousel-prev {
  left: 5px;
}

.carousel-next {
  right: 5px;
}

  .testimonial-card {
    padding: 25px 20px;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .projects-section {
    text-align: center !important;
  }

  .projects-header {
    text-align: center !important;
  }

  .projects-header .section-title {
    text-align: center !important;
  }

  .projects-header .section-description {
    text-align: center !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }

  .project-image {
    height: 250px;
  }

  .gallery-item img {
    height: 300px;
  }

  .floating-whatsapp {
    bottom: 25px;
    right: 25px;
  }

  .floating-whatsapp a {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }

  .hidden-mobile {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .hero-section {
    min-height: 500px;
    padding: 15px;
  }

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

  .hero-content {
    left: 0;
    max-width: 100%;
  }

  .hero-title {
    font-size: 28px;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 16px;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .hero-button {
    margin: 20px auto 0 auto;
  }

  .btn-whatsapp {
    padding: 12px 25px;
    font-size: 14px;
  }

  .about-section {
    padding: 60px 0;
  }

  .about-content {
    padding: 0 15px;
    gap: 15px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .about-text {
    padding: 10px 5px;
  }

  .about-text:first-child {
    grid-row: 1;
    grid-column: 1;
  }

  .about-image:first-of-type {
    grid-row: 1;
    grid-column: 2;
  }

  .about-image:last-of-type {
    grid-row: 2;
    grid-column: 1;
  }

  .about-text:last-child {
    grid-row: 2;
    grid-column: 2;
  }

  .about-image img {
    height: 280px;
    border-radius: 15px !important;
  }

  .section-title {
    font-size: 20px;
    text-align: right;
    margin-bottom: 15px;
  }

  .section-title1 {
    font-size: 20px;
    text-align: left;
    margin-bottom: 15px;
  }


  .quality-section {
    text-align: center !important;
  }

  .quality-section .section-title {
    font-size: 18px !important;
    padding: 25px 15px !important;
    margin: 0 auto !important;
    max-width: 95% !important;
    text-align: center !important;
    line-height: 1.3 !important;
  }

  .section-description {
    font-size: 12px;
    text-align: left;
    line-height: 1.4;
    color: #4D7279;
    font-weight: 400;
  }

  .section-description1 {
    font-size: 12px;
    text-align: left;
    line-height: 1.4;
    color: #4D7279;
    font-weight: 400;
  }

  .products-section {
    padding: 60px 0;
  }

  .products-grid {
    padding: 0 15px;
    gap: 25px;
  }

  .product-card {
    padding: 30px 20px;
  }

  .product-card-allvale {
    padding: 30px 20px;
  }

  .product-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .product-description {
    font-size: 15px;
    line-height: 1.4;
  }

  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-grid {
    padding: 0 15px;
    gap: 20px;
  }

  .testimonial-card {
    padding: 20px 15px;
  }

  .testimonial-text {
    font-size: 13px;
    line-height: 1.5;
  }

  .gallery-section {
    padding: 60px 0;
  }

  .gallery-grid {
    padding: 0 15px;
    gap: 15px;
  }

  .gallery-item img {
    height: 250px;
  }

  .projects-section {
    padding: 60px 0 !important;
  }

  .projects-header {
    text-align: center !important;
  }

  .projects-header .section-title {
    font-size: 28px !important;
    text-align: center !important;
  }

  .projects-header .section-description {
    font-size: 14px !important;
    text-align: center !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .projects-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
    padding: 0 10px !important;
  }

  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
  }

  .floating-whatsapp a {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .talentus-box-section {
    padding: 80px 0;
  }

  .talentus-box {
    padding: 40px 50px;
    margin: 0 20px;
    max-width: 90%;
  }

  .talentus-title {
    font-size: 30px;
  }

  .talentus-button {
    padding: 12px 25px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .talentus-box {
    padding: 30px 40px;
    margin: 0 15px;
  }

  .talentus-title {
    font-size: 26px;
  }

  .talentus-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-title1 {
    font-size: 24px;
  }


  .quality-section {
    text-align: center !important;
  }

  .quality-section .section-title {
    font-size: 16px !important;
    padding: 20px 12px !important;
    margin: 0 auto !important;
    max-width: 95% !important;
    text-align: center !important;
    line-height: 1.3 !important;
  }

  .product-title {
    font-size: 20px;
  }

  .product-description {
    font-size: 14px;
  }

  .btn-whatsapp {
    padding: 10px 20px;
    font-size: 13px;
  }

  .talentus-box {
    padding: 25px 30px;
    margin: 0 10px;
  }

  .talentus-title {
    font-size: 22px;
  }

  .talentus-button {
    padding: 8px 18px;
    font-size: 13px;
  }
}