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

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f5f5f5;
}
.row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.drone-placeholder {
  position: absolute;
  right: 0;
  left: 0;
  top: -20%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 0.9rem;
  border-radius: 10px;
}

.hero-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.logo img {
  width: 35px;
  height: auto;
}

.hero-content {
  height: 750px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40%;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: 6rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.red-span {
  color: #ef4030;
}

.hero-subtitle {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Large desktop and wide screens */
@media (min-width: 1600px) {
  .drone-placeholder {
    width: 100%;
    height: 100%;
    top: 0;
    object-fit: cover;
  }
}

/* Desktop and tablet landscape */
@media (min-width: 770px) and (max-width: 1599px) {
  .drone-placeholder {
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
    object-position: center;
  }
}

/* Tablet landscape and small desktop */
@media (max-width: 1024px) {
  .hero-content {
    height: 650px;
    padding: 0 30px;
  }

  .hero-title {
    font-size: 5rem;
    letter-spacing: 2px;
  }

  .hero-subtitle {
    font-size: 2.5rem;
    letter-spacing: 1.5px;
  }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .hero-content {
    height: 550px;
    gap: 30%;
    padding: 0 25px;
  }

  .hero-title {
    font-size: 4rem;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
  }

  .drone-placeholder {
    top: -15%;
  }
}

/* Mobile landscape */
@media (max-width: 640px) {
  .hero-content {
    height: 500px;
    gap: 25%;
    padding: 0 20px;
  }

  .hero-title {
    font-size: 3.5rem;
    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-size: 1.8rem;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .hero-content {
    height: 450px;
    gap: 20%;
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
  }

  .drone-placeholder {
    top: -10%;
    font-size: 0.8rem;
  }

  .logo img {
    width: 30px;
  }
}

/* Small mobile */
@media (max-width: 360px) {
  .hero-content {
    height: 400px;
    padding: 0 10px;
  }

  .hero-title {
    font-size: 2.2rem;
    letter-spacing: 0px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 0px;
  }

  .logo img {
    width: 25px;
  }
}

.product-image {
  max-width: 500px;
  width: 100%;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-image.proven img {
  width: 115%;
}

@media (max-width: 600px) {
  .product-image {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }

  .product-image.proven img {
    width: 115%;
    max-width: 600px;
  }
}

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

.shop {
  width: 50% !important;
}

.section {
  padding: 80px 0;
  background: white;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.comparison-sect,
section.table {
  margin-top: 0;
}
.spook-sect {
  margin-bottom: 0;
}
.section-title {
  font-size: 4rem;
  font-weight: bold;
  line-height: normal;
  text-transform: uppercase;
  color: #1a1a1a;
}
.section-title.spook {
  margin-bottom: -40px;
  margin-left: 40px;
}

.bg img {
  width: 100%;
  max-width: 100%;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.product-info {
  padding: 20px;
}

.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.feature-card {
  padding: 25px;
  border-radius: 10px;
  color: white;
  font-weight: bold;
}
.feature-card svg {
  display: block;
}
.spook-img img {
  display: block;
}

.spook-img > img {
  margin-left: -15%;
  margin-bottom: -25%;
}
.spook-img > img + img {
  margin-bottom: 0;
  margin-left: 20%;
}
@media (max-width: 1010px) {
  .spook-img > img {
    max-width: 350px;
  }
}
@media (max-width: 450px) {
  .spook-img > img {
    max-width: 200px;
  }
}
.feature-card.green {
  background: #3d7b42;
  color: white;
}

.feature-card.dark {
  background: #1a1a1a;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

  scrollbar-width: thin;
  scrollbar-color: #3d7b42 #f1f1f1;
}

.table-wrapper::-webkit-scrollbar {
  height: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: #3d7b42;
  border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
  background: #2d5f32;
}

.highlight {
  background: #3d7b42 !important;
  color: #1a1a1a !important;
  font-weight: bold;
}

.manufacturing-section {
  width: 98%;
  margin: 50px auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.stat-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #3d7b42;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #3d7b42;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
}

.manufacturing-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
}

.manufacturing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.manufacturing-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.manufacturing-card h3 {
  color: #3d7b42;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .product-features {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 1003px) {
  .shop {
    width: 60% !important;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    max-width: 100%;
  }
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3d7b42;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #3d7b42;
}

/* Footer */
.footer {
  background: #1a1a1a;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #333;
}

.footer h3 {
  color: #ccc;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-info {
  color: #888;
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Navigation */
.nav {
  background: #000;
  padding: 15px 0;
  text-align: center;
  border-bottom: 1px solid #333;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: center;
}

.nav-item {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-item:hover {
  color: #4caf50;
}

.nav-logo {
  background: #dc3545;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .nav-links {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .drone-placeholder {
    display: none;
  }
}

.container1 {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.header1 {
  background: white;
  color: black;
  padding: 30px 20px 20px;
  text-align: left;
}

.header1 h1 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
}

.comparison-table1 {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.drone-headers1 {
  background: white;
}

/* ======= table ========= */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Header row styles */
.drone-headers td {
  padding: 15px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}

.green-header {
  background: #3d7b42 !important;
}

.gray-header {
  background: #d7d7d7 !important;
  color: #333 !important;
}

/* Subtitle row styles */
.drone-subtitles1 td {
  padding: 12px 15px;
  font-size: 14px;
  border-bottom: 1px solid #e0e0e0;
}

.drone-subtitles1 td:first-child {
  background: white !important;
  font-weight: bold;
  color: #333;
}

.drone-subtitles1 .spec-label {
  background: #3d7b42;
  color: white;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

/* Spec row styles */
.spec-row td {
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: middle;
}

.spec-label {
  background: #f8f8f8;
  font-weight: bold;
  color: #333;
}
.drone-subtitles1 td:not(:first-child) {
  text-align: center;
}
/* Green left border only for first cell in even spec-rows */
.spec-row:nth-child(odd) .spec-label + .spec-value,
.green-highlight1 {
  border-left: 4px solid #3d7b42;
}

.spec-value {
  background: white;
  color: #555;
  text-align: center;
}

/* Green highlight for special values */
.green-highlight1 {
  background: #3d7b42 !important;
  color: white !important;
  font-weight: bold;
}

/* Alternating row colors for better readability */
.spec-row:nth-child(even) .spec-value {
  background: #f9f9f9;
}

/* Responsive styles */
@media (max-width: 768px) {
  .comparison-table {
    font-size: 12px;
  }

  .drone-headers td,
  .drone-subtitles1 td,
  .spec-row td {
    padding: 8px 10px;
  }

  .drone-headers td {
    font-size: 11px;
  }

  .spec-row td {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .comparison-table {
    font-size: 10px;
    margin: 20px 0;
  }

  .drone-headers td,
  .drone-subtitles1 td,
  .spec-row td {
    padding: 6px 8px;
  }

  .drone-headers td {
    font-size: 10px;
    letter-spacing: 0.5px;
  }

  .spec-row td {
    font-size: 10px;
  }
}

/* Table container for horizontal scroll on mobile */
.table-container {
  overflow-x: auto;
  margin: 20px 0;
}

@media (max-width: 640px) {
  .table-container {
    overflow-x: scroll;
  }

  .comparison-table {
    min-width: 600px;
  }
}

/* Simple horizontal scroll for tables */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
}

.table-scroll .comparison-table {
  min-width: 600px;
  margin: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .table-scroll .comparison-table {
    min-width: 500px;
  }
}

@media (max-width: 480px) {
  .table-scroll .comparison-table {
    min-width: 450px;
  }
}
