*{
  font-family: 'apple-system-ui', 'Segoe UI', sans-serif;
}

body {
  font-family: 'apple-system-ui', 'Segoe UI', sans-serif;
  background-color: white;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  height: 100%;
  opacity: 0;
  animation: pageLoad 0.8s ease-out 0.2s forwards;
}

@keyframes pageLoad {
  to {
    opacity: 1;
  }
}

html {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  height: 100%;
}

/* Ensure proper box sizing */
* {
  box-sizing: border-box;
}

/* UAV Page Specific White Background Wrapper */
.uav-page-wrapper {
  background-color: white !important;
  min-height: auto;
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
}

/* FORCE Footer to be Black on UAV Page - Nuclear Option */
footer,
footer *,
.footer-modern-clean,
.footer-modern-clean *,
.footer-bottom-clean,
.footer-bottom-clean * {
  background-color: black !important;
}

/* Restore specific elements that need different backgrounds */
.footer-email-input,
.footer-email-input:focus {
  background-color: black !important;
  border-color: #333333 !important;
}

.footer-subscribe-btn {
  background-color: #ff9900 !important;
  border-color: #ff9900 !important;
  color: black !important;
}

.footer-subscribe-btn:hover {
  background-color: #ffb347 !important;
  border-color: #ffb347 !important;
  color: black !important;
}

/* Single Product Showcase Section */
.uav-single-showcase-section {
  position: relative;

  background-color: #000;
  display: flex;
  min-height: 75vh;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0px 20px 0px;
  box-sizing: border-box;
  margin-bottom: 0;
  padding-bottom: 20px;
}

.uav-single-showcase-image {
  width: 100%;
  max-width: 1200px;
  height: 40vh;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 0px;
  margin-bottom: 0px;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.uav-single-showcase-image:hover {
  background-size: 110%;
}

.uav-single-showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.uav-single-showcase-content {
  position: relative;
  text-align: center;
  color: white;
  z-index: 20;
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

.uav-single-showcase-content h2 {
 font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.5s forwards;
  line-height: 1.0;
  word-break: break-word;
  hyphens: auto;
}

.uav-single-showcase-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.8s forwards;
  font-family: 'apple-system-ui', 'Segoe UI', sans-serif;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.uav-single-showcase-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 1.1s forwards;
  margin-top: 20px;
  align-self: center;
}

.uav-single-showcase-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  min-width: 120px;
  backdrop-filter: blur(10px);
  font-family: 'apple-system-ui', 'Segoe UI', sans-serif;
}

.uav-btn-primary {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  border-color: rgba(255, 255, 255, 0.9);
}

.uav-btn-primary:hover {
  background: rgba(255, 153, 0, 0.9);
  color: white;
  border-color: rgba(255, 153, 0, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.3);
}

.uav-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.uav-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Enhanced Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

/* Responsive Design for Single Showcase */
@media (max-width: 768px) {
  .uav-single-showcase-section {
    min-height: 65vh;
    padding: 40px 15px 0px;
    padding-bottom: 50px;
  }

  .uav-single-showcase-image {
    height: 35vh;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .uav-single-showcase-content {
    gap: 0px;
    min-height: 30vh;
    margin-top: 50px;
  }

  .uav-single-showcase-content h2 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    letter-spacing: 0.5px;
    line-height: 0.95;
  }

  .uav-single-showcase-content p {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
  }

  .uav-single-showcase-buttons {
    gap: 0.5rem;
    margin-top: 15px;
  }

  .uav-single-showcase-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    min-width: 30px;
  }
}

@media (max-width: 480px) {
  .uav-single-showcase-section {
    min-height: 60vh;
    padding: 30px 10px 20px;
  }

  .uav-single-showcase-image {
    height: 45vh;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .uav-single-showcase-content {
    gap: 0px;
    width: 100%;
  }

  .uav-single-showcase-content h2 {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
    letter-spacing: 0px;
    line-height: 0.9;
    word-spacing: -2px;
  }

  .uav-single-showcase-content p {
    font-size: clamp(0.7rem, 3vw, 0.9rem);
  }

  .uav-single-showcase-buttons {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  .uav-single-showcase-btn {
    width: 100px;
    padding: 8px 14px;
    font-size: 0.75rem;
  }
}

/* UmbrellaPlatform Grid Layout - Consistent sizing for all devices */
.umbrella-platform {
  max-width: 2200px;
  margin: 0 auto;
  padding: 120px 60px;
}

.umbrella-text-section {
  text-align: center;
  margin-top: 0;
  padding: 20px 0 0px;
  width: 100%;
}

.umbrella-text-section h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.umbrella-image-section img {
  max-height: 700px;
  width: auto;
}

.umbrella-specs-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  margin: 0px auto 0px;
  max-width: 1400px;
  flex-wrap: nowrap;
  width: 100%;
}

.umbrella-spec-item {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
  min-width: 200px;
  padding-left:9%;

}

.umbrella-spec-item span {
  display: block;
  color: white;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: 300;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  font-family: 'apple-system-ui', 'Segoe UI', sans-serif;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 0rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 0.8s forwards;
  white-space: nowrap;
}

.umbrella-spec-item span:nth-child(2) {
  animation-delay: 1s;
}

/* 4K Resolution Enhancements for UmbrellaPlatform */
@media (min-width: 1920px) and (max-width: 2560px) {
  .umbrella-specs-grid {
    gap: 120px !important;
    max-width: 2200px !important;
    justify-content: center !important;
  }

  .umbrella-spec-item {
    flex: 0 0 auto !important;
    min-width: 400px !important;
    max-width: 500px !important;
    padding-left:0px;
  }

  .umbrella-spec-item span {
    font-size: 2.4rem !important;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-bottom: 0.4rem;
    white-space: nowrap !important;
    text-align: center;
  }

  .uav-single-showcase-btn {
    font-size: 1rem !important;
    padding: 20px 10px !important;
    min-width: 200px !important;
    border-radius: 50px !important;
    letter-spacing: 1.2px;
    
  }
  .uav-single-showcase-section {
  margin-top: 50px !important;
  min-height: 65vh !important;
  padding-bottom: 100px !important;
}
}

/* Mobile responsive design - Switch to grid layout only for mobile */
@media (max-width: 768px) {
  .umbrella-specs-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem 2rem;
    text-align: center;
    flex-wrap: initial !important;
  }

  .umbrella-spec-item {
    
    display: block !important;
    flex: initial !important;
    min-width: initial !important;
  }

  .umbrella-spec-item span {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    display: block !important;
    white-space: initial !important;
  }

  .umbrella-text-section {
    padding: 20px 0 10px;
  }

  .umbrella-text-section h2 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .umbrella-specs-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.8rem 1.5rem;
    flex-wrap: initial !important;
  }

  .umbrella-spec-item {
    display: block !important;
    flex: initial !important;
    min-width: initial !important;
  }

  .umbrella-spec-item span {
    font-size: clamp(0.7rem, 3vw, 0.9rem);
    display: block !important;
    white-space: initial !important;
  }

  .umbrella-text-section {
    padding: 15px 0 10px;
  }

  .umbrella-text-section h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    margin-bottom: 15px;
    letter-spacing: 1px;
  }
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

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

.slide-left.animate {
  opacity: 1;
  transform: translateX(0);
}

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

.slide-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8) translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in.animate {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.rotate-in {
  opacity: 0;
  transform: rotate(-10deg) scale(0.9) translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rotate-in.animate {
  opacity: 1;
  transform: rotate(0deg) scale(1) translateY(0);
}

/* Featured Products Section */
.featured-products-section {
  padding: 10px 0;
  background-color: white !important;
}

.featured-products-section .container {
  max-width: 100%;
  padding: 0 5px;
}

.featured-product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.featured-product-card {
  position: relative;
  height: 450px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: none;
  transform: translateY(0) scale(1);
}

.featured-product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 153, 0, 0.1) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 5;
}

.featured-product-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.featured-product-card:hover::after {
  opacity: 1;
}

.featured-product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ffffff;
  transition: all 0.4s ease;
  padding: 20px;
  box-sizing: border-box;
}

.featured-product-card:hover .featured-product-image {
  filter: brightness(1.05) contrast(1.02);
  transform: scale(1.1);
}

/* Featured Product Overlay - Always Visible Like Single Product Showcase */
.featured-product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-product-card:hover .featured-product-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.featured-product-content {
  text-align: center;
  color: white;
  padding: 30px;
  transform: translateY(0);
  transition: transform 0.4s ease;
  position: relative;
  z-index: 10;
}

.featured-product-content h2 {
 font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.featured-product-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
  font-weight:300;
  line-height: 1.4;
}

.featured-product-buttons {
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

.featured-product-btn {
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  min-width: 120px;
  text-align: center;
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.featured-product-btn.btn-primary {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  border-color: rgba(255, 255, 255, 0.9);
}

.featured-product-btn.btn-primary:hover {
  background: rgba(255, 153, 0, 0.9);
  color: white;
  border-color: rgba(255, 153, 0, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.3);
}

.featured-product-btn.btn-secondary {
  background-color: transparent;
  border-color: white;
  color: white;
}

.featured-product-btn.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Background images for featured products */
.hov-g1-bg {
  background-image: url('../../assets/images/hovg1.jpg');
  background-size: 90%;
}

.x8-featured-bg {
  background-image: url('../../assets/images/b2_1C.png');
  background-position-x:49%;
  background-size:70%;
  transform: translateY(-10%);
}



/* Responsive design for featured products */
@media (max-width: 992px) {
  .featured-products-section .container {
    max-width: 100%;
    padding: 0 5px;
  }

  .featured-product-card {
    height: 350px;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .featured-products-section {
    padding: 10px 0 0 0;
  }

  .featured-products-section .container {
    max-width: 100%;
    padding: 0 5px;
  }

  .featured-product-card {
    height: 380px;
  }

  .featured-product-content h2 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 12px;
  }

  .featured-product-content p {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    margin-bottom: 20px;
  }

  .featured-product-buttons {
    gap: 10px;
  }

  .featured-product-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: 120px;
  }
}

@media (max-width: 576px) {
  /* Make Featured Products Section larger and more prominent on mobile */

  .featured-product-card {
    height: 400px;
  }

  .featured-product-image {
    padding: 20px;
  }

  .featured-product-content {
    padding: 25px 20px;
  }

  .featured-product-content h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    margin-bottom: 12px;
    letter-spacing: 1px;
  }

  .featured-product-content p {
    font-size: clamp(1rem, 4.5vw, 1.3rem);
    margin-bottom: 18px;
  }

  .featured-product-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .featured-product-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    min-width: 120px;
  }

  /* Make Product Showcase Section smaller on mobile */
  .product-showcase-section {
    padding: 0 0 5px 0;
  }

  .product-card {
    height: 280px;
  }

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

  .product-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 10px;
  }

  .product-description {
    font-size: clamp(0.8rem, 3.5vw, 1rem);
    margin-bottom: 15px;
  }

  .product-learn-more {
    padding: 10px 20px;;
    font-size: 0.9rem;
  }

  .uav-single-showcase-overlay {
    height: 70%;
    width: 100%;
  }

  .uav-single-showcase-section {
    min-height: 60vh;
    padding: 40px 15px 0px;
    padding-bottom: 50px;
  }
  
  .uav-single-showcase-image {
    height: 30vh;
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

/* Product Showcase Section Styles */
.product-showcase-section {
    padding: 0;
    background-color: white !important;
    margin-top: 0;
    margin-bottom: 0;
  }

  .product-card {
    position: relative;
    height: 350px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    transform: translateY(0) scale(1);
  }

  .product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 153, 0, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
  }

  .product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
  }

  .product-card:hover::after {
    opacity: 1;
  }

  .product-card:hover .product-card-inner {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
  }

  .product-card-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    z-index: 4;
    color: white;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .product-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
  }

  .product-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 25px;
    opacity: 0.9;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.9);
    font-weight:300;
    line-height: 1.4;
  }

  .product-learn-more {
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 120px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border-color: rgba(255, 255, 255, 0.9);
  }

  .product-learn-more:hover {
    background: rgba(255, 153, 0, 0.9);
    color: white;
    border-color: rgba(255, 153, 0, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.3);
  }

  .product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: all 0.4s ease;
  }

  .product-card:hover .product-image {
    filter: brightness(1.05) contrast(1.02);
    transform: scale(1.1);
  }

  /* Background images for each card */
  .racing-bg {
    background-image: url('../../assets/images/b3_1.png');
    background-color: #f8f8f8;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    transform: translateY(-10%);
  }

  .training-bg {
    background-image: url('../../assets/images/trainingv3.png');
    background-color: #f8f8f8;
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
  }

  .agriculture-bg {
    background-image: url('../../assets/images/d3.png');
    background-color: #f8f8f8;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
  }

  .components-bg {
    background-image: url('../../assets/images/d4.png');
    background-color: #f8f8f8;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .product-card {
      height: 320px;
    }
    .product-showcase-section {
      padding: 0 0 10px 0;
    }
  }

  @media (max-width: 576px) {
    .product-card {
      height: 300px;
    }
    .product-showcase-section {
      padding: 0 0 10px 0;
    }
  }

  @keyframes textGlow {
    0%, 100% {
      text-shadow: none;
    }
    50% {
      text-shadow: 0 0 20px rgba(255, 153, 0, 0.3);
    }
  }



@media (max-width: 320px) {

  .umbrella-specs-grid {
    flex-wrap: wrap;
    gap: 20px;
  }

  .umbrella-spec-item {
    flex: 0 0 100%;
    min-width: 100%;
    
  }
  .umbrella-spec-item span {
    white-space: normal !important;
    font-size: 9px !important;
  }

    .uav-single-showcase-image {
    height: 25vh;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .uav-single-showcase-section {
    min-height: 60vh;
    padding: 40px 15px 0px;
    padding-bottom: 50px;
  }
  
}
/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ff6b35, #ff9500);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ff9500, #ffb347);
}

/* 4K and Ultra-Wide Display Optimization */
@media (min-width: 2560px) {
  /* Featured Products Section - Larger for 4K */
  .featured-products-section {
    padding: 10px 0;
    margin-bottom: 30px;
    margin-top: 35px;
  }

  .featured-products-section .container {
    max-width: 100%;
    padding: 0 10px;
  }

  .featured-product-card {
    height: 700px;
  }

  .featured-product-image {
    padding: 60px;
  }

  .featured-product-content {
    padding: 80px 60px;
  }

  .featured-product-content h2 {
    font-size: clamp(3.5rem, 4vw, 5rem);
    margin-bottom: 30px;
    letter-spacing: 3px;
  }

  .featured-product-content p {
    font-size: clamp(1.8rem, 2vw, 2.2rem);
    margin-bottom: 40px;
    line-height: 1.6;
  }

  .featured-product-buttons {
    gap: 30px;
    margin-top: 20px;
  }

  .featured-product-btn {
    padding: 20px 40px;
    font-size: 1.3rem;
    min-width: 200px;
    border-radius: 30px;
  }

  /* Product Showcase Section - Larger but smaller than Featured */
  .product-showcase-section {
    padding: 10px 0;
  }

  .product-showcase-section .container {
    max-width: 2000px;
    padding: 0 50px;
  }

  .product-card {
    height: 500px;
  }

  .product-card-inner {
    padding: 50px;
  }

  .product-title {
    font-size: clamp(2.5rem, 3vw, 3.5rem);
    margin-bottom: 25px;
  }

  .product-description {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    margin-bottom: 35px;
    line-height: 1.6;
  }

  .product-learn-more {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 25px;
  }
}