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

/* Body */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #F0F8FF;
  color: #000000;
  line-height: 1.6;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: #F0F8FF;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  width: 150px;
  height: 60px;
  background: url("Logo.png") no-repeat center;
  background-size: contain;
}
.navbar ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.navbar a {
  text-decoration: none;
  color: #000000;
  transition: color 0.3s;
}
.navbar a:hover {
  color: #00008B;
}

/* Hero */
.hero {
  height: 100vh;
  background: url("Image1.jpg") no-repeat center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}
.hero-content {
  position: relative;
  color: #fff;
  z-index: 2;
  padding: 0 1rem;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  margin-bottom: 1.5rem;
}
.hero .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #00008B;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.hero .btn:hover {
  background: #000061;
}

/* Sections */
section {
  padding: 4rem 5%;
  text-align: center;
}
section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #000000;
}

/* About */
.about p {
  max-width: 700px;
  margin: auto;
  color: #000000;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-card {
  padding: 1.5rem;
  background: #00008B;
  border-radius: 10px;
  color: #fff;
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  background: #000061;
}

/* Why Choose Us */
.stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.stats div {
  text-align: center;
}
.counter {
  font-size: 2rem;
  font-weight: bold;
  color: #00008B;
}

/* Contact */
.contact {
  background: #fff;
  margin-top: 2rem;
}
.contact p {
  max-width: 700px;
  margin: auto;
  margin-bottom: 2rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.contact-card {
  background: #00008B;
  padding: 1.5rem;
  border-radius: 10px;
  color: #fff;
  transition: transform 0.3s;
}
.contact-card h3 {
  margin-bottom: 0.5rem;
}
.contact-card a {
  color: #F0F8FF;
  text-decoration: none;
}
.contact-card a:hover {
  text-decoration: underline;
}
.contact-card:hover {
  transform: translateY(-5px);
  background: #000061;
}

/* Footer */
.footer {
  background: #000;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero .btn {
    padding: 0.6rem 1.2rem;
  }
  .navbar ul {
    gap: 1rem;
  }
}
/* Hamburger styles */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  user-select: none;
}

/* Mobile menu */
@media (max-width: 768px) {
  .navbar {
    display: none;
    position: absolute;
    top: 70px;
    right: 5%;
    background: #F0F8FF;
    width: 200px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }

  .navbar ul {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .navbar.active {
    display: block;
  }

  .hamburger {
    display: block;
  }
}