/* ==============================
   ABOUT PAGE – HERO SECTION
================================ */

.about-hero {
  width: 100%;
}

.about-hero-bg {
  position: relative;
  width: 100%;
  min-height: 60vh; /* SAME as services hero */
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../assets/images/about-page/about-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85); /* same overlay strength as services */
}

.about-hero-wrapper {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.about-hero-content {
  font-family: "Orbitron", sans-serif;
  color: #ffffff;
}

.about-hero-tagline {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f8332c; /* brand red */
}

.about-hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.about-hero-description {
  font-size: 18px;
  line-height: 1.7;
  max-width: 600px;
  opacity: 0.9;
}







/* ==================================================
   ABOUT INTRO SECTION
================================================== */

.about-intro {
  padding: 120px 0;
  background: radial-gradient(circle at right, #0a1b3d, #02050b 55%);
}

.about-intro-wrapper {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

/* LEFT */

.about-intro-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-intro-image-stack {
  max-width: 460px;
  width: 100%;
  position: relative;
}


.about-intro-glow {
  position: absolute;
  inset: -30px;
  /* background: linear-gradient(135deg, #2563eb, #9333ea);
  filter: blur(120px); */
  opacity: 0.4;
}

.about-intro-neon-border {
  position: absolute;
  inset: -6px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    #2563eb,
    #9333ea,
    #22d3ee
  );
  z-index: 1;
  filter: blur(1px);
}

.about-intro-image {
  width: 100%;
  border-radius: 26px;
  position: relative;
  z-index: 2;
  background: #02050b;
}

.about-intro-badge {
  position: absolute;
  top: 24px;
  right: -36px;
  /* left: auto; */
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 3;
}

.about-intro-badge-number {
  font-size: 38px;
  font-weight: 700;
  color: #2563eb;
}

.about-intro-badge-text {
  font-size: 18px;
  font-weight: 600;
  color: #02050b;
}

/* RIGHT */

.about-intro-right {
  color: #ffffff;
}

.about-intro-tag {
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 18px;
}

.about-intro-title {
  font-size: 42px;
  line-height: 1.25;
  margin-bottom: 18px;
}

.about-intro-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
}

.about-intro-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 34px 0;
}

/* FEATURES */

.about-intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.about-intro-feature-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.about-intro-feature-head img {
  width: 34px;
  height: 34px;
}

.about-intro-feature h4 {
  font-size: 18px;
  margin: 0;
}

.about-intro-feature p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}


/* CIRCLES */

.about-intro-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-intro-circle img {
  width: 72px;
}

.about-intro-circle.mission {
  background: #1da1f2;
}

.about-intro-circle.vision {
  background: #4f46e5;
}

/* CTA */

.about-intro-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.about-intro-btn {
  /* background: linear-gradient(135deg, #2563eb, #9333ea);
  padding: 14px 28px;
  border-radius: 999px;
  color: #fff;
  font-weight: 600; */
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;

  color: #ffffff;
  background: var(--accent-red);
  border: 2px solid var(--accent-red);
  box-shadow: 0 16px 40px rgba(248, 51, 44, 0.35);

  border-radius: 999px;
  text-decoration: none;
}

.about-intro-btn:hover {
  background: #ffffff;
  color: var(--accent-red);
  border-color: var(--accent-red);
}

.about-intro-founder {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-intro-founder img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.about-intro-founder span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}





/* ================= ABOUT INTRO SECTION END ================= */



/* ==================================================
   CYBER SOLUTIONS SECTION
================================================== */

.cyber-solutions {
  padding: 120px 0;
  background: linear-gradient(
    90deg,
    #0a1440 0%,
    #0a1440 45%,
    #02050b 100%
  );
}

.cyber-solutions-wrapper {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

/* LEFT CONTENT */

.cyber-solutions-tag {
  display: inline-block;
  color: #60a5fa;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.cyber-solutions-title {
  font-size: 44px;
  line-height: 1.25;
  margin-bottom: 18px;
  color: #ffffff;
}

.cyber-solutions-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin-bottom: 28px;
}

.cyber-solutions-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.cyber-solutions-list li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.cyber-solutions-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #60a5fa;
}

/* BUTTON */

.cyber-solutions-btn .btn-primary {
  /* display: inline-block;
  padding: 14px 28px;
  background: #3b82f6;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600; */
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;

  color: #ffffff;
  background: var(--accent-red);
  border: 2px solid var(--accent-red);
  /* box-shadow: 0 16px 40px rgba(248, 51, 44, 0.35); */

  border-radius: 999px;
  text-decoration: none;
}

.cyber-solutions-btn .btn-primary:hover {
  background: #ffffff;
  color: var(--accent-red);
  border-color: var(--accent-red);
}

/* RIGHT IMAGE */

.cyber-solutions-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
}


/* ================= CYBER SOLUTIONS SECTION END ================= */




/* ==================================================
   OUR TEAM SECTION
================================================== */

.our-team {
  padding: 120px 0;
  background: #f9fafb;
}

.our-team-wrapper {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 6%;
}

/* HEADER */

.our-team-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.our-team-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  color: #3b82f6;
  margin-bottom: 12px;
}

.our-team-title {
  font-size: 42px;
  line-height: 1.25;
  color: #0f172a;
}

/* GRID */

.our-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */

.team-card {
  background: #ffffff;
  border-radius: 16px;
  text-align: center;
  padding: 28px 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* .team-card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 20px;
} */

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
  display: block;
}


.team-card h4 {
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 6px;
}

.team-card p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
}

/* SOCIAL ICONS */

.team-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .team-socials img {
  width: 16px;
} */

.team-socials img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

