* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #7e57c2;
    --primary-pink: #e91e63;
    --gradient-primary: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-light: #e2e8f0;
    --success-green: #48bb78;
    --warning-orange: #ed8936;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.brand-link {
     display: flex;
     align-items: center;
     text-decoration: none;
     gap: 12px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-purple);
}

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.03;
    border-radius: 0 0 0 100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    color: var(--primary-pink);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.badge-icon {
    font-size: 1.1rem;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.fluent-highlight {
  color: var(--primary-purple);
  position: relative;
  display: inline-block;
  opacity: 1 !important;
}

.underline {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 12px;
  overflow: visible;
}

.underline-path {
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
  animation: drawUnderline 1.7s ease-out forwards;
  opacity: 1 !important;
  stroke-linejoin: round;
}

@keyframes drawUnderline {
  0% {
    stroke-dashoffset: 250;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-top: 40px;
    margin-bottom: 60px;
    line-height: 1.7;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
}

.app-store-button {
    display: inline-block;
    height: 64px;
    width: auto;
}

.app-store-button img {
    height: 100%;
    width: auto;
    vertical-align: middle;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-showcase {
    position: relative;
}

.app-image {
    max-width: 320px;
    width: 100%;
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
}

.showcase-features {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-highlight {
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
    animation: float 3s ease-in-out infinite;
}

.feature-highlight:nth-child(2) {
    animation-delay: 1s;
}

.feature-highlight:nth-child(3) {
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.highlight-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-text {
    display: flex;
    flex-direction: column;
}

.highlight-text strong {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.highlight-text span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.feature-icon {
    margin-bottom: 25px;
}

.icon-bg {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.7;
}

.feature-benefits {
    list-style: none;
    margin-bottom: 25px;
}

.feature-benefits li {
    padding: 5px 0;
    color: var(--text-medium);
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.feature-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 600;
}

.feature-metric {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-purple);
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-light);
}


/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonial-card {
    flex: 0 0 auto;
    width: 300px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 30px;
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #ffc107;
    font-size: 1.4rem;
    margin-right: 10px;
}

.rating-text {
    font-weight: 600;
    color: var(--text-dark);
}

blockquote {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 25px;
    position: relative;
}

blockquote::before {
    content: """;
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: var(--primary-purple);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-author {
    display: flex;

    align-items: center;
    margin-top: auto;
}

.author-avatar {
    font-size: 2.5rem;
    margin-right: 15px;
    background: var(--gradient-primary);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
}

.author-title {
    color: var(--text-light);
    font-size: 0.9rem;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 70px;
}

.carousel {
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-white);
    border: none;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:focus {
    outline: none;
    background: var(--bg-white);
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
    background: var(--primary-purple);
    color: white;
    box-shadow: var(--shadow-xl);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn--prev {
    left: 10px;
}

.carousel-btn--next {
    right: 10px;
}

/* Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: background 0.3s ease;
    border: none;
    padding: 0;
}

.indicator.active {
    background: var(--primary-purple);
}

/* Download Section */
.download {
    padding: 150px 0;
    background: var(--gradient-primary);
    color: white;
}

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

.section-header-download h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-header-download p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.download-buttons2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 0 40px;
}



.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: left;
    gap: 20px;
}

.footer-logo {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.brand-info {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
    gap: 10px;
}

.brand-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.brand-info p {
    color: #a0aec0;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.link-group a {
    display: block;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--primary-pink);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-pink);
}

.social-media-icon {
  width: 36px;
  height: 36px;
  border: 1px solid grey;
  border-radius: 50%;
  padding: 6px;
  box-sizing: border-box;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-links a:hover .social-media-icon {
  transform: scale(1.15);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Contact us page */
.contact-form {
    margin-bottom: 1.5rem !important;
}

.form-label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: 0.125rem;
    align-items: baseline;
}

.form-check-input {
    width: 1em;
    height: 1em;
    vertical-align: baseline;
     position: relative;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 0.25em;
    margin-left: -1.5em;
}

.form-check-label {
    color: var(--text-medium);
    margin-left: 0.5em;
}

.d-grid {
    display: grid;
}

.form-check-input {
    vertical-align: baseline;

}

.form-check-input:checked {
    accent-color: var(--primary-purple);
}

.btn {
    display: inline-block;
    font-weight: 500;
    line-height: 1.6;
    color: #fff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.15rem;
    border-radius: 0.6rem;
}

.contact-us-hero {
    padding-top: 120px;
    padding-bottom: 60px;
    background-color: #f8f9fa;

}

.contact-us-hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
     text-align: center;
}

.contact-us-hero-text p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-top: 40px;
    margin-bottom: 60px;
    line-height: 1.7;
    text-align: center;
}

.contact-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    padding: 2.5rem;
    margin-top: 2rem; /* Added margin for spacing */
    margin-bottom: 3rem;
}

.form-control:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.25rem rgba(126, 87, 194, 0.25);
    outline: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:disabled {
    opacity: 0.6;
    transform: none;
    cursor: not-allowed;
}

.form-check-input:checked {
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(233, 30, 99, 0.25);
}

/* Message styling */
.message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: none;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 30px;
    font-size: 1.5rem;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


/* Privacy Policy Page */
.policy-container {
    padding-top: 120px; /* Adds space below the fixed header */
    padding-bottom: 80px;
    max-width: 900px; /* Optimal width for readability */
    margin: 0 auto;
    background-color: var(--bg-white);
}

.policy-container .last-updated {
    display: block;
    text-align: right;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.policy-container h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-light);
}

/* Removes top margin from the very first heading */
.policy-container h3:first-of-type {
    margin-top: 20px;
}

.policy-container p,
.policy-container li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.policy-container ul {
    list-style-position: outside;
    padding-left: 20px; /* Standard indentation */
    margin-top: 20px;
    margin-bottom: 20px;
}

.policy-container ul li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.policy-container a {
    color: var(--primary-purple);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-container a:hover {
    color: var(--primary-pink);
    text-decoration: underline;
}

.bulleted-list li a {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .carousel-container {
        padding: 0 60px;
    }

    .showcase-features {
        right: -10px;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        background: #f8fafc;
        padding: 80px 0 80px;
        position: relative;
    }

    .hero::before {
        display: none;
    }

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

    p {
        margin-bottom: 10px !important;
    }

    .hero-badge {
        margin-top: 0px;
    }

    .download-buttons {
        margin-top: 30px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 0px;
    }

    .brand-info {
        align-items: center; /* center-align the text content */
    }

    /* Contact us page - responsive */
    .contact-container {
        padding: 1.5rem;
    }

    /* Privacy policy page - responsive */
     .policy-container {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .policy-container h3 {
        font-size: 1.6rem;
    }

    .policy-container p,
    .policy-container li {
        font-size: 0.95rem;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .carousel-btn {
        display: none !important;
    }

    .carousel-container {
        padding: 0 20px;
    }

    .indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--border-light);
        cursor: pointer;
        transition: background 0.3s ease;
        border: none;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .hero-description {
      color: var(--text-medium);
      margin-bottom: 40px;
      line-height: 1.7;
    }

    .download-buttons {
       flex-direction: column;
    }

    .carousel-container {
        padding: 0 10px;
    }
}