/* style.css */

/* Font Face Declarations */
@font-face {
    font-family: "Franie Test";
    src: url("../fonts/FranieVariableTest_Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Franie Test";
    src: url("../fonts/FranieVariableTest_Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Franie Test";
    src: url("../fonts/FranieVariableTest_SemiLight.otf") format("opentype");
    font-weight: 350;
    font-style: normal;
}

@font-face {
    font-family: "Franie Test";
    src: url("../fonts/FranieVariableTest_ExtraLight.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "Franie Test";
    src: url("../fonts/FranieVariableTest_Hair.otf") format("opentype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "Franie Test";
    src: url("../fonts/FranieVariableTest_SemiBold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Franie Test";
    src: url("../fonts/FranieVariableTest_Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Franie Test";
    src: url("../fonts/FranieVariableTest_ExtraBold.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "Franie Test";
    src: url("../fonts/FranieVariableTest_Black.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
}
:root {
    --bs-primary-rgb: 106, 0, 173;
    /* Example: for #6a0dad */
    --bs-primary: #6a0dad;
    --primary-color: #7b5cf5;
    --dark-bg: #222222;
    --text-light: #ffffff;
   
}
body {
    background-image: url("../image/notemind/back_1.png");
    background-size: 100% 100%;
    font-family: "Franie Test";
    background-color: #fff;
    background-repeat: no-repeat;

    /* Assuming Inter font, replace if different */
    color: #333;
}

/* Navbar */
.navbar {
    transition: background-color 0.3s ease;
}
.navbar.solid {
    background-color: #e8cdff;
}
.navbar-brand img {
    width: 64.351px;
    height: 50px;
}
.navbar .nav-item {
    margin: 0px 20px;
}
.navbar .nav-link {
    /* color: #555; */
    /* font-weight: 500; */
    color: var(--Secondary-Black, #2e2e2e);
    font-family: "Franie Test";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    /* padding: 10px 33px; */
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: #6a0dad;
    /* Example primary color */
}

/* Hero Section */
.hero_image_box {
    position: relative;
}
.hero_image_box .image_2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-64%, -50%);
    height: 72px;
}
.hero-section {
    padding-top: 100px;
    /* Adjust based on navbar height */
    padding-bottom: 100px;
    overflow: hidden;
    /* To contain decorative elements if they go outside */
}

.hero-section h1 {
    color: var(--Secondary-Black, #2e2e2e);
    font-family: "Franie Test";
    font-size: 45px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.9px;
}

.hero-section .lead {
    color: var(--Secondary-Black, #2e2e2e);
    font-family: "Franie Test";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.4px;
}

.hero-floater {
    position: absolute;
    font-size: 0.85rem;
    font-weight: 500;
    animation: floatAnimation 5s ease-in-out infinite;
}
.top_notemind_p {
    border-radius: 6px;
    background: var(--Tertiary-White, #fff);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    padding: 8px 16px;
    color: var(--Primary-Purple, #7751db);
    font-family: "Franie Test";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}
.hero-floater i {
    font-size: 1rem;
}

.floater-transcript {
    top: 15%;
    right: 5%;
}

.floater-quizzes {
    top: 40%;
    right: -5%;
    /* Adjusted for visibility from image */
}

.floater-ai-chat {
    bottom: 20%;
    right: 0%;
}

@keyframes floatAnimation {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* More Than Notes Section */
.more-than-notes-section .feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    position: relative;
    /* background-color: #fff; */
    /* Ensure cards are white if section bg changes */
}
.more-than-notes-section .card_1 {
    border-radius: 20px;
    border: 0.25px solid var(--Primary-Purple, #7751db);
    background: #ffdff5;
    box-shadow: 0px 0px 18.4px 0px rgba(119, 81, 219, 0.2);
}
.more-than-notes-section .card_1 img {
    position: absolute;
    top: 12px;
    right: 27px;
    width: 62.174px;
    height: 64.039px;
}
.more-than-notes-section .card_1 p {
    margin-top: 2rem;
}
.more-than-notes-section .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}
.more-than-notes-section .card_2 {
    border-radius: 20px;
    border: 0.25px solid var(--Primary-Purple, #7751db);
    background: #e8cdff;
    box-shadow: 0px 0px 18.4px 0px rgba(119, 81, 219, 0.2);
}
.more-than-notes-section .card_2 .image_box {
    display: flex;
    color: aliceblue;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}
.more-than-notes-section .card_2 .image_box .image_1 {
    width: 36px;
    height: 36px;
}
.more-than-notes-section .card_2 .image_box .image_2 {
    width: 274px;
    height: 36px;
}
.more-than-notes-section .card_2 .image_box .image_3 {
    width: 28.525px;
    height: 40.526px;
}
/* .more-than-notes-section .card_2 p {
    color: var(--Light-Black, #605f5f);
    font-family: "Franie Test";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
} */
.more-than-notes-section .card_3 {
    border-radius: 20px;
    border: 0.25px solid var(--Primary-Purple, #7751db);
    background: #efe1ff;
    box-shadow: 0px 0px 18.4px 0px rgba(119, 81, 219, 0.2);
}

.more-than-notes-section .card_3 ul li {
    color: var(--Light-Black, #605f5f);
    font-family: "Franie Test";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
}
.more-than-notes-section .card_3 .image_3 {
    position: absolute;
    bottom: 0;
    right: 0;
}
.more-than-notes-section .card_4 {
    border-radius: 20px;
    border: 0.25px solid var(--Primary-Purple, #7751db);
    background: #fae1ff;
    box-shadow: 0px 0px 18.4px 0px rgba(119, 81, 219, 0.2);
}
.more-than-notes-section .card-title {
    /* color: #1e0a3c; */
    color: var(--Primary-Purple, #7751db);
    font-family: "Franie Test";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.more-than-notes-section p {
    color: var(--Light-Black, #605f5f);
    font-family: "Franie Test";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.more-than-notes-section .badge {
    font-size: 0.7rem;
    vertical-align: super;
}

/* Meeting Notes Section */
.meeting-notes-section {
    background-image: url("../image/notemind/gradiant.png");
    background-repeat: no-repeat;
    background-size: 100%;
    margin-top: 2rem;
}
.meeting-notes-section .text-primary {
    color: #6a0dad !important;

    /* Example primary color */
}
.meeting-notes-section .first_head {
    border-radius: 0px 20px 20px 0px;
    border-left: 4px solid #7751db;
    background: var(--Accent-Purple, #e4cdff);
    padding: 30px 150px 30px 20px;
    color: var(--Primary-Purple, #7751db);
    font-family: "Franie Test";
    font-size: 27px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}
.meeting-notes-section .second_head {
    color: var(--secondary-black-40, rgba(46, 46, 46, 0.4));
    font-family: "Franie Test";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
/* Learn Your Way Section */
.learn-way-section h2 {
    color: var(--Secondary-Black, #2e2e2e);
    text-align: center;
    font-family: "Franie Test";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}
.learn-way-section .nav-pills .nav-link {
    background-color: #e9ecef;
    color: #495057;
    margin: 0 5px;
    /* padding: 10px 25px; */
    /* border-radius: 20px; */
    width: 100%;
    padding: 8px 50px;
    border-radius: 8px;
    color: var(--secondary-black-40, rgba(46, 46, 46, 0.4));
    font-family: "Franie Test";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.tab-content > .active {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flashcard-content {
    border-radius: 32.93px;
    border: 0.515px solid #9167ff;
    background: radial-gradient(
        79.82% 79.82% at 50.15% 20%,
        #fae2fa 0%,
        #f1e4ff 100%
    );
    box-shadow: 0px 4.116px 16.465px 0px rgba(98, 62, 192, 0.25);
    display: flex;
    /* width: 673px; */
    padding: 49.394px 47.336px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    align-self: stretch;
    gap: 3rem;
}
.learn-way-section .nav-pills {
    border-radius: 8px;
    background: var(--Accent-Light-Purple, #e8dcff);
}
.learn-way-section .nav-pills .nav-item {
    text-align: center;
    display: flex;
    padding: 8px 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
}

.learn-way-section .nav-pills .nav-link.active {
    background-color: #6a0dad;
    /* Example primary color */
    color: white;
}

.flashcard-arrow {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 48.5px;
    background: radial-gradient(
        50% 50% at 50% 50%,
        rgba(255, 129, 215, 0.3) 0%,
        rgba(145, 103, 255, 0.3) 100%
    );
    box-shadow: 0px 1.764px 14.109px 0px rgba(98, 62, 192, 0.15);
}
.flashcard-content span {
    color: #9167ff;
    /* font-family: Lexend; */
    font-size: 16.813px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}
.flashcard-content h4 {
    color: #2e2e2e;
    text-align: center;
    /* font-family: Lexend; */
    font-size: 20.813px;
    font-style: normal;
    font-weight: 500;
    line-height: 135%;
}
.flashcard-arrow:hover {
    background-color: #e9ecef;
}

/* Perfect For Everyone Section */
.perfect-for-everyone-section h2 {
    color: var(--Secondary-Black, #2e2e2e);
    text-align: center;
    font-family: "Franie Test";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}
.perfect-for-everyone-section .text-primary {
    color: #6a0dad !important;
}

.perfect-for-everyone-section .persona-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fcf3ff;
    border-radius: 12px;
    border: 2px solid var(--Accent-Light-Purple, #e8dcff);
    box-shadow: 0px 2px 8px 0px rgba(119, 81, 219, 0.25);
    position: relative;
    padding: 20px 0;
    /* Very light purple/pink tint */
}

.perfect-for-everyone-section .persona-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(106, 0, 173, 0.15);
}

.perfect-for-everyone-section .persona-card .card-title {
    color: #000;
    font-family: "Franie Test";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
.perfect-for-everyone-section .persona-card p {
    color: #000;
    font-family: "Franie Test";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}
.perfect-for-everyone-section .persona-card span {
    color: var(--Primary-Purple, #7751db);
    font-family: "Franie Test";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 30px */
}
.perfect-for-everyone-section .persona-card img {
    position: absolute;
    top: 10px;
    right: 8px;
    width: 50px;
    height: 46.939px;
    flex-shrink: 0;
    aspect-ratio: 50 / 46.94;
}
.perfect-for-everyone-section .persona-features li {
    margin-bottom: 0.3rem;
    /* color: #555; */
    border-radius: 8px;
    background: var(--Accent-Light-Purple, #e8dcff);
    /* display: inline-block; */
    display: inline-flex;
    padding: 5px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--Light-Black, #605f5f);
    font-family: "Franie Test";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 0.5rem;
}

.perfect-for-everyone-section .persona-features i {
    color: #6a0dad !important;
}

/* CTA Section */
.cta-section .content {
    background-image: url("../image/notemind/try_it.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 50px 20px;
}
.cta-section h2 {
    color: var(--Primary-Purple, #7751db);
    text-align: center;
    font-family: "Franie Test";
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 63px */
}

.cta-section .lead {
    color: var(--Secondary-Black, #2e2e2e);
    text-align: center;
    font-family: "Franie Test";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 28px */
}

.cta-section .btn-outline-dark {
    border-color: #343a40;
}

.cta-section .btn-outline-dark:hover {
    background-color: #343a40 !important;
    color: white !important;
}

/* Footer */

.footer {
    background: var(--Secondary-Black, #2e2e2e);
    color: var(--text-light);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}
.footer h4 {
    color: var(--Tertiary-White, #fff);
    text-align: center;
    font-family: "Franie Test";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin-left: 12px;
}
.footer h2 {
    color: #fff;
    font-family: "Franie Test";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
.footer-background {
    position: absolute;
    bottom: -130px;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    user-select: none;
    pointer-events: none;
    color: var(--Primary-Purple, #7751db);
    text-align: center;
    /* font-family: "Futura P OT"; */
    font-size: 253.683px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.subscribe-form .form-control {
    border-radius: 11px 0 0 11px;
    border: none;
    height: 50px;
    padding-left: 20px;
    background: var(--Tertiary-White, #fff);
    /* padding: 24px 10px 24px 20px; */
    /* border-radius: 11px; */
    color: var(--Light-Black, #605f5f);
    font-family: "Franie Test";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    /* border-bottom-right-radius: 0;
    border-top-right-radius: 0; */
}

.subscribe-form .btn {
    border-radius: 0 12px 12px 0;
    background-color: var(--primary-color);
    border: none;
    height: 50px;
    width: 60px;
    font-size: 28px;
    color: #fff;
}

.footer-links a {
    /* color: var(--text-light); */
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    transition: color 0.3s;
    color: #fff;
    font-family: "Franie Test";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-left: 3.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.brand-logo {
    display: flex;
    align-items: center;
}

@media (max-width: 767.98px) {
    .footer-links {
        margin-top: 2rem;
    }

    .social-icons {
        margin-top: 1.5rem;
        text-align: center;
    }

    .social-icons a {
        margin: 0 0.75rem;
    }

    .brand-logo {
        margin-top: 2rem;
        justify-content: center;
    }
}

/* Utility classes for background patterns/waves if needed */
/* You might need to use SVG backgrounds or ::before/::after pseudo-elements for the wave effects */
/* For simplicity, I'm using solid/gradient backgrounds. */

/* Example of a primary color variable if you want to centralize it */


/* If you use this, you can replace #6a0dad with var(--bs-primary) */

/* Adjustments for smaller screens if necessary */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .hero-floater {
        display: none;
        /* Hide floaters on smaller screens for simplicity or reposition */
    }

    .flashcard-arrow {
        ms-n3: -1rem !important;
        /* Adjust arrow positions */
        me-n3: -1rem !important;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .learn-way-section .nav-pills .nav-link {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .flashcard-container {
        padding: 2rem !important;
    }
}

.ai-assistant-section .col-lg-10 {
    border-radius: 40px;
    background: radial-gradient(
        79.82% 79.82% at 50.15% 20%,
        rgba(255, 129, 215, 0.15) 0%,
        rgba(145, 103, 255, 0.2) 100%
    );
    /* display: inline-flex; */
    padding: 50px 100px;
    /* flex-direction: column; */
    /* align-items: center; */
    gap: 36px;
}
.ai-assistant-section h2 {
    color: var(--Secondary-Black, #2e2e2e);
    text-align: center;
    font-family: "Franie Test";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}
.ai-assistant-section p {
    color: var(--Secondary-Black, #2e2e2e);
    text-align: center;
    font-family: "Franie Test";
    font-size: 20px;
    font-style: normal;
    font-weight: 350;
    line-height: 160%;
}
.top_sup_head {
    border-radius: 8px;
    background: var(--Tertiary-White, #fff);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    padding: 8px 36px;
    color: var(--Primary-Purple, #7751db);
    font-family: "Franie Test";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    display: inline-block;
    margin-bottom: 1rem;
}
.more-than-notes-section h2 {
    color: var(--Secondary-Black, #2e2e2e);
    text-align: center;
    font-family: "Franie Test";
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}
