/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
}

/* faq page */

.faq-item {

    text-align: center;
}

.faq-preview {
    text-align: center;
}

/* about us page */

.story-content {
    text-align: center;
}

.mission-content{
    text-align: center;
}

.info-item {
    text-align: center;
    margin-bottom: 20px; /* optional spacing between blocks */
  }

a {
    text-decoration: none;
    color: #344afb;
}

.nav-menu {
    list-style: none;
}

.tab {
    text-align: center;
    display: none;
}

.fa-solid {
   color: black;
   font-size: 40px;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a365d;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a365d;
}

h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a365d;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a365d;
}

p {
    margin-bottom: 1rem;
}

.section-title {
    justify-content: center;
    margin-bottom: 3rem;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #344afb;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #004494;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
    border: none;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-outline {
    background-color: transparent;
    color: #344afb;
    border: 2px solid #344afb;
}

.btn-outline:hover {
    background-color: #344afb;
    color: white;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #344afb;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: #333;
    font-weight: 500;
}

nav ul li a:hover {
    color:#344afb;
}

nav {
    margin-left: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    padding-left: 3rem;
}

/*dropdown menu*/
.dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 80px;
    height: 0;
    width: 300px;
    background: white;
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275)
}

.dropdown_menu.open {
    height: 240px;
}

.dropdown_menu li {
    padding: 0.7em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown_menu li a {
      color: #333;
    font-weight: 500;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background-color: #f0f4f8;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-trust {
    font-size: 0.9rem;
    color: #666;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: auto;
    
}

.placeholder-image {
    width: 50%;
    height: 100px;
    background-color: #e9ecef;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #6c757d;
    text-align: center;
    padding: 2rem;
}

.placeholder-image span {
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.features-cta {
    text-align: center;
    margin-top: 2rem;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
    background-color: #f0f4f8;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #344afb;
    color: white;
    border-radius: 50%;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background-color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ddd;
    margin-right: 1rem;
}

/* Pricing Preview Section */
.pricing-preview {
    padding: 4rem 0;
    background-color: #f0f4f8;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid #344afb;
    transform: scale(1.05);
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0056b3;
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0056b3;
}

.pricing-card .btn {
    display: block;
    margin: 0 2rem 2rem;
}

.pricing-enterprise {
    text-align: center;
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background-color: #0056b3;
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
}

.cta .btn-primary {
    background-color: white;
    color: #0056b3;
}

.cta .btn-primary:hover {
    background-color: #f0f0f0;
}

/* Footer */
footer {
    background-color: #1a365d;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column h3, .footer-column h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #ccc;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column li {
    display: flex;
}

.footer-column h4 {
    justify-content: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #ccc;
}

.social-link:hover {
    color: white;
}

/* Responsive Styles */
@media (max-width: 764px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    header .container {
        align-items: center;
        gap: 1rem;
        max-width: 100%;
    }

    .cta-buttons {
        display: none;
    }
    
    .nav-menu {
    position: absolute;
    top: 150px;
    bottom: 300px;
    left: 0;
    right: 0;
    flex-direction: column;
    text-align: center;
    background: white;
    gap: 0;
    overflow: hidden;
    }

    .nav-menu li{
        padding: 20px;
    }

    .dropdown_menu {
        display: block;
    }

      .tab{
        display: block;
        align-items: center;
    }

      .fa-solid {
       color: black;
       font-size: 40px;
      }

      .primary-navigation {
        align-items: center;
      }

    .cta-buttons {
        margin-top: 1rem;
        max-width: auto;
    }

    .footer-column {
        max-width: 100%;
        align-items: center;
    }

    .faq-preview .container {
       display: flex;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }

/* Mobile phones */
@media (max-width: 600px) {
    .form-layout {
        flex-direction: column !important;
        gap: 25px;
        align-items: stretch;
    }
    
    .form-grid {
        margin-bottom: 1cm;
    }
}

@media (max-width: 480px) {

     body {
    font-size: 16px;
    line-height: 1.4;
  }
  h1 {
    font-size: 1.5rem;
  }
  .btn {
    width: 100%;
    text-align: center;
  }

   .footer-column{
        max-width: 100%;
        align-items: center;
    }

     .tab{
        display: block;
       text-align: center;
    }

    .dropdown_menu {
        left: 2rem;
        width: unset;
        top: 110px;
    }

}

/* Waitlist Form Styles */
.waitlist-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
}

.waitlist-content {
    text-align: center;
    margin-bottom: 50px;
}

.waitlist-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.waitlist-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.waitlist-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.waitlist-form {
    width: 100%;
}

.form-layout {
    display: flex;
    flex-direction: column;
    gap: 1cm;
    align-items: stretch;
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 2;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5cm;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    padding: 16px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder {
    color: #999;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 60px;
    white-space: nowrap;

}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .waitlist-form-container {
        max-width: 600px;
        padding: 45px 35px;
    }
}

@media (max-width: 768px) {
    .waitlist-section {
        padding: 60px 0;
    }
    
    .waitlist-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .waitlist-content p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .waitlist-form-container {
        padding: 40px 25px;
        margin: 0 15px;
        max-width: none;
    }
    
    .form-layout {
        flex-direction: row;
        gap: 20px;
        align-items: flex-start;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .button-container {
        min-width: auto;
    }
    
    .form-group input {
        padding: 16px 18px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn-submit {
        padding: 18px;
        font-size: 1rem;
        height: auto;
    }
}

@media (max-width: 600px) {
    .form-layout {
        flex-direction: column !important;
        gap: 25px;
        align-items: stretch;
    }
    
    .form-grid {
        margin-bottom: 1cm;
    }
}

@media (max-width: 480px) {
    .waitlist-section {
        padding: 50px 0;
    }
    
    .waitlist-content h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .waitlist-content p {
        font-size: 0.95rem;
        padding: 0 5px;
    }
    
    .waitlist-form-container {
        padding: 30px 20px;
        margin: 0 10px;
        border-radius: 12px;
    }
    
    .form-grid {
        gap: 18px;
        margin-bottom: 25px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .form-group input {
        padding: 15px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 6px;
    }
    
    .btn-submit {
        padding: 16px;
        font-size: 0.95rem;
        border-radius: 6px;
        margin-top: 10px;
    }
}

@media (max-width: 360px) {
    .waitlist-form-container {
        padding: 25px 15px;
        margin: 0 5px;
    }
    
    .waitlist-content h2 {
        font-size: 1.6rem;
    }
    
    .form-group input {
        padding: 14px 15px;
    }
    
    .btn-submit {
        padding: 15px;
    }
}
