/* =========================
   GLOBAL VARIABLES
========================= */
:root {
  --camo: #3b4b3b;
  --silver: #c0c0c0;
  --black: #000;
  --white: #fff;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--silver);
  overflow-x: hidden;
}

/* ===== GLOBAL LINK RESET ===== */
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
  color: #90ee90; /* optional hover color (green tactical glow) */
}
/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0,0,0,0.9);
  border-bottom: 1px solid rgba(192,192,192,0.2);
  backdrop-filter: blur(8px);
  animation: fadeDown 1s ease-out;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  height: 45px;
  margin-right: 10px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--silver);
  letter-spacing: 2px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--silver);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav .active a {
  color: var(--white);
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--silver), #a0a0a0);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--black);
  color: var(--silver);
  box-shadow: 0 0 10px var(--silver);
}

.btn-secondary {
  background: var(--camo);
  color: var(--white);
}

.btn-secondary:hover {
  background: #2e3a2e;
}

/* ================= INDEX HERO SECTION ================= */
.hero-index {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../images/camo-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  padding: 4rem 2rem;
}

.hero-index .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.55));
  z-index: 0;
}

.hero-index .hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  width: 100%;
  z-index: 2;
  position: relative;
  flex-wrap: wrap;
}

.hero-index .hero-text {
  flex: 1 1 520px;
  padding: 1rem 2rem;
  animation: slideInLeft 1s ease-in-out;
}

.hero-index .hero-text h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: #c0c0c0;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(192, 192, 192, 0.2);
  margin-bottom: 1rem;
}

.hero-index .hero-text p {
  font-family: 'Poppins', sans-serif;
  color: #ddd;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.hero-index .btn-hero {
  display: inline-block;
  background: linear-gradient(135deg, #c0c0c0, #3b4b3b);
  color: #000;
  font-weight: bold;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.hero-index .btn-hero:hover {
  background: linear-gradient(135deg, #3b4b3b, #c0c0c0);
  transform: translateY(-3px);
  color: #fff;
}

.hero-index .hero-image {
  flex: 1 1 500px;
  text-align: right;
  animation: slideInRight 1s ease-in-out;
}

.hero-index .hero-image img {
  width: 100%;
  max-width: 550px;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.6));
  transition: transform 0.6s ease;
}

.hero-index .hero-image img:hover {
  transform: scale(1.05);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #90ee90;
  animation: fadeIn 2s ease-in-out infinite alternate;
  font-family: 'Poppins', sans-serif;
}

.scroll-indicator span {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.scroll-indicator i {
  font-size: 1.2rem;
}

/* Animations */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  0% { opacity: 0.4; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(6px); }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-index .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-index .hero-text h1 {
    font-size: 3rem;
  }

  .hero-index .hero-image img {
    width: 70%;
    margin-top: 1.5rem;
  }

  .scroll-indicator {
    bottom: 25px;
  }
}
/* =========================
   SECTIONS
========================= */
section {
  padding: 4rem 2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

/* =========================
   ABOUT SECTION
========================= */
.about-section {
  background: linear-gradient(180deg, #1c1c1c 0%, #0d0d0d 100%);
  color: var(--white);
  padding: 100px 8%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  filter: brightness(0.85) contrast(1.1);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease, filter 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
  filter: brightness(1);
}

.about-content {
  flex: 1;
  color: var(--silver);
  line-height: 1.8;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.about-content h2 span {
  color: #3b4b3b; /* camo green */
}

.about-content p {
  font-family: var(--font-body);
  margin-bottom: 1rem;
}

.quick-facts {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--silver);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
}

/* Animations */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 1.2s ease forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 1.2s ease forwards;
}

@keyframes fadeInLeft {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-image img {
    max-width: 90%;
  }
}

/* =========================
   FEATURES SECTION
========================= */
.features-section {
  background: url('../images/camo-texture.jpg') center/cover fixed;
  background-blend-mode: multiply;
  background-color: #111;
  color: var(--white);
  padding: 100px 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.features-section > * {
  position: relative;
  z-index: 2;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  color: #c0c0c0;
  text-transform: uppercase;
}

.section-subtitle {
  color: #b3b3b3;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(192, 192, 192, 0.15);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(59, 75, 59, 0.5);
  border-color: rgba(192, 192, 192, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
  color: #3b4b3b; /* Camo green */
  margin-bottom: 1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.2);
  color: #c0c0c0;
}

.feature-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--white);
}

.feature-card p {
  font-family: var(--font-body);
  color: var(--silver);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Fade-in animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* =========================
   PRODUCTS SECTION
========================= */
.products-section {
  background: #0d0d0d url('../images/camo-texture.jpg') center/cover fixed;
  background-blend-mode: multiply;
  padding: 100px 8%;
  color: var(--white);
  text-align: center;
  position: relative;
}

.products-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.products-section > * {
  position: relative;
  z-index: 2;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.product-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(192, 192, 192, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: brightness(0.8);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.product-card:hover img {
  filter: brightness(1);
  transform: scale(1.05);
}

.product-content {
  padding: 1.5rem;
  text-align: left;
}

.product-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #c0c0c0;
  margin-bottom: 0.5rem;
}

.product-content p {
  font-family: var(--font-body);
  color: #b0b0b0;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Metallic Button */
.btn-secondary {
  background: linear-gradient(145deg, #3b4b3b, #1f2b1f);
  color: #c0c0c0;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(192, 192, 192, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(145deg, #4f6a4f, #2c3c2c);
  transform: scale(1.05);
  color: #fff;
}

/* Scroll animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .product-content {
    text-align: center;
  }
  .product-card img {
    height: 180px;
  }
}


/* =========================
   SERVICES SECTION
========================= */
.services-section {
  background: #101010 url('../images/camo-texture.jpg') center/cover fixed;
  background-blend-mode: multiply;
  color: var(--white);
  padding: 100px 8%;
  text-align: center;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.services-section > * {
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.service-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(192, 192, 192, 0.15);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

.service-card:hover {
  background: rgba(30, 45, 30, 0.55);
  transform: translateY(-8px);
  border-color: #3b4b3b;
}

.service-icon {
  font-size: 2.5rem;
  color: #9acd32;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #c0c0c0;
  margin-bottom: 0.8rem;
}

.service-card p {
  color: #b0b0b0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =========================
   PARTNER BANNER
========================= */
.partner-banner {
  background: linear-gradient(145deg, #1a1a1a, #0c0c0c);
  text-align: center;
  color: #c0c0c0;
  padding: 80px 10%;
  position: relative;
  overflow: hidden;
}

.partner-banner::after {
  content: '';
  background: url('../images/tactical-banner.jpg') center/cover;
  opacity: 0.1;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.partner-banner .banner-content {
  position: relative;
  z-index: 2;
}

.partner-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: #dcdcdc;
  margin-bottom: 0.8rem;
}

.partner-banner p {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.btn-primary {
  background: linear-gradient(145deg, #3b4b3b, #1f2b1f);
  color: #c0c0c0;
  padding: 0.9rem 2rem;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(192, 192, 192, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(145deg, #4f6a4f, #2a3c2a);
  transform: scale(1.05);
  color: #fff;
}

/* =========================
   ANIMATIONS
========================= */
.slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.slide-up.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .service-card {
    padding: 1.5rem;
  }
  .partner-banner h2 {
    font-size: 1.6rem;
  }
}


/* =========================
   GALLERY HERO
========================= */
.gallery-hero {
  background: url('../images/tactical-banner.jpg') center/cover fixed;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.gallery-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(3px);
}

.gallery-hero .hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInDown 1.2s ease;
}

.gallery-hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  letter-spacing: 2px;
  color: #9acd32;
}

.gallery-hero p {
  font-family: var(--font-body);
  color: #ccc;
  margin-top: 0.5rem;
}

/* =========================
   MASONRY GALLERY
========================= */
.gallery-section {
  background: #0e0e0e url('../images/about.jpg') center/cover fixed;
  background-blend-mode: multiply;
  color: #fff;
  padding: 100px 6%;
  position: relative;
}

.gallery-masonry {
  columns: 3 250px;
  column-gap: 1.5rem;
  margin-top: 2.5rem;
}

.gallery-box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  cursor: pointer;
  display: inline-block;
  width: 100%;
}

.gallery-box img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-box:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.gallery-box:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #9acd32;
  margin-bottom: 0.3rem;
}

.gallery-overlay span {
  color: #ccc;
  font-size: 0.9rem;
}

/* =========================
   LIGHTBOX VIEWER
========================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox-content {
  max-width: 85%;
  max-height: 80vh;
  border: 2px solid #3b4b3b;
  border-radius: 8px;
  animation: zoomIn 0.6s ease;
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.close-lightbox:hover {
  color: #9acd32;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 50px;
}

.lightbox-nav span {
  color: #9acd32;
  font-size: 45px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.lightbox-nav span:hover {
  transform: scale(1.2);
}

/* =========================
   ANIMATIONS
========================= */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-masonry {
    columns: 2 180px;
  }
  .gallery-hero h1 {
    font-size: 2rem;
  }
}


/* CONTACT CTA */
.contact-cta {
  text-align: center;
}

/* =========================
   FOOTER DESIGN
========================= */
.footer {
  background: #0a0a0a;
  color: #c0c0c0;
  padding: 60px 10% 30px 10%;
  font-family: 'Poppins', sans-serif;
  border-top: 2px solid #222;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1;
  min-width: 220px;
}

.footer-section h3 {
  color: #90ee90;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.footer-section p {
  color: #c0c0c0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #c0c0c0;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #90ee90;
  padding-left: 6px;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  color: #c0c0c0;
  font-size: 1.3rem;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #90ee90;
  transform: scale(1.2);
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #808080;
}

.footer-bottom-links {
  margin-bottom: 8px;
}

.footer-bottom-links a {
  color: #c0c0c0;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #90ee90;
}

.footer-bottom-links span {
  color: #333;
  margin: 0 5px;
}

/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
  .footer-section ul li a:hover {
    padding-left: 0;
  }
}




/* ================= ABOUT PAGE HERO ================= */
.hero-about {
  position: relative;
  width: 100%;
  min-height: 90vh;
  background: url('../images/camo-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  padding: 4rem 2rem;
  border-bottom: 1px solid rgba(192, 192, 192, 0.2);
}

.hero-about .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.55));
  z-index: 0;
}

.hero-about .hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.hero-about .hero-text {
  flex: 1 1 480px;
  padding: 1rem 2rem;
  animation: slideInLeft 1s ease-in-out;
}

.hero-about .hero-text h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #c0c0c0;
  text-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

.hero-about .hero-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-about .btn-hero {
  display: inline-block;
  background: linear-gradient(135deg, #c0c0c0, #3b4b3b);
  color: #000;
  font-weight: bold;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.hero-about .btn-hero:hover {
  background: linear-gradient(135deg, #3b4b3b, #c0c0c0);
  transform: translateY(-3px);
  color: #fff;
}

.hero-about .hero-image {
  flex: 1 1 400px;
  text-align: right;
  animation: slideInRight 1s ease-in-out;
}

.hero-about .hero-image img {
  width: 85%;
  max-width: 500px;
  filter: drop-shadow(0 0 20px rgba(0,0,0,0.6));
  transition: transform 0.6s ease;
}

.hero-about .hero-image img:hover {
  transform: scale(1.05);
}

/* ================= WHO WE ARE SECTION ================= */
.who-we-are {
  background: #0d0d0d;
  padding: 100px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.who-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
}

.who-text {
  flex: 1 1 480px;
  color: #c0c0c0;
}

.who-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  color: #90ee90;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.who-text p {
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 20px;
}

.who-image {
  flex: 1 1 500px;
  text-align: right;
}

.who-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
  transition: transform 0.4s ease;
}

.who-image img:hover {
  transform: scale(1.05);
}

/* ================= COMPANY STATS (IMAGE + TEXT + BOTTOM STATS) ================= */
.company-stats {
  background: linear-gradient(to right, #0d0d0d, #111);
  padding: 100px 10% 80px;
  position: relative;
  color: #c0c0c0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.company-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 100%;
  background: radial-gradient(rgba(144,238,144,0.05), transparent 70%);
  animation: pulse 6s infinite alternate ease-in-out;
  z-index: 0;
}

/* ===== MAIN CONTENT (IMAGE + TEXT) ===== */
.stats-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.stats-left {
  flex: 1 1 480px;
}

.stats-left img {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
  transition: transform 0.4s ease;
}

.stats-left img:hover {
  transform: scale(1.05);
}

.stats-right {
  flex: 1 1 480px;
}

.stats-right h2 {
  color: #90ee90;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stats-right p {
  font-family: 'Poppins', sans-serif;
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* ===== BOTTOM STATS ROW ===== */
.stats-bottom {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

.stat-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(144,238,144,0.2);
  padding: 30px;
  border-radius: 12px;
  flex: 1 1 220px;
  max-width: 250px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.stat-box:hover {
  transform: translateY(-8px);
  border-color: #90ee90;
  box-shadow: 0 0 25px rgba(144,238,144,0.3);
}

.stat-box i {
  font-size: 2rem;
  color: #90ee90;
  margin-bottom: 10px;
}

.stat-box h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: #fff;
  margin: 8px 0;
}

.stat-box p {
  color: #c0c0c0;
  font-size: 0.95rem;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.6; transform: scale(1.05); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .stats-main {
    flex-direction: column;
    text-align: center;
  }

  .stats-left img {
    width: 80%;
  }

  .stats-right {
    margin-top: 20px;
  }

  .stats-bottom {
    margin-top: 50px;
  }
}


/* ================= OUR MISSION & CORE VALUES (UPGRADED) ================= */
.mission-values {
  position: relative;
  background: url('../images/camo-bg.jpg') center/cover no-repeat fixed;
  padding: 120px 10%;
  color: #ddd;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}

.mission-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.6));
  z-index: 0;
}

.mission-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}

/* Left Side (Mission) */
.mission-left {
  flex: 1 1 480px;
  animation: slideInLeft 1s ease;
}

.mission-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: #90ee90;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.mission-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #90ee90, #3b4b3b);
  margin-bottom: 25px;
  border-radius: 2px;
}

.mission-left p {
  font-family: 'Poppins', sans-serif;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #ccc;
}

.mission-left .btn-hero {
  margin-top: 20px;
  background: linear-gradient(135deg, #c0c0c0, #3b4b3b);
  color: #000;
  padding: 10px 24px;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mission-left .btn-hero:hover {
  background: linear-gradient(135deg, #3b4b3b, #c0c0c0);
  color: #fff;
  transform: translateY(-3px);
}

/* Right Side (Core Values Grid) */
.mission-right {
  flex: 1 1 500px;
  animation: slideInRight 1s ease;
}

.mission-right h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  color: #90ee90;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(144,238,144,0.2);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: #90ee90;
  box-shadow: 0 0 25px rgba(144,238,144,0.3);
}

.value-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(144,238,144,0.05);
  transition: top 0.5s ease;
}

.value-card:hover::before {
  top: 0;
}

.value-card i {
  font-size: 2rem;
  color: #90ee90;
  margin-bottom: 10px;
}

.value-card h3 {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.value-card p {
  color: #c0c0c0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Animations */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .mission-container {
    flex-direction: column;
    text-align: center;
  }

  .mission-left, .mission-right {
    flex: 1 1 100%;
  }

  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* ================= ANIMATIONS ================= */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.6; transform: scale(1.05); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero-about .hero-content { flex-direction: column; text-align: center; }
  .hero-about .hero-image img { width: 70%; margin-top: 1.5rem; }
  .stats-container { flex-direction: column; gap: 30px; }
}







/* ===== PRODUCTS PAGE ===== */

/* General Layout */
body {
  background-color: #0e0e0e;
  color: #c0c0c0;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

/* Section Titles */
.section-title {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  letter-spacing: 1px;
  color: #90ee90;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* ================= HERO PRODUCTS SECTION ================= */
.hero-products {
  position: relative;
  width: 100%;
  min-height: 90vh;
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.55)), 
              url('../images/camo-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  padding: 4rem 2rem;
  border-bottom: 1px solid rgba(192, 192, 192, 0.2);
}

.hero-products::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 480px;
  padding: 1rem 2rem;
  animation: slideInLeft 1s ease-in-out;
}

.hero-text h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #c0c0c0;
}

.hero-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 2rem;
  max-width: 500px;
}

.btn-hero {
  display: inline-block;
  background: linear-gradient(135deg, #c0c0c0, #3b4b3b);
  color: #000;
  font-weight: bold;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.btn-hero:hover {
  background: linear-gradient(135deg, #3b4b3b, #c0c0c0);
  transform: translateY(-3px);
  color: #fff;
}

.hero-image {
  flex: 1 1 400px;
  text-align: right;
  animation: slideInRight 1s ease-in-out;
}

.hero-image img {
  width: 85%;
  max-width: 520px;
  filter: drop-shadow(0px 0px 20px rgba(0,0,0,0.6));
  transition: transform 0.6s ease;
}

.hero-image img:hover {
  transform: scale(1.05);
}

/* ================= ANIMATIONS ================= */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text, .hero-image {
    text-align: center;
  }

  .hero-image img {
    width: 70%;
    margin-top: 1.5rem;
  }
}

/* Product Sections */
.product-section {
  padding: 80px 100px;
  background-color: #0e0e0e;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-section:nth-child(even) {
  background-color: #121212;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* Product Card */
.product-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  transition: all 0.4s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(144,238,144,0.3);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: brightness(0.9);
  transition: all 0.4s ease;
}

.product-card:hover img {
  filter: brightness(1.1);
}

.product-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #fff;
  margin: 15px;
}

.product-card p {
  font-size: 0.95rem;
  color: #aaa;
  margin: 0 15px 20px;
}

/* Request Quote Button */
.btn-quote {
  display: inline-block;
  margin: 0 15px 25px;
  padding: 10px 20px;
  color: #000;
  background: linear-gradient(to right, #90ee90, #c0c0c0);
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-quote:hover {
  background: #000;
  color: #90ee90;
  border: 1px solid #90ee90;
}

/* CTA Banner */
.cta-banner {
  text-align: center;
  background: linear-gradient(to right, #1a1a1a, #0f0f0f);
  padding: 80px 20px;
  color: #c0c0c0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cta-banner h2 {
  font-size: 2.4rem;
  color: #90ee90;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #ddd;
}

.btn-cta {
  background: #90ee90;
  color: #000;
  padding: 12px 28px;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #000;
  color: #90ee90;
  border: 1px solid #90ee90;
}

/* Fade In Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .product-section {
    padding: 60px 40px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .hero-products h1 {
    font-size: 3rem;
  }
}

@media (max-width: 600px) {
  .product-section {
    padding: 50px 25px;
  }

  .product-card img {
    height: 180px;
  }

  .hero-products {
    height: 60vh;
  }

  .hero-products h1 {
    font-size: 2.2rem;
  }
}


/* ================= HERO SECTION (SERVICES - UPGRADED) ================= */
.hero-services {
  position: relative;
  width: 100%;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('../images/pro-1.jpg') center/cover no-repeat;
  color: #fff;
  padding: 4rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-services .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.55));
  z-index: 0;
}

.hero-services .hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  width: 100%;
  z-index: 2;
  flex-wrap: wrap;
}

.hero-services .hero-text {
  flex: 1 1 520px;
  animation: slideInLeft 1s ease-in-out;
  padding: 1rem 2rem;
}

.hero-services .hero-text h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.6rem;
  color: #c0c0c0;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-shadow: 0 0 12px rgba(144,238,144,0.2);
}

.hero-services .hero-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ddd;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-services .btn-hero {
  background: linear-gradient(135deg, #c0c0c0, #3b4b3b);
  color: #000;
  font-weight: bold;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.hero-services .btn-hero:hover {
  background: linear-gradient(135deg, #3b4b3b, #c0c0c0);
  color: #fff;
  transform: translateY(-3px);
}

/* Right-side Tactical Image */
.hero-services .hero-image {
  flex: 1 1 480px;
  text-align: right;
  animation: slideInRight 1s ease-in-out;
}

.hero-services .hero-image img {
  width: 100%;
  max-width: 550px;
  filter: drop-shadow(0 0 25px rgba(0,0,0,0.7));
  transition: transform 0.6s ease, filter 0.6s ease;
}

.hero-services .hero-image img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 35px rgba(144,238,144,0.4));
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #90ee90;
  animation: fadeInScroll 2s ease-in-out infinite alternate;
  font-family: 'Poppins', sans-serif;
}

.scroll-indicator span {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.scroll-indicator i {
  font-size: 1.2rem;
}

/* Animations */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInScroll {
  0% { opacity: 0.4; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(8px); }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-services .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-services .hero-text h1 {
    font-size: 2.8rem;
  }

  .hero-services .hero-image img {
    width: 70%;
    margin-top: 1.5rem;
  }

  .scroll-indicator {
    bottom: 20px;
  }
}

/* ================= SERVICES GRID ================= */
.services-section {
  background: #0a0a0a;
  padding: 100px 10%;
  text-align: center;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  color: #90ee90;
  font-size: 2.6rem;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(144,238,144,0.2);
  border-radius: 12px;
  padding: 40px 25px;
  transition: 0.4s;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #90ee90;
  box-shadow: 0 0 25px rgba(144,238,144,0.3);
}

.service-card i {
  font-size: 2.5rem;
  color: #90ee90;
  margin-bottom: 15px;
}

.service-card h3 {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-card p {
  color: #c0c0c0;
  font-size: 1rem;
  line-height: 1.6;
}

/* ================= WHY CHOOSE BSS ARMS (UPGRADED) ================= */
.why-bss {
  position: relative;
  background: linear-gradient(to right, #0a0a0a, #111);
  padding: 120px 10%;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #c0c0c0;
}

.why-bss .why-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(144,238,144,0.05), transparent 70%);
  z-index: 0;
  animation: subtleGlow 6s ease-in-out infinite alternate;
}

.why-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}

/* ===== Left Image ===== */
.why-image {
  flex: 1 1 500px;
  text-align: center;
}

.why-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
  filter: brightness(0.85);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.why-image img:hover {
  transform: scale(1.05);
  filter: brightness(1);
}

/* ===== Right Text Area ===== */
.why-text {
  flex: 1 1 520px;
  animation: slideInRight 1s ease-in-out;
}

.why-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: #90ee90;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.why-text .subtitle {
  font-family: 'Poppins', sans-serif;
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ===== Bullet Grid ===== */
.why-points {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(144,238,144,0.15);
  padding: 20px 25px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-item::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(144,238,144,0.05);
  transition: top 0.5s ease;
}

.why-item:hover::before {
  top: 0;
}

.why-item:hover {
  border-color: #90ee90;
  box-shadow: 0 0 25px rgba(144,238,144,0.2);
}

.why-item i {
  font-size: 1.8rem;
  color: #90ee90;
  margin-top: 4px;
  transition: transform 0.4s ease;
}

.why-item:hover i {
  transform: rotate(10deg) scale(1.2);
}

.why-item h3 {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 5px;
}

.why-item p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== Animations ===== */
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes subtleGlow {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.7; transform: scale(1.05); }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .why-container {
    flex-direction: column;
    text-align: center;
  }

  .why-image img {
    width: 80%;
    margin-bottom: 30px;
  }

  .why-item {
    text-align: left;
  }
}




/* =========================
   PRIVACY PAGE
========================= */


.hero-gallery {
  position: relative;
  width: 100%;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background: url('../images/Factory-Exterior.jpg') center/cover no-repeat;
  padding: 4rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Overlay gradients + motion */
.hero-gallery .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.6));
  z-index: 1;
}

.hero-gallery .hero-grid-overlay {
  position: absolute;
  inset: 0;
  background: url('../images/hud-grid.png') center/cover repeat;
  opacity: 0.04;
  z-index: 2;
  animation: gridMove 20s linear infinite;
}

/* Content container */
.hero-gallery .hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  width: 100%;
  flex-wrap: wrap;
  gap: 40px;
}

/* Text */
.hero-gallery .hero-text {
  flex: 1 1 520px;
  animation: slideInLeft 1s ease-in-out;
}

.hero-gallery .hero-text h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: #90ee90;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(144,238,144,0.3);
}

.hero-gallery .hero-text p {
  font-family: 'Poppins', sans-serif;
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.hero-gallery .btn-hero {
  background: linear-gradient(135deg, #c0c0c0, #3b4b3b);
  color: #000;
  font-weight: bold;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.hero-gallery .btn-hero:hover {
  background: linear-gradient(135deg, #3b4b3b, #c0c0c0);
  color: #fff;
  transform: translateY(-3px);
}

/* Right side image */
.hero-gallery .hero-image {
  flex: 1 1 480px;
  text-align: right;
  animation: slideInRight 1s ease-in-out;
}

.hero-gallery .hero-image img {
  width: 100%;
  max-width: 550px;
  filter: drop-shadow(0 0 25px rgba(0,0,0,0.6));
  transition: transform 0.6s ease, filter 0.6s ease;
}

.hero-gallery .hero-image img:hover {
  transform: scale(1.05) rotate(1deg);
  filter: drop-shadow(0 0 35px rgba(144,238,144,0.4));
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #90ee90;
  animation: fadeInScroll 2s ease-in-out infinite alternate;
  font-family: 'Poppins', sans-serif;
  z-index: 4;
}

.scroll-indicator span {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.scroll-indicator i {
  font-size: 1.2rem;
}

/* Animations */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInScroll {
  0% { opacity: 0.4; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(8px); }
}

@keyframes gridMove {
  from { background-position: 0 0; }
  to { background-position: 100% 100%; }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-gallery .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-gallery .hero-text h1 {
    font-size: 3rem;
  }

  .hero-gallery .hero-image img {
    width: 70%;
    margin-top: 1.5rem;
  }

  .scroll-indicator {
    bottom: 20px;
  }
}

/* ================= GALLERY SECTION ================= */
.gallery-section {
  background: #0a0a0a;
  padding: 100px 10%;
  color: #fff;
  text-align: center;
}

.gallery-section .section-title {
  font-family: 'Bebas Neue', sans-serif;
  color: #90ee90;
  font-size: 2.6rem;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(144,238,144,0.15);
  cursor: pointer;
  transition: all 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  filter: brightness(0.8);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1);
}

.gallery-item:hover {
  border-color: #90ee90;
  box-shadow: 0 0 25px rgba(144,238,144,0.3);
}

/* ================= LIGHTBOX ================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border: 3px solid #90ee90;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(144,238,144,0.4);
}

.lightbox .close-btn {
  position: absolute;
  top: 40px;
  right: 60px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox .close-btn:hover {
  color: #90ee90;
}

/* Animation */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-gallery h1 { font-size: 2.8rem; }
  .gallery-grid { gap: 15px; }
}



/* ================= HERO CONTACT ================= */
.hero-contact {
  position: relative;
  height: 80vh;
  background: url('../images/camo-bg.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-contact .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.6));
  z-index: 0;
}

.hero-contact .hero-content {
  position: relative;
  z-index: 1;
  animation: fadeDown 1.5s ease;
}

.hero-contact h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.8rem;
  color: #90ee90;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-contact p {
  font-family: 'Poppins', sans-serif;
  color: #ddd;
  font-size: 1.1rem;
}

/* ================= CONTACT TERMINAL ================= */
.contact-terminal {
  position: relative;
  padding: 100px 10%;
  background: url('../images/camo-bg.jpg') center/cover fixed;
  color: #fff;
  overflow: hidden;
}

.contact-terminal .contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 0;
}

.contact-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Left Panel */
.contact-form-panel {
  flex: 1 1 550px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(144,238,144,0.2);
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  animation: fadeInLeft 1.5s ease;
}

.contact-form-panel::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(144,238,144,0.1), transparent, rgba(144,238,144,0.05));
  transform: rotate(45deg);
  animation: lightSweep 8s linear infinite;
  opacity: 0.2;
}

.contact-form-panel h2 {
  font-family: 'Bebas Neue', sans-serif;
  color: #90ee90;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-form-panel p {
  color: #ccc;
  margin-bottom: 35px;
  font-family: 'Poppins', sans-serif;
}

/* Input Groups */
.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(144,238,144,0.3);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.input-group label {
  position: absolute;
  top: 12px;
  left: 0;
  color: #aaa;
  font-size: 1rem;
  transition: 0.3s ease;
  pointer-events: none;
}

.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
  top: -12px;
  font-size: 0.9rem;
  color: #90ee90;
}

.input-group .bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #90ee90;
  transition: width 0.3s ease;
}

.input-group input:focus ~ .bar,
.input-group textarea:focus ~ .bar {
  width: 100%;
}

/* Button */
.btn-transmit {
  background: linear-gradient(135deg, #c0c0c0, #3b4b3b);
  color: #000;
  font-weight: bold;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-transmit:hover {
  background: linear-gradient(135deg, #3b4b3b, #c0c0c0);
  color: #fff;
  transform: translateY(-3px);
}

/* Transmission Status */
.transmission-status {
  margin-top: 15px;
  font-family: 'Poppins', sans-serif;
  color: #90ee90;
  font-size: 0.95rem;
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

/* Right Panel */
.contact-info-panel {
  flex: 1 1 450px;
  animation: fadeInRight 1.5s ease;
}

.contact-info-panel h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #90ee90;
  margin-bottom: 20px;
}

.contact-info-panel ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.contact-info-panel li {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  margin-bottom: 15px;
  color: #ccc;
}

.contact-info-panel i {
  color: #90ee90;
  margin-right: 10px;
}

/* Social Icons */
.contact-info-panel h3 {
  color: #c0c0c0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  margin-top: 30px;
}

.contact-info-panel .social-icons a {
  color: #90ee90;
  font-size: 1.6rem;
  margin-right: 18px;
  transition: 0.3s ease;
}

.contact-info-panel .social-icons a:hover {
  transform: scale(1.2);
  color: #fff;
}

/* Signal Indicator */
.signal-indicator {
  display: flex;
  align-items: center;
  margin-top: 40px;
  gap: 10px;
}

.signal-indicator .dot {
  width: 14px;
  height: 14px;
  background: #90ee90;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.signal-indicator p {
  font-size: 0.95rem;
  color: #90ee90;
  font-family: 'Poppins', sans-serif;
}

/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes lightSweep {
  0% { transform: translate(-100%, -100%) rotate(45deg); }
  100% { transform: translate(100%, 100%) rotate(45deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Responsive */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-info-panel {
    text-align: center;
  }
  .signal-indicator {
    justify-content: center;
  }
}



/* ================= HERO PRIVACY ELITE ================= */
.hero-privacy-elite {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* Background Image (Change image path if needed) */
.hero-privacy-elite .hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/privacy-hero.jpg') center/cover no-repeat;
  filter: brightness(0.5) contrast(1.1);
  transform: scale(1.1);
  animation: heroZoom 15s ease-in-out infinite alternate;
  z-index: 0;
}

/* Green-black gradient overlay */
.hero-privacy-elite .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.9), rgba(0, 50, 0, 0.4));
  z-index: 1;
}

/* Radar scan line */
.hero-privacy-elite .hero-scan-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 48%,
    rgba(144, 238, 144, 0.08) 50%,
    transparent 52%
  );
  z-index: 2;
  animation: radarSweep 6s linear infinite;
}

/* HUD Grid overlay */
.hero-privacy-elite .hero-grid {
  position: absolute;
  inset: 0;
  background: url('../images/hud-grid.png') center/cover repeat;
  opacity: 0.07;
  animation: gridDrift 25s linear infinite;
  z-index: 1;
}

/* Text Content */
.hero-privacy-elite .hero-content {
  position: relative;
  z-index: 5;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeDown 1.2s ease;
}

.hero-privacy-elite h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: #90ee90;
  text-transform: uppercase;
  text-shadow: 0 0 25px rgba(144, 238, 144, 0.4);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-privacy-elite p {
  color: #ddd;
  font-size: 1.2rem;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  color: #000;
  background: #90ee90;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(144,238,144,0.3);
}

.cta-btn:hover {
  background: #76cf76;
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(144,238,144,0.4);
}

/* Animations */
@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.2); }
}

@keyframes radarSweep {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

@keyframes gridDrift {
  0% { background-position: 0 0; }
  100% { background-position: 200px 200px; }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-privacy-elite h1 { font-size: 2.6rem; }
  .hero-privacy-elite p { font-size: 1rem; }
}


/* ================= INTRO ================= */
.privacy-intro {
  background: #050505;
  padding: 100px 10%;
  text-align: center;
}
.intro-glass {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(144,238,144,0.3);
  border-radius: 15px;
  padding: 50px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 0 30px rgba(144,238,144,0.1);
}
.intro-logo {
  width: 100px;
  opacity: 0.8;
  margin-bottom: 15px;
}
.intro-glass h2 {
  color: #90ee90;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  margin-bottom: 15px;
}

/* ================= PRIVACY DETAILS ================= */
.privacy-details {
  background: #0a0a0a;
  padding: 100px 10%;
}
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.privacy-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(144,238,144,0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.privacy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(144,238,144,0.2);
}
.privacy-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  opacity: 0.9;
}
.privacy-card .content {
  padding: 25px;
}
.privacy-card h3 {
  color: #90ee90;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.privacy-card p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}

/* ================= CONTACT ================= */
.privacy-contact {
  background: linear-gradient(to right, #000, #0c0c0c);
  text-align: center;
  padding: 80px 10%;
}
.contact-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(144,238,144,0.25);
  border-radius: 12px;
  padding: 50px;
  display: inline-block;
  max-width: 700px;
}
.contact-box h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #90ee90;
  margin-bottom: 15px;
}
.contact-box p {
  color: #ddd;
  line-height: 1.8;
}
.contact-box i {
  color: #90ee90;
  margin-right: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-privacy-advanced h1 { font-size: 2.6rem; }
  .intro-glass, .contact-box { padding: 30px; }
  .privacy-card img { height: 160px; }
}





/* ================= LEGAL PAGE (TACTICAL STYLE) ================= */
.hero-legal-elite {
  position: relative;
  height: 100vh;
  background: url('../images/legal-hero.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.hero-legal-elite::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1;
}

.hero-legal-elite .hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/legal-hero.jpg') center/cover no-repeat;
  filter: brightness(0.45);
  animation: heroZoom 16s ease-in-out infinite alternate;
  z-index: 0;
}

.hero-legal-elite .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(0, 100, 0, 0.3), rgba(0, 0, 0, 0.9));
  z-index: 2;
}

.hero-legal-elite .hero-grid {
  position: absolute;
  inset: 0;
  background: url('../images/hud-grid.png') center/cover repeat;
  opacity: 0.08;
  animation: gridDrift 25s linear infinite;
  z-index: 1;
}

.hero-legal-elite .hero-scan-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 48%, rgba(144,238,144,0.08) 50%, transparent 52%);
  animation: radarSweep 7s linear infinite;
  z-index: 2;
}

.hero-legal-elite .hero-content {
  position: relative;
  z-index: 5;
  padding: 0 20px;
  max-width: 900px;
  animation: fadeDown 1.2s ease;
}

.hero-legal-elite h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: #90ee90;
  text-transform: uppercase;
  text-shadow: 0 0 25px rgba(144,238,144,0.4);
}

.hero-legal-elite p {
  color: #ddd;
  font-size: 1.2rem;
  margin: 20px auto;
  max-width: 700px;
}

.legal-section {
  background: #050505;
  padding: 100px 10%;
}

.legal-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 50px;
}

.legal-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(144,238,144,0.2);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
  transition: all 0.3s ease;
}

.legal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 35px rgba(144,238,144,0.2);
}

.legal-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  color: #90ee90;
  text-transform: uppercase;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.legal-card p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.8;
}

.legal-card i {
  color: #90ee90;
}

@media (max-width: 768px) {
  .hero-legal-elite h1 { font-size: 2.6rem; }
  .legal-card { padding: 25px; }
}
