/* Base */
:root {
  --primary: #002147;
  --secondary: #0057B8;
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
  --white: #ffffff;
  --radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ✅ WHITE HEADER */
.site-header {
  background-color: #ffffff;
  padding: 1.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #eee;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.logo-img {
  height: 80px;
  width: auto;
}

.header-text h1 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.header-text p {
  margin: 0.4rem 0 0;
  font-size: 1.1rem;
  color: var(--secondary);
  font-weight: 500;
}

/* Hero */
.hero {
  background: #002B5B;
  color: white;
  padding: 4rem 0;
  text-align: center;
}
.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
}
.hero p {
  font-size: 1.25rem;
  line-height: 1.5;
  margin: 1.4rem auto 2rem;
  max-width: 800px;
  opacity: 0.9;
}

/* Sections */
.section {
  padding: 4rem 0;
}
.section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary);
}
.bg-light {
  background: var(--light);
}

/* Steps Grid — 2x2 Layout */
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.step {
  text-align: center;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* ✅ FIXED IMAGE SIZE — ALL IMAGES SAME HEIGHT & WIDTH */
.step-icon {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  margin: 0 auto 1.3rem;
  display: block;
  border-radius: 8px;
  background: white;
  padding: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.step h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.step p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.6;
  text-align: center;
}

/* Dashboard Section — Center Align Description & Admin Text */
.section.bg-light p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
  text-align: center;
  margin: 1.2rem auto;
  max-width: 800px;
}

.dashboard-placeholder {
  background: #eef2f7;
  padding: 3rem;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 1.5rem;
  font-style: italic;
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Values */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.value-item h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Contact */
.contact-info {
  text-align: center;
  padding: 2rem 0;
  background: var(--light);
}

/* ✅ CONTACT DETAILS — BIGGER + BOLD + CENTERED */
.contact-info p {
  margin: 0.4rem 0;
  font-size: 1.1rem;       /* ← Increased from 0.9rem */
  font-weight: 600;        /* ← Bold */
  color: var(--dark);       /* ← Dark for contrast */
}

/* Footer */
.footer {
  background: var(--primary);
  color: white;
  padding: 3rem 0 2rem;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.footer-logo-img {
  height: 60px;
  width: auto;
}
.footer-links a {
  margin: 0 0.75rem;
  opacity: 0.8;
}
.footer-links a:hover {
  opacity: 1;
}
.footer-legal {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .logo-img {
    height: 70px;
  }
  .header-text h1 {
    font-size: 1.8rem;
  }
  .header-text p {
    font-size: 1rem;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .step-icon {
    height: 200px;
  }
  .step p {
    font-size: 1rem;
  }
  .section.bg-light p {
    font-size: 1rem;
    max-width: 100%;
  }
  .dashboard-placeholder {
    font-size: 1rem;
    padding: 2rem;
  }
  .contact-info p {
    font-size: 1rem;        /* Mobile: slightly smaller */
    font-weight: 600;
  }
}
