/* Import Google Fonts - Roboto, consistent with index.css */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* General styles for the body and HTML, consistent with index.css */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f8f8f8; /* Light background for consistency */
    color: #1c1e53; /* Primary text color */
}

/* Reusing main section styles from index.css for the hero section */
.aurora-voice-hero {
    background-color: #deebee; /* Consistent background */
    padding: 90px 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 80px; /* Add margin-top to account for fixed navbar height */
}

.aurora-voice-hero .left {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.aurora-voice-hero .left .main-heading-top {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1c1e53;
}

.aurora-voice-hero .left .main-heading-top .highlight-blue {
    color: #006b6a; /* Teal-like color */
}

.aurora-voice-hero .left .main-heading-bottom {
    margin-top: 10px;
    font-weight: bold;
    font-size: 48px;
    line-height: 1.3;
    color: #1c1e53;
}

.aurora-voice-hero .left .main-heading-bottom .highlight-speak {
    color: #5e3bee; /* Purple-blue */
    font-weight: 700;
}

.aurora-voice-hero .left .main-heading-bottom .highlight-create {
    color: #ff0000; /* Red color */
    font-weight: 700;
}

.aurora-voice-hero .left .main-paragraph {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #282938;
    letter-spacing: 0.5px;
}

.aurora-voice-hero .main-cta-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.aurora-voice-hero .right img {
    width: 500px;
    border-radius: 10px; /* Rounded corners for image */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Soft shadow */
}

/* Feature Section Styling, consistent with skills section in index.css */
.features-section {
    padding: 110px 85px 0;
    text-align: center;
    background-color: #f8f8f8; /* Light background */
}

.features-subtitle {
    font-size: 24px;
    color: #006b6a;
    margin-bottom: 10px;
    font-weight: 500;
}

.features-title {
    font-size: 44px;
    color: #1c1e53;
    margin-top: 0;
    margin-bottom: 70px; /* Increased margin for separation */
    font-weight: bold;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping */
    gap: 30px;
    justify-content: center;
}

.feature-card {
    background-color: #deebee; /* Consistent with skill items background */
    width: calc(33.33% - 20px); /* Adjusted for 3 columns with gap */
    border-radius: 10px;
    padding: 32px;
    border-bottom: 4px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); /* Soft shadow */
    position: relative; /* Ensure z-index works for cards */
    z-index: 1; /* Ensure cards are below the navbar */
}

.feature-card:hover {
    border-color: #5e3bee; /* Consistent hover effect */
    transform: translateY(-5px); /* Slight lift on hover */
}

.feature-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    margin-bottom: 22px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.feature-card .icon i {
    font-size: 26px;
    color: #006b6a; /* Teal color for icons */
}

.feature-card h4 {
    font-size: 18px;
    color: #1c1e53;
    margin-bottom: 10px;
}

.feature-card p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 22px;
    color: #282938;
}

/* Call to Action Section */
.call-to-action-section {
    background-color: #deebee; /* Consistent background */
    padding: 80px 85px;
    text-align: center;
    margin-top: 110px; /* Space from features section */
    border-top: 1px solid rgba(0, 0, 0, 0.1); /* Subtle separator */
}

.cta-title {
    font-size: 40px;
    color: #1c1e53;
    margin-bottom: 20px;
    font-weight: bold;
}

.cta-description {
    font-size: 18px;
    color: #282938;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* Media Queries for Responsiveness, adapted from index.css */
@media screen and (max-width: 1200px) {
    .aurora-voice-hero .left .main-heading-top {
        font-size: 18px;
    }

    .aurora-voice-hero .left .main-heading-bottom {
        font-size: 36px;
    }

    .aurora-voice-hero .left .main-paragraph {
        font-size: 18px;
    }

    .aurora-voice-hero .right img {
        width: 380px;
    }

    .features-subtitle {
        font-size: 20px;
    }

    .features-title {
        font-size: 38px;
    }

    .feature-card {
        width: 48%; /* Adjust width for 2 columns */
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-description {
        font-size: 16px;
    }
}

@media screen and (max-width: 992px) {
    .aurora-voice-hero {
        flex-direction: column;
    }

    .aurora-voice-hero .left .main-heading-bottom {
        font-size: 40px;
    }

    .aurora-voice-hero .left .main-paragraph {
        font-size: 16px;
    }

    .aurora-voice-hero .main-cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .futuristic-button {
        width: 80%;
        max-width: 300px;
        justify-content: center;
    }

    .features-title {
        font-size: 34px;
    }

    .feature-card {
        width: 70%; /* Adjust width for stacked items */
        max-width: 400px;
    }

    .cta-title {
        font-size: 30px;
    }
}

@media screen and (max-width: 768px) {
    .aurora-voice-hero {
        padding: 42px;
    }

    .aurora-voice-hero .left .main-heading-bottom {
        font-size: 36px;
    }

    .aurora-voice-hero .left .main-paragraph {
        font-size: 15px;
    }

    .futuristic-button {
        width: 95%;
    }

    .features-section {
        padding: 85px 42px 0;
    }

    .features-title {
        font-size: 30px;
    }

    .feature-card {
        width: 90%; /* Adjust width for single column on mobile */
    }

    .call-to-action-section {
        padding: 60px 42px;
    }

    .cta-title {
        font-size: 26px;
    }

    .cta-description {
        font-size: 14px;
    }
}

@media screen and (max-width: 576px) {
    .aurora-voice-hero .left .main-heading-bottom {
        font-size: 32px;
    }

    .aurora-voice-hero .left .main-paragraph {
        font-size: 16px;
    }

    .feature-card {
        width: 100%;
    }
}
