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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: #002F6C;
}

.logo {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  margin-right: auto;
}

.logo .highlight {
  font-weight: 700;
  color: #FFE066;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #FFE066;
}

.hero {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}

.hero .hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 18px 40px;
  background: #FFE066;
  color: #002F6C;
  font-weight: 700;
  font-size: 1.3rem;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #FFD633;
  box-shadow: 0px 6px 16px rgba(0,0,0,0.25);
}

.section {
  padding: 60px 10%;
}

.section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #002F6C;
}

.section p {
  text-align: center;
  margin-bottom: 20px;
}

footer {
  text-align: center;
  background: #002F6C;
  color: #fff;
  padding: 20px;
  font-size: 0.9rem;
  margin-top: 40px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-form {
  max-width: 600px;      
  margin: 0 auto;        
  display: flex;
  flex-direction: column;
  gap: 20px;             
}

.contact-form input,
.contact-form textarea {
  width: 100%;           
  padding: 14px;         
  font-size: 1.1rem;     
  border: 2px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #002F6C;
}
.contact-form button {
  width: auto;           
  padding: 12px 24px;    
  margin: 0 auto;        
  display: block;        
  font-size: 1.1rem;     
  background: #FFE066;
  color: #002F6C;
  font-weight: 600;
  border-radius: 40px;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #FFD633;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  header {
    padding: 15px 5%;
  }

  .hero h1 {
    font-size: 2rem;  
  }

  .hero p {
    font-size: 1rem;
    max-width: 100%;
  }

  .section {
    padding: 40px 5%;  
  }

  .contact-form {
    width: 100%;
    padding: 0 20px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    font-size: 1rem;
  }

  .contact-form button {
    width: auto;
    padding: 12px 24px;
  }

  nav ul {
    flex-direction: column;  
    align-items: center;
    gap: 20px;
  }

  .hero {
    height: 70vh;
  }
}

