 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  color: #333;
  background: #f8faff;
}

/* Navbar */
.navbar {
  width: 100%;
  background: #004aad;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  position: fixed;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #ffeb3b;
}

.btn {
  background: #ffeb3b;
  color: #004aad !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, #004aad, #007bff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-content {
  max-width: 700px;
  animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.cta-btn {
  background: #ffeb3b;
  color: #004aad;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #fff;
}

/* About Section */
.about {
  padding: 80px 10%;
  text-align: center;
  background: #fff;
}

.about h2 {
  color: #004aad;
  margin-bottom: 20px;
  font-size: 2rem;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Features Section */
.features {
  padding: 80px 10%;
  background: #f0f4ff;
  text-align: center;
}

.features h2 {
  color: #004aad;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.feature {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature img {
  width: 60px;
  margin-bottom: 15px;
}

.feature h3 {
  color: #004aad;
  margin-bottom: 10px;
}

/* Contact Section */
.contact {
  padding: 80px 10%;
  background: #fff;
  text-align: center;
}

.contact h2 {
  color: #004aad;
  margin-bottom: 20px;
}

.contact p {
  margin-bottom: 25px;
  color: #555;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

.contact-form button {
  background: #004aad;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #003680;
}

/* Footer */
footer {
  background: #004aad;
  color: #fff;
  text-align: center;
  padding: 20px 10%;
  font-size: 0.9rem;
}
/* Action Side */

/* Action Section */
.actions {
  padding: 80px 8%;
  background: #f0f4ff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.action-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1000px;
}

.action-card {
  background: #fff;
  flex: 1 1 300px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.15);
}

.action-card img {
  width: 70px;
  margin-bottom: 20px;
}

.action-card h3 {
  color: #004aad;
  margin-bottom: 10px;
}

.action-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.action-btn {
  background: #004aad;
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.action-btn:hover {
  background: #003680;
}

/* Responsive fix */
@media (max-width: 768px) {
  .action-container {
    flex-direction: column;
  }
}


/* Responsive */
@media (max-width: 900px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #004aad;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 20px 0;
    text-align: center;
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}