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

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ecf0f1;
}

/* Header Styles */
.header {
  background-color: #fff;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.logo-section:hover {
  opacity: 0.8;
}

.logo {
  height: 50px;
  width: auto;
}

.site-name {
  font-size: 28px;
  color: #2c3e50;
  font-weight: bold;
}

.navigation {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #002d4d;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
  padding: 8px 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link i {
  font-size: 18px;
}

.nav-link:hover {
  color: #00695c;
  background-color: #ecf0f1;
}

/* Carousel Styles */
.carousel {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background-color: #fff;
}

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

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

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

.carousel-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Benefits Slide Styles */
.benefits-slide {
  background: linear-gradient(135deg, #001a33 0%, #002d4d 30%, #004d73 60%, #00695c 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

.benefits-content {
  width: 100%;
  max-width: 1200px;
  padding: 30px 40px 60px 40px;
  text-align: center;
}

.benefits-title {
  font-size: 44px;
  color: #c8e639;
  font-weight: 700;
  margin-bottom: 40px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 30px;
  padding: 0 40px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.benefit-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #00b4d8 0%, #4caf50 50%, #c8e639 100%);
  border: 3px solid #7fdd6d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

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

.benefit-icon svg {
  width: 100%;
  height: 100%;
  stroke: #001a33;
  stroke-width: 2.5;
}

.benefit-text {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.benefits-footer {
  font-size: 28px;
  color: #7fdd6d;
  font-weight: 600;
  margin: 0;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}

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

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3);
  color: #333;
  border: none;
  font-size: 24px;
  padding: 15px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 10;
  border-radius: 5px;
}

.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.dot:hover {
  background-color: rgba(0, 0, 0, 0.5);
  transform: scale(1.2);
}

.dot.active {
  background-color: #333;
  transform: scale(1.3);
}

/* Custom Slides Styles */
.slide-custom {
  background: linear-gradient(135deg, #001a33 0%, #002d4d 30%, #004d73 60%, #00695c 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.slide-content {
  width: 100%;
  max-width: 1200px;
  padding: 30px 40px;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.slide-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.logo-globe-img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
  animation: pulse 2s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

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

.slide-brand {
  font-size: 48px;
  font-weight: 700;
  color: #0091c7;
  letter-spacing: 3px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
  margin: 0;
}

/* Slide 1 Styles */
.slide-1 .slide-subtitle {
  font-size: 36px;
  color: #fff;
  font-weight: 400;
  margin: 20px 0;
}

.slide-1 .slide-cta {
  margin-top: 30px;
}

.slide-1 .cta-main {
  font-size: 42px;
  font-weight: 700;
  color: #c8e639;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  margin: 0 0 10px 0;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    text-shadow: 2px 2px 8px rgba(200, 230, 57, 0.5), 0 0 20px rgba(200, 230, 57, 0.3);
  }
  50% {
    text-shadow: 2px 2px 12px rgba(200, 230, 57, 0.8), 0 0 30px rgba(200, 230, 57, 0.5);
  }
}

.slide-1 .cta-sub {
  font-size: 26px;
  color: #7fdd6d;
  font-weight: 400;
  margin: 0;
}

/* Slide 2 Styles */
.slide-2 .slide-main-text {
  font-size: 38px;
  color: #fff;
  font-weight: 400;
  margin: 20px 0;
}

.slide-2 .highlight-green {
  color: #7fdd6d;
  font-weight: 700;
}

.slide-2 .slide-pricing {
  margin-top: 30px;
}

.slide-2 .pricing-text {
  font-size: 28px;
  color: #fff;
  margin: 8px 0;
}

.slide-2 .highlight-red {
  color: #ff6b6b;
  font-weight: 700;
}

.slide-2 .highlight-yellow {
  color: #ffd93d;
  font-weight: 700;
  font-size: 38px;
}

.slide-2 .pricing-installation {
  font-size: 28px;
  color: #7fdd6d;
  margin: 10px 0;
}

/* Slide 3 Styles */
.slide-3 .slide-hero-text {
  font-size: 52px;
  color: #fff;
  font-weight: 400;
  margin: 25px 0 15px 0;
  line-height: 1.2;
}

.slide-3 .highlight-green {
  color: #7fdd6d;
  font-weight: 700;
  display: block;
}

.slide-3 .slide-announcement {
  font-size: 44px;
  color: #ff6b6b;
  font-weight: 700;
  margin: 15px 0;
  text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
}

/* Responsive adjustments for custom slides */
@media (max-width: 768px) {
  .slide-content {
    padding: 15px 20px;
  }

  .slide-logo {
    margin-bottom: 12px;
  }

  .logo-globe-img {
    width: 60px;
    height: 60px;
    margin-bottom: 5px;
  }

  .slide-brand {
    font-size: 32px;
    letter-spacing: 2px;
  }
  
  .slide-1 .slide-subtitle {
    font-size: 22px;
    margin: 12px 0;
  }
  
  .slide-1 .slide-cta {
    margin-top: 15px;
  }

  .slide-1 .cta-main {
    font-size: 28px;
    margin: 0 0 8px 0;
  }
  
  .slide-1 .cta-sub {
    font-size: 16px;
    line-height: 1.3;
  }

  .slide-2 .slide-main-text {
    font-size: 24px;
    margin: 12px 0;
  }

  .slide-2 .slide-pricing {
    margin-top: 15px;
  }

  .slide-2 .pricing-text {
    font-size: 18px;
    margin: 5px 0;
  }

  .slide-2 .highlight-yellow {
    font-size: 24px;
  }

  .slide-2 .pricing-installation {
    font-size: 18px;
    margin: 8px 0;
  }

  .slide-3 .slide-hero-text {
    font-size: 32px;
    margin: 15px 0 10px 0;
  }

  .slide-3 .slide-announcement {
    font-size: 26px;
    margin: 10px 0;
  }
}

/* Estilos adicionales para móviles muy pequeños */
@media (max-width: 480px) {
  .carousel {
    height: 380px;
  }

  .slide-content {
    padding: 10px 15px;
  }

  .slide-logo {
    margin-bottom: 8px;
  }

  .logo-globe-img {
    width: 50px;
    height: 50px;
    margin-bottom: 3px;
  }

  .slide-brand {
    font-size: 26px;
    letter-spacing: 1px;
  }

  .slide-1 .slide-subtitle {
    font-size: 18px;
    margin: 8px 0;
  }

  .slide-1 .slide-cta {
    margin-top: 12px;
  }

  .slide-1 .cta-main {
    font-size: 24px;
    margin: 0 0 6px 0;
  }

  .slide-1 .cta-sub {
    font-size: 14px;
    line-height: 1.2;
    padding: 0 10px;
  }

  .slide-2 .slide-main-text {
    font-size: 20px;
    margin: 8px 0;
  }

  .slide-2 .slide-pricing {
    margin-top: 12px;
  }

  .slide-2 .pricing-text {
    font-size: 15px;
    margin: 4px 0;
  }

  .slide-2 .highlight-yellow {
    font-size: 20px;
  }

  .slide-2 .pricing-installation {
    font-size: 15px;
    margin: 6px 0;
  }

  .slide-3 .slide-hero-text {
    font-size: 26px;
    margin: 12px 0 8px 0;
  }

  .slide-3 .slide-announcement {
    font-size: 22px;
    margin: 8px 0;
  }

  .carousel-btn {
    padding: 8px 12px;
    font-size: 16px;
  }

  .carousel-dots {
    bottom: 10px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

/* Call to Action Section */
.cta-section {
  background: linear-gradient(135deg, #4caf50 0%, #7fdd6d 50%, #c8e639 100%);
  padding: 100px 20px;
  margin: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-icon-group {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.cta-icon-item {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatIcon 3s ease-in-out infinite;
  backdrop-filter: blur(10px);
  transition: transform 0.3s;
}

.cta-icon-item:hover {
  transform: scale(1.2) rotate(10deg);
}

.cta-icon-item:nth-child(2) {
  animation-delay: 0.5s;
}

.cta-icon-item:nth-child(3) {
  animation-delay: 1s;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.cta-feature-icon {
  font-size: 32px;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.cta-title {
  font-size: 52px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 25px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.title-icon {
  font-size: 42px;
  color: #ffd93d;
  animation: pulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 217, 61, 0.5));
}

.cta-text {
  font-size: 22px;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.text-icon {
  font-size: 24px;
  color: #ffd93d;
  margin-right: 8px;
}

.highlight-number {
  font-weight: 700;
  color: #002d4d;
  background: rgba(255, 255, 255, 0.9);
  padding: 2px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.highlight-text {
  font-weight: 700;
  color: #002d4d;
  text-shadow: 1px 1px 0px rgba(255,255,255,0.3);
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 25px 35px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
  min-width: 150px;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.stat-icon {
  font-size: 36px;
  color: #ffd93d;
  margin-bottom: 5px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button {
  background: #002d4d;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 50px;
  padding: 20px 60px;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  display: inline-flex;
  align-items: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  background-color: #004d73;
  border-color: #ffd93d;
}

.cta-button:active {
  transform: translateY(-2px) scale(1.02);
}

.cta-button i {
  font-size: 24px;
  z-index: 1;
}

.cta-button span {
  z-index: 1;
}

/* Mission and Vision Section */
.mission-vision-section {
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
  padding: 100px 20px;
  margin-top: 80px;
  margin-bottom: 80px;
}

.mission-vision-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
}

.mission-box,
.vision-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.mission-box:hover,
.vision-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #00b4d8 0%, #4caf50 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-box .icon-wrapper {
  background: linear-gradient(135deg, #4caf50 0%, #c8e639 100%);
}

.icon {
  width: 45px;
  height: 45px;
  color: #fff;
}

.mv-title {
  font-size: 36px;
  color: #002d4d;
  margin-bottom: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mv-text {
  font-size: 16px;
  color: #34495e;
  line-height: 1.8;
  text-align: justify;
}

/* Products Section */
.products-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  font-size: 48px;
  color: #002d4d;
  margin-bottom: 60px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #00b4d8 0%, #7fdd6d 100%);
  border-radius: 2px;
}

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

.product-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.product-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00b4d8 0%, #4caf50 50%, #7fdd6d 100%);
}

.product-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.product-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00b4d8 0%, #4caf50 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.3);
  transition: transform 0.3s;
}

.product-box:hover .product-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.product-icon {
  font-size: 36px;
  color: #fff;
}

.product-name {
  font-size: 28pt;
  font-weight: 700;
  color: #002d4d;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.product-velocity {
  font-size: 36pt;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.velocity-icon {
  font-size: 28pt;
  color: #00b4d8;
  animation: pulse 2s ease-in-out infinite;
}

.product-price {
  font-size: 30pt;
  font-weight: bold;
  color: #4caf50;
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.price-icon {
  font-size: 24pt;
  color: #7fdd6d;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 15px 0;
  width: 100%;
}

.feature-badge {
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
  color: #002d4d;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature-badge:hover {
  background: linear-gradient(135deg, #00b4d8 0%, #4caf50 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.feature-badge i {
  font-size: 12px;
}

.product-description {
  font-size: 14px;
  color: #34495e;
  margin-bottom: 25px;
  line-height: 1.5;
  flex-grow: 1;
}

.contract-button {
  background-color: #002d4d;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.contract-button i {
  font-size: 16px;
}

.contract-button:hover {
  background-color: #4caf50;
  transform: scale(1.05);
}

.contract-button:active {
  transform: scale(0.98);
}

/* Footer Styles */
.footer {
  background-color: #001a33;
  color: #fff;
  padding: 50px 50px;
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}

.footer-left, .footer-right {
  flex: 1;
}

.footer h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #ecf0f1;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer p {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer a {
  color: #7fdd6d;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: #c8e639;
}

.social-media {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00b4d8 0%, #4caf50 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  text-decoration: none;
  color: #fff;
  font-size: 12px;
}

.social-link:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #004d73 0%, #00695c 100%);
}

.social-link img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.certifications {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.certifications img {
  height: 60px;
  width: auto;
  background-color: #fff;
  padding: 5px;
  border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 10px;
    padding: 10px 15px;
  }

  .logo {
    height: 35px;
  }

  .site-name {
    font-size: 20px;
  }

  .navigation {
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-link {
    font-size: 14px;
    padding: 5px 10px;
  }

  .footer {
    flex-direction: column;
    gap: 30px;
  }

  .products-container {
    grid-template-columns: 1fr;
  }

  .carousel {
    height: 450px;
  }

  .carousel-title {
    font-size: 32px;
  }

  .carousel-btn {
    padding: 10px 15px;
    font-size: 18px;
  }

  .mission-vision-container {
    grid-template-columns: 1fr;
  }

  .mission-box,
  .vision-box {
    padding: 30px;
  }

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

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

  .cta-title {
    font-size: 32px;
    gap: 10px;
  }

  .title-icon {
    font-size: 28px;
  }

  .cta-text {
    font-size: 16px;
  }

  .cta-icon-group {
    gap: 20px;
    margin-bottom: 20px;
  }

  .cta-icon-item {
    width: 50px;
    height: 50px;
  }

  .cta-feature-icon {
    font-size: 24px;
  }

  .cta-stats {
    gap: 20px;
    margin: 30px 0;
  }

  .stat-item {
    padding: 20px 25px;
    min-width: 120px;
  }

  .stat-icon {
    font-size: 28px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 12px;
  }

  .cta-button {
    padding: 15px 35px;
    font-size: 18px;
    gap: 10px;
  }

  .cta-button i {
    font-size: 20px;
  }

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

  .benefits-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

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

  .benefit-icon {
    width: 80px;
    height: 80px;
    padding: 15px;
  }

  .benefit-text {
    font-size: 16px;
  }

  .benefits-footer {
    font-size: 20px;
  }

  .benefits-content {
    padding: 40px 20px;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #ff6b6b;
}

.modal-title {
  font-size: 26px;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: bold;
}

.modal-subtitle {
  font-size: 16px;
  color: #7f8c8d;
  margin-bottom: 25px;
}

.modal-subtitle span {
  color: #4caf50;
  font-weight: bold;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #34495e;
}

.form-group input,
.form-group select {
  padding: 12px 15px;
  border: 2px solid #ecf0f1;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #00b4d8;
}

.form-group input::placeholder {
  color: #bdc3c7;
}

.form-buttons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.btn-cancel,
.btn-submit {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-cancel {
  background-color: #7f8c8d;
  color: white;
}

.btn-cancel:hover {
  background-color: #002d4d;
}

.btn-submit {
  background-color: #4caf50;
  color: white;
}

.btn-submit:hover {
  background-color: #00695c;
  transform: scale(1.02);
}

.btn-submit:active,
.btn-cancel:active {
  transform: scale(0.98);
}

/* Loading state for submit button */
.btn-submit.loading {
  background-color: #7f8c8d;
  cursor: not-allowed;
  position: relative;
}

.btn-submit.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 3px solid #fff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
}

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