:root {
    --primary-color: #3D52A0;
    --secondary-color: #7091E6;
    --text-color: #333333;
    --background-color: #EDE8F5;
    --accent-color: #8697C4;
    --light-accent: #ADBBDA;
    --gray-light: #F5F5F5;
    --border-color: #E5E5E5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
   
    color: var(--text-color);
    line-height: 1.6;
    font-family: "Poppins", sans-serif;
}

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

/* Header Styles */
.header {
    background: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(61, 82, 160, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo img {
    width: 100%;
    height: 40px;
    object-fit: contain;
}

.highlight {
    color: var(--primary-color);
}

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

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

.nav-link:hover {
    transform: translateY(-2px);
    color: #007bff;
}

.nav-link.active {
    color: #007bff;
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #007bff;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

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

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

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.hero-image {
    text-align: right;
}

.responsive-image {
    max-width: 500px;
    height: 500px;
}
@media screen and (max-width: 992px) {
    .responsive-image {
        max-width: 280px;
        height: 300px;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background-color);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-list.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }   

    .hero-image {
        text-align: center;
        order: -1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.4rem;
    }

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

    .btn {
        width: 100%;
    }
}

/* How it works Section */
.how-it-works {
    padding: 3rem 0;
    background-color: var(--background-color);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1rem;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(61, 82, 160, 0.1);
    width: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(61, 82, 160, 0.2);
}

.step-image {
    margin-bottom: 1.5rem;
    position: relative;
}

.step-image img {
    width: 100%;
    /* height: auto; */
    border-radius: 10px;
    height: 200px;
    object-fit: contain;
}

.step-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-description {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

/* Update responsive design for How it works section */
@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .how-it-works {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .step-card {
        padding: 1.5rem;
    }
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1rem;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--light-accent);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(61, 82, 160, 0.1);
    border-color: var(--secondary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background-color: var(--background-color);
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

.feature-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-description {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Update responsive design for Features section */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    padding: 3rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.1;
}

.cta .container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.btn-cta {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.btn-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: transparent;
    border-color: white;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-cta:hover .btn-icon {
    transform: translateX(4px);
}

.cta-benefits {
    margin-top: 2.5rem;
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.bullet {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
    .cta {
        padding: 4rem 0;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
    }

    .benefit-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.75rem;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Pricing Section */
.pricing {
    padding: 3rem 0;
    background-color: var(--background-color);
}

.pricing-container {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(61, 82, 160, 0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card-header {
    background-color: white;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background-color: var(--background-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--secondary-color);
}

.plan-name {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.plan-price {
    margin-bottom: 2rem;
}

.plan-price p {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
}

.btn-try {
    background-color: #000;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-try:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.pricing-card-features {
    background-color: var(--secondary-color);
    padding: 2rem;
    color: white;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
}

.features-list li:last-child {
    border-bottom: none;
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .pricing {
        padding: 4rem 0;
    }

    .pricing-card {
        margin: 0 1rem;
    }

    .pricing-card-header {
        padding: 2rem 1.5rem;
    }

    .pricing-card-features {
        padding: 1.5rem;
    }

    .features-list li {
        padding: 0.75rem 0;
    }
}

@media (max-width: 480px) {
    .pricing-icon {
        width: 60px;
        height: 60px;
    }

    .plan-name {
        font-size: 1.25rem;
    }

    .plan-price p {
        font-size: 0.9rem;
    }

    .btn-try {
        width: 100%;
    }
}

/* FAQ Section */
.faq {
    padding: 3rem 0;
    background-color: var(--background-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(61, 82, 160, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    border-bottom: 1px solid var(--light-accent);
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    flex: 1;
    padding-right: 1rem;
}

.icon {
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.minus-icon {
    display: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: white;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

/* Active states */
.faq-item.active .faq-question {
    border-bottom-color: transparent;
}

.faq-item.active .plus-icon {
    display: none;
}

.faq-item.active .minus-icon {
    display: block;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item:hover .faq-question {
    background-color: rgba(61, 82, 160, 0.02);
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 4rem 0;
    }

    .faq-container {
        padding: 1rem;
    }

    .question-text {
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
        padding: 1.25rem;
    }
}

/* Contact Section */
.contact {
    padding: 3rem 0;
    background-color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr ;
    gap: 4rem;
}

/* Contact Form Styles */
.contact-form {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-accent);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(112, 145, 230, 0.1);
}

.btn-submit {
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-submit .btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(4px);
}

/* Contact Info Styles */
.contact-info {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
    max-width: 33.33%;
    padding: 1rem;
    /* background: var(--background-color); */
    border-radius: 15px;
    transition: transform 0.3s ease;
}

@media screen and (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .info-item {
        max-width: 100%;
    }
}

/* .info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(61, 82, 160, 0.1);
} */

.info-icon {
    width: 48px;
    height: 48px;
    background-color: var(--background-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.info-content h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.info-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.info-content a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--secondary-color);
}

/* Footer Styles */
.footer {
    background-color: var(--primary-color);
    padding: 2rem 0;
    color: white;
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design for Contact Section */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .info-content h3 {
        font-size: 1rem;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animated Background */
.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.animated-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(112, 145, 230, 0.1) 0%, rgba(61, 82, 160, 0.05) 50%, transparent 100%);
    animation: rotate 30s linear infinite;
}

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

/* Animation Classes */
.animate {
    opacity: 0;
}

.animate.fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.animate.slide-in-right {
    animation: slideInRight 1s ease forwards;
}

.animate.slide-in-left {
    animation: slideInLeft 1s ease forwards;
}

.animate.scale-in {
    animation: scaleIn 1s ease forwards;
}

/* Animation Delays */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }

/* Enhanced Section Styling */
section {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-out;
}

/* Hero Section Enhancements */
.hero {
    position: relative;
}

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

/* Features Section Enhancements */
.feature-card {
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    z-index: -1;
}

/* Form Field Enhancements */
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(112, 145, 230, 0.2);
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 0 3px rgba(112, 145, 230, 0.1);
    }
    to {
        box-shadow: 0 0 0 3px rgba(112, 145, 230, 0.3);
    }
}

/* Button Hover Effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
    width: 300%;
    height: 300%;
}

/* Card Hover Effects */
.pricing-card:hover,
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(61, 82, 160, 0.15);
}

/* FAQ Enhancements */
.faq-question {
    position: relative;
    overflow: hidden;
}

.faq-question::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.faq-item.active .faq-question::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Responsive Animations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Additional Animation Keyframes */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

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

@keyframes wave {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
    100% { transform: rotate(0deg); }
}

/* Enhanced Section Animations */
.hero-image img {
    animation: float 6s ease-in-out infinite;
}

.feature-icon {
    animation: pulse 3s ease-in-out infinite;
}

.btn-primary:hover {
    animation: pulse 1s ease-in-out infinite;
}

.pricing-card.animate {
    animation: fadeInUp 0.8s ease forwards, float 6s ease-in-out infinite;
}

/* Particle Effects */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 8s infinite;
}

/* Enhanced Form Animations */
.form-group input:focus ~ label,
.form-group textarea:focus ~ label {
    animation: wave 0.5s ease;
}

/* Enhanced Button Animations */
.btn-submit {
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 2s infinite linear;
}

/* Card Hover Animations */
.feature-card:hover .feature-icon {
    animation: bounce 1s ease infinite;
}

.info-icon {
    transition: transform 0.3s ease;
}

.info-item:hover .info-icon {
    animation: wave 1s ease infinite;
}

/* Enhanced FAQ Animations */
.faq-question:hover .icon {
    animation: pulse 1s ease infinite;
}

.faq-item.active .faq-answer {
    animation: fadeInUp 0.5s ease forwards;
}

/* Additional Animation Classes */
.animate.bounce {
    animation: bounce 1s ease forwards;
}

.animate.wave {
    animation: wave 1s ease forwards;
}

.animate.shimmer {
    animation: shimmer 2s infinite linear;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Animation for sections when they come into view */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeInUp 0.6s ease-out forwards;
} 