/* styles.css */

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background-color: #F4F4F4;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: #555;
}

/* Header */
.header {
  background-color: #1B4F9C;
  color: white;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  justify-content: normal;
}

.nav a {
  color: white;
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 500;
}

.nav a:hover {
  text-decoration: underline;
}

/* Industry Banner */
.industry-banner {
  background-color: #E0E7F8;
  color: #1B4F9C;
  padding: 0.75rem 1rem;
  text-align: center;
  font-weight: 500;
}

/* Hero Section */
.hero {
  background-color: #2A74DA;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.btn {
  background-color: #2A74DA;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #1B4F9C;
}

.btn.full {
  width: 100%;
  text-align: center;
}

/* Section Titles */
.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Features */
.features {
  background-color: white;
  padding: 1rem 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background-color: #F4F4F4;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h4 {
  margin-bottom: 0.5rem;
}

/* Pricing */
.pricing {
  padding: 2rem 1rem;
  background-color: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.pricing-card {
  background-color: #F4F4F4;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.pricing-card.highlight {
  border: 2px solid #2A74DA;
  transform: scale(1.02);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card h4 {
  color: #2A74DA;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: bold;
  margin: 1rem 0;
}

.pricing-card ul {
  list-style: none;     /* remove default bullets */
  padding: 0;
  margin: 0 auto;       /* centers the <ul> block itself */
  width: fit-content;   /* shrink to fit list width */
  text-align: left;     /* left-align list items */
}

.pricing-card ul li {
  margin: 6px 0;        /* spacing between items */
}

.pricing-card ul li::before {
  content: "✔";              /* add check mark */
  color: green;              /* color for check mark */
  margin-right: 8px;         /* spacing */
  font-weight: bold;
}

.mission-vision {
  padding: 60px 20px;
  background: #f9fafb; /* light background for contrast */
}

.mission-vision .section-title {
  margin-bottom: 40px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.mv-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.mv-card h4 {
  color: #2980B9; /* Doxiz brand blue */
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .mv-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* About */
.about {
  background-color: #E0E7F8;
  padding: 4rem 1rem;
}

.about p {
  max-width: 800px;
  margin: auto;
}

/* Contact */
.contact {
  background-color: white;
  padding: 4rem 1rem;
}

.contact form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact input,
.contact textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.write-us {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.write-us h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.write-us a {
  color: #2980b9;
  text-decoration: none;
  font-weight: bold;
}

.write-us a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background-color: #1B4F9C;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

.badge {
  font-size: 0.7rem;
  background: #ffeeba;
  color: #856404;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 6px;
}