body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0f0f0f;
  color: #f2f2f2;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #00f2ff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

li{
}
.nav-links a {
color: black;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #00e1ff;
}

/* Hamburger */
.hamburger {
    color: black;
  display: none;
  font-size: 1.8em;
  cursor: pointer;
}

/* Hero Section */
.hero {
background:linear-gradient(to bottom, rgb(220, 246, 255),rgba(59, 225, 254, 0.721));
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
.hero-content{
background: rgba(0, 0, 0, 0.696);

    padding: 50px;
    border: 2px solid rgb(0, 11, 62);

}
.hero-content h1 {
  font-size: 2.6em;
  margin-bottom: 10px;
  color: #00f7ff;
}

.hero-content p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.cta-btn {
  background: #00f7ff;
  color: #000;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}
.cta-btn:hover { background: #009acb; }

/* Services */
.services {
  text-align: center;
  padding: 70px 20px;
background:linear-gradient(to bottom, rgb(220, 246, 255),rgba(59, 225, 254, 0.721));
}
.services h2 { color: #000000; margin-bottom: 40px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.service-card {
    box-shadow:1px 1px 5px 0px rgb(56, 56, 56);
    color: rgb(0, 0, 0);
background:linear-gradient(to bottom, rgb(98, 184, 212),rgb(210, 248, 255));
  padding: 25px;
  border-radius: 10px;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-5px); }

/* Gallery Section */
.gallery {
background:linear-gradient(to bottom, rgb(220, 246, 255),rgba(59, 225, 254, 0.721));
  padding: 60px 20px;
  text-align: center;
}
.gallery h2 { color: #000102; margin-bottom: 10px; }
.gallery p { margin-bottom: 40px; color: #000000; }

.gallery-grid {
    
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
}

.gallery-grid img {
        box-shadow:2px 2px 5px 0px rgb(110, 109, 110);

  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}


/* About */
.about {
background:linear-gradient(to bottom, rgb(220, 246, 255),rgba(59, 225, 254, 0.721));
  padding: 60px 20px;
  text-align: center;
  color: black;
}
.about h2 { color: #020202; margin-bottom: 15px; }

/* Quote */
.quote {
background:linear-gradient(to bottom, rgb(220, 246, 255),rgba(59, 225, 254, 0.721));
  padding: 80px 30px;
}
.quote-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}
.quote-text {
  flex: 1 1 350px;
  color: #000;
}
.quote-text h2 {
  font-size: 2em;
  color: #034143;
  margin-bottom: 15px;
}
.quote-text ul {
  list-style: none;
  padding: 0;
}
.quote-text ul li {
  margin: 10px 0;
  font-size: 1.2em;
}

.quote-form {
  flex: 1 1 350px;
background: black;
  padding: 25px;
  border-radius: 10px;
}
.quote-form h3 { color: #00f7ff; margin-bottom: 15px; }
.quote-form input, .quote-form textarea, .quote-form button {
  width: 100%;

  margin-bottom: 15px;
  padding: 10px;
  border: none;
  border-radius: 5px;
}
.quote-form input, .quote-form textarea {
  background: #000000;
  border: 1px solid rgb(86, 86, 86);
  color: #ffffff;
}
.quote-form button {
  background: #00f7ff;
  color: #000;
  cursor: pointer;
  font-weight: bold;
}
.quote-form button:hover {
  background: #009acb;
}

/* Footer */
footer {
  background: #0d0d0d;
  text-align: center;
  padding: 20px;
  color: #aaa;
}

/* Contact Sticky Button */
.contact-btn {
  position: fixed;
  right: 15px;
  top: 50%;
  background: #00f7ff;
  color: #000;
  font-size: 22px;
  padding: 12px 15px;
  border-radius: 50%;
  text-decoration: none;
  z-index: 1001;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #1a1a1a;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 15px;
    border-radius: 5px;
  }
  .nav-links.active { display: flex; }
  .hamburger { display: block; }
  .nav-links a {
color: white;
  text-decoration: none;
  transition: color 0.3s;
}
  .quote-container { flex-direction: column; }
}
