body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #333;
}
h1, h2, h3 {
  margin-bottom: 15px;
}
p {
  line-height: 1.6;
}
.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}
.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #ef5151, #264f7c);
  color: white;
  text-align: center;
  padding: 100px 20px;
}
.hero .btn-primary {
  background: white;
  color: #ef5151;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
}

/* WHY US */
.why-us {
  background: #f9f9f9;
  text-align: center;
}
.card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* FEATURES */
.features {
  text-align: center;
}
.feature-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.feature-card:hover {
  transform: translateY(-5px);
}
.feature-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

/* CONTACT */
.contact {
  background: #264f7c;
  color: white;
  text-align: center;
}
.contact form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: auto;
}
.contact input, .contact textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: none;
  border-radius: 6px;
}
.contact button {
  background: #ef5151;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
}

         
.footer {
  background-color: #264F7C; /* Navy */
  color: #FDFBF3; /* Creamy Off-White */
  padding: 2rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.footer-brand .logo {
  width: 200px;
  height: auto;
  margin-bottom: 0.5rem;
}

.footer-brand h2 {
  color: #EF5151; /* Coral Red */
  font-weight: 600;
  font-size: 24px;
  margin: 0.5rem 0;
}

.footer-brand p {
  color: #FDFBF3;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 400;
  text-align: center;
}


.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #FDFBF3;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #EF5151;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-social a {
  color: #FDFBF3;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #EF5151;
}

.footer-bottom {
  border-top: 1px solid #FDFBF3;
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  font-weight: 400;
}