:root {
  --primary: #0a2463;
  --accent: #3a86ff;
  --light: #f7f9fc;
  --text: #212529;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--light);
  color: var(--text);
}

a {
  text-decoration: none;
  color: inherit;
}

.navbar {
  background-color: white;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

.nav-links a {
  margin-left: 25px;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent); /* Blue on hover */
}


.hero {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(to right, #edf1f4, #f7f9fc);
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.hero .subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #444;
}

.cta-button {
  padding: 12px 24px;
  background-color: var(--accent);
  color: white;
  font-weight: bold;
  border-radius: 30px;
  transition: background 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background-color: #265cff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 80px 40px;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.contact-section {
  background-color: #f9fafc;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  align-items: start;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  border-left: 4px solid #0056d2;
  padding-left: 12px;
}

.eyebrow {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.about-info p,
.contact-info li {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 12px;
}

.contact-list a {
  color: #0056d2;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.footer {
  background-color: #000d2e;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}

.footer-container {
  max-width: 900px;
  margin: auto;
}

.footer-text {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.8;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #8cbcff;
  margin: 0 10px;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.contact-list svg {
  margin-right: 8px;
  vertical-align: middle;
}


/* Modal Overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 40px 30px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 400px;
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.modal-content h2 {
  margin-bottom: 24px;
  font-size: 24px;
  color: #222;
}

.modal-content input {
  width: 100%;
  padding: 12px 14px;
  margin: 10px 0;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.modal-content button:active {
  transform: scale(0.97);
  background-color: #002984;
}

.modal-content input:focus {
  outline: none;
  border-color: #3466f6;
  box-shadow: 0 0 0 3px rgba(52, 102, 246, 0.2);
}

.modal-content button {
  background-color: #2962ff;
  color: white;
  border: none;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.1s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.modal-content button:hover {
  background-color: #0039cb; /* Darker on hover */
}

/* Close Button */
.close-button {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 24px;
  color: #888;
  cursor: pointer;
}

