/* ==================================================
   PRIME SECURE – FINAL BRAND CSS
   Industrial | Safety | Enterprise | Academic
   ================================================== */

/* ---------------- RESET ---------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---------------- BASE ---------------- */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, #F2F7FF 0%, #E8F0FE 45%, #EDF3FA 100%);
  color: #0F172A;
}

/* ---------------- CONTAINER ---------------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------------- HEADER ---------------- */
.site-header {
  background: linear-gradient(90deg, #FFFFFF 60%, #F1F6FF 100%);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, #0B57D0, #FF8A00);
  border-image-slice: 1;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 900;
  color: #0B57D0;
  letter-spacing: 0.6px;
  margin: 0;
}


.logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, #FF8A00, #E53935);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
}


.nav a:hover {
  color: #0B57D0;
}

.nav a.active {
  color: #0B57D0;
  font-weight: 600;
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0B57D0, #0842A0);
}

/* ---------------- HERO ---------------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0B57D0 0%, #0842A0 60%, #062E73 100%);
  color: #FFFFFF;
  padding: 130px 0 110px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #FF8A00 0%, #E53935 60%, transparent 70%);
  opacity: 0.25;
}

.hero h2 {
  font-size: 46px;
  line-height: 1.12;
  max-width: 780px;
  margin-bottom: 26px;
}

.hero p {
  font-size: 16px;
  max-width: 740px;
  line-height: 1.8;
  opacity: 0.95;
}

.hero-buttons {
  margin-top: 38px;
}

.btn {
  display: inline-block;
  padding: 15px 26px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
}

.btn.primary {
  background: linear-gradient(135deg, #FFFFFF, #E8F0FE);
  color: #0B57D0;
  margin-right: 18px;
}

.btn.secondary {
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}

/* ---------------- SECTIONS ---------------- */
.section {
  padding: 110px 0 70px;
}

.section.light {
  background: linear-gradient(180deg, #F4F8FF 0%, #EAF2FF 100%);
}

.section h3 {
  font-size: 28px;
  font-weight: 800;
  color: #0B57D0;
  margin-bottom: 18px;
  padding-left: 26px;
  position: relative;
}

.section h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 8px;
  height: 80%;
  background: linear-gradient(180deg, #0B57D0, #FF8A00);
}

p {
  font-size: 15px;
  line-height: 1.85;
  max-width: 700px;
  margin-bottom: 24px;
  color: #000000;
}

/* ---------------- FEATURES ---------------- */
.features {
  margin-top: 30px;
  padding-left: 22px;
}

.features li {
  margin-bottom: 16px;
  line-height: 1.7;
  color: #475569;
}

.features strong {
  color: #0B57D0;
}

/* ---------------- TEAM ---------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 34px;
  margin-top: 50px;
}

.team-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F6FAFF 100%);
  padding: 38px 28px;
  box-shadow: 0 16px 40px rgba(11, 87, 208, 0.15);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #0B57D0, #FF8A00);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(11, 87, 208, 0.22);
}

.team-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: #0B57D0;
}

.team-card span {
  font-size: 13px;
  font-weight: 700;
  color: #FF8A00;
}

/* ---------------- CONTACT / ENQUIRY ---------------- */
.contact-form-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.contact-form {
  max-width: 760px;
  width: 100%;
  background: linear-gradient(135deg, #FFFFFF 0%, #F6FAFF 60%, #EEF4FF 100%);
  padding: 50px 56px;
  box-shadow:
    0 20px 45px rgba(11, 87, 208, 0.12),
    inset 0 0 0 1px rgba(11, 87, 208, 0.05);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form label {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #CBD5E1;
  font-size: 14px;
  transition: border 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0B57D0;
  box-shadow: 0 0 0 3px rgba(11, 87, 208, 0.12);
}

.contact-form textarea {
  min-height: 140px;
  margin-top: 10px;
}

.contact-form button {
  margin-top: 34px;
  background: linear-gradient(135deg, #0B57D0 0%, #0842A0 60%, #062E73 100%);
  color: #FFFFFF;
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.6px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(11, 87, 208, 0.35);
}

/* ---------------- CTA ---------------- */
.cta {
  background: linear-gradient(135deg, #FF8A00 0%, #E53935 100%);
  color: #FFFFFF;
  padding: 90px 0;
}

.cta h3 {
  font-size: 34px;
}

.cta p {
  font-size: 16px;
  opacity: 0.95;
}

/* ---------------- FOOTER ---------------- */
.site-footer {
  background: linear-gradient(135deg, #062E73, #0A2F6B);
  color: #FFFFFF;
  padding: 40px 0 50px;
}

.site-footer p {
  font-size: 13px;
  opacity: 0.85;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 46px;
  height: auto;
}

.logo-text {
  font-size: 22px;
  font-weight: 900;
  color: #0B57D0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.team-card {
  background: linear-gradient(180deg, #FFFFFF, #F4F8FF);
  padding: 28px;
  border-left: 4px solid #0B57D0;
  box-shadow: 0 12px 28px rgba(11, 87, 208, 0.08);
}

.team-card h3 {
  margin-bottom: 12px;
  color: #0B57D0;
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}


.center {
  text-align: center;
}
.page-header {
  padding: 80px 0 60px;
 background: linear-gradient(135deg, #0B57D0 0%, #0842A0 60%, #062E73 100%);
}

.page-header h2 {
  font-size: 36px;
  margin-bottom: 18px;
}

.page-header p {
  max-width: 760px;
  line-height: 1.8;
}
/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 900px) {
  .container {
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero h2 {
    font-size: 34px;
  }
}
@media (max-width: 600px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    margin-top: 16px;
  }

  .nav a {
    margin-right: 16px;
    font-size: 13px;
  }

  .hero {
    padding: 90px 0 70px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  .site-header .container {
    flex-direction: column;
    gap: 18px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}
