
    
 .reasons-section {
  padding: 3rem 1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: white;
  position: relative;
  z-index: 1;
  
}
.reasons-heading {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.reasons-heading .green {
   font-size: 4rem;
  color: #92E544;
 text-align: center;
   position: relative;
  z-index: 1;
}

.reasons-heading .white {
   font-size: 4rem;
  color: white;
 text-align: center;
   position: relative;
  z-index: 1;
}
.reasons-description {
  font-size: 1.4rem;
  color: #d0d0d0;
  line-height: 1.6;
  text-align: center;
   position: relative;
  z-index: 1;
  text-align: justify;     
    margin: 30px 0;         
            
} 
  html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}
 body {
      margin: 0;
      font-family: SORA;
     color: white;
       position: relative;
      z-index: 1;
      overflow-x: hidden;
    }
.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;
}



#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 */
}
/* 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;
  }
}

/* encripter  */
.container {
      width: 100%;
      max-width: 600px;
    }

    h2 {
      display: flex;
      align-items: center;
      font-size: 24px;
      margin-bottom: 20px;
    }

    h2::before {
      content: " ";
      margin-right: 10px;
    }

    .radio-group {
      display: flex;
      gap: 20px;
      margin-bottom: 30px;
    }

    .radio-group label {
      display: flex;
      align-items: center;
      font-size: 16px;
      gap: 8px;
    }

    .radio-group input[type="radio"] {
      accent-color: #92E544;
    }

    label {
      display: block;
      margin-bottom: 6px;
      font-weight: 500;
      color: #ccc;
    }

    input[type="text"],
    input[type="password"],
    textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #333;
      border-radius: 8px;
      background-color: #1c1c1c;
      color: white;
      margin-bottom: 20px;
      resize: vertical;
    }

    .drop-area {
      border: 2px dashed #444;
      padding: 30px;
      text-align: center;
      border-radius: 10px;
      margin-bottom: 20px;
      color: #ccc;
    }

    .drop-area:hover {
      border-color: #92E544;
      color: white;
    }

    .btn {
      background-color: #92E544;
      color: black;
      padding: 12px 24px;
      border: none;
      border-radius: 8px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }

    .btn:hover {
      background-color: #aef863;
    }

    /* Hidden file input */
    #fileInput {
      display: none;
    }
 .custom-file-upload {
  display: inline-block;
  padding: 10px 20px;
  background-color: #92E544;
  color: #000;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 8px #92E544;
  transition: background 0.3s ease;
}

.custom-file-upload:hover {
  background-color: #aefc69;
}
/* ===== How‑It‑Works Section ===== */
.how-it-works {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}
.how-it-works h2 {
  color: #92E544;
  font-size: 2rem;
  margin-bottom: 40px;
}
/* Container uses CSS grid for easy 2‑up layout */
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px 40px;           
}
.how-step {
  border: 2px solid #92E544;
  color: #fff;
  padding: 20px 30px;
  border-radius: 9999px;    
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Subtle hover glow */
.how-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 15px rgba(146, 229, 68, 0.6);
}
/* Mobile tweak: single column below 600 px */
@media (max-width: 600px) {
  .how-steps {
    grid-template-columns: 1fr;
  }
}
/* .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;       
  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;
}
.green{
   color:#92E544 ;
}
 
@media (max-width: 600px) {
   .cards {
    grid-template-columns: 1fr;
  } 
} */
@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;
  }
}
/* guptkosh descam styling */
h1 {
      font-size: 26px;
      margin-bottom: 5px;
       align-items: center;
      text-align:center;
    }
    p {
      color: #ccc;
      margin-bottom: 20px;
       align-items: center;
       text-align:center;
    }
    .descam-section-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }
    .descam-card {
      flex: 1 1 400px;
      background-color: #1a1a1a;
      padding: 20px;
      border-radius: 8px;
      border: 1px solid #333;
    }
    .descam-card h2 {
      color: #ffffff;
      margin-bottom: 15px;
    }
    .descam-label {
      font-weight: bold;
      margin-top: 10px;
      display: block;
      color: #aaa;
    }
    .descam-input,
    .descam-button {
      width: 100%;
      padding: 10px;
      margin-top: 8px;
      margin-bottom: 15px;
      background-color: #2a2a2a;
      color: white;
      border: none;
      border-radius: 5px;
    }
    .descam-button {
      background-color: #92E544;
      color: black;
      font-weight: bold;
      cursor: pointer;
    }
    .descam-info-box {
      margin-top: 20px;
      padding: 10px;
      background-color: #292929;
      border-radius: 5px;
      font-size: 14px;
    }
     /* @media (max-width: 768px) {
      .descam-section-wrapper {
        flex-direction: column;
      }
    }    */
/* footer styling */
.footer {
  background-color: #0a0a0a;
  padding: 30px 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: 20px;
  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;
}
.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;
  align-items: center; 
}
.cta-button:hover {
  background-color: #92E544; 
  color: #000;
}
.cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #111;
  align-items: center;
}
.cta-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #d0d0d0;
  align-items: center;
  text-align : center;
}
.cta-section .highlight {
  color: #92E544;
  align-items: center;  
}
.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;
  }
/* containers styling */
.legal-section {
  text-align: center;
  margin: 20px 0;
  font-family: SORA;
  font-family: SORA;
}
.legal-button {
  background-color: #92E544;
  color: black;
  border: none;
  padding: 12px 20px;
  margin: 5px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.legal-button:hover {
  background-color: #76c12f;
}
.legal-container {
  margin-top: 30px;
  padding: 20px;
  background-color: #111;
  border-radius: 10px;
  color: #ccc;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: none; 
   border: 1px solid #92E544;
    font-family: SORA;
}
.legal-content {
  display: none;
  font-family: SORA;  
}
.legal-content h2{
     color: #92E544;
     font-family: SORA;
}
.legal-content.active {
  display: block;
  font-family: SORA;
}
/* FAQ styling */
.faq-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  font-family: SORA;
}
.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;
}
.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;
}
@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) {
   
  .footer {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .footer-left,
  .footer-columns,
  .footer-right {
    justify-content: center;
    align-items: center;
  }
.cta-section .ct {
  text-align: center;
  background-color: #111;
  align-items: center;
  font-size: 30px;
  gap:0;
}

}
/* footer new */
@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;
  }
  .reasons-heading .white{
        font-size: 27px;
  }
  .reasons-heading .green{
        font-size: 2.1rem;
  }
}
@media screen and (max-width: 768px) {
  .reasons-heading {
    font-size: 2.2rem;
     text-align: center;  
  }
}

@media screen and (max-width: 480px) {
  .reasons-heading {
    font-size: 2.2rem;
     text-align: center;  

  }
}
/* Mobile responsiveness */
@media (max-width: 600px) {
  .reasons-heading {
    font-size: 1.5rem;
  }
  .reasons-description {
    font-size: 1.1rem;
    padding: 0 10px;
  }
}
/* Centering wrapper */
.container-center {
  display: flex;
  justify-content: center;  
  align-items: center;      
  min-height: 70vh;      
}

/* Info box styling */
.info-box {
  
  border: 1px solid #92E544;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 8px rgb(242, 243, 241);
  max-width: 900px;
  text-align: center;
  position: relative;
  top:-200px;
  margin: 0 auto; 
  margin-top: 100px; 
  min-height: 70vh; 
}

.info-title {
  font-size: 23px;
  color: white;
  margin-bottom: 8px;
}
.info-description  {
  font-size: 23px;
  color: white;  
  text-align: justify;   
  margin: 30px 0;
}
.info-description p {
  font-size: 21px;
  color: white;
   border: 1px solid #92E544;
   text-align: justify;      
    margin: 30px 0;   
  text-align: justify;           
}

.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;
}
.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;        
  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;
  }
  .info-description{
    font-size: 1.2rem;

  }
}
@media (max-width: 768px) {
  .inner-section-box {
    border-width: 3px;       
    padding: 25px;          
    margin: 20px;             
    box-sizing: border-box;   
  }
  .info-description{
    font-size: 1.4rem;

  }
}
