

/* ==========================================
   DESIGN SYSTEM
========================================== */
:root {
  --primary: #2563EB;
  --accent: #06B6D4;
  --secondary: #7C3AED;
  --dark: #0F172A;
  --dark-light: #1E293B;
  --gray-200: #E2E8F0;
  --gray-500: #64748B;
  --white: #FFFFFF;
  --gradient-primary: linear-gradient(135deg, #2563EB, #06B6D4, #7C3AED);
  --gradient-button: linear-gradient(135deg, #2563EB, #06B6D4);
}

html,
body {
  font-family: 'Manrope', sans-serif;
  margin: 0;
  padding: 0;
  background: #040208;
  color: var(--dark);
  min-height: 100%;
}

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   NAVBAR
========================================== */
nav.navbar {
  background: #06B6D4;
  padding:7px 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 18px rgba(15,23,42,0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 2rem;
  min-height: 42px;
}

.logo {
  display: flex;          /* puts items side by side */
  align-items: center;    /* vertical alignment */
}

.logo img {
  height: 80px;
  width: auto;
  display: block;
  margin: -19px 0;
}

.logo-text {
  margin-left: 10px;      /* space between logo and text */
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color); /* or var(--white) depending on background */
}



.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links li a:hover,
.nav-links li a:focus-visible {
  color: #7C3AED;
  transform: translateY(-1px);
}

/* MENU BUTTON (DESKTOP DEFAULT) */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: transparent;
  cursor: pointer;
  padding: 30px;
  flex-direction: column;
  gap: 4px;
  border: none;
  outline: none;
  box-shadow: none;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}

/* ANIMATION WHEN ACTIVE */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 260px;
    background-color: #7C3AED;
    flex-direction: column;
    gap: 1.5rem;
    padding: 100px 24px 24px;
    transition: left 0.35s ease;
    overflow-y: auto;
    z-index: 1050;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    font-size: 1.1rem;
    color: var(--white);
    padding: 10px 0;
  }
}


@media (max-width: 1024px) {
  .solutions-grid,
  .app-grid {
    justify-content: center;
  }

  .app-image img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  nav.navbar {
    padding: 14px 18px;
  }

  .nav-container {
    gap: 0.75rem;
  }

  .hero-section {
    padding: 120px 16px;
  }

  .hero-section h1 {
    font-size: 2.4rem;
  }

  .hero-section p {
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0 auto 1.5rem;
  }

  .solutions-section {
    padding: 60px 16px;
  }

  .app-grid,

  .solutions-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .app-text,

  .solutions-grid {
    align-items: center;
  }


  }


/* ==========================================
   HERO SECTION
========================================== */
.hero-section {
  background: url("../Images/Home_screen.jpg") bottom /cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 180px 20px;
}
.hero-section > .container {
  transform: translateY(24px);
  animation: fadeInUp 1s ease-out 0.2s forwards;
}
.hero-image {
  width: 600px;   /* set the size you want */
  height: auto;   /* keeps proportions */
  display: block;
  margin: 0 auto; /* centers the image */
}


.hero-section h1,
.hero-section p {
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-btn {
  background: var(--dark);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: all .3s ease;
}

.cta-btn:hover {
  background: var(--accent);
}
/* =======================================                                                                                                                                                                                                                                                                                                                                  ===========================
   HOW IT WORKS
========================================== */


.highlight{
    color: #7C3AED ;
}


.getApp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 55px;
  border-radius: 999px;
  background:  #7C3AED;
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all .4s ease;
  box-shadow: 0 15px 35px rgba(37,99,235,.25);
}

.signup2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 55px;
  border-radius: 999px;
  background:  #7C3AED;
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all .4s ease;
  box-shadow: 0 15px 35px rgba(37,99,235,.25);
}

.signup2-btn:hover {
  
   background: var(--accent);
}


.signup-btn:hover {
  background: var(--accent);
  transform: translateY(-5px);
}


.app-section {
  padding: 80px 20px;
  background: #efeaf7;
}

.app-grid {
  display: flex;              /* side by side layout */
  align-items: center;        /* vertical alignment */
  justify-content: space-between;
  gap: 2rem;                  /* spacing between image and text */
}

.app-image {
  flex: 1;                    /* left side */
  text-align: center;
}

.app-image img {
  max-width: 200px;
  gap: 1px;;
}

.app-text {
  flex: 1;                    /* right side */
  text-align: left;
}

/* Solutions Section */
.solutions-section h1{
  margin-top: -40px;
  padding-top: 0.5rem;
}
.solutions-section {
  background: #f5f5f5 ;
  color: #0a0a0a;
  padding: 40px 20px 80px 20px;
  text-align: center;
}
.solutions-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 40px 0;
}
.solutions-grid ul {
  list-style: none;
  padding: 0;
  text-align: left;
}
.solutions-grid li {
  margin-bottom: 10px;
  color:#7C3AED;
  font-size: 1.1rem;
}

/* Footer */
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 8px;
}
.footer-grid h4 {
  color: #edf3f7;
  margin-bottom: 10px;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
}
.footer-grid li {
  margin-bottom: 8px;
}
.footer-grid a {
  color: #fff;
  text-decoration: none;
}
.footer-grid a:hover {
  color: #7C3AED;
}
.social-icons img {
  height: 25px;
  margin-right: 10px;
}
.store-buttons img {
  height: 40px;
  margin: 10px;
}
.site-footer {
  background: #06B6D4;
  color: #000000;
  text-align: center;
  padding: 10px 20px;
}
.footer-divider{
    margin-top:0;
    border-top:1px solid rgba(0, 0, 0, 0.15);
    background: var(--gray-500);
  }

/* ==========================================
   SUPPORT & QUERY FORM
========================================== */
.support-section {
  background: rgb(231, 222, 245); 
  padding: 100px 20px;
  box-sizing: border-box;
}

.support-container {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 30px rgba(37,99,235,.08);
  width: 100%;
  box-sizing: border-box;
}

.support-container h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 30px;
}

.support-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: #f9fafb;
  color: var(--dark);
  font-size: 1rem;
}

.support-form input[type="file"] {
  border: none;
  background: none;
}

.support-form .consent {
  display: flex;
  align-items: flex-start;
  gap:2px;
  margin-bottom: 20px;
}

.support-form .consent input {
  margin-right: 10px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
}

.support-form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 999px;
  background: #7C3AED;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 10px 25px rgba(37,99,235,.25);
}

.support-form button:hover {
  background:#06B6D4;
  opacity: 0.95;
  
}

/* Success & Error Messages */
.form-message {
  margin-top: 20px;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
}
/* ==========================================
   SUPPORT & QUERY LAYOUT WITH CONTACT
========================================== */
.support-grid {
  display: grid;
  grid-template-columns: 2fr 1fr; /* form wider, contact narrower */
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Details Card */
.contact-details {
  background:#7C3AED;
  color: black;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(15,23,42,.15);
}

.contact-details h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: black;
}

.contact-details p {
  margin-bottom: 12px;
  font-size: 1rem;
}

/* Responsive: stack vertically on mobile */
@media (max-width: 768px) {
  .support-grid {
    grid-template-columns: 1fr; /* single column */
  }

  .contact-details {
    margin-top: 30px; /* spacing below form */
  }
  
}
/* ==========================================
   PROFILE VERIFICATION PAGE
========================================== */
.verification-section {
  background:rgb(231, 222, 245); 
  padding: 100px 20px;
}

.verification-grid {
  display: grid;
  grid-template-columns: 3fr 1fr; /* form wider, contact narrower */
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.verification-container {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(37,99,235,.08);
}

.verification-container h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 30px;
}

.verification-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--dark);
}

.verification-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: #f9fafb;
  color: var(--dark);
  font-size: 1rem;
}

.verification-form input[type="file"] {
  border: none;
  background: none;
}

.verification-form .consent {
  display: flex;
  align-items: flex-start;   /* keeps checkbox and text aligned */
  gap: 6px;              /* small space between checkbox and text */
  margin-bottom: 20px;
  
}

.verification-form .consent label {
  margin: 0;             /* keep text tight with checkbox */
  font-weight: 700;
  color: var(--dark);
  
}

.verification-form .consent input {
  margin-right: 10px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 4px;
}

.verification-form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 999px;
  background: #7C3AED;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 10px 25px rgba(37,99,235,.25);
}

.verification-form button:hover {
background:#06B6D4;
  opacity: 0.95;
}



/* Responsive: stack vertically on mobile */
@media (max-width: 768px) {
  .verification-grid {
    grid-template-columns: 1fr;
  }

  .contact-details {
    margin-top: 30px;
  }
  .verification-form input {
    font-size: 0.95rem;
    padding: 10px;
  }
  .verification-container {
    padding: 30px;
  }
}


/* =====================
   ABOUT SECTION 
===================== */

.about-section{
    padding:100px 0;
    background : #e9f6f8 ;
    margin-top: -120px;   /* moves header up */
  
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
   
}

.section-tag{
    display:inline-block;
    background:rgba(124,58,237,.1);
    color:var(--primary);
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.about-content h2{
    font-size:3rem;
    line-height:1.2;
    margin-bottom:25px;
    color:var(--dark);
}

.about-content p{
    color:var(--text);
    line-height:1.8;
    margin-bottom:18px;
}

.about-buttons{
    margin-top:30px;
    display:flex;
    gap:15px;
}

.btn-primary{
    background:#7C3AED;
    color:#ffffff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    background: black;
}

.btn-outline{
    border:2px solid #7C3AED;
    color:#7C3AED;
    text-decoration:none;
    padding:12px 28px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.btn-outline:hover{
    background:#7C3AED;
    color:white;
}

.about-image img{
    width:100%;
    height: 300px;
    border-radius:20px;
    object-fit:cover;
    box-shadow:
    0 20px 50px rgba(37,99,235,.15);
}



@media (max-width: 768px){

    .about-section{
        padding: 60px 15px;
    }

    .about-grid{
        grid-template-columns: 1fr;
        gap: 25px;
    }

    
    

    .about-image img{
        width: 100%;
        height: 300px;
        max-width: 100%;
        display: block;
        border-radius: 20px;
        padding-top: 90px;
        
    }

    .about-content{
        width: 100%;
        padding: 0;
        text-align: center;
        box-sizing: border-box;
    }

    .section-tag{
        max-width: 100%;
        font-size: 0.9rem;
    }

    .about-content h2{
        font-size: 1.8rem;
        line-height: 1.3;
        word-break: break-word;
    }

    .about-content p{
        font-size: 0.95rem;
        line-height: 1.7;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .about-buttons{
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn-primary,
    .btn-outline{
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 200%;
  background: rgba(0,0,0,0.5);
  
}
.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 60px;
  border-radius: 8px;
  width: 90%; max-width: 400px;
  text-align: center;
  border-radius: 4px; cursor: pointer;}

/* Style for the input field */
.modal input[type="email"] {
  width: 100%;              /* Full width inside the modal */
  padding: 12px;            /* Same vertical padding as button */
  font-size: 16px;          /* Match button text size */
  border: 1px solid #ccc;   /* Subtle border */
  border-radius: 6px;       /* Rounded corners like button */
  box-sizing: border-box;   /* Ensures padding doesn’t add extra width */
  margin-bottom: 12px;      /* Space below input */
}

/* Style for the button */
.modal button {
  width: 100%;              /* Same width as input */
  padding: 12px;            /* Same vertical padding */
  font-size: 16px;          /* Same text size */
  background-color: #6a0dad; /* Purple background */
  color: #fff;              /* White text */
  border: none;             /* Remove border */
  border-radius: 6px;       /* Rounded corners */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Hover effect for button */
.modal button:hover {
  background-color: #06B6D4;
}

.close {
  float: right; font-size: 24px; cursor: pointer;
}


/* =========================
   HEADER (LEFT ALIGNED)
========================= */
.faq-header {
    max-width: 1000px;
    margin: auto;
    padding: 60px 20px 10px;
    text-align: left;
}

.faq-header h1 {
    font-size: 2.8rem;
    color: #7C3AED;
    margin-bottom: 10px;
}

.faq-search {
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-search-input {
    width: 100%;
    max-width: 560px;
    padding: 14px 18px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-search-input:focus {
    border-color: #06B6D4;
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.16);
}

.faq-search-status {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================
   SECTION CARD
========================= */
.section {
    

    /* fade-up per card */
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.6s ease forwards;
}

/* stagger effect */
.section:nth-child(1) { animation-delay: 0.05s; }
.section:nth-child(2) { animation-delay: 0.10s; }
.section:nth-child(3) { animation-delay: 0.15s; }
.section:nth-child(4) { animation-delay: 0.20s; }
.section:nth-child(5) { animation-delay: 0.25s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   SECTION TITLE
========================= */
.section-title {
  
    color: white;
    padding: 18px 20px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

/* =========================
   CONTENT AREA
========================= */
.section-content {
    display: none;
    padding: 15px;
}

/* =========================
   QUESTION BUTTONS
========================= */
.question-btn {
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    margin: 6px 0;
    border: none;
    background: #f1f5f9;
    cursor: pointer;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.question-btn:hover {
    background: #06B6D4;
    color: white;
    transform: translateX(4px);
}

/* =========================
   ANSWERS
========================= */
.answer {
    display: none;
    padding: 12px 14px;
    margin-bottom: 8px;
    background: #fafafa;
    border-left: 4px solid #7C3AED;
    border-radius: 6px;
    line-height: 1.6;
    color: #7C3AED;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .faq-header h1 {
        font-size: 2rem;
    }
}

/* ===== SERVICES SHOWCASE SECTION ONLY ===== */

/* ===========================
   SERVICES SHOWCASE
=========================== */

.services-showcase {
    background:#7C3AED;
    padding: 100px 0;
    overflow: hidden;
}

.services-showcase-header {
    text-align: center;
    margin-top: -80px;   /* moves header up */
    margin-bottom: 30px;
}

.services-showcase-header h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    color: #060508;
}

.services-showcase-header p {
    font-size: 1.2rem;
    color: #fdfdfd;
}

.services-showcase-wrapper {
    width: 100%;
    overflow: hidden;
}

.services-showcase__track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: vindmyScroll 30s linear infinite;
}

.services-showcase__card {
    position: relative;
    width: 200px;
    height: 399px;
    border-radius: 25px;
    overflow: hidden;
    flex-shrink: 0;
}

.services-showcase__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.services-showcase__card:hover img {
    transform: scale(1.08);
}

.services-showcase__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.8),
        rgba(0,0,0,.15)
    );
}

.services-showcase__overlay h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1;
}

.services-showcase__overlay span {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #7C3AED ;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
}

.services-showcase:hover .services-showcase__track {
    animation-play-state: paused;
}

@keyframes vindmyScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {

    .services-showcase__card {
        width: 260px;
        height: 400px;
    }

    .services-showcase-header h1 {
        font-size: 2.5rem;
    }

    /* ==========================================
   GLOBAL RESPONSIVE LAYER
   (add at bottom of styles.css)
========================================== */

/* Typography scales */
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
p  { font-size: clamp(1rem, 2.5vw, 1.2rem); }

/* Mobile layout tweaks */
@media (max-width: 1024px) {
  .app-grid, .solutions-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  /* Navbar */
  nav.navbar { padding: 14px 18px; }
  .nav-links { flex-direction: column; text-align: center; }

  /* Hero */
  .hero-section { padding: 120px 16px; }
  .hero-section h1 { font-size: 2.2rem; }
  .hero-section p { font-size: 1rem; }

  /* FAQ */
  .faq-header h1 { font-size: 2rem; }
  .faq-header p { font-size: 1rem; padding: 0 12px; }
  .faq-question { font-size: 0.95rem; padding: 16px; }

  /* Forms */
  .support-grid, .verification-grid {
    grid-template-columns: 1fr; /* stack vertically */
  }
  .support-container, .verification-container {
    padding: 20px;
  }

  /* Footer */
  .footer-grid { flex-direction: column; text-align: center; gap: 1.5rem; }
}

@media (max-width: 480px) {
  /* Modal */
  .modal-content { width: 95%; padding: 20px; }
  .modal input, .modal button { font-size: 0.9rem; padding: 10px; }

  /* Buttons */
  button, .faq-question, .support-form button, .verification-form button, .modal button {
    font-size: 0.9rem;
    padding: 10px;
  }
}
}