@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;700&display=swap');



header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1E3A8A; /* Green header */
  padding: 10px 20px;
}

header .logo {
  height: 140px;
  width: auto;
}

nav 

nav 

nav a.active {
  text-decoration: underline;
}

.hero {
  background: linear-gradient(to right, #4da6ff, #66b3ff, #80c1ff, #99ccff);
  color: white;
  text-align: center;
  padding: 60px 20px;
}


.hero 

.btn {
  display: inline-block;
  padding: 12px 25px;
  margin-top: 20px;
  background: #ff9800;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #e68900;
}

.content {
  padding: 50px 20px;
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

.content 

ul li {
  margin-bottom: 12px;
  font-size: 1.1em;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  font-weight: bold;
  margin-bottom: 5px;
}

form input, form textare

form button {
  padding: 12px;
  background: #1E3A8A;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #1b5e20;
}



/* Service list polish */
.service-list {
  list-style: none;
  padding-left: 0;
}

.service-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.service-list li::before {
  content: "✔";
  color: #1E3A8A;
  font-weight: bold;
  margin-right: 10px;
}

h2 i {
  color: #ff9800;
  margin-right: 8px;
}


/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.stat-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card i {
  font-size: 2rem;
  color: #ff9800;
  margin-bottom: 10px;
}

.stat-card 


/* Contact Info Cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 30px 0;
}



.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card i {
  font-size: 2rem;
  color: #ff9800;
  margin-bottom: 10px;
}

.contact-card 

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 20px 0 40px;
}

.contact-form input,
.contact-form textare

.contact-form button {
  background: #1E3A8A;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-form button:hover {
  background: #256528;
}

/* Map */
.map-container {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}


/* Hero Section */
.hero {
  background: linear-gradient(to right, #4da6ff, #66b3ff, #80c1ff, #99ccff);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.hero 
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}



/* Highlights */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 20px;
}
.highlight-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}
.highlight-card:hover {
  transform: translateY(-5px);
}
.highlight-card i {
  font-size: 2rem;
  color: #1E3A8A;
  margin-bottom: 10px;
}
.highlight-card 




footer 

footer 


/* General text contrast */


/* Headings */
h1, h2, h3, h4, h5, 

/* Buttons */



/* Links */



/* Navigation */
nav 


/* Cards */
.contact-card, 
.contact-card h2, .service-card 

/* Footer already updated */


/* Font */
body {
  font-family: "Trebuchet MS", "Verdana", sans-serif; /* rounded style */
  color: #333;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #1E3A8A; /* rich green */
  font-weight: bold;
}

/* Buttons */
.btn-primary {
  background: #1E3A8A; /* green */
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
}
.btn-primary:hover {
  background: #3B82F6; /* lighter green */
  color: #fff;
}

/* Links */
a {
  color: #1E3A8A; /* green links */
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: #3B82F6;
}

/* Navigation */
nav a {
  color: #fff;
  font-weight: bold;
  padding: 10px 15px;
}
nav a:hover, nav a.active {
  background: #1E3A8A;
  border-radius: 4px;
}

/* Cards */
.contact-card, .service-card {
  background: #fafafa;
  color: #222;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.contact-card h2, .service-card h2 {
  color: #1E3A8A;
}

/* Footer remains fixed for readability */
footer {
  background: #222;
  color: #eee;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
footer a {
  color: #81c784; /* soft green link */
  text-decoration: none;
  font-weight: bold;
}
footer a:hover {
  color: #a5d6a7;
  text-decoration: underline;
}



.home-title {
  color: #000; /* black */
  font-size: 44px; /* larger by about 4pt */
}
