* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #fff;
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  z-index: 100;
}

.logo-container {
  display: flex;
  align-items: center;
}
/* Hamburger & Slide Menu */
.hamburger {
  display: none;
  font-size: 2rem;
  color: #92E544;
  cursor: pointer;
  z-index: 101;
}

.nav-slideout {
  display: flex;
}

/* Responsive Slide Menu */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    position: absolute;
    right: 30px;
    top: 25px;
  }

  .nav-slideout {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #111;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.6);
    transition: right 0.3s ease;
    flex-direction: column;
    justify-content: center;
    z-index: 100;
  }

  .nav-slideout.open {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 25px;
    padding: 50px;
    list-style: none;
  }

  .nav-links li a {
    font-size: 1.3rem;
    color: #92E544;
    text-decoration: none;
  }

  .nav-links li a:hover {
    color: white;
  }
}

.logo {
  height: 30px;
  margin-right: 10px;
}

.site-title {
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color:#92E544 ;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ffffff;
}

nav ul {
  display: flex;
  flex-wrap: wrap; 
  justify-content: flex-end;
  gap: 1rem; 
}
nav {
  overflow: visible;
}
ul {
  overflow: visible;
}


.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  max-width: 50%;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.highlight {
  color: #92E544;
}

.hero-text p {
  font-size: 1.2rem;
  color: #bbb;
}

.hero-image {
  flex: 1;
  max-width: 45%;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.email-section {
  padding: 60px;
  text-align: left;
}

.email-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
}


/* footer section */

/* CTA Section */
.cta-button {
  background-color: #ffffff;
  color: #000;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  
}

.cta-button:hover {
  background-color: #92E544; 
  color: #000;
}


.cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #111;
  
}

.cta-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #d0d0d0;
  
}

.cta-section .highlight {
  color: #92E544;
}

.cta-section p {
  max-width: 700px;
  margin: auto;
  color: #ccc;
  line-height: 1.6;
 
}

.cta-buttons {
  margin-top: 30px;
}

.cta-buttons .get-started {
  background-color: white;
  color: black;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  margin-right: 20px;
  cursor: pointer;
 
  
}

.cta-buttons .free-consult {
  color: #92E544;
  text-decoration: underline;
  
}

/* Footer */
.footer {
  background-color: #0a0a0a;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #222;
   
}

.footer-left {
  flex: 1;
  min-width: 150px;
  
}

.footer-left .logo {
  font-size: 27px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ccc;
   white-space: nowrap;
}

.footer-left ul {
  list-style: none;
  padding: 0;
}

.footer-left ul li a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.footer-columns {
  display: flex;
  flex: 2;
  justify-content: space-around;
  flex-wrap: wrap;
  
}

.footer-column h4 {
  color: #92E544;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons span {
  margin-right: 8px;
  font-weight: 500;
  color: #eee;
}

.social-icons a {
  color: #ccc;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #92E544;
}




.footer-bottom {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #888;
  
}

.footer-links a {
  margin: 0 10px;
  color: #888;
  text-decoration: none;
   
}
.bottom {
  text-align: center;
  background-color: #0a0a0a; 
  color: #888; 
  padding: 20px;
  font-size: 14px;
  border-top: 1px solid #222;
} 

.bottom a {
  color: #92E544; 
  text-decoration: none;
  margin: 0 8px;
   
}

.bottom a:hover {
  text-decoration: underline;
}

/* small screen usseful  */
@media (max-width: 992px) {
  .card {
    flex: 1 1 48%;
  }
}

@media (max-width: 600px) {
  .card {
    flex: 1 1 100%;
  }
}
#bg-video {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -999; /* Make sure it stays behind all content */
  pointer-events: none; /* Allows clicks to pass through */
  filter: brightness(0.4); /* Optional: darken video for better contrast */
}
/* styling for mobile footer */
@media (max-width: 600px) {
  .footer-columns {
    flex-direction: row; 
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; 
  }

  .footer-columns > div {
    min-width: 100px;
    text-align: center;
  }
}

.inner-section-box {
  border: 2px solid #92E544; 
  margin: 40px auto;
  padding: 40px;
  width: 90%;
  max-width: 1200px;
  border-radius: 10px;
}
.section h2 {
  font-size: 2rem;
  color: #92E544;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .inner-section-box {
    top: -100!important;      
    margin-top: 20px;
    padding: 20px;
  }
}
.section p {
  color: #ccc;
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
  padding: 0 10px;         /* added */
  box-sizing: border-box; 
}
.card {
  background-color: #111;
  border: 2px solid #92E544;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  color: #ccc;
   width: 200px; 
  height: 200px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease; 
}
.card:hover {
  box-shadow: 0 0 20px rgba(146, 229, 68, 0.5);
  transform: translateY(-5px);
}
.card-icon {
  font-size: 32px;
  color: #92E544;
  margin-bottom: 12px;
}
.card-title-wrapper {
  position: relative;
  height: 100px;
  overflow: hidden;
}
.card-title {
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
  padding: 0 10px;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.card-title.show {
  transform: translateY(0);
  opacity: 1;
  z-index: 1;
}
.card-title.hidden {
  transform: translateY(100%);
  opacity: 0;
  z-index: 0;
}
.card.swapped .card-title.show {
  transform: translateY(-100%);
  opacity: 0;
}
.card.swapped .card-title.hidden {
  transform: translateY(0);
  opacity: 1;
}
.btn {
  margin-top: 40px;
  padding: 12px 30px;
  color: #92E544;
  border: 2px solid #92E544;
  border-radius: 30px;
  background-color: transparent;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:hover {
  background-color: #92E544;
  color: #000;
}
.dropdown-content {
  display: none;
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #92E544;
  border-radius: 10px;
  background-color: #111;
  color: #ccc;
}
 @media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
    
  }
}
@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }
}