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

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
}

/* Links */
a {
  text-decoration: none;
  color: #0077cc;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Header */
header {
  background: #111;
  color: white;
  padding: 20px 0;
  position: relative;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  color: #00cc66;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  font-weight: bold;
}

.nav-links li a:hover {
  color: #00cc66;
}

/* Home */
.home-section {
  background: linear-gradient(to right, #00cc66, #0077cc);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.btn {
  display: inline-block;
  background: #111;
  color: white;
  padding: 10px 20px;
  margin-top: 20px;
  border-radius: 5px;
}

.btn:hover {
  background: #00cc66;
}

/* Sections */
section {
  padding: 60px 0;
  width: 100%;
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.pricing-card {
  background: #fff;
  padding: 20px;
  border: 2px solid #00cc66;
  border-radius: 10px;
}

.price {
  font-size: 1.8rem;
  color: #0077cc;
}

/* Testimonials */
blockquote {
  background: #eee;
  padding: 20px;
  margin: 15px 0;
  border-left: 5px solid #00cc66;
}

/* Contact Form */
.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

.contact-section input,
.contact-section textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Footer */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.socials a {
  margin-left: 15px;
  color: #00cc66;
}

/* Hamburger Button */
.hamburger-menu {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

#hamburgerBtn {
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Slide-Out Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background: #111;
  color: white;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  padding: 60px 20px;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li {
  margin: 15px 0;
}

.mobile-nav-list a {
  color: white;
  font-size: 1.2rem;
}

.mobile-nav-list a:hover {
  color: #00cc66;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }
}
