/* ======================================== */
/* RESET */
/* ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #06061A;
  color: #FFFFFF;
  overflow-x: hidden;
}

/* ======================================== */
/* VARIABLES */
/* ======================================== */

:root {

  --bg-primary: #06061A;
  --bg-secondary: #0B0F2B;
  --bg-card: rgba(255,255,255,0.05);

  --primary: #121B5C;
  --accent: #FF1F3D;

  --white: #FFFFFF;
  --gray: #B8B8C7;

  --border: rgba(255,255,255,0.1);

  --shadow:
    0 10px 40px rgba(0,0,0,0.4);

}

/* ======================================== */
/* GLOBAL */
/* ======================================== */

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

section {
  padding: 120px 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-badge {
  display: inline-block;
  background: rgba(255, 31, 61, 0.15);
  color: var(--accent);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}

.section-header h2 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-header p {
  color: var(--gray);
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
}

/* ======================================== */
/* BUTTONS */
/* ======================================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--accent);
  color: white;

  padding: 16px 30px;

  border-radius: 14px;

  font-weight: 600;

  transition: 0.3s ease;

  box-shadow:
    0 10px 25px rgba(255,31,61,0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 40px rgba(255,31,61,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,0.15);

  color: white;

  padding: 16px 30px;

  border-radius: 14px;

  transition: 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
}

/* ======================================== */
/* NAVBAR */
/* ======================================== */

.navbar {

  position: fixed;
  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  transition: 0.3s ease;

  padding: 24px 0;
}

.navbar.scrolled {

  background: rgba(6,6,26,0.92);

  backdrop-filter: blur(12px);

  border-bottom:
    1px solid rgba(255,255,255,0.08);

  padding: 18px 0;
}

.nav-container {

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 220px;
}

.nav-menu {

  display: flex;
  gap: 40px;
}

.nav-menu a {

  color: white;

  font-weight: 500;

  transition: 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent);
}

.mobile-toggle {
  display: none;
}

/* ======================================== */
/* HERO */
/* ======================================== */

.hero {

  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      rgba(6,6,26,0.75),
      rgba(6,6,26,0.85)
    ),

    url("https://images.unsplash.com/photo-1565891741441-64926e441838?q=80&w=2000")
    center center / cover no-repeat;
}

.hero-overlay {

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(18,27,92,0.5),
      transparent 40%
    );
}

.hero-gradient {

  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 180px;

  background:
    linear-gradient(
      transparent,
      #06061A
    );
}

.hero-content {

  position: relative;
  z-index: 2;
}

.hero-text {

  max-width: 700px;
}

.hero-badge {

  display: inline-block;

  background:
    rgba(255,255,255,0.08);

  border:
    1px solid rgba(255,255,255,0.08);

  padding: 12px 20px;

  border-radius: 40px;

  margin-bottom: 30px;

  font-size: 14px;

  color: var(--gray);
}

.hero h1 {

  font-size: 86px;

  line-height: 0.95;

  margin-bottom: 30px;

  font-weight: 800;
}

.hero p {

  font-size: 20px;

  color: var(--gray);

  line-height: 1.9;

  max-width: 650px;

  margin-bottom: 40px;
}

.hero-buttons {

  display: flex;
  gap: 20px;
}

/* ======================================== */
/* FEATURES */
/* ======================================== */

.features-section {
  position: relative;
  margin-top: -80px;
  z-index: 10;
}

.features-grid {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 30px;
}

.feature-card {

  background:
    rgba(255,255,255,0.05);

  border:
    1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(14px);

  padding: 40px;

  border-radius: 28px;

  transition: 0.4s ease;

  box-shadow: var(--shadow);
}

.feature-card:hover {

  transform:
    translateY(-10px);

  border-color:
    rgba(255,31,61,0.4);
}

.feature-icon {

  width: 70px;
  height: 70px;

  border-radius: 20px;

  background:
    rgba(255,31,61,0.15);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 25px;
}

.feature-icon i {

  font-size: 28px;

  color: var(--accent);
}

.feature-card h3 {

  font-size: 28px;

  margin-bottom: 15px;
}

.feature-card p {

  color: var(--gray);

  line-height: 1.8;
}

/* ======================================== */
/* SERVICES */
/* ======================================== */

.services-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 30px;
}

.service-card {

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.03)
    );

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius: 28px;

  padding: 50px 40px;

  transition: 0.4s ease;

  min-height: 320px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}


.service-card h3 {

  font-size: 28px;

  margin-bottom: 15px;

  min-height: 80px;
}

.service-card:hover {

  transform:
    translateY(-10px);

  border-color:
    rgba(255,31,61,0.4);
}

.service-card i {

  font-size: 50px;

  color: var(--accent);

  margin-bottom: 30px;
}

.service-card h3 {

  font-size: 28px;

  margin-bottom: 15px;
}

.service-card p {

  color: var(--gray);

  line-height: 1.8;
}

/* ======================================== */
/* SECURITY */
/* ======================================== */

.security-section {

  background:
    linear-gradient(
      180deg,
      #0A0D24,
      #06061A
    );
}

.security-container {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 80px;

  align-items: center;
}

.security-left h2 {

  font-size: 56px;

  line-height: 1.1;

  margin-bottom: 25px;
}

.security-left p {

  color: var(--gray);

  line-height: 1.9;

  margin-bottom: 40px;
}

.security-items {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 20px;
}

.security-item {

  background:
    rgba(255,255,255,0.04);

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius: 18px;

  padding: 20px;

  display: flex;
  align-items: center;

  gap: 14px;

  font-weight: 500;
}

.security-item i {
  color: var(--accent);
}

.security-card {

  background:
    rgba(255,255,255,0.05);

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius: 30px;

  padding: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 500px;
}

/* ======================================== */
/* CLIENTS */
/* ======================================== */

.clients-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 30px;
}

.client-card {

  background:
    rgba(255,255,255,0.04);

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius: 24px;

  padding: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s ease;
}

.client-card:hover {

  transform:
    translateY(-5px);

  border-color:
    rgba(255,31,61,0.3);
}

/* ======================================== */
/* CONTACT */
/* ======================================== */

.contact-wrapper {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 60px;

  background:
    rgba(255,255,255,0.04);

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius: 32px;

  padding: 70px;
}

.contact-info h2 {

  font-size: 56px;

  margin-bottom: 20px;
}

.contact-info p {

  color: var(--gray);

  line-height: 1.9;

  margin-bottom: 40px;
}

.contact-item {

  display: flex;
  align-items: center;

  gap: 16px;

  margin-bottom: 24px;

  font-size: 18px;
}

.contact-item i {

  color: var(--accent);

  font-size: 20px;
}

.contact-form {

  display: flex;

  flex-direction: column;

  gap: 20px;
}

.contact-form input,
.contact-form textarea {

  width: 100%;

  background:
    rgba(255,255,255,0.05);

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius: 16px;

  padding: 20px;

  color: white;

  font-size: 16px;

  outline: none;
}

.contact-form textarea {
  resize: none;
}

/* ======================================== */
/* FOOTER */
/* ======================================== */

.footer {

  padding-top: 100px;

  background:
    #040410;
}

.footer-container {

  display: grid;

  grid-template-columns:
    2fr 1fr 1fr;

  gap: 60px;

  padding-bottom: 60px;
}

.footer-logo img {

  width: 220px;

  margin-bottom: 25px;
}

.footer-logo p {

  color: var(--gray);

  line-height: 1.8;

  max-width: 400px;
}

.footer-links,
.footer-contact {

  display: flex;

  flex-direction: column;
}

.footer-links h4,
.footer-contact h4 {

  margin-bottom: 20px;

  font-size: 20px;
}

.footer-links a,
.footer-contact p {

  color: var(--gray);

  margin-bottom: 14px;

  transition: 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {

  border-top:
    1px solid rgba(255,255,255,0.08);

  padding: 30px 0;

  text-align: center;

  color: var(--gray);

  font-size: 14px;
}

/* ======================================== */
/* ABOUT PAGE */
/* ======================================== */

.about-grid {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 40px;

  margin-top: 60px;
}

.about-card {

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.03)
    );

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius: 32px;

  padding: 60px 50px;

  transition: 0.4s ease;

  min-height: 420px;
}

.about-card:hover {

  transform:
    translateY(-8px);

  border-color:
    rgba(255,31,61,0.35);
}

.about-card .feature-icon {

  margin-bottom: 35px;
}

.about-card h3 {

  font-size: 48px;

  margin-bottom: 30px;

  line-height: 1.1;
}

.about-card p {

  color: var(--gray);

  font-size: 20px;

  line-height: 2;
}

/* ======================================== */
/* PAGE HERO */
/* ======================================== */

.page-hero {

  min-height: 65vh;

  padding-top: 140px;

  background:
    linear-gradient(
      rgba(6,6,26,0.82),
      rgba(6,6,26,0.9)
    ),

    url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?q=80&w=2000")
    center center / cover no-repeat;
}

/* ======================================== */
/* CTA SECTION */
/* ======================================== */

.cta-section {

  padding-top: 40px;
}

.cta-box {

  background:
    linear-gradient(
      135deg,
      rgba(18,27,92,0.95),
      rgba(255,31,61,0.15)
    );

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius: 40px;

  padding: 80px;

  text-align: center;

  position: relative;

  overflow: hidden;
}

.cta-box h2 {

  font-size: 56px;

  margin-bottom: 25px;
}

.cta-box p {

  max-width: 750px;

  margin:
    0 auto 40px;

  color: var(--gray);

  font-size: 18px;

  line-height: 1.9;
}

/* ======================================== */
/* RESPONSIVE ABOUT */
/* ======================================== */

@media (max-width: 992px) {

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-card {

    min-height: auto;
  }

}

@media (max-width: 768px) {

  .about-card {

    padding: 40px 35px;
  }

  .about-card h3 {

    font-size: 38px;
  }

  .about-card p {

    font-size: 17px;

    line-height: 1.9;
  }

  .cta-box {

    padding: 60px 35px;
  }

  .cta-box h2 {

    font-size: 40px;
  }

}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

}