/* Racing Drone Specific Styles */

/* Racing Drone Hero Section */
.rd-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rd-hero-media {
  position: absolute;
  top: -60px; /* Move image higher up */
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rd-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1);
  max-width: 100vw;
  max-height: 100vh;
}

.rd-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rd-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 2;
}

.rd-hero-content {
  position: absolute;
  bottom: 120px; /* Move content higher up */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  max-width: 1200px;
  padding: 0 20px;
  width: 100%;
}

.rd-hero-title {
  font-size: clamp(24px,10vw,96px);
  font-weight: 700;
  margin-bottom: 1.5rem;
  /* background: linear-gradient(135deg, #ff6b35, #ff9500); */
  background-color: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: 2px;
  white-space: nowrap;
  overflow: visible;
  width: 100%;
}

.rd-hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  letter-spacing: 1px;
}

.racing-hero-cta {
  display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 18px 40px;
   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;
   min-width: 200px;
   position: relative;
   overflow: hidden;
 }
 
 .racing-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;
 }
 
 .racing-hero-cta:ilmer::before {
   left: 100%;
 }
 
 .racing-hero-cta:ilmer {
   transform: translateY(-3px);
   box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
   background: linear-gradient(135deg, #ff9500, #ffb347);
 }

.rd-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.rd-scroll-indicator:hover {
  transform: translateX(-50%) translateY(-5px);
}

.rd-scroll-text {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rd-scroll-arrow {
  width: 24px;
  height: 24px;
  color: white;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Racing Drone Innovation Overview Section */
.rd-innovation-section {
  padding: 120px 0;
  background: white;
  position: relative;
}

.rd-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;
}

.rd-innovation-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: left;
}

.rd-innovation-text {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.rd-innovation-text.animate {
  opacity: 1;
  transform: translateX(0);
}

.rd-section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: black;
  line-height: 1.2;
  text-align: left;
}

.rd-section-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: black;
  margin-bottom: 2rem;
  font-weight: 500;
  text-align: left;
}

.rd-innovation-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  color:black;
  text-align: left;
}

.rd-innovation-description span {
  color: white;
  font-weight: 600;
}

/* Racing Drone Innovation Image Section */
.rd-innovation-image {
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.rd-innovation-image.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Carousel Styles for rd-innovation-image */
.rd-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;
}

.rd-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);
}

.rd-image-carousel .carousel-inner {
  border-radius: 25px;
}

.rd-image-carousel .carousel-item {
  transition: transform 0.6s ease-in-out;
}

.rd-image-container {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  background: transparent;
  backdrop-filter: none;
  border: none;
}

.rd-image-container:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.rd-image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.rd-image-container:hover img {
  transform: scale(1.05);
}

/* Racing Drone Fullscreen Icon */
.rd-fullscreen-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  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);
  z-index: 10;
}

.rd-fullscreen-icon svg {
  stroke: white;
  width: 24px;
  height: 24px;
}

.rd-image-container:hover .rd-fullscreen-icon {
  opacity: 1;
}

/* Racing Drone Click Hint */
.rd-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);
}

.rd-image-container:hover .rd-click-hint {
  opacity: 1;
}

/* Racing Drone Fullscreen Image Styles */
.rd-image-container:-webkit-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0 !important;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rd-image-container:-moz-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0 !important;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rd-image-container:fullscreen {
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0 !important;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rd-image-container:-webkit-full-screen img {
  border-radius: 0 !important;
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.rd-image-container:-moz-full-screen img {
  border-radius: 0 !important;
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.rd-image-container:fullscreen img {
  border-radius: 0 !important;
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Racing Drone Zoom Cursor Styles */
.rd-image-container:-webkit-full-screen img {
  cursor: zoom-in;
}

.rd-image-container:-moz-full-screen img {
  cursor: zoom-in;
}

.rd-image-container:fullscreen img {
  cursor: zoom-in;
}

.rd-image-container:-webkit-full-screen img.zoomed {
  cursor: grab;
}

.rd-image-container:-moz-full-screen img.zoomed {
  cursor: grab;
}

.rd-image-container:fullscreen img.zoomed {
  cursor: grab;
}

.rd-image-container:-webkit-full-screen img.zoomed:active {
  cursor: grabbing !important;
}

.rd-image-container:-moz-full-screen img.zoomed:active {
  cursor: grabbing !important;
}

.rd-image-container:fullscreen img.zoomed:active {
  cursor: grabbing !important;
}

/* Racing Drone Zoom Instructions */
.rd-zoom-instructions {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  z-index: 1000;
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.rd-zoom-instructions.show {
  opacity: 1;
}

/* Modern Carousel Controls */
.rd-carousel-control {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  top: 50%;
  opacity: 0.8;
  position: absolute;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.rd-image-carousel:hover .rd-carousel-control {
  opacity: 1;
}

.rd-carousel-control:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(255, 107, 53, 0.7));
  border-color: rgba(255, 107, 53, 0.8);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

.rd-carousel-control .carousel-control-prev-icon,
.rd-carousel-control .carousel-control-next-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.rd-carousel-control:hover .carousel-control-prev-icon,
.rd-carousel-control:hover .carousel-control-next-icon {
  filter: brightness(0) invert(1);
  transform: scale(1.1);
}

/* Position controls centered vertically in the carousel container */
.rd-image-carousel .carousel-control-prev {
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.rd-image-carousel .carousel-control-next {
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

/* Carousel Indicators */
.rd-image-carousel .carousel-indicators {
  bottom: 20px;
  margin-bottom: 0;
}

.rd-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;
}

.rd-image-carousel .carousel-indicators button.active {
  background: #ff6b35;
  border-color: #ff6b35;
  opacity: 1;
  transform: scale(1.2);
}

.rd-image-carousel .carousel-indicators button:hover {
  border-color: rgba(255, 107, 53, 0.8);
  opacity: 1;
}

/* Racing Drone Performance Showcase Section */
.rd-performance-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.rd-performance-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.rd-performance-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.rd-performance-text {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.rd-performance-text.animate {
  opacity: 1;
  transform: translateX(0);
}

.rd-performance-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.rd-performance-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: #ff6b35;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.rd-performance-description {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.rd-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.rd-feature-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.rd-feature-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-5px);
}

.rd-feature-item h4 {
  color: #ff6b35;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.rd-feature-item p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}

.rd-performance-video {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.rd-performance-video.animate {
  opacity: 1;
  transform: translateX(0);
}

.rd-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);
}

.rd-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);
}

.rd-video-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.rd-video-container:hover img {
  transform: scale(1.02);
}

.rd-section-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
}

.rd-performance-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.rd-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;
}

.rd-feature-item:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateX(10px);
}

.rd-feature-item h4 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.rd-feature-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.rd-performance-video {
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.rd-performance-video.animate {
  opacity: 1;
  transform: translateX(0);
}

.rd-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);
}

.rd-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);
}

.rd-video-container video {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.rd-video-container:hover video {
  transform: scale(1.02);
}

/* Racing Drone Product Showcase Section */
.rd-showcase-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.rd-showcase-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.rd-showcase-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.rd-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;
}

.rd-showcase-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.rd-showcase-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
}

.rd-showcase-content p {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
}

.rd-showcase-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.rd-showcase-btn {
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-block;
}

.rd-btn-primary {
  background: #ff6b35;
  color: white;
  border-color: #ff6b35;
}

.rd-btn-primary:hover {
  background: transparent;
  color: #ff6b35;
  border-color: #ff6b35;
  transform: translateY(-2px);
}

.rd-btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.rd-btn-secondary:hover {
  background: white;
  color: #333;
  transform: translateY(-2px);
}

/* Racing Drone Specifications Section */
.rd-specs-section {
  padding: 180px 0 0 0;
  background: black;
  position: relative;
}

.rd-specs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  pointer-events: none;
}

.rd-specs-container {
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.rd-specs-container.animate {
  opacity: 1;
  transform: translateY(0);
}

.rd-specs-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: white;
}

.rd-specs-model {
  margin-bottom: 3rem;
}

.rd-specs-model:last-child {
  margin-bottom: 0;
}

.rd-model-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 600;
  color: white;
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  padding-top:1rem;
}

.rd-specs-table {
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.rd-spec-row {
  display: flex;
  justify-content: space-between;
  /* justify-content: left; */
  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;
}

.rd-spec-row:last-child {
  border-bottom: none;
}

.rd-spec-row:hover {
  background: rgba(255, 107, 53, 0.05);
}

.rd-spec-label {
  min-width: 30%;
  font-size: clamp(0.8rem, 3.5vw, 1rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
@media (min-width:376px) and (max-width:425px){
  .rd-spec-label{
    min-width:40%;
  }
  
}
@media (min-width:768px){
  .rd-spec-label{
    min-width:50%;
  }
  .rd-spec-row{
    justify-content: left;
  }
}
.rd-spec-value {
  font-size: clamp(0.8rem, 3.5vw, 1rem);
  color: white;
  font-weight: 600;
  text-align: left;
}

/* Racing Drone Call to Action Section */
.rd-cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  position: relative;
  text-align: center;
}

.rd-cta-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.rd-cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 2rem;
  color: white;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.rd-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.rd-cta-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.rd-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid white;
  min-width: 180px;
  position: relative;
  overflow: hidden;
  background: transparent;
  color: white;
}

.rd-cta-secondary:hover {
  background: white;
  color: #ff6b35;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Racing Drone Explore More Section */
.rd-explore-section {
  padding: 120px 0;
  background: white;
  position: relative;
}

.rd-explore-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.rd-explore-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.rd-explore-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: black;
}

.rd-explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.rd-explore-card {
  background: black;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.1);
  opacity: 0;
  transform: translateY(50px);
}

.rd-explore-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.rd-explore-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.3);
}

.rd-explore-image {
  height: 250px;
  overflow: hidden;
}

.rd-explore-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.rd-explore-card:hover .rd-explore-image img {
  transform: scale(1.1);
}

.rd-explore-content {
  padding: 30px;
}

.rd-explore-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.rd-explore-description {
  color:white;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.rd-explore-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.rd-explore-link:hover {
  color: #ff9500;
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Mobile Hero Adjustments */
  .rd-hero {
    height: 100vh;
  }

  .rd-hero-media {
    padding: 10px;
    top: -40px; /* Move image higher on mobile */
  }

  .rd-hero-media img {
    object-fit: contain;
    padding: 15px;
    max-width: 95vw;
    max-height: 95vh;
  }

  .rd-hero-content {
    bottom: 100px; /* Move content higher on mobile */
    padding: 0 15px;
  }

  .racing-hero-cta {
    padding: 16px 35px;
    font-size: 1rem;
    min-width: 160px;
  }

  .rd-scroll-indicator {
    bottom: 30px;
  }

  /* Mobile Layout Adjustments */
  .rd-innovation-content,
  .rd-performance-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rd-innovation-image,
  .rd-performance-video {
    order: 2; /* Place carousel below text on mobile */
  }

  .rd-innovation-text {
    order: 1; /* Ensure text appears first */
  }

  /* Mobile Carousel Adjustments */
  .rd-image-carousel {
    border-radius: 15px;
  }

  .rd-image-carousel .carousel-inner {
    border-radius: 15px;
  }

  .rd-carousel-control {
    width: 45px;
    height: 45px;
    border-radius: 10px;
  }

  .rd-carousel-control .carousel-control-prev-icon,
  .rd-carousel-control .carousel-control-next-icon {
    width: 18px;
    height: 18px;
  }

  .rd-image-carousel .carousel-control-prev {
    left: 20px;
  }

  .rd-image-carousel .carousel-control-next {
    right: 20px;
  }

  .rd-image-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }

  /* Mobile Specifications */
  .rd-spec-row {
    align-items: flex-start;
    gap: 8px;
    padding: 15px 20px;
  }

  .rd-spec-value {
    text-align: left;
  }

  /* Mobile Explore Grid */
  .rd-explore-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .rd-explore-card {
    min-width: unset;
  }

  /* Mobile Showcase */
  .rd-showcase-section {
    height: 60vh;
  }

  .rd-showcase-content {
    padding: 0 15px;
  }

  .rd-showcase-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  /* Extra Small Mobile Hero */
  .rd-hero-media {
    padding: 5px;
    top: -30px; /* Move image higher on small mobile */
  }

  .rd-hero-media img {
    padding: 10px;
    max-width: 90vw;
    max-height: 90vh;
  }

  .rd-hero-content {
    bottom: 80px; /* Move content higher on small mobile */
    padding: 0 10px;
  }

  .racing-hero-cta {
    padding: 14px 30px;
    font-size: 0.9rem;
    min-width: 140px;
  }

  .rd-scroll-indicator {
    bottom: 20px;
  }

  /* Extra Small Mobile Adjustments */
  .rd-image-carousel {
    border-radius: 12px;
  }

  /* Ensure carousel is below text on small mobile */
  .rd-innovation-image {
    order: 2;
  }

  .rd-innovation-text {
    order: 1;
  }

  .rd-image-carousel .carousel-inner {
    border-radius: 12px;
  }

  .rd-carousel-control {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .rd-carousel-control .carousel-control-prev-icon,
  .rd-carousel-control .carousel-control-next-icon {
    width: 16px;
    height: 16px;
  }

  .rd-image-carousel .carousel-control-prev {
    left: 15px;
  }

  .rd-image-carousel .carousel-control-next {
    right: 15px;
  }

  .rd-image-carousel .carousel-indicators {
    bottom: 15px;
  }

  .rd-image-carousel .carousel-indicators button {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }

  /* Extra Small Mobile Specifications */
  .rd-spec-row {
    padding: 14px 5px;
  }

  /* Extra Small Mobile Explore */
  .rd-explore-content {
    padding: 20px;
  }

  .rd-explore-image {
    height: 200px;
  }
}

/* Animation Keyframes */
@keyframes slideInRow {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Loading States */
body:not(.loaded) .rd-hero-content {
  opacity: 0;
  transform: translateX(-50%) translateY(50px);
}

body.loaded .rd-hero-content {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition: all 1s ease-out;
}

/* Additional Responsive Design for New Sections */
@media (max-width: 1024px) {
  .rd-hero-media img {
    object-fit: contain;
    padding: 20px;
  }

  .rd-performance-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    grid-template-areas:
      "video"
      "text";
  }

  .rd-performance-video {
    grid-area: video;
  }

  .rd-performance-text {
    grid-area: text;
  }
}

@media (max-width: 768px) {
  .rd-performance-section,
  .rd-cta-section {
    padding: 80px 0;
  }

  .rd-performance-container,
  .rd-cta-container {
    padding: 0 15px;
  }

  .rd-performance-content {
    gap: 2rem;
  }

  .rd-feature-grid {
    gap: 1rem;
  }

  .rd-feature-item {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .rd-performance-section,
  .rd-cta-section {
    padding: 60px 0;
  }

  .rd-feature-item {
    padding: 1rem;
  }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .rd-hero {
    height: 100vh;
  }

  .rd-hero-media {
    padding: 5px;
    top: -20px; /* Move image higher in landscape */
  }

  .rd-hero-media img {
    object-fit: contain;
    padding: 5px;
    max-width: 98vw;
    max-height: 98vh;
  }

  .rd-hero-content {
    bottom: 60px; /* Move content higher in landscape */
    padding: 0 10px;
  }
}

/* Very wide screens - ensure drone doesn't get too large */
@media (min-width: 1920px) {
  .rd-hero-media img {
    max-width: 1800px;
    max-height: 1000px;
  }
}