 @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;500&display=swap');

 :root {
     --primary-color: #007bff;
     --primary-hover: #0056b3;
     --secondary-color: #6c757d;
     --success-color: #28a745;
     --light-bg: #f8f9fa;
     --text-color: #343a40;
     --heading-font: 'Lora', serif;
     --body-font: 'Poppins', sans-serif;
     --border-radius: 12px;
     --border-color: #dee2e6;
     --box-shadow: 0 8px 24px rgba(0, 0, 0, 0.364);
     --white: white;
     --black: black;
     --faq-q: #2c3e50;
     --heading-color: #111;
     --fap-a: #7f8c8d;
     --cta-bg-linear: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

 }

 html.dark-mode {
     --white: black;
     --black: white;
     --border-color: #dee2e6;
     --box-shadow: 0 8px 24px rgba(0, 255, 255, 0.364);
     --faq-q: #e2e8f0;
     --heading-color: #f5f5f5;
     --fap-a: #a0aec0;
     --cta-bg-linear: linear-gradient(135deg, #818cf8, #c084fc);
 }

 * {
     margin: 0;
     padding: 0;
 }

 body {
     background-color: var(--white);
     transition: all 0.3s ease-in;
     overflow-x: hidden;
     font-family: 'Poppins', sans-serif;
     margin: 0;
     padding-top: 70px;
     scrollbar-width: none;
     -ms-overflow-style: none;
 }

 body {
     scrollbar-width: none;
     -ms-overflow-style: none;
 }

 p {
     font-family: 'Merriweather', serif;
     line-height: 30px;
     text-indent: 20px;
 }

 header {
     position: fixed;
     width: 100%;
     z-index: 10;
     top: 0;
     font-weight: 500;
     margin: 0 !important;
 }

 .menu {
     display: flex;
     flex-direction: row;
     justify-content: space-between;
     /* flex-wrap: wrap; */
     align-items: center;
     padding: 16px 10px;
     background-color: var(--white);
 }

 .logo img {
     width: 150px;
     padding: 10px;
 }

 .menu-items {
     display: flex;
     flex-wrap: wrap;
     gap: 30px;
     margin-right: 20px;
 }

 .menu-items a {
     text-decoration: none;
     color: var(--black);
     font-size: 16px;
     transition: all 0.4s ease;
 }

 .menu-items button {
     background-color: rgba(255, 255, 255, 0);
     border-color: rgba(255, 255, 255, 0);
     cursor: pointer;
     font-size: 16px;
     font-weight: 0;
     padding: 0%;
 }

 .hamburger {
     display: none;
 }

 .menu-items a:hover {
     color: rgb(15, 11, 211);
     transform: scale(1.1);
 }

 .btn-close {
     display: none;
 }

 /* .active-menu{
     text-decoration:underline !important;
  } */

 .theme-toggle {
     width: 50px;
     height: 40px;
     border-radius: 10px;
     border-color: #00000000;
     cursor: pointer;
     background-color: var(--black);
     color: var(--white);
 }

 .theme-toggle i {
     color: var(--black);
 }



 @media (max-width:768px) {

     .menu-items {
         display: none;
     }

     .menu-items {
         flex-direction: column;
         background: #0e0d0dcc;
         position: fixed;
         top: 0;
         right: -350px;
         width: 180px;
         height: 100%;
         padding: 60px 20px;
         transition: right 0.3s ease;
         z-index: 999;

     }

     .menu-items a {
         color: white;

     }

     .menu-items button {
         color: rgb(255, 255, 255);
     }

     .btn-close {
         display: block;
         cursor: pointer;
     }


     .hamburger {
         display: block;
         margin-right: 20px;
         cursor: pointer;
         color: var(--black);

     }

     .menu-items.show {
         right: -30px;
         display: flex;
         flex-direction: column;
         flex-wrap: wrap;
         justify-content: flex-start;
         align-content: flex-start;
     }

     .hamburger:hover {
         color: #b82e5e;
     }

 }

 footer {
     background-color: #2c3e50;
     color: #bdc3c7;
     padding-top: 60px;
 }

 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 15px;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
 }

 .footer-column {
     display: flex;
     flex-direction: column;
 }

 .footer-column h4 {
     font-size: 18px;
     color: #ffffff;
     margin-bottom: 20px;
     position: relative;
     padding-bottom: 10px;
 }

 .footer-column h4::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 40px;
     height: 2px;
     background-color: #3498db;
 }

 .footer-logo {
     font-size: 32px;
     font-weight: 700;
     color: #ffffff;
     text-decoration: none;
     margin-bottom: 10px;
 }

 .footer-tagline {
     margin: 0 0 20px 0;
     line-height: 1.6;
 }

 .follow-us a {
     display: inline-block;
     margin-right: 10px;
     transition: transform 0.3s ease;
 }

 .follow-us a:hover {
     transform: translateY(-4px);
 }

 .follow-us img {
     width: 36px;
     height: auto;
 }

 .footer-menu a {
     color: #bdc3c7;
     text-decoration: none;
     margin-bottom: 12px;
     display: block;
     transition: color 0.3s ease, padding-left 0.3s ease;
 }

 .footer-menu a:hover {
     color: #ffffff;
     padding-left: 5px;
 }

 .contact-us p {
     margin: 0 0 12px 0;
 }

 .contact-us span {
     font-weight: 700;
     color: #ffffff;
     margin-right: 8px;
 }

 .contact-us a {
     color: #bdc3c7;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .contact-us a:hover {
     color: #ffffff;
 }

 .signup-news-letter p {
     margin: 0 0 20px 0;
     line-height: 1.6;
 }

 .newsletter-form {
     display: flex;
 }

 @media (max-width:478px) {
     .newsletter-form {
         flex-wrap: wrap;
         flex-direction: column;
         gap: 20px;
     }

     .newsletter-form a {
         width: 100px;
         text-align: center;
     }

     .newsletter-form input {
         border-radius: 5px !important;
     }

     .newsletter-form a {
         border-radius: 5px !important;
     }
 }

 .newsletter-form input {
     flex-grow: 1;
     border: 1px solid #4a627a;
     background-color: #3b5066;
     padding: 12px;
     border-radius: 5px 0 0 5px;
     color: #ffffff;
     outline: none;
 }

 .newsletter-form input::placeholder {
     color: #95a5a6;
 }

 .newsletter-form a {
     padding: 12px 20px;
     text-decoration: none;
     border: none;
     background-color: #3498db;
     color: #ffffff;
     font-weight: 700;
     cursor: pointer;
     border-radius: 0 5px 5px 0;
     transition: background-color 0.3s ease;
 }

 .newsletter-form button:hover {
     background-color: #2980b9;
 }


 .footer-bottom-bar {
     margin-top: 40px;
     padding: 20px 15px;
     text-align: center;
     background-color: rgba(0, 0, 0, 0.2);
 }

 .footer-bottom-bar p {
     margin: 0;
     font-size: 14px;
 }

 .footer-bottom-bar a {
     color: #ffffff;
     text-decoration: none;
     font-weight: 600;
 }

 .footer-bottom-bar a:hover {
     text-decoration: underline;
 }

 .hero {
     height: 50vh;
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     justify-content: center;
     background-image: linear-gradient(135deg, #00c8ff95, #041cd29f), url('./assets/hero-how-it-works.png');
     background-repeat: no-repeat;
     background-size: contain;
     color: white;
     overflow-x: hidden;
 }

 .hero h1 {
     font-size: 46px;
     /* color: var(--black); */
     margin: 20px;
 }

 .hero p {
     font-size: large;
     /* color: var(--black); */
 }

 .head {
     color: var(--black);
     margin: 3%;
     font-size: 30px;
 }

 .process {
     margin: 3%;
 }

 .process-container {
     display: flex;
     flex-direction: row;
     gap: 50px;
     align-items: center;
     justify-content: center;
     justify-items: center;
     height: 70vh;
     /* width: 100%; */
     position: relative;
     background: linear-gradient(135deg, #19182B 0%, #3a2d5b 100%);
     border-radius: 16px;
     border: 1px solid rgba(255, 255, 255, 0.2);
     padding: 30px;
     box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
     z-index: 9;
     overflow-x: hidden;
 }

 @media (max-width:768px) {
     .process-container {
         flex-wrap: wrap;
     }
 }

 .process-content {
     text-align: center;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 20px;
     position: relative;
     color: white;
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     z-index: 9;
     border-radius: 10px;
     padding: 16px 20px;
     overflow-x: hidden;
 }

 .process-container .process-icon {
     font-size: 28px;
     width: 50px;
     height: 50px;
     border: 1px solid rgba(255, 255, 255, 0.355);
     text-align: center;
     border-radius: 40px;
     transition: all 0.4s ease;
     color: #ff00b3;
 }

 .process-container .process-icon:hover {
     text-shadow: 3px 3px 6px rgb(30, 255, 0);
 }

 .process-content::before {
     content: '';
     position: absolute;
     top: 70px;
     left: 5%;
     width: 90%;
     height: 1px;
     background-color: #ccc;
     z-index: 0;
 }



 @media (max-width: 768px) {
     .process-container {
         height: auto;
     }
 }

 .promise-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
     margin: 3%;
     background: linear-gradient(135deg, #19182B 0%, #3a2d5b 100%);
     padding: 3%;
     border-radius: 30px;
     align-items: center;
     /* height: 100vh; */
     overflow-x: hidden;
 }

 .promise-card {
     position: relative;
     background: #07182E;
     border-radius: 20px;
     padding: 20px 16px;
     display: flex;
     justify-content: center;
     align-items: center;
     text-align: center;
     z-index: 0;
     overflow: hidden;
     color: white;
     overflow-x: hidden;
 }

 .promise-card::before {
     content: '';
     position: absolute;
     width: 100px;
     background-image: linear-gradient(180deg, rgb(0, 183, 255), rgb(255, 48, 255));
     height: 130%;
     z-index: -2;
     animation: rotBGimg 10s linear infinite;
     transition: all 0.2s linear;
 }

 @keyframes rotBGimg {
     from {
         transform: rotate(0deg);
     }

     to {
         transform: rotate(360deg);
     }
 }

 .promise-card::after {
     content: '';
     position: absolute;
     background: #07182E;
     ;
     inset: 5px;
     z-index: -1;
     border-radius: 15px;
 }

 .promise-content {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 20px;
     overflow-x: hidden;
 }

 .promise-icon {
     width: 30px;
     height: 30px;
     padding: 10px;
     border: 1px solid;
     text-align: center;
     border-radius: 50px;
     font-size: 20px;
 }

 .testimonial .section-header {
     text-align: center;
     padding: 16px;
 }

 .testimonial h1 {
     font-size: 2.8rem;
     color: var(--black);
     margin-bottom: 10px;
 }

 .testimonial p {
     font-size: 1.1rem;
     color: var(--primary-color);
     font-weight: 600;
 }

 .testimonial-flex {
     display: flex;
     flex-direction: column;
     gap: 20px;
     margin: 3%;
     overflow-x: hidden;
     scrollbar-width: none;
     -ms-overflow-style: none;
 }

 .testimonial-item {
     display: flex;
     flex-direction: row;
     align-items: center;
     gap: 50px;
     overflow-x: hidden;
     scrollbar-width: none;
     -ms-overflow-style: none;
 }

 .testimonial-item.alt {
     flex-direction: row-reverse;
 }

 @media (max-width: 768px) {

     .testimonial-item,
     .testimonial-item.alt {
         flex-direction: column;
         gap: 30px;
     }

     .testimonial-content {
         padding: 30px;
     }
 }

 .testimonial-image {
     flex: 1;
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
 }

 .testimonial-image h1 {
     background-color: #3A2D5B;
     font-weight: 900;
     font-size: 60px;
     width: 100%;
     height: 50vh;
     display: block;
     text-align: center;
     align-items: center;
     color: white;
     justify-content: center;
     justify-items: center;
     display: flex;
 }

 @media (max-width:768px) {
     .testimonial-image h1 {
         width: 300px;
     }
 }

 .testimonial-content {
     flex: 1;
     position: relative;
     padding: 40px;
     z-index: 1;
     overflow: hidden;
     border-radius: 16px;
     background-color: #07182E;
     color: white;
 }


 .testimonial-quote {
     font-size: 1.5rem;
     color: white;
     margin-bottom: 20px;
     line-height: 1.4;
 }

 .testimonial-author {
     font-size: 1rem;
     font-weight: 600;
     color: var(--secondary-text-color);
 }

 .testimonial-author strong {
     color: var(--primary-color);
 }


 .cta-section {
     width: 100%;
     padding: 6rem 1.5rem;
     box-sizing: border-box;
     background: var(--cta-bg-linear);
     color: white;
     text-align: center;
     height: 80vh;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .cta-section h2 {
     font-size: 3rem;
     font-weight: 700;
     color: #ffffff;
     margin: 0 0 1rem 0;
     line-height: 1.2;
 }

 .cta-section p {
     font-size: 1.125rem;
     color: rgba(255, 255, 255, 0.9);
     max-width: 600px;
     margin: 0 auto 2.5rem auto;
     line-height: 1.6;
 }

 .cta-buttons {
     display: flex;
     justify-content: center;
     gap: 1.5rem;
     flex-wrap: wrap;
 }

 .cta-btn {
     display: inline-block;
     padding: 1rem 2.5rem;
     border-radius: 50px;
     font-size: 1.1rem;
     font-weight: 600;
     text-decoration: none;
     transition: transform 0.2s ease, box-shadow 0.2s ease;
     border: 2px solid transparent;
 }

 .cta-btn:hover {
     transform: translateY(-4px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }

 .btn-primary {
     background-color: #ffffff;
     color: #667eea;
     transition: all 0.2s ease-in;
 }

 .btn-primary:hover {
     background-color: transparent;
     color: white;
 }

 .btn-secondary {
     background-color: transparent;
     color: #ffffff;
     border-color: rgba(255, 255, 255, 0.8);
     transition: all 0.2s ease-in;
 }

 .btn-secondary:hover {
     background-color: rgb(255, 255, 255);
     border-color: #ffffff;
     color: #667eea;
 }

 @media (max-width: 600px) {
     .cta-section h2 {
         font-size: 2.25rem;
     }

     .cta-section {
         padding: 4rem 1rem;
     }

     .cta-buttons {
         flex-direction: column;
         gap: 1rem;
         align-items: center;
     }

     .cta-btn {
         max-width: 300px;
     }
 }

 .section-header {
     color: black !important;
 }

 .faq-section {
     padding: 80px 15px;
     background-color: var(--white);
     overflow-x: hidden;
 }

 .faq-accordion {
     max-width: 800px;
     margin: 0 auto;
     border-top: 1px solid #e0e0e0;
 }

 .faq-item {
     border-bottom: 1px solid #e0e0e0;
 }

 .faq-question {
     width: 100%;
     background: none;
     border: none;
     padding: 20px 0;
     text-align: left;
     font-family: 'Poppins', sans-serif;
     font-size: 18px;
     font-weight: 600;
     color: var(--faq-q);
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .faq-question span {
     flex-grow: 1;
     padding-right: 15px;
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s ease-out;
 }

 .faq-answer p {
     padding: 0 10px 20px 0;
     margin: 0;
     font-size: 16px;
     line-height: 1.7;
     color: var(--fap-a);
 }

 .icon-plus-minus {
     position: relative;
     width: 16px;
     height: 16px;
     flex-shrink: 0;
 }

 .icon-plus-minus::before,
 .icon-plus-minus::after {
     content: '';
     position: absolute;
     background-color: #3498db;
     transition: transform 0.3s ease;
 }

 .icon-plus-minus::before {
     width: 100%;
     height: 2px;
     top: 50%;
     left: 0;
     transform: translateY(-50%);
 }

 .icon-plus-minus::after {
     width: 2px;
     height: 100%;
     top: 0;
     left: 50%;
     transform: translateX(-50%);
 }


 .faq-item.active .faq-question {
     color: #3498db;
 }

 .faq-item.active .icon-plus-minus::after {
     transform: translateX(-50%) rotate(90deg);
 }

 .section-header {
     text-align: center;
     margin-bottom: 50px;
 }

 .section-header .subtitle {
     display: inline-block;
     color: var(--primary-color);
     font-weight: 700;
     font-size: 16px;
     margin-bottom: 10px;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .section-header h2 {
     font-family: var(--font-heading);
     font-size: 36px;
     color: var(--heading-color);
     margin: 0 0 15px 0;
 }

 .section-header .header-description {
     font-size: 18px;
     color: #666;
     max-width: 700px;
     margin: 0 auto;
 }


 .modal {
     display: none;
     position: fixed;
     z-index: 1000;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     backdrop-filter: blur(3px);
     overflow-y: auto;
     justify-content: center;
     padding: 5px;
 }

 .modal-content {
     border-radius: 12px;
     overflow-y: auto;
     min-height: 90vh;
     display: flex;
     flex-direction: column;
     position: relative;
     animation: fadeIn 0.3s ease;
 }

 @media (max-width:768px) {
     .modal-content {
         margin-top: 5%;
     }
 }


 @keyframes fadeIn {
     from {
         transform: scale(0.9);
         opacity: 0;
     }

     to {
         transform: scale(1);
         opacity: 1;
     }
 }


 .close-btn {
     position: absolute;
     top: 10px;
     right: 15px;
     font-size: 22px;
     cursor: pointer;
 }