/* HOVG1 Specific Styles */
/* Racing Drone Fullscreen Icon */
.training-fullscreen-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.rd-image-container:hover .training-fullscreen-icon {
  opacity: 1;
}
/* HOVG1 Innovation Overview Section */
.hovg1-innovation-section {
  padding: 120px 0;
  background: white;
  position: relative;
}

.hovg1-innovation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hovg1-innovation-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hovg1-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: linear-gradient(135deg, #ff6b35, #ff9500);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
 }
 
 .hovg1-hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
 }

 .hovg1-hero-cta:hover::before {
  left: 100%;
}

.hovg1-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
  background: linear-gradient(135deg, #ff9500, #ffb347);
}
 
 /* .hovg1-hero-cta:ilmer::before {
   left: 100%;
 }
 
 .hovg1-hero-cta:ilmer {
   transform: translateY(-3px);
   box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
   background: linear-gradient(135deg, #ff9500, #ffb347);
 } */

.hovg1-innovation-text {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.hovg1-innovation-text.animate {
  opacity: 1;
  transform: translateX(0);
}

.hovg1-section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: black;
  line-height: 1.2;
}

.hovg1-section-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: black;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hovg1-innovation-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  color: black;
}

.hovg1-innovation-description span {
  color: black;
  font-weight: 600;
}

/* HOVG1 Innovation Image Section */
.hovg1-innovation-image {
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.hovg1-innovation-image.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Carousel Styles for hovg1-innovation-image */
.hovg1-image-carousel {
  border-radius: 25px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all 0.4s ease;
}

.hovg1-image-carousel:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.3);
}

.hovg1-image-carousel .carousel-inner {
  border-radius: 25px;
}

.hovg1-image-carousel .carousel-item {
  transition: transform 0.6s ease-in-out;
}

.hovg1-image-container {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  background: transparent;
  backdrop-filter: none;
  border: none;
}

.hovg1-image-container:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.hovg1-image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.hovg1-image-container:hover img {
  transform: scale(1.05);
}

/* HOVG1 Fullscreen Icon */
.hovg1-fullscreen-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hovg1-image-container:hover .hovg1-fullscreen-icon {
  opacity: 1;
}

/* HOVG1 Click Hint */
.hovg1-click-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hovg1-image-container:hover .hovg1-click-hint {
  opacity: 1;
}

/* Carousel Controls - Smaller and centered */
.hovg1-carousel-control {
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  border: 2px solid rgba(255, 107, 53, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  position: absolute;
  z-index: 10;
}

.hovg1-image-carousel:hover .hovg1-carousel-control {
  opacity: 1;
}

.hovg1-carousel-control:hover {
  background: rgba(255, 107, 53, 0.8);
  border-color: rgba(255, 107, 53, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.hovg1-carousel-control .carousel-control-prev-icon,
.hovg1-carousel-control .carousel-control-next-icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* Position controls in the middle of the image */
.hovg1-image-carousel .carousel-control-prev {
  left: 15px;
}

.hovg1-image-carousel .carousel-control-next {
  right: 15px;
}

/* Carousel Indicators */
.hovg1-image-carousel .carousel-indicators {
  bottom: 20px;
  margin-bottom: 0;
}

.hovg1-image-carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  margin: 0 6px;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.hovg1-image-carousel .carousel-indicators button.active {
  background: #ff6b35;
  border-color: #ff6b35;
  opacity: 1;
  transform: scale(1.2);
}

.hovg1-image-carousel .carousel-indicators button:hover {
  border-color: rgba(255, 107, 53, 0.8);
  opacity: 1;
}

/* HOVG1 Performance Showcase Section */
.hovg1-performance-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  position: relative;
}

.hovg1-performance-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hovg1-performance-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hovg1-performance-text {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.hovg1-performance-text.animate {
  opacity: 1;
  transform: translateX(0);
}

.hovg1-section-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
}

.hovg1-performance-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hovg1-feature-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border-left: 4px solid #ff6b35;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hovg1-feature-item:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateX(10px);
}

.hovg1-feature-item h4 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.hovg1-feature-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.hovg1-performance-video {
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.hovg1-performance-video.animate {
  opacity: 1;
  transform: translateX(0);
}

.hovg1-video-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.hovg1-video-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.3);
}

.hovg1-video-container video {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.hovg1-video-container:hover video {
  transform: scale(1.02);
}

/* HOVG1 Product Showcase Section */
.hovg1-showcase-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hovg1-showcase-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.hovg1-showcase-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hovg1-showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hovg1-showcase-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hovg1-showcase-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hovg1-showcase-content p {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.8s forwards;
}

.hovg1-showcase-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 1s forwards;
}

.hovg1-showcase-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 150px;
  backdrop-filter: blur(10px);
}

.hovg1-btn-primary {
  background: linear-gradient(135deg, #ff6b35, #ff9500);
  color: white;
  border-color: transparent;
}

.hovg1-btn-primary:hover {
  background: linear-gradient(135deg, #ff9500, #ffb347);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  color: white;
}

.hovg1-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.hovg1-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  color: white;
}

/* HOVG1 Specifications Section */
.hovg1-specs-section {
  padding: 120px 0 0 0;
  background: black;
  position: relative;
}

.hovg1-specs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  pointer-events: none;
}

.hovg1-specs-container {
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.hovg1-specs-container.animate {
  opacity: 1;
  transform: translateY(0);
}

.hovg1-specs-title {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 4rem;
  color: white;
}

.hovg1-specs-table {
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.hovg1-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.3s ease;
}
@media (min-width:768px){
  .hovg1-spec-row {
    justify-content: left;
  }
  .hovg1-spec-label {
    min-width: 50%;
  }
}
.hovg1-spec-row:last-child {
  border-bottom: none;
}

.hovg1-spec-row:hover {
  background: rgba(255, 107, 53, 0.05);
}

.hovg1-spec-label {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hovg1-spec-value {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: white;
  text-align: right;
}

/* HOVG1 CTA Section */
.hovg1-cta-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  overflow: hidden;
}

.hovg1-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hovg1-cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.hovg1-cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
  line-height: 1.2;
}

.hovg1-cta-description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
}

.hovg1-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hovg1-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 180px;
  backdrop-filter: blur(10px);
}

.hovg1-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.hovg1-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  color: white;
}

/* Explore More Section */
.hovg1-explore-section {
  padding: 120px 5px;
  background: white;
  position: relative;
}

.hovg1-explore-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hovg1-explore-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #000 0%, rgba(0, 0, 0, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.hovg1-explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.hovg1-explore-card {
  background: black;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(50px);
}

.hovg1-explore-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.hovg1-explore-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.3);
}

.hovg1-explore-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hovg1-explore-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hovg1-explore-card:hover .hovg1-explore-image img {
  transform: scale(1.1);
}

.hovg1-explore-content {
  padding: 2rem;
}

.hovg1-explore-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.hovg1-explore-description {
  font-size: 1rem;
  line-height: 1.6;
  color: white;
  margin-bottom: 1.5rem;
}

.hovg1-explore-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hovg1-explore-link:hover {
  color: #ff6b35;
  transform: translateX(5px);
}

/* HOVG1 Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRow {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* HOVG1 Fullscreen Styles */
.hovg1-image-container:fullscreen,
.hovg1-video-container:fullscreen {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hovg1-image-container:fullscreen img,
.hovg1-video-container:fullscreen video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* HOVG1 Responsive Design */
@media (max-width: 1200px) {
  .hovg1-innovation-content,
  .hovg1-performance-container {
    gap: 60px;
  }

  .hovg1-specs-container {
    max-width: 1200px;
  }

  .hovg1-explore-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Mobile Carousel Adjustments */
  .hovg1-image-carousel {
    border-radius: 15px;
  }

  .hovg1-image-carousel .carousel-inner {
    border-radius: 15px;
  }

  .hovg1-carousel-control {
    width: 40px;
    height: 40px;
  }

  .hovg1-carousel-control .carousel-control-prev-icon,
  .hovg1-carousel-control .carousel-control-next-icon {
    width: 16px;
    height: 16px;
  }

  .hovg1-image-carousel .carousel-control-prev {
    left: 10px;
  }

  .hovg1-image-carousel .carousel-control-next {
    right: 10px;
  }

  .hovg1-image-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }

  .hovg1-innovation-content,
  .hovg1-performance-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  /* Left-justify text content on tablet and mobile */
  .hovg1-innovation-text,
  .hovg1-performance-text,
  .hovg1-innovation-description,
  .hovg1-section-description {
    text-align: left !important;
  }

  .hovg1-innovation-section,
  .hovg1-performance-section,
  .hovg1-specs-section,
  .hovg1-cta-section,
  .hovg1-explore-section {
    padding: 80px 0 0 0;
  }

  .hovg1-showcase-section {
    height: 70vh;
  }

  .hovg1-showcase-content h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hovg1-showcase-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hovg1-showcase-btn {
    min-width: 200px;
  }


  .hovg1-spec-row {
    padding: 18px 25px;
  }


  .hovg1-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hovg1-cta-btn {
    min-width: 250px;
  }
}

@media (max-width: 480px) {
  /* Extra Small Mobile Carousel Adjustments */
  .hovg1-image-carousel {
    border-radius: 12px;
  }

  .hovg1-image-carousel .carousel-inner {
    border-radius: 12px;
  }

  .hovg1-carousel-control {
    width: 35px;
    height: 35px;
  }

  .hovg1-carousel-control .carousel-control-prev-icon,
  .hovg1-carousel-control .carousel-control-next-icon {
    width: 14px;
    height: 14px;
  }

  .hovg1-image-carousel .carousel-control-prev {
    left: 8px;
  }

  .hovg1-image-carousel .carousel-control-next {
    right: 8px;
  }

  .hovg1-image-carousel .carousel-indicators {
    bottom: 15px;
  }

  .hovg1-image-carousel .carousel-indicators button {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }

  .hovg1-showcase-section {
    height: 60vh;
  }

  .hovg1-showcase-content {
    padding: 0 15px;
  }

  .hovg1-innovation-content,
  .hovg1-performance-container,
  .hovg1-cta-content,
  .hovg1-explore-container {
    padding: 0 15 px;
  }

  .hovg1-innovation-section,
  .hovg1-performance-section,
  .hovg1-cta-section,
  .hovg1-explore-section {
    padding: 60px 0;
  }
  
  .hovg1-specs-section{
    padding: 60px 0 0 0;
  }

  .hovg1-specs-title {
    margin-bottom: 2.5rem;
  }

  .hovg1-spec-row {
    padding: 14px 5px;
    align-items: flex-start;
    gap: 6px;
  }

  .hovg1-spec-label {
    font-size: clamp(0.8rem, 3.5vw, 1rem);
  }

  .hovg1-spec-value {
    font-size: clamp(0.8rem, 3.5vw, 1rem);
    text-align: right;
  }

  .hovg1-explore-image {
    height: 200px;
  }

  .hovg1-explore-content {
    padding: 1.5rem;
  }

  /* Left-justify text content on mobile phones */
  .hovg1-innovation-text,
  .hovg1-performance-text,
  .hovg1-innovation-description,
  .hovg1-section-description {
    text-align: left !important;
  }
}