
/* body {
  margin: 0;
  font-family: SORA;
  background: black;
  color: white;
 
} */
.green {
  color: #92E544; 
  
   font-size: 3.5rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 1;
}

.white {
  color: #ffffff;
   font-size: 3.5rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 1;
}

nav {
  display: flex;
  justify-content: space-between;
  padding: 15px 50px;
  
  position: relative;
  z-index: 9999;
  
}
/* Hamburger & Slide Menu */
 .hamburger {
   display: none;
  font-size: 2rem;
  color: #92E544;
  cursor: pointer;
  
   z-index: 1001;  
}

.nav-slideout {
  display: flex;
}


@media (max-width: 768px) {
  .hamburger {
     display: block; 
    position: fixed;
    right: 30px;
    top: 25px;
     z-index: 1100;   
  }

   .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;
  }
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative ;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 10px 60px;
  background-color: transparent;
  z-index: 100;
  height: auto;
  box-sizing: border-box;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.logo {
  height: 100px; 
  width: auto;
}

.navbar-right {
  display: flex;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #92E544;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .navbar-right {
    display: none;
  }
} 
.hero {
  text-align: center;
  padding: 60px 20px 30px;
   font-size: 1.1rem;
}
.hero h1 {
  font-size: 42px;
  font-weight: bold;
  color: white;
  text-shadow: 0 0 20px #92E544;
  position: relative;
  z-index: 1;
}
.hero p {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 10px auto 0;
  color: #ccc;
  position: relative;
  z-index: 1;
}
.section {
  padding: 30px 50px;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(146, 255, 85, 0.925);
  position: relative;
  z-index: 1;
}

.section .desc {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.section h3 {
  margin-top: 30px;
  color: #fff;
}




/* blocks main body styling */
body {
  margin: 0;
  font-family: SORA;
  background-color: #111;
  color: #ddd;
  position: relative;
  z-index: 1;
}

.blog-section {
  padding: 60px 30px;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.logo {
  font-size: 80px;
  font-weight: bold;
  color: #fff;
  margin-right: 50px;
  
}

.top-article {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.blog-meta {
  max-width: 700px;
}

.blog-meta h3.highlight {
  color: #92E544;
  font-size: 24px;
}

.read-more {
  color: #92E544;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.meta-info {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.meta-info li {
  margin-bottom: 5px;
  font-size: 15px;
}

.blog-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  
}

.blog-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  width: 48%;
  min-width: 300px;
}

.blog-card img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.card-content {
  padding: 20px;
}

.author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.author img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.meta-line {
  font-size: 13px;
  margin: 10px 0;
  color: #aaa;
}

h4.highlight {
  color: #92E544;
  margin: 10px 0;
}

.summary {
  font-size: 14px;
  color: #ccc;
}

.read-link {
  display: inline-block;
  margin-top: 10px;
  color: #92E544;
  text-decoration: none;
  font-weight: bold;
}


    /* footer styling */
/* 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;
  position: relative;
  z-index: 1;
  
}

.cta-button:hover {
  background-color: #92E544; 
  color: #000;
}


.cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #111;
  position: relative;
  z-index: 1;
  
}

.cta-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ccc;
  position: relative;
  z-index: 1;
 
}

.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;
   position: relative;
  z-index: 1;
}

.footer-left {
  flex: 1;
  min-width: 150px;
}

.footer-left .logo {
  font-size: 22px;
  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;
  margin-top: 20px;
}

.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;
}

.bottom {
  width: 100%;
  text-align: center;
  background-color: #0a0a0a;
  color: #888;
  padding: 20px 10px;
  font-size: 14px;
  border-top: 1px solid #222;
}

.bottom a {
  color: #92E544;
  text-decoration: none;
  margin: 0 8px;
}

.bottom a:hover {
  text-decoration: underline;
}


/* Embedded Blog Iframe Container */
.blog-iframe-wrapper {
  max-width: 100%;
  overflow: hidden;
  padding: 40px 20px;
  background-color: #111; /* match your theme */
  border: 2px solid #92E544;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 15px rgba(146, 229, 68, 0.2);
}

/* Responsive Iframe */
.blog-iframe-wrapper iframe {
  width: 100%;
  height: 1000px;
  border: none;
  overflow: hidden;
  border-radius: 8px;
}

#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 */
}
 .nav-slideout.open {
  right: 0;
  z-index: 9999 !important;
} 

/* footer mobile responsive */


/* For tablets and smaller (<= 992px) */
@media (max-width: 992px) {
  .services-section {
    grid-template-columns: 1fr; 
  }
   
  .footer-columns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;      /* Center columns */
    gap: 40px 20px;               /* More horizontal & vertical space */
    text-align: center;
    padding: 10px 0;
  }
  

  .contact-row {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .cta-section h2 {
    font-size: 26px;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .cta-buttons .get-started {
    padding: 10px 18px;
    margin-right: 10px;
    font-size: 0.95rem;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  } 
}

/* For mobile screens (<= 600px) */
@media (max-width: 600px) {
  .reasons-heading {
    font-size: 2.5rem;
  }

  .green,
  .white {
    font-size: 2.5rem;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .card-content {
    font-size: 14px;
    line-height: 1.6;
  }

  .contact-card {
    width: 100%;
    padding: 15px;
  }

  .form-heading {
    font-size: 20px;
  }

  .contact-heading {
    font-size: 22px;
  }

 

  .cta-section p {
    font-size: 14px;
  }

  .submit-btn {
    width: 100%;
  }

  nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}





/* cta section */
@media (max-width: 600px) {
  .cta-section h2 {
    font-size: 24px;
  }
 
}
 
/* footer new  for row */
   @media (max-width: 600px) {
  .footer-columns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;      
    gap: 40px 20px;               
    text-align: center;
    padding: 10px 0;
  }

  .footer-columns > div {
    flex: 1 1 120px;
    max-width: 200px;             
    text-align: center;
  }
}  


