/* =========================================
   JIYAXO G TECHNO PVT LTD
   PREMIUM DEFENCE WEBSITE CSS
========================================= */

/* GOOGLE FONT */
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800&display=swap");

/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* ROOT COLORS */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --bg-dark: #050816;
  --bg-card: #0f172a;
  --text-light: #ffffff;
  --text-gray: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.08);
  --glow: 0 0 20px rgba(37, 99, 235, 0.4);
}

/* BODY */
body {
  font-family: "Orbitron", sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #020617;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* SECTION SPACING */
section {
  padding: 100px 0;
}

/* TITLES */
.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  max-width: 800px;
  margin: auto;
  margin-bottom: 70px;
  line-height: 1.8;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: var(--glow);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* HEADER */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--border-color);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo h1 {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  letter-spacing: 4px;
}

.logo span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: white;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--primary-color);
  left: 0;
  bottom: -8px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* HERO SECTION */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero video,
.hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.95)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-content h1 span {
  color: var(--primary-color);
  text-shadow: var(--glow);
}

.hero-content p {
  margin-top: 30px;
  color: var(--text-gray);
  font-size: 1.2rem;
  line-height: 1.9;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARDS */
.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  transition: 0.4s ease;
  overflow: hidden;
  position: relative;
}

.card:hover {
  transform: translateY(-10px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: var(--glow);
}

.card h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.card p {
  color: var(--text-gray);
  line-height: 1.9;
}

/* GRID */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* TECHNOLOGY IMAGE */
.tech-image {
  width: 70%;
  border-radius: 20px;
  align-self: center;
  justify-self: center;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.tech-image img {
  width: 100%;
  display: block;
  transition: 0.5s ease;
}

.tech-image:hover img {
  transform: scale(1.05);
}

/* LIST */
.feature-list {
  list-style: none;
  margin-top: 30px;
}

.feature-list li {
  margin-bottom: 18px;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* CONTACT */
.contact-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.contact-info {
  margin-bottom: 25px;
  color: var(--text-gray);
  font-size: 1rem;
}

.contact-info strong {
  color: white;
}

/* FORM */
form input,
form textarea {
  width: 100%;
  padding: 16px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: white;
  outline: none;
  font-family: inherit;
}

form input:focus,
form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: var(--glow);
}

/* FOOTER */
footer {
  background: #020617;
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.footer-section h3 {
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.footer-section p,
.footer-section a {
  color: var(--text-gray);
  text-decoration: none;
  line-height: 2;
  transition: 0.3s;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.social-media {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-media img {
  transition: 0.3s ease;
}

.social-media img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px #2563eb);
}

.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  color: var(--text-gray);
}

/* GLOW EFFECT */
.glow {
  box-shadow: var(--glow);
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .grid-2,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 3.5rem;
    /* margin-top: 150px; */
  }

  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    /* margin-top: 150px; */
  }

  .hero-content p {
    font-size: 1rem;
  }

  section {
    padding: 80px 0;
  }

  .card {
    padding: 30px;
  }
}

@media (max-width: 500px) {
  .hero-content h1 {
    font-size: 2rem;
    /* margin-top: 150px; */
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section-title {
    font-size: 2rem;
  }
}



  .logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 15px;
}

.logo-frame .side {
  width: 100%;       /* line length */
  height: 20px;       /* line thickness */
  background: #fbff00;  /* line color */
}

.logo-frame .logo-center {
  margin: 0 10px;    /* spacing between lines and logo */
}

.logo-frame img {
  width: 140px;       /* logo size */
  height: auto;
}
