@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@100..900&display=swap');




:root {
    --bg-main: white;
    --primary: #5562ee;
    --text-muted: #64748b;
}

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


body {
    background-color: var(--bg-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1.1;
    word-break: break-word;

}


.navbar {
    display: flex;
    Justify-content: space-between;
    align-items: center;
    padding: 12px 80px;
    background-color: rgb(97, 87, 87);
    position: sticky;
    top: 0;
    z-index: 999;
}

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

.logo img {
    height: 38px;
    width: auto;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    color: white;
    Line-height: 0.8;
    font-weight: 600;

}


.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary)
}



.btn-pill {
    background-color: white;
    color: black;
    padding: 13px 32px;
    border-radius: 100px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-pill:hover {
    background-color: #f0f0f0;
}



/* Keep all your existing navbar, logo, and btn-pill code as is, then add: */

/* Enable Smooth Scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* The Dropdown Menu (Hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(70, 65, 65); /* Slightly darker than navbar */
    min-width: 180px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 8px;
    top: 100%; /* Appears right below the link */
    left: 0;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: background 0.3s;
}

/* Hover effect for dropdown options */
.dropdown-content a:hover {
    background-color: rgb(120, 110, 110);
    color: white;
}

/* Show the menu when you move your cursor over the Journey link */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Optional: Offset for fixed navbar so it doesn't cover headings */
section {
    scroll-margin-top: 80px;
}

.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    background-color: #e3e3ff;
}

.badge {
    display: inline-flex;
    align-items: center;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 5rem;
    color: black;
    max-width: 1000px;
    margin-bottom: 24px;
    Line-height: 1;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 50px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}


.btn-cta {
    background-color: black;
    color: white;
    border-radius: 100px;
    text-decoration: none;
    padding: 20px 48px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    font-weight: 700;
    gap: 12px;
}

.btn-cta:hover {
    background-color: #333333;
}

.link-action {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
}



.floating-card {
    position: absolute;
    width: 250px;
    background-color: white;
    padding: 10px;
    border-radius: 30px;
    border: 1px solid #e5e7eb;
    border-bottom-width: 0px;
    overflow: hidden;
}

.floating-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 22px;
    background-color: gray;
}

.card-left {
    left: 40px;
    top: 50%;
}

.card-right {
    right: 40px;
    bottom: 30%;
}


/* Footer Base Styles */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 20px 20px;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* Brand Section */
.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 38px;
    width: auto;
    font-size: 2rem
}

.footer-description {
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 14px;
    max-width: 300px;
}

/* Links Columns */
.footer-links {
    display: flex;
    gap: 60px;
    flex: 2;
    justify-content: flex-end;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #222;
    text-align: center;
    color: #666;
    font-size: 12px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-links {
        justify-content: flex-start;
        gap: 30px;
        flex-wrap: wrap;
    }
}




/* CTA Section Styling */
.cta-section {
    padding: 60px 30px;
    background-color: #ffffff;
    /* Matches the page background */
    display: flex;
    justify-content: center;
}

.cta-container {
    background-color: #5d5dfa;
    /* The signature SnapClass Blue */
    width: 100%;
    max-width: 1100px;
    padding: 80px 40px;
    border-radius: 50px;
    /* Large rounded corners */
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-transform: lowercase;
    /* Matches the styling in the video */
}

.cta-subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0.9;
}

/* The White Button */
.cta-button {
    background-color: white;
    color: #5d5dfa;
    border: none;
    padding: 18px 35px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .cta-container {
        padding: 50px 20px;
        border-radius: 30px;
    }

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

/* Features Section */
.features {
    padding: 40px 20px;
    background-color: #ffffff;
    text-align: center;
}

.features-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-transform: lowercase;
    /* Matches the video's aesthetic */
    letter-spacing: -2px;
}

/* Grid Layout */
.features-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 24px;
    padding: 40px 30px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .features-title {
        font-size: 2.5rem;
    }

    .feature-card {
        max-width: 100%;
    }
}

/* Tech Stack Section */
.tech-stack {
    background-color: #ffffff;
    padding: 40px 20px;
}

.tech-container {
    background-color: #7c5dfa;
    /* Brighter Purple/Violet */
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 60px;
    text-align: center;
    color: white;
}

.tech-label {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 2px;
    color: #000000;
}

.tech-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

/* Grid for the inner cards */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* Translucent Cards */
.tech-card {
    background: rgba(255, 255, 255, 0.15);
    /* Semi-transparent white */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.tech-card:hover {
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.2);
}

.tech-icon-circle {
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tech-card h3 {
    color: rgb(37, 36, 36);
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.tech-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* Small Tags at the bottom of cards */
.tech-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 15px;
    border-radius: 20px;
    color: rgb(37, 36, 36);
    background: rgb(175, 226, 97);
    text-transform: uppercase;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .tech-title {
        font-size: 2.2rem;
    }

    .tech-container {
        padding: 40px 20px;
        border-radius: 40px;
    }
}

/* Core Styling */
.journey {
    padding: 80px 20px;
    background: #fff;
    font-family: 'Inter', sans-serif;
    color: #1a1b2f;
}

.journey-header {
    text-align: center;
    margin-bottom: 60px;
}

.journey-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    font-size: 13px;
}

.journey-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
}

/* Layout Containers */
.journey-container {
    max-width: 1100px;
    margin: 0 auto 100px auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.journey-container.reverse {
    flex-direction: row-reverse;
}

/* Text Content */
.journey-content {
    flex: 1;
}

.step-number {
    color: #7c5dfa;
    font-weight: 700;
    font-size: 14px;
}

.step-title {
    font-size: 3.5rem;
    line-height: 0.9;
    font-weight: 900;
    margin: 15px 0;
}

.step-description {
    color: #666;
    line-height: 1.6;
    max-width: 400px;
}

/* Image Styling */
.journey-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.ui-card {
    width: 100%;
    max-width: 450px;
    border-radius: 35px;
    height: 350px;
    /* Fixed height for consistency */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    background: #f4f4f9;
    /* Fallback color */
}

.journey-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This makes sure your images fill the space perfectly */
    display: block;
}

/* Modal Specifics for Step 3 */
/* .bg-blur-img {
    filter: blur(8px);
    opacity: 0.4;
} */

.floating-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 80%;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

/* Step 1 Overlay bits */
.login-overlay-mock {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.badge {
    background: rgb(145, 189, 255);
    color: white;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: bold;
}

.brand-small {
    color: #1a1b2f;
    font-weight: 900;
    font-size: 10px;
    line-height: 1;
}

.btn {
    padding: 12px;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
}

.purple {
    background: #7c5dfa;
}

.full {
    width: 100%;
    margin-top: 10px;
    border: none;
}

/* Mobile */
@media (max-width: 900px) {

    .journey-container,
    .journey-container.reverse {
        flex-direction: column;
        text-align: center;
    }

    .step-description {
        margin: 0 auto;
    }

    .journey-main-title,
    .step-title {
        font-size: 2.5rem;
    }

    .ui-card {
        height: 300px;
    }
}

/* Student Journey Section Styles */
.student-journey {
    padding: 80px 20px;
    background: #fdfdfd;
    /* Slightly different background to separate from Teacher's section */
    font-family: 'Inter', sans-serif;
}

.journey-header {
    text-align: center;
    margin-bottom: 60px;
}

.journey-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    font-size: 13px;
}

.journey-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    color: #1a1b2f;
    text-transform: lowercase;
    /* Matching the SnapClass aesthetic */
}

/* Layout Containers */
.journey-container {
    max-width: 1100px;
    margin: 0 auto 100px auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.journey-container.reverse {
    flex-direction: row-reverse;
}

/* Text Side */
.journey-content {
    flex: 1;
}

.step-number {
    color: #7c5dfa;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.step-title {
    font-size: 3.5rem;
    line-height: 0.9;
    font-weight: 900;
    margin: 15px 0;
    color: #1a1b2f;
}

.step-description {
    color: #666;
    line-height: 1.6;
    max-width: 420px;
    font-size: 1.1rem;
}

/* Visual Side & Card */
.journey-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.student-card {
    width: 100%;
    max-width: 450px;
    height: 380px;
    /* Fixed height for consistency */
    border-radius: 40px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    position: relative;
}

/* Image Handling */
.journey-img {
    width: 105%;
    height: 100%;
    object-fit: cover;
    /* Ensures your images look good regardless of aspect ratio */
    display: block;
    transition: transform 0.5s ease;
}

.student-card:hover .journey-img {
    transform: scale(1.03);
    /* Subtle zoom on hover */
}

/* Responsive Design */
@media (max-width: 900px) {

    .journey-container,
    .journey-container.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        margin-bottom: 80px;
    }

    .step-description {
        margin: 0 auto;
    }

    .journey-main-title {
        font-size: 2.8rem;
    }

    .step-title {
        font-size: 2.5rem;
    }

    .student-card {
        height: 300px;
        /* Shorter on mobile */
    }
}





/* This code only runs on screens smaller than 768px (tablets/phones) */
@media (max-width: 768px) {

    .navbar {
        padding: 8px 16px;
    }

    .logo img {
        height: 28px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .nav-links {
        display: none;
    }

    .btn-pill {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .hero {
        padding: 60px 16px;
    }

    .hero h1 {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .link-action {
        font-size: 0.9rem;
    }

    .floating-card {
        display: none;
    }


    /* 1. Make the button container stack vertically */
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    /* 2. Make the Start button full width */
    .btn-cta {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
        /* Slightly smaller padding for mobile */
        font-size: 1rem;
    }

    /* 3. Make Feature Cards stack on top of each other */
    .features-container {
        flex-direction: column;
        align-items: center;
    }

    .features {
        padding: 60px 16px;
    }

    .features h2 {
        font-size: 2.1rem;
    }

    .feature-card {
        width: 90%;
        /* Take up most of the screen width */
        max-width: none;
        padding: 24px;
        border-radius: 24px;
    }

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

    /* 4. Reduce section gaps for mobile */
    .features-section {
        padding: 20px 0;
    }

    .tech-stack {
        padding: 60px 16px;
        margin: 20px;
        border-radius: 30px;
    }

    .tech-stack h2 {
        font-size: 2rem;
    }

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

    .tech-card {
        padding: 20px;
    }
}