
/* ======================================
   ROOT VARIABLES (KEEP SAME AS SITE)
====================================== */
:root {
  --primary-red: #c40000;
  --navy-dark: #050a12;
  --navy-mid: #0f172a;
  --text-main: #000000;
  --text-light: #000000;
  --white: #ffffff;
  --transition: all 0.35s ease;
}

/* ======================================
   RESET (SAFE PAGE RESET)
====================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: var(--text-main);
  line-height: 1.6;
}

/* ======================================
   ABOUT PAGE HERO (FIRST SECTION)
====================================== */
.about-page-hero {
  min-height: calc(100vh - 80px); /* navbar space */
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(5,10,18,0.88), rgba(5,10,18,0.88)),
    url("/assets/img/guards1.JPG")
    center / cover no-repeat;
  padding: 100px 20px;
  color: var(--white);
}

/* ======================================
   HERO CONTAINER
====================================== */
.about-hero-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: center;
}

/* ======================================
   LEFT: BRAND VISUAL
====================================== */
.brand-visual {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
}

.visual-logo {
  font-size: 58px;
  font-weight: 900;
  letter-spacing: 1px;
}

.visual-logo span {
  color: var(--primary-red);
}

/* SHIELD ICON */
.logo-shield {
  width: 66px;
  height: 66px;
  background: rgba(196,0,0,0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-shield i {
  font-size: 28px;
  color: var(--primary-red);
}

/* COMPLIANCE TAG */
.compliance-tag {
  background: rgba(196,0,0,0.18);
  border-left: 4px solid var(--primary-red);
  padding: 10px 18px;
  width: fit-content;
}

.compliance-tag p {
  font-size: 14px;
  font-weight: 600;
}

/* ======================================
   RIGHT: BRAND CONTENT
====================================== */
.brand-content {
  max-width: 640px;
}

.tagline {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--primary-red);
  margin-bottom: 16px;
}

.brand-content h2 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.brand-content h2 span {
  color: var(--primary-red);
}

.brand-content p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-main);
  margin-bottom: 34px;
}

/* ======================================
   INLINE STATS
====================================== */
.about-stats-inline {
  display: flex;
  gap: 40px;
}

.s-item strong {
  display: block;
  font-size: 28px;
  color: var(--primary-red);
}

.s-item span {
  font-size: 14px;
  color: var(--text-light);
}

/* ======================================
   GENERIC ABOUT PAGE SECTIONS
   (FOR CONTENT AFTER HERO)
====================================== */
.about-section {
  padding: 90px 20px;
  background: #ffffff;
}

.about-section.alt {
  background: #f8fafc;
}

.about-section .section-header {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.about-section .section-header span {
  color: var(--primary-red);
  font-weight: 700;
  letter-spacing: 1.4px;
  font-size: 14px;
  text-transform: uppercase;
}

.about-section .section-header h2 {
  font-size: 42px;
  margin-top: 10px;
}

.about-section .section-header p {
  margin-top: 10px;
  color: #64748b;
  font-size: 15px;
}

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 1024px) {
  .about-hero-container {
    grid-template-columns: 1fr;
    gap: 70px;
    text-align: center;
  }

  .brand-visual {
    align-items: center;
  }

  .about-stats-inline {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-page-hero {
    min-height: auto;
    padding: 90px 16px;
  }

  .visual-logo {
    font-size: 44px;
  }

  .brand-content h2 {
    font-size: 34px;
  }

  .about-stats-inline {
    gap: 26px;
  }
}

@media (max-width: 480px) {
  .about-stats-inline {
    flex-direction: column;
    gap: 16px;
  }

  .s-item strong {
    font-size: 24px;
  }
}
    /* ======================================
   MISSION & VISION SECTION
====================================== */
.mission-vision-section {
  background: #ffffff;
  padding: 100px 20px;
}

/* CONTAINER */
.mv-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* content wider */
  gap: 80px;
  align-items: center;
}

/* ======================================
   IMAGE SIDE
====================================== */
.mv-image {
  order: 2; /* RIGHT */
}

.mv-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.15);
  object-fit: cover;
}

/* IMAGE BADGE */
.mv-image-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: rgb(247, 0, 0);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ======================================
   CONTENT SIDE
====================================== */
.mv-content {
  order: 1; /* LEFT */
}

.mv-card {
  background: #f8fafc;
  border-radius: 20px;
  padding: 38px 34px;
  border-left: 5px solid var(--primary-red);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.14);
}

.mv-card h3 {
  font-size: 24px;
  color: var(--text-main);
  margin-bottom: 14px;
}

.mv-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
}

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 1024px) {
  .mv-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .mv-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .mission-vision-section {
    padding: 80px 16px;
  }

  .mv-card {
    padding: 30px 26px;
  }

  .mv-card h3 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .mv-image-badge {
    font-size: 13px;
    padding: 10px 14px;
  }
}
    /* ======================================
   FOUNDER VISION SECTION
====================================== */
.founder-vision-section {
  background: #f8fafc;
  padding: 100px 20px;
}

/* CONTAINER */
.founder-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: center;
}

/* ======================================
   IMAGE SIDE
====================================== */
.founder-image {
  position: relative;
}

.founder-image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 40px 90px rgba(0,0,0,0.18);
}

/* BADGE */
.founder-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--primary-red);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}

/* ======================================
   CONTENT SIDE
====================================== */
.founder-content {
  max-width: 650px;
}

.section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--primary-red);
  margin-bottom: 14px;
}

.founder-content h2 {
  font-size: 46px;
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--text-main);
}

.founder-content h2 span {
  color: var(--primary-red);
}

/* QUOTE */
.founder-quote {
  font-size: 17px;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 26px;
  position: relative;
  padding-left: 22px;
  border-left: 4px solid var(--primary-red);
}

/* NAME */
.founder-name strong {
  font-size: 15px;
  color: var(--text-main);
}

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 1024px) {
  .founder-container {
    grid-template-columns: 1fr;
    gap: 70px;
    text-align: center;
  }

  .founder-image {
    order: -1;
  }

  .founder-quote {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .founder-vision-section {
    padding: 80px 16px;
  }

  .founder-content h2 {
    font-size: 34px;
  }

  .founder-quote {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .founder-badge {
    font-size: 13px;
    padding: 10px 14px;
  }
}
    /* ======================================
   OUR TEAM SECTION
====================================== */
.team-section {
  background: #ffffff;
  padding: 100px 20px;
}

/* HEADER */
.team-section .section-header {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.team-section .sub-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-red);
  display: inline-block;
  margin-bottom: 10px;
}

.team-section h2 {
  font-size: 44px;
  color: var(--text-main);
}

.team-section h2 span {
  color: var(--primary-red);
}

/* ======================================
   GRID
====================================== */
.team-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

/* ======================================
   CARD
====================================== */
.team-card {
  text-align: center;
  background: #f8fafc;
  border-radius: 18px;
  padding: 26px 20px 30px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.15);
}

/* IMAGE */
.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 14px;
  border: 4px solid #ffffff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* NAME */
.team-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

/* DESIGNATION */
.team-card p {
  font-size: 14px;
  color: #64748b;
}

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 80px 16px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-section h2 {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
    /* ======================================
   TRUSTED CLIENTS SECTION
====================================== */
.clients-section {
  background: #ffffff;
  padding: 90px 20px;
}

/* HEADER */
.clients-section .section-header {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
}

.clients-section .sub-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-red);
  margin-bottom: 10px;
}

.clients-section h2 {
  font-size: 44px;
  color: var(--text-main);
}

.clients-section h2 span {
  color: var(--primary-red);
}

.clients-section p {
  margin-top: 10px;
  font-size: 15px;
  color: #64748b;
}

/* ======================================
   GRID
====================================== */
.clients-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* Desktop: 5 */
  gap: 30px;
  align-items: center;
}

/* LOGO CARD */
.client-logo {
  background: #f8fafc;
  border-radius: 14px;
  padding: 26px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.client-logo:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 65px rgba(0,0,0,0.14);
}

/* LOGO IMAGE */
.client-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: var(--transition);
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 80px 16px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr); /* Mobile: 2 */
    gap: 20px;
  }

  .clients-section h2 {
    font-size: 34px;
  }

  .client-logo img {
    max-height: 50px;
  }
}

@media (max-width: 480px) {
  .client-logo {
    padding: 22px 16px;
  }
}
    /* ======================================
   JOURNEY SECTION
====================================== */
.journey-section {
  background: #ffffff;
  padding: 100px 20px;
}

/* HEADER */
.journey-section .section-header {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}

.journey-section .sub-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-red);
}

.journey-section h2 {
  font-size: 44px;
  margin-top: 10px;
  color: var(--text-main);
}

.journey-section h2 span {
  color: var(--primary-red);
}

.journey-section p {
  margin-top: 10px;
  font-size: 15px;
  color: #64748b;
}

/* ======================================
   TIMELINE
====================================== */
.journey-timeline {
  max-width: 1000px;
  margin: auto;
  position: relative;
  padding-left: 40px;
}

/* CENTER LINE */
.journey-timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(196,0,0,0.25);
}

/* ITEM */
.journey-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 40px;
}

.journey-item:last-child {
  margin-bottom: 0;
}

/* DOT */
.journey-item::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--primary-red);
  border-radius: 50%;
}

/* YEAR */
.journey-item .year {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 6px;
}

/* TEXT */
.journey-item p {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.7;
}

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 768px) {
  .journey-section {
    padding: 80px 16px;
  }

  .journey-section h2 {
    font-size: 34px;
  }

  .journey-timeline {
    padding-left: 30px;
  }
}

@media (max-width: 480px) {
  .journey-item {
    padding-left: 30px;
  }

  .journey-item p {
    font-size: 14.5px;
  }
}

/* ======================================
   OPERATIONS SECTION
====================================== */
.operations-section {
  background: #0f172a;
  padding: 90px 0;
  color: #ffffff;
}

/* HEADER */
.operations-section .section-header {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
}

.operations-section .sub-heading {
  color: var(--primary-red);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.operations-section h2 {
  font-size: 44px;
  margin-top: 10px;
}

.operations-section h2 span {
  color: var(--primary-red);
}

.operations-section p {
  margin-top: 10px;
  font-size: 15px;
  color: #cbd5f5;
}

/* ======================================
   SLIDER BASE
====================================== */
.operations-slider {
  overflow: hidden;
  width: 100%;
  margin-bottom: 24px;
}

/* TRACK */
.ops-track {
  display: flex;
  width: max-content;
}

/* IMAGES */
.ops-track img {
  width: 300px;
  height: 200px;
  margin: 0 10px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  transition: transform 0.35s ease;
}

.ops-track img:hover {
  transform: scale(1.05);
}

/* ======================================
   ANIMATIONS
====================================== */

/* RIGHT → LEFT */
.operations-slider.rtl .ops-track {
  animation: scroll-rtl 35s linear infinite;
}

/* LEFT → RIGHT */
.operations-slider.ltr .ops-track {
  animation: scroll-ltr 35s linear infinite;
}

@keyframes scroll-rtl {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-ltr {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* PAUSE ON HOVER */
.operations-slider:hover .ops-track {
  animation-play-state: paused;
}

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 768px) {
  .operations-section h2 {
    font-size: 34px;
  }

  .ops-track img {
    width: 240px;
    height: 160px;
  }
}
