/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

/* Navigation */
header {
  background: #fff;
  padding: 1rem;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.nav a.active, .nav a:hover {
  color: rgb(11, 132, 145);
}

/* Hero */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  color: #fff;
  padding: 0 20px;
  background: linear-gradient(-45deg, #000000, #0f2027, #203a43, #2c5364);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  overflow: hidden;
}

.hero canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* so it doesn't block clicks */
}


.hero h1 span {
  color: #ffcc00; /* slightly softer, warmer yellow */
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}
.hero h1, .hero p {
  max-width: 800px;
}


.hero .btn {
  margin-top: 20px;
  padding: 12px 24px;
  background: white;
  color:rgb(11, 132, 145);
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
   transition: all 0.3s ease;
}

.hero .btn:hover { background: #eee;
 transform: translateY(-2px);}

/* Sections */
.container {
  max-width: 1000px;
  margin: auto;
  padding: 4rem 2rem;
}

h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Contact */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
form input:focus, form textarea:focus {
  padding: 12px;
  outline: none;
  border-color: rgb(11, 132, 145);
  box-shadow: 0 0 5px rgba(11,132,145,0.5);
}




form button {
  padding: 12px;
  background:  rgb(11, 132, 145);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover { background: rgb(11, 132, 145);  }

/* Footer */
.footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

.footer .social-icons {
  margin-top: 10px;
}

.footer .social-icons a {
  color: #fff;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer .social-icons a:hover {
   color: rgb(11, 132, 145);
}
@media (max-width: 600px) {
  .container {
    padding: 2rem 1rem;
  }
}
