/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: #333;
  background-color:#FFC300;
}

a {
  text-decoration: none;
  color: #003566;
  transition: color 0.3s;
}

a:hover {
  color: #003566;
}

img {
  max-width: 100%;
  border-radius: 8px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
header {
  background: linear-gradient(135deg, #003566,#FFC300(153, 224, 67));
  color: white;
  padding: 30px 0;
  text-align: center;
  box-shadow: 0 4px 12px rgba(201, 215, 0, 0.1);
}

header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}

header p {
  font-size: 1.3rem;
  opacity: 0.9;
}

/* Navigation */
nav {
  background-color: #001D3D;
  padding: 18px 0;
}

nav a {
  color: white;
  margin: 0 20px;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

nav a:hover {
  color: #FFC300;
  transform: scale(1.05);
}

/* Underline animation */
nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: #FFC300;
  transition: all 0.3s ease;
}

nav a:hover::after {
  width: 100%;
  left: 0;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 90px 20px;
  background: linear-gradient(#045bad, #280453), url('https://source.unsplash.com/1600x900/?community,hope') no-repeat center center/cover;
  color: white;
}

.hero h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 35px;
  opacity: 0.95;
}

/* Main Button Style (.btn) */
.btn {
  display: inline-block;
  background-color: #ffc300;
  color: #333;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  text-decoration: none;
  margin: 10px 12px;
  box-shadow: 0 4px 10px rgba(213, 242, 26, 0.15);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color:linear-gradient(135deg, #003566,#FFC300(153, 224, 67));
  color: #004080;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  opacity: 0.85;
}

/* Regular <button> Elements (e.g. "Add to Cart") */
button {
  background: color #ffd60a;;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin: 10px 0;
}

button:hover {
  background-color: #ffd60a;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  opacity: 0.8;
}

/* Form Submit Buttons */
form button[type="submit"] {
  background-color: #003566;
  color: white;
  padding: 12px 28px;
  font-size: 1.05rem;
}

form button[type="submit"]:hover {
  background-color: #003566;
  transform: translateY(-2px);
}

form button[type="submit"]:active {
  transform: translateY(1px);
  opacity: 0.8;
}

/* Features Section */
.features {
  padding: 90px 0;
  background-color: white;
}

.features h2 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 60px;
  color: #003566;
  font-weight: 600;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
}

.card {
  background: #f8fff8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  width: 340px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card-content {
  padding: 25px;
}

.card h3 {
  font-size: 1.5rem;
  color: #003566;
  margin-bottom: 14px;
  font-weight: 600;
}

.card p {
  color: #444;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* Impact Section */
.impact {
  padding: 70px 20px;
  background-color: #f5f9ff;
  text-align: center;
}

.impact h2 {
  font-size: 2.1rem;
  color: #003566;
  margin-bottom: 40px;
  font-weight: 600;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 35px;
}

.stat {
  font-size: 2.2rem;
  font-weight: 700;
  color: #003566;
}

.stat-label {
  font-size: 1.1rem;
  color: #555;
}

.testimonial {
  max-width: 750px;
  margin: 30px auto;
  color: #444;
  padding: 25px;
  border-left: 4px solid #FFC300;
  background: #f0ff9a;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Newsletter */
.newsletter {
  padding: 70px 20px;
  background: linear-gradient(3deg,#003566,#FFC300);
  color: white;
}

.newsletter h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.newsletter p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 20px;
  opacity: 0.9;
}

.newsletter form {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.newsletter input {
  padding: 14px 20px;
  width: 320px;
  border: none;
  border-radius: 30px;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

.newsletter button {
  padding: 14px 28px;
  background-color: #f1c40f;
  color: #333;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s;
}

.newsletter button:hover {
  background-color: #ffcc00;
  color: #001D3D;
}

/* Footer */
footer {
  background: #2c3e50;
  color: #ecf0f1;
  text-align: center;
  padding: 50px 20px 30px;
}

footer h3 {
  color:#7bcaff;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

footer ul {
  list-style: none;
  margin: 20px 0;
}

footer ul li {
  display: inline;
  margin: 0 18px;
}

footer ul li a {
  color: #ecf0f1;
  font-size: 1.05rem;
}

footer ul li a:hover {
  color: #f1c40f;
}

footer p {
  margin-top: 25px;
  font-size: 0.95rem;
  color: #bdc3c7;
}

/* Responsive */
@media (max-width: 768px) {
  header h1 {
    font-size: 2.3rem;
  }

  .hero h2 {
    font-size: 2.1rem;
  }

  .btn {
    display: block;
    margin: 12px auto;
    width: 85%;
  }

  .newsletter input {
    width: 100%;
  }
}