@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary-color: #0b2545;
  /* Deep Navy Blue */
  --secondary-color: #13315c;
  /* Lighter Navy */
  --accent-color: #ffd166;
  /* Confident Gold/Yellow */
  --text-light: #f8f9fa;
  --text-dark: #ced4da;
  --bg-color: #0d1b2a;
  /* Very Dark Blue Background */
  --card-bg: rgba(19, 49, 92, 0.4);
  --glass-bg: rgba(11, 37, 69, 0.85);
  /* Slightly darker glass */
  --border-color: rgba(255, 255, 255, 0.1);
  --hover-glow: rgba(255, 209, 102, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.logo-container img {
  height: 55px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-container:hover img {
  transform: scale(1.05);
}

.logo-container .brand-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 1px;
}

.logo-container .brand-name span {
  color: var(--accent-color);
}

.header-threat {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 209, 102, 0.1);
  border: 1px solid rgba(255, 209, 102, 0.3);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
}

.header-threat i {
  color: var(--accent-color);
  animation: pulse 2s infinite;
}

.header-threat span {
  color: var(--accent-color);
  font-weight: 700;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

nav a:hover {
  color: var(--accent-color);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a.active {
  color: var(--accent-color);
}


/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  background: radial-gradient(circle at center, rgba(28, 37, 65, 0.8) 0%, rgba(5, 8, 20, 1) 100%),
    url('https://images.unsplash.com/photo-1541888086425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--bg-color), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  animation: fadeUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
  margin-top: 80px;
}

.hero-subtitle {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 25px;
  background: linear-gradient(to right, #ffffff, #a0aec0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  font-weight: 700;
}

.hero h1 span {
  background: linear-gradient(to right, var(--accent-color), #ff8c00);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 45px;
  color: var(--text-dark);
  max-width: 600px;
}

.btn-group {
  display: flex;
  gap: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--accent-color);
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 20px rgba(255, 209, 102, 0.2);
  border: 2px solid var(--accent-color);
  cursor: pointer;
}

.btn i {
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 209, 102, 0.4);
}

.btn:hover i {
  transform: translateX(5px);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: var(--border-color);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--border-color);
  color: var(--text-light);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.05);
}

/* Sections */
section {
  padding: 120px 5%;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-tagline {
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.section-title {
  font-size: 3.5rem;
  color: var(--text-light);
  line-height: 1.2;
}

.section-title span {
  color: var(--accent-color);
}

/* Features/Services */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 50px 40px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, var(--hover-glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 209, 102, 0.3);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: rgba(252, 163, 17, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 30px;
  transition: transform 0.4s ease;
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(252, 163, 17, 0.2);
}

.card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

.card p {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: gap 0.3s ease;
}

.card-link:hover {
  gap: 15px;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  pointer-events: none;
}

.about-content h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  line-height: 1.2;
}

.about-content p {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Threat Level Alert */
.threat-level {
  background: rgba(255, 209, 102, 0.1);
  border: 1px solid rgba(255, 209, 102, 0.3);
  border-radius: 16px;
  padding: 25px 40px;
  margin: 60px auto 0;
  max-width: 800px;
  text-align: center;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.threat-level i {
  font-size: 2rem;
  color: var(--accent-color);
  animation: pulse 2s infinite;
}

.threat-level p {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 500;
}

.threat-level span {
  color: var(--accent-color);
  font-weight: 700;
  background: rgba(252, 163, 17, 0.2);
  padding: 5px 15px;
  border-radius: 30px;
  margin-left: 10px;
}

/* Page Headers (for inner pages) */
.page-header {
  padding-top: 200px;
  padding-bottom: 100px;
  text-align: center;
  background: linear-gradient(135deg, rgba(11, 19, 43, 0.95) 0%, rgba(5, 8, 20, 0.95) 100%),
    url('https://images.unsplash.com/photo-1557597775-58d042bb872b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to top, var(--bg-color), transparent);
}

.page-header h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease-out forwards;
}

.page-header p {
  font-size: 1.3rem;
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

/* Forms */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info {
  background: var(--card-bg);
  padding: 50px;
  border-radius: 24px;
  border: 1px solid var(--border-color);
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 60px;
  height: 60px;
  background: rgba(252, 163, 17, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-light);
}

.info-content p,
.info-content a {
  color: var(--text-dark);
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: var(--accent-color);
}

.contact-form {
  background: var(--card-bg);
  padding: 50px;
  border-radius: 24px;
  border: 1px solid var(--border-color);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 20px;
  background: rgba(5, 8, 20, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(255, 209, 102, 0.1);
  background: rgba(5, 8, 20, 0.8);
}

.form-group textarea {
  height: 180px;
  resize: vertical;
}

/* Footer */
footer {
  background: var(--glass-bg);
  padding: 80px 5% 40px;
  border-top: 1px solid var(--border-color);
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  margin-bottom: 25px;
}

.footer-brand img {
  height: 45px;
}

.footer-brand .brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.footer-brand .brand-name span {
  color: var(--accent-color);
}

.footer-col p {
  color: var(--text-dark);
  margin-bottom: 25px;
  max-width: 350px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.social-links a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-5px);
  color: #000;
}

.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: var(--text-light);
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 2px;
  background: var(--accent-color);
  bottom: -10px;
  left: 0;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul a {
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--accent-color);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-col ul a:hover {
  color: var(--accent-color);
}

.footer-col ul a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-bottom-links a:hover {
  color: var(--accent-color);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 4rem;
  }

  .about-grid,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 20px;
    flex-direction: column;
    gap: 20px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .section-title,
  .page-header h1 {
    font-size: 2.5rem;
  }

  .btn-group {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}