/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
    background-color: #0D1F11;
}

/* Navbar Container */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  padding-bottom: 3rem;
  background: #0D1F11;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 3000; /* Increased z-index to ensure nav is above overlays */
}


/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo img {
  width: 50px;
}
.nav-logo h1{
    color: white;
    font-size: 1.5rem;
    font-family: sans-serif;
}
/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s ease;
  font-family: sans-serif;
}

.nav-items:hover{
    color: #4CAF50;
}

/* Button (Use your original color) */
.nav-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 10mm;
    cursor: pointer;
    font-weight: bold;
    font-family: sans-serif;
}

/* Desktop-only button */
.nav-desktop-btn {
  display: block;
  text-decoration-line: none;
}

.nav-btn:hover{
    background-color: #45a049;
}

/* Hide mobile button by default */
.nav-mobile-btn {
  display: none;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  z-index: 1001;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 4px 0;
  border-radius: 2px;
}

/* Responsive Styles */
@media (max-width: 768px) {

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 60%;
    background-color: #163D2A;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease-in-out;
    z-index: 2100;
    box-shadow: -2px 0 16px 0 rgba(0,0,0,0.12);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.35);
    z-index: 1500; /* Lowered z-index so nav stays above overlay */
    transition: opacity 0.3s;
  }
  .nav-overlay.active {
    display: block;
  }

  .hamburger {
    display: flex;
  }

  /* Hide desktop button */
  .nav-desktop-btn {
    display: none;
  }

  /* Show mobile button inside menu */
  .nav-mobile-btn {
    display: block;
  }
}
@media (max-width: 425px) {
    nav{
        padding-bottom: 1rem;
    }
}


header{
    width: 100%;
    height: auto;
    padding-bottom: 5rem;
    padding-top: 7rem;
    background: url(images/header\ image.png);
    background-size: cover;
    background-position: center;
    margin-bottom: 2rem;
}
.header-text{
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}
.header-text h1{
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}
.header-text p{
    font-family: sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}
.header-buttons{
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.header-btn1{
    background-color: #2FB574;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 2mm;
    cursor: pointer;
    font-weight: bold;
    font-family: sans-serif;
}
.header-btn2{
    background-color: #0D1F11;
    color: #2FB574;
    border: none;
    padding: 15px 35px;
    border-radius: 2mm;
    cursor: pointer;
    font-weight: bold;
    font-family: sans-serif;
}
.header-img{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}
.header-img img{
    width: 100%;
    max-width: 75rem;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 425px) {
    .header-text h1 {
        font-size: 2rem;
    }
    .header-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .header-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .header-btn1, .header-btn2 {
        width: 100%;
        padding: 10px;
    }
    .header-img{
        margin-top: 1rem;
    }
}

.services-section{
    width: 100%;
    height: auto;
    padding: 2rem 2rem 0rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    font-family: sans-serif;
    background: url(images/Our\ Best\ Services.png);
    background-size: cover;
    background-position: center;
}
.services-section h1{
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}
.services-section p{
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}
.services-section img{
    width: 100%;
    max-width: 20rem;
    height: auto;
    border-radius: 10px;
    margin-bottom: 2rem;
}
@media (max-width: 425px) {
    .services-section h1 {
        font-size: 2rem;
    }
    .services-section p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .services-section img {
        width: 100%;
        max-width: 15rem;
    }
}
.services-container{
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    color: white;
    font-family: sans-serif;
    padding: 0rem 2rem;
    padding-bottom: 2rem;
}
.service-card{
    background-color: #163D2A;
    border-radius: 10px;
    padding: 1.5rem;
    width: 300px;
    text-align: left;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.service-card:hover{
    transform: translateY(-10px);
}
.service-card img{
    width: 3rem;
    height: auto;
}
.service-card h2{
    font-size: 1.5rem;
}
.service-card p{
    font-size: 1rem;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .service-card {
        width: 90%;
        margin-bottom: 1.5rem;
    }
    
}

.plans-section{
    width: 100%;
    height: auto;
    padding-bottom: 2rem;
    background: url(images/Features.png);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    padding-top: 3.5rem;
    position: relative;
    font-family: sans-serif;
}
.plans-text{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 0.7rem;
}
.plans-text h1{
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}
.plans-text p{
    font-size: 1.2rem;
    line-height: 1.5;
}
.plans-text img{
    width: 100%;
    max-width: 20rem;
    height: auto;
    border-radius: 10px;
    margin-top: 1rem;
}
@media (max-width: 425px) {
    .plans-text h1 {
        font-size: 2rem;
    }
    .plans-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .plans-text img {
        width: 100%;
        max-width: 15rem;
    }
    
}

.plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: 'Segoe UI', sans-serif;
  gap: 2rem;
  padding: 2rem;
  color: white;
}

.card {
  background-color: #163D2A;
  border-radius: 15px;
  padding: 1.5rem;
  width: 280px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.roi {
  font-size: 2rem;
  font-weight: bold;
}

.card h3 {
  margin: 1rem 0;
  font-size: 1.2rem;
}

.card p {
  margin: 0.5rem 0;
}

hr {
  border: 0.5px solid rgba(255,255,255,0.2);
  margin: 1rem 0;
}

.capital {
  color: limegreen;
  font-weight: bold;
  font-size: 0.9rem;
}

button {
  margin-top: 1rem;
  padding: 0.7rem 1.2rem;
  background: transparent;
  border: 2px solid #79EFBC;
  color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: #093015;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .plans {
    flex-direction: column;
    align-items: center;
  }
}

.review-section {
  padding: 2rem;
  text-align: center;
}

.review-section img {
  width: 100%;
  max-width: 40rem;
  height: auto;
  border-radius: 10px;
  margin-top: 1rem;
}

.contact-section {
  padding: 2rem;
  background-color: #0D1F11;
  color: white;
  text-align: center;
}
.contact-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.contact-section form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  max-width: 400px;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 5px;
}

.contact-section button {
  padding: 0.7rem 1.2rem;
  background: #163D2A;
  border: none;
  color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-section button:hover {
  background: #093015;
  color: #ffffff;
}
.trial-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background: #0D1F11;
  color: white;
}   


/* Modern Footer Styles */
.footer-section {
  background: #163D2A;
  color: #fff;
  padding: 2.5rem 1rem 1rem 1rem;
  margin-top: 2rem;
  font-family: 'Segoe UI', sans-serif;
}
/* Floating Notification Styles */
.floating-notifications {
  position: fixed;
  bottom: 2.5rem;
  left: 2.5rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  pointer-events: none;
}
.floating-notification {
  background: #222e2b;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px 0 rgba(44, 16, 101, 0.18);
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  min-width: 220px;
  max-width: 320px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s, transform 0.5s;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  pointer-events: auto;
}
.floating-notification.show {
  opacity: 1;
  transform: translateY(0);
}
.notif-user {
  font-weight: bold;
  color: #79EFBC;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.notif-action {
  color: #ffd700;
  font-weight: 500;
}
.notif-amount {
  color: #2fb574;
  font-weight: bold;
}
@media (max-width: 600px) {
  .floating-notifications {
    left: 0.5rem;
    bottom: 0.5rem;
  }
  .floating-notification {
    min-width: 160px;
    max-width: 90vw;
    font-size: 0.95rem;
    padding: 0.7rem 1rem;
  }
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}
.footer-title {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 1px;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.85;
  transition: color 0.2s, opacity 0.2s;
}
.footer-links a:hover {
  color: #2fb574;
  opacity: 1;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  color: #fff;
  font-size: 1.3rem;
  opacity: 0.8;
  transition: color 0.2s, opacity 0.2s;
}
.footer-social a:hover {
  color: #2fb574;
  opacity: 1;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  opacity: 0.7;
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    margin-bottom: 0.5rem;
  }
  .footer-links {
    gap: 1rem;
  }
}



