/* =====================================================
   IEPSSOLs & Co. Premium Theme System
   Violet + White + Gold Accent
===================================================== */

:root {
  --primary: #2A1E82;
  --primary-dark: #1B145C;
  --gold: #F9B800;
  --light-bg: #F9FBFF;
  --text-dark: #003366;
  --shadow: rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--light-bg);
  margin: 0;
  padding: 0;
}

/* =====================================================
   NAVBAR
===================================================== */

.navbar {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 12px 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
  font-size: 20px;
  font-weight: 800;
  color: white !important;
}

.navbar-brand img {
  height: 42px;
  margin-right: 10px;
  border-radius: 8px;
  transition: 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0px 0px 8px rgba(249, 184, 0, 0.75));
}

.nav-link {
  font-weight: 600;
  transition: 0.3s;
}

.nav-link:hover {
  color: var(--gold) !important;
  transform: translateY(-2px);
}

/* Active Page Highlight */
.nav-link.active {
  color: var(--gold) !important;
  font-weight: 700;
  border-bottom: 2px solid var(--gold);
}

/* =====================================================
   BUTTONS
===================================================== */

.btn-gold {
  background: var(--gold);
  border: none;
  font-weight: 800;
  padding: 12px 30px;
  border-radius: 30px;
  color: black;
  transition: 0.3s;
}

.btn-gold:hover {
  background: #ffd34d;
  transform: translateY(-4px);
}

/* =====================================================
   GLOBAL HERO SYSTEM (Used Across All Pages)
===================================================== */

.page-hero {
  min-height: 65vh;
  padding: 110px 20px;
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: white;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
  overflow: hidden;
}

/* Overlay */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 60, 0.72);
  z-index: 1;
}

/* Hero Content */
.page-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: fadeInUp 1.2s ease;
}

.page-hero h1 {
  font-size: 52px;
  font-weight: 900;
}

.page-hero p {
  font-size: 18px;
  margin-top: 15px;
  opacity: 0.95;
  line-height: 1.7;
}

/* Homepage Bigger */
.hero-home {
  min-height: 90vh;
}


/* Hero Background Images */
.hero-home {
  background-image: url("../images/heroes/home.webp");
}

.hero-about {
  background-image: url("../images/heroes/about.webp");
}

.hero-services {
  background-image: url("../images/heroes/services.webp");
}

.hero-products {
  background-image: url("../images/heroes/products.webp");
}

.hero-career {
  background-image: url("../images/heroes/career.webp");
}

.hero-contact {
  background-image: url("../images/heroes/contact.webp");
}

/* Policy Pages Hero (Smaller Height) */
.hero-policy {
  min-height: 20vh;
  background-image: url("../images/heroes/policy.webp");
}


/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Hero */
@media (max-width: 768px) {
  .page-hero {
    min-height: 60vh;
    padding: 70px 15px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .page-hero p {
    font-size: 16px;
  }
}

/* =====================================================
   GLOBAL HERO SYSTEM (Compact Professional)
===================================================== */

.page-hero {
  min-height: 50vh;
  padding: 70px 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: white;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
  overflow: hidden;
}

/* Homepage Hero Slightly Bigger */
.hero-home {
  min-height: 75vh;
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero {
    min-height: 40vh;
    padding: 55px 15px;
  }
}





/* =====================================================
   SECTION TITLES
===================================================== */

.section-title {
  font-weight: 900;
  color: var(--primary);
  text-align: center;
  margin-bottom: 45px;
  font-size: 32px;
}

@media(max-width:768px) {
  .section-title {
    font-size: 24px;
  }
}

/* =====================================================
   CARD SYSTEM (Jobs / Services / Info Cards)
===================================================== */

.job-card,
.service-card {
  background: white;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 6px 18px var(--shadow);
  transition: 0.3s;
  height: 100%;
}

.job-card:hover,
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.job-card i,
.service-icon {
  font-size: 45px;
  color: var(--gold);
  margin-bottom: 15px;
}

/* =====================================================
   PRODUCT HIGHLIGHT BOX
===================================================== */

.highlight-box {
  background: linear-gradient(135deg, #ffffff, #ece9ff);
  border-radius: 22px;
  padding: 55px;
  border-left: 6px solid var(--gold);
  box-shadow: 0 8px 22px var(--shadow);
  transition: 0.3s;
}

.highlight-box:hover {
  transform: scale(1.02);
}

/* =====================================================
   CTA SECTION
===================================================== */

.cta,
.apply-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 75px 20px;
  text-align: center;
  border-radius: 22px;
}

.cta h2 {
  font-weight: 900;
}

/* =====================================================
   FOOTER
===================================================== */

.footer-section {
  background: #090529;
  color: white;
  padding: 70px 0 25px;
}

.footer-text {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.6;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin: 8px 0;
  text-decoration: none;
  transition: 0.3s;
}

.footer-link:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact {
  font-size: 14px;
  margin: 10px 0;
  opacity: 0.9;
}

.store-badge {
  height: 42px;
  margin-right: 10px;
  margin-top: 8px;
  border-radius: 8px;
  transition: 0.3s;
}

.store-badge:hover {
  transform: scale(1.05);
}

.footer-line {
  border-color: rgba(255, 255, 255, 0.2);
  margin-top: 25px;
}

.footer-bottom {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 15px;
}
