@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary: #0060af;
  --secondary: #6a46bf;
  --accent: #2f5f9e;
}

body {
  margin: 0;
 font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

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

        /* Header */
        header {
           height: fit-content;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 1rem;
        }

        nav {
            width: 1120px;
            height: 80px;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            border: solid 1px;
            border-radius: 24px;
            border-color: white;
            padding: 1rem 1rem 1rem 1rem;
            background: rgba(255, 255, 255, 0.2); /* Glass effect */
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.18);

        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #4A90E2;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #666;
            font-weight: 500;
        }

        .get-started-btn {
            background: #4A90E2;
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
        }

        /* Hero Section */
        .hero {
            display: flex;
            flex-direction: column;
            height: 84vh;
            justify-content: center;
            background: url('images/46.png') no-repeat center center / cover;;
            padding: 120px 0 80px;
            color: white;
            position: relative;
            overflow: hidden;
            /* Remove incorrect background-image line */
            background-position: center;
            background-size: cover;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('images/Circle 5.png') no-repeat center center / cover;
            opacity: 0.4; /* Adjust opacity as needed */
            z-index: 1;
        }

        .hero > * {
            position: relative;
            z-index: 2;
        }

        .hero-content {
            display: flex;
            flex-direction: row;
            width: 100%;
            justify-content: space-between;
            align-items: center;
        }

        .hero-text {
            max-width: 50%;
            text-align: left;
        }

        .hero-text h1 {
            display: flex;
            align-items: center;
            font-size: 3rem;
            font-weight: 700;
            gap: 0.625rem;
            color: #001C43;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('images/Circle 5.png') no-repeat center center / cover;
            opacity: 0.4; /* Adjust opacity as needed */
            z-index: 1;
        }

        .hero > * {
            position: relative;
            z-index: 2;

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .app-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .app-btn {
            background: #000;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

      .phone-mockup{
        width: 50%;
        align-content: center;
        justify-content: center;
      }
        .phone-mockup img {
            position: absolute;
            top: 58%;
            left: 80%;
            transform: translate(-50%, -50%);
            max-width: 65rem;
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: #333;
        }

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

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .feature-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Process Section */
        .process {
            padding: 80px 0;
            background: white;
        }

        .process-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .process-item {
            text-align: center;
        }

        .process-phone {
            max-width: 200px;
            height: auto;
            margin-bottom: 1rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background: #f8f9fa;
            text-align: center;
        }

        .testimonial-avatars {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 2rem 0;
        }

        .avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #ddd;
        }

        /* How It Works */
        .how-it-works {
            padding: 80px 0;
            background: white;
        }

        .how-it-works-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .steps {
            list-style: none;
        }

        .step {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .step-number {
            background: #4A90E2;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }

        /* FAQ */
        .faq {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .faq-item {
            background: white;
            margin-bottom: 1rem;
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            background: white;
            border: none;
            width: 100%;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 0 1.5rem 1.5rem;
            color: #666;
            display: none;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 80px 0;
            text-align: center;
            color: white;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* Footer */
        footer {
            background: #333;
            color: white;
            padding: 40px 0;
            text-align: center;
        }

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

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .how-it-works-content {
                grid-template-columns: 1fr;
            }

            .app-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        /* Phone mockup placeholder */
        .phone-placeholder {
            width: 250px;
            height: 500px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 25px;
            margin: 0 auto;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .phone-placeholder::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            background: white;
            border-radius: 15px;
        }

        .small-phone {
            width: 150px;
            height: 300px;
        }