/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  background-color: #f3f4f6;
  color: #1f2937;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
  text-align: center;
}

.line {
  font-weight: bold;
  font-size: larger;
  padding: 1rem 0;
  text-shadow: #2563eb;
  text-decoration-color: blueviolet;
  text-align: center;
  text-decoration: solid;
}

/* Header */
.header {
  background: rgb(253, 252, 252);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  position: relative;
}

.logo {
  font-size: 1.75rem;
  font-weight: bold;
  color: #2563eb;
}

.logo a{
   text-decoration: none;
  }


/* Navigation */
.nav {
  display: flex;
  gap: 1.5rem;
  }

.nav a {
  text-decoration: none;
  color: #374151;
}

.nav a:hover {
  color: #2563eb;
}

/* Hamburger icon */
.hamburger {
  font-size: 1.5rem;
  background: none;
  border: none;
  display: none;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    background-color: #2563eb;     /* Background when expanded */
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 10px;
    width: 170px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 1000;
     }

/* Show nav when active */
.nav.nav-active {
  display: flex;
}

/* Optional: Style menu links */
.nav a {
  color: white;
  padding: 8px;
  text-decoration: none;
}
.nav a:hover {
  background-color: #555;
  border-radius: 4px;
}

}

/* Hero */
.hero {
  background: #2563eb;
  color: white;
  text-align: center;
  padding: 5rem 1rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.btn {
  background: white;
  color: #2563eb;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #e5e7eb;
}

/* Section */
.section {
  padding: 4rem 1rem;
  background: #f9fafb;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2563eb;
}

/* Cards */
.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card h4 {
  color: #2563eb;
  margin-bottom: 0.5rem;
}

/* Gallery */
.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.gallery img {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Contact */
.contact-section {
  background: #eff6ff;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: grid;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-top: 1px solid #e5e7eb;
  font-size: 0.9rem;
}

.center {
  margin-left: auto;
  margin-right: auto;
   }