
CSS
body {
 margin: 0;
  padding: 0;
  font-family: SORA;
  color: white;
  background-color: rgba(0, 0, 0, 0); 
  backdrop-filter: blur(6px);
  height: 100%;
  overflow-x: hidden;
  background-color: #ffffff00;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 40px 0; 
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}
.hero {
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 70px; 
}
.subtitle {
  font-size: 1.5rem;
  margin-top: 1rem;
  color: #d0d0d0;
  line-height: 0;
}
.hero h1 {
  display: inline-block;
  margin-right: 1rem;
  padding: 0;
  font-size: 8rem;  
  letter-spacing:0 ;
  line-height: 1;
  padding: 0 10px;        
  box-sizing: border-box;
}
.main-title {
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
  margin: 0;
  line-height: 2;
}
.tagline {
  font-size: 1.9rem;
  font-weight: 600;
  text-align: center;
  margin-top: 1.5rem;
  color: #959595;
}
.green {
  color: #92E544;  
}
.white {
  color: #959595;
}
/* Mobile responsiveness for hero section */
 @media (max-width: 768px) {
  .hero {
    padding: 2rem 1rem;
  }
  .hero h1 {
    font-size: 3.5rem; 
    margin-right: 0;
  }
  .main-title {
    font-size: 3rem; 
  }
  .tagline {
    font-size: 1.2rem; 
    margin-top: 1rem;
  }
  .subtitle {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .main-title {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .subtitle {
    font-size: 1rem;
  }
} 
/* Navigation Bar Styles */
.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;
}
 /* Hamburger & Slide Menu */
.hamburger {
  display: none;
  font-size: 2rem;
  color: #92E544;
  cursor: pointer;
 z-index: 1001;  
}
.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;
  }
}
/* Optional mobile responsive tweaks */
 @media (max-width: 768px) {
   .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 30px;
  } 

  .nav-links {
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
  }
} 

 .desc {
  
  font-size: 1.3rem; 
  color: #ddd;
  background-color: transparent;
  text-align: justify;    
  line-height: 1.6;
  margin: 30px auto;       
  max-width: 900px;
  font-family: SORA; 
  
}

.desc pre {
  font-family: inherit;
  white-space: pre-wrap;   
  word-break: break-word;
  margin: 0;
  padding: 0;
  position:relative;
 
}
.reasons-section {
  padding: 3rem 1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: #d0d0d0; 
}
.reasons-heading {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #d0d0d0;
}
.reasons-heading .green {
  color: #92E544 ;
  }
.reasons-description {
  font-size: 1.3rem;
  color: #d0d0d0;
  line-height: 1.6;
  text-align: justify;     
  margin: 30px auto;      
  max-width: 900px;     
                              
}
/*  Responsive on mobile code */
 @media (max-width: 768px) {

  .navbar {
   flex-direction: column;
   align-items: flex-start;
   padding: 15px 20px;
   flex: 1;
   display: flex; 
   justify-content: center;
   align-items: center;
  }
 .nav-links {
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin-top: 10px;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links li a {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
  }
  /* Hero section */
  .hero h1 {
    font-size: 3rem;
    position: relative; 
    top: 72px;
  }
  .main-title {
    font-size: 2.5rem;
  }
  .tagline {
    font-size: 1.1rem;
     position: relative; 
    top: 69px;
  }
  .desc {
    font-size: 0.9rem;
    padding: 0 1rem;
    line-height: 1.6;
  } 
  /* Reasons section */
   .reasons-heading {
    font-size: 2.2rem;
  }
  .reasons-description {
    font-size: 1.0rem;
    padding: 0 1rem;
   } 
}  
@media (max-width: 480px) {
  .main-title {
    font-size: 2rem;
  }
  .tagline {
    font-size: 1rem;
  }
  .reasons-heading {
    font-size: 2.7rem;  
  }
  .desc{
    font-size: 0.89rem;
    position: relative; 
    top: 30px;
  }
  .reasons-description {
    font-size: 1.1rem;
    position: relative; 
    top: 10px;
  }
  .navbar {
    padding: 10px 15px;
  }
}

 /* card anim  reason to choose */
/* Fade-in animation */
/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Container holding all cards */
.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}


/* Main card element */
.card {
  width: 100%;
  height: 300px;
  perspective: 1000px;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

/* Flip wrapper */
.card-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  position: relative;
}

/* Flip effect */
.card:hover  .card-inner {  
  transform: rotateY(180deg);
}

/* Front & Back of the card */
.card-front,
.card-back {
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #92E544 ;
  box-shadow: 0 0 15px rgba(180, 255, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: justify;
  box-sizing: border-box;
}

/* Front styling */
.card-front {
  background-color: #111;
  color: white;
}

/* Back styling */
.card-back {
  background-color: #222;
  color: #92E544 ;
  transform: rotateY(180deg);
}

/* Optional: Icon size */
.card-front .icon,
.card-back .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* === Responsive Grid Fix for Cards === */
@media (max-width: 992px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem;
  }
}

@media (max-width: 600px) {
  .cards-container {
    grid-template-columns: 1fr; /* 1 column on mobile */
    padding: 1rem;
  }

  .card {
    height: 280px; /* slightly smaller card */
  }

  .card-front h3,
  .card-back h3 {
    font-size: 1.1rem;
  }

  .card-front .icon,
  .card-back .icon {
    font-size: 2.2rem;
  }
}


/* testimonial try  */
/* Wrapper */
.testimonial-slider-wrapper {
  overflow: hidden;
  position: relative;
  padding: 40px 0;
}

/* Slider*/
.testimonial-slider {
  display: flex;
  gap: 30px;
  padding-left: 20px;
  animation: scrollLoop 40s linear infinite;
  align-items: stretch;
  width: max-content;
}

/* Each card */
.testimonial-slider .testimonial-card {
  background-color: #111;
  border-radius: 12px;
  box-shadow: 0 0 15px #92E544;
  color: white;
  width: 350px;
  min-width: 300px;
  padding: 15px; 
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  height: 300px; 
  position: relative;
}

/* Icon - Twitter */
.testimonial-card .icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-top: 15px;  /* Push icon lower */
  margin-bottom: 10px;
}

/* Testimonial content */
.testimonial-content {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
  white-space: normal;
  word-wrap: break-word;
  flex-grow: 1;
  margin-bottom: 20px; /* To separate from arrow */
}

/* Green triangle (arrow) */
.arrow-left {
  width: 0;
  height: 0;
  border-top: 10px solid #b4ff3c;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  margin-top: -1px;
  margin-left: 20px;
}

/* Profile outside the card */
.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  margin-left: 20px;
}

.testimonial-profile img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.testimonial-profile .name {
  font-weight: bold;
  color: #b4ff3c;
  font-size: 15px;
}

.testimonial-profile .position {
  font-size: 13px;
  color: #aaa;
  line-height: 1.3;
}

/* Keyframes for infinite scroll */
@keyframes scrollLoop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive  */
.faq-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.faq-section h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.highlight {
  color: #92E544 ;
}

.faq-section p {
  font-size: 1rem;
  color: #bbb;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-family: SORA;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.faq-item {
  background-color: #1e1e1e;
  border-radius: 15px;
  padding: 25px 20px;
  border: 1px solid #333;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffffff;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #92E544 ;
  transition: transform 0.3s ease;
}

.faq-answer {
  margin-top: 15px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ccc;
  display: none;
  animation: fadeIn 0.4s ease-in-out;
  text-align: left;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #ff2e63;
}


/* service cards anim and responsive */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .services-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .service-card {
    width: 100%;
    font-size: 0.95rem;
    padding: 16px;
    box-sizing: border-box;
  }

  .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .card-content {
    font-size: 0.9rem;
  }

  .card-content a {
    font-size: 0.9rem;
    color: #92E544;
    text-decoration: underline;
  }
}

  /* services cards dot  */
.dotted-card {
  position: relative;
  background-image: radial-gradient(rgba(146, 229, 68, 0.5) 1.2px, transparent 1.2px);
  background-size: 12px 12px;
  background-color: #1e1e1e;
  border: 1px solid #333;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: background 0.3s ease;
  z-index: 1;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Fading overlay */
.dotted-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30, 30, 30, 0.9), rgba(30, 30, 30, 0.5), rgba(30, 30, 30, 0.1), transparent);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* When active, remove dots and fade */
.dotted-card.active {
  background-image: none;
  background-color: #1e1e1e;
}

.dotted-card.active::before {
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* footer new style */


/* CTA Section */

@media (max-width: 600px) {
  .cta-section h2 {
    font-size:24px;
  }
  .cta-buttons .get-started {
    padding: 10px 18px;
    margin-right: 10px;
    font-size: 0.95rem;
  }
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}

.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;
  position: relative;
  z-index: 1;
}

.footer-left {
  flex: 1;
  min-width: 150px;
}

.footer-left .logo {
  font-size: 21px;
  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;
}

/* Small screen support */
@media (max-width: 992px) {
  .card {
    flex: 1 1 48%;
  }
 .footer-columns {
    flex-direction: column;
    gap: 20px;
  }
 .social-icons {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .card {
    flex: 1 1 100%;
  }
.footer {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
 .footer-left,
  .footer-columns,
  .footer-right {
    justify-content: center;
    align-items: center;
  }
}
/* our services styling */  
body {
  margin: 0;
  padding: 40px 0;
  font-family: SORA ;
  position: relative;
  z-index: 0;
    padding-top: 120px;
  }
.services-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 850px;
  margin: auto;
  padding: 0 20px;
}

.service-card {
  background-color: #1a1a1a;
  border: 1px solid #333; 
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  position: relative;
}
.service-card:hover {
  box-shadow: 0 0 15px #92E544;
}
.service-card h3 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 10px;
}
.card-content {
  font-size: 17px;
  font-family: sora;
  line-height: 1.5;
  color: #e0e0e0;
  margin-top: 15px;
  padding: 0 10px;
  letter-spacing: 0.3px;
  text-align: justify;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}
.service-card.active .card-content {
  opacity: 1;
  max-height: 500px; 
  margin-top: 10px;
}
.card-content a {
  color: #92E544;
  text-decoration: underline; 
}
@media (max-width: 768px) {
  .services-section {
    grid-template-columns: 1fr;
     gap: 20px;
    padding: 0 10px;
  }
  .service-card h3 {
    font-size: 24px;
  }
  .service-card:focus {
  outline: 2px solid #92E544;
  outline-offset: 4px;
}
  .card-content {
    font-size: 15px;
  }
}
/* footer fixes */
/* Ensure footer and bottom background remains solid black */
/* .footer, .bottom {
  background-color: #000 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  z-index: 2;
} */

/* Fix body from applying semi-transparent bg under footer */
 body::after {
  content: "";
  display: block;
  height: 200px; 
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
} 

/* Optional: prevent inherited transparency in footer */
.footer *, .bottom * {
  background-color: transparent !important;
  z-index: 2;
} 
#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 */
}
#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;
  }
}


/* test styling */


@media (max-width: 600px) {
  
  .testimonial-slider-wrapper {
    padding: 20px 0;
  }

  .testimonial-slider {
    gap: 16px;                          
    padding-left: 10px;
    animation-duration: 25s;           
  }

  
  .testimonial-slider .testimonial-card {
    width: 240px;                      
    min-width: 240px;
    height: 250px;                     
    padding: 12px 14px;
    box-shadow: 0 0 8px #92E544;
    border-radius: 10px;
  }

 
  .testimonial-card .icon img {
    width: 40px;
    height: 40px;
    margin-top: 8px;
    margin-bottom: 8px;
  }


  .testimonial-content {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  
  .arrow-left {
    border-top: 8px solid #b4ff3c;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    margin-left: 15px;
  }

 
  .testimonial-profile {
    gap: 8px;
    margin-left: 10px;
  }

  .testimonial-profile img {
    width: 38px;
    height: 38px;
  }

  .testimonial-profile .name {
    font-size: 13.5px;
  }

  .testimonial-profile .position {
    font-size: 12px;
  }
}




 