:root {
    --alt-primary-color: #4ae24a;
    --primary-color: #6EC1E4;
    --secondary-color: #54595F;
    --beige:  rgb(255, 254, 245);
    --text-color: #c6d2eb;
    --dark-text: #1D1A4E;
    --heading-color: #10916a;
    --accent-color: #00ff22;
    --white: #FFFFFF;
    --yellow: #F2CB05;
    --light-blue-bg: #C3D5EA;
    --light-gray: #F5F5F5;
    --feature-bg-overlay: #246F59;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto Slab', serif;

    --fs-xs: 0.75rem;   /* 12px */
    --fs-sm: 0.875rem;  /* 14px */
    --fs-md: 1rem;      /* 16px */
    --fs-lg: 1.25rem;   /* 20px */
    --fs-xl: 1.5rem;    /* 24px */
    --fs-xxl: 2rem;     /* 32px */
    --fs-huge: 2.8rem;  /* 45px */
    
    --space-sm: 0.93rem; /* 15px */
    --space-md: 1.25rem; /* 20px */
    --space-lg: 1.87rem; /* 30px */
}

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

body {
    font-family: var(--font-primary);
    font-size: var(--fs-md);
    line-height: 1.75;
    color: var(--text-color);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; vertical-align: middle; }
h1, h2, h3, h4, h5, h6 { color: var(--heading-color); font-family: var(--font-primary); font-weight: 600; }

.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
    width: 100%;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: var(--fs-md);
    line-height: 1.2;
}

/* Header */
.site-header {
    padding: 15px 0;
    background-color: rgba(0,0,0,0.05); /* Opaque background */
    position: sticky; /* Stays at top */
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); /* Elegant drop shadow */
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo-column {
    width: 25%;
}


.site-logo img {
    max-width: 180px;
    transform-origin: left center;
    transition: transform 0.3s ease;
}


.nav-column {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    gap: var(--space-lg);
}

.main-nav a {
    font-weight: 500;
    color: var(--white);
    font-size: 15px;
}

.main-nav a:hover,
.main-nav .current-menu-item > a {
    color: var(--accent-color);
}

.social-column {
    display: flex;
    align-items: center;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-bottom: 0;
}

.social-media a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
}

.social-media a:hover {
    color: var(--accent-color);
}

.search-column {
    margin-left: 20px;
    
}

.search-icon {
    color: var(--accent-color);
    font-size: 16px;
}
.user-initial {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--alt-primary-color));
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* ========================================= */
/* DESKTOP STYLES (992px and up)             */
/* ========================================= */
.navigation-column {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
}

.menu-column { flex-grow: 1; display: flex; justify-content: center; }
.nav-menu { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
.nav-menu a { color: #fff; font-size: 14px; font-weight: 500; text-decoration: none; }

.auth-column { padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.3); }
.auth-link { color: var(--accent-color); text-decoration: none; display: flex; align-items: center; gap: 8px; font-size: 14px; }

.social-column { padding: 0 20px; }
.social-media { display: flex; gap: 15px; list-style: none; margin: 0; padding: 0; }
.social-media a { color: #fff; font-size: 14px; }

.profile-column { padding-left: 10px; }
.profile-icon { color: #fff; font-size: 20px; text-decoration: none; }

.nav-toggler { display: none; } /* Hide on desktop */

/* ========================================= */
/* MOBILE STYLES (991px and down)            */
/* ========================================= */
@media (max-width: 991px) {
    /* Show the Toggler */
    .nav-toggler {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 2100;
    }
    .toggler-icon, .toggler-icon::before, .toggler-icon::after {
        content: ""; display: block; width: 25px; height: 2px; background: #fff; transition: 0.3s;
    }
    .toggler-icon { position: relative; }
    .toggler-icon::before { position: absolute; top: -8px; }
    .toggler-icon::after { position: absolute; top: 8px; }

    /* X Animation */
    .nav-toggler.active .toggler-icon { background: transparent; }
    .nav-toggler.active .toggler-icon::before { transform: rotate(45deg); top: 0; }
    .nav-toggler.active .toggler-icon::after { transform: rotate(-45deg); top: 0; }

    /* The Mobile Sidebar */
    .navigation-column {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden */
        width: 300px;
        height: 100vh;
        background: #000;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding: 100px 40px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 2000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .navigation-column.active { right: 0; }

    /* Unstack children and give them full width */
    .menu-column, .auth-column, .social-column, .profile-column {
        width: 100%;
        display: block !important;
        padding: 0 !important;
        margin-bottom: 25px;
        border: none !important;
        flex-grow: 0 !important;
    }

    .nav-menu { flex-direction: column; gap: 10px; }
    .nav-menu li { border-bottom: 1px solid #222; width: 100%; }
    .nav-menu a { padding: 12px 0; display: block; font-size: 16px; }

    .auth-link { font-size: 16px; padding: 12px 0; }
    .auth-label { display: inline !important; }
    
    .social-media { margin-top: 10px; }
    
    .profile-icon { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-top: 1px solid #222; }
    .profile-icon::after { content: "My Dashboard"; font-size: 16px; color: #fff; }


    .site-header {
    padding: 6px 0;                         /* Reduced height */
    background-color: rgba(0, 0, 0, 0.9);  /* More opaque */
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
    
}
/* ============================= */
/* Header – Scrolled State       */
/* ============================= */
.site-header.scrolled {
    padding: 6px 0;                         /* Reduced height */
    background-color: rgba(0, 0, 0, 0.9);  /* More opaque */
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

/* Optional: tighten nav spacing */
.site-header.scrolled .main-nav a {
    font-size: 14px;
}


.site-header.scrolled .site-logo img {
    transform: scale(0.75);
}


/* Hero Section */
.hero-section {
    position: relative;
    padding: 193px 0 150px 0;
    margin-top: -100px;
    background-image: url("/static/images/assets/teacher-presenting.webp");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 9;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.63;
    z-index: 1;
}

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

.hero-text-col {
    width: 50%;
    padding-left: 15px;
}

/* New Teacher Hero Override */
.hero-new-teacher {
    background-color: transparent; /* No specific bg image in text file */
    background-image: none; /* Reset if inheriting */
    padding: 190px 0 100px 0;
    background: #8a8a8a; /* Fallback */
    margin-top: 0;
}
.hero-new-teacher .hero-overlay { display: none; }
.hero-new-teacher .hero-text-col { width: 100%; text-align: center; }
.hero-new-teacher .hero-title { color: #1D1A4E; margin-bottom: 20px; font-size: 45px; line-height: 1.2; }
.hero-new-teacher .hero-desc { color: var(--text-color); max-width: 800px; margin: 0 auto 30px auto; }

.hero-subtitle {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    line-height: 27px;
    margin-bottom: 10px;
}

.hero-title {
    color: var(--white);
    font-size: 45px;
    font-weight: 600;
    line-height: 58px;
    margin-bottom: 20px;
}
.hero-decoration {
    position: absolute;
    left: 0;              /* left corner of hero content */
    top: 50%;
    transform: translateY(-50%);
}

.hero-decoration img {
    width: 4px;
    height: 150px;
    display: block;
}

.hero-btn-wrapper {
    margin-top: 30px;
}

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

    .hero-text-col {
        width: 100%;
        padding-left: 15px;
    }
}


/* General Buttons */
.btn-primary, .elementor-button {
    display: inline-block;
    background-color: var(--heading-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-primary:hover, .elementor-button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}
.elementor-button-content-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* Differentiation Section */
.differentiation-section {
    padding: 80px 0;
    background-color: #fff;
}
.diff-container { display: flex; gap: 50px; }
.diff-content-col { width: 100%; } /* Assuming 100% width based on text, content split happens inside */
.diff-text { margin-bottom: 40px; color: var(--text-color); }

/* Progress Bars */
.progress-wrapper { max-width: 800px; margin: 0 auto; }
.skill-bar-group { margin-bottom: 25px; }
.skill-bar-content { margin-bottom: 10px; display: flex; justify-content: space-between; }
.skill-title { font-weight: 600; color: var(--heading-color); font-size: 16px; }
.skill-bar { height: 8px; background: #ECF2FB; border-radius: 10px; overflow: hidden; }
.skill-track { height: 100%; width: 100%; }
.skill-fill { height: 100%; background: var(--heading-color); position: relative; border-radius: 10px; }
.skill-percent { position: absolute; right: 10px; top: -25px; font-size: 12px; color: var(--heading-color); display: none; }

/* Impact Stats Section */
.impact-stats-section {
    padding: 60px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}
.impact-container { display: flex; justify-content: space-around; text-align: center; }
.impact-col { width: 30%; }
.impact-number { font-size: 56px; font-weight: 700; color: var(--heading-color); margin-bottom: 10px; font-family: var(--font-primary); }
.impact-number .suffix, .impact-number .prefix { font-size: 30px; vertical-align: super; }
.impact-label { font-size: 18px; margin-bottom: 10px; color: var(--dark-text); }
.impact-desc { font-size: 14px; color: var(--text-color); }



/* Pricing Persona Wrapper */
.pricing-embed-section { padding: 60px 0; }
.tfv-pricing-persona-wrapper { width: 100%; margin: 20px 0; }

/* Personas Section */
.personas-section {
    margin-top: -140px;
    padding-top: 21px;
    position: relative;
    z-index: 10;
}

.personas-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.persona-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    margin: 0 15px;
    padding: 0;
    border-top: 4px solid var(--white);
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.persona-card:hover {
    border-color: var(--yellow);
}

.persona-header {
    display: flex;
    align-items: center;
    padding: 34px 35px 0 35px;
}

.persona-icon {
    width: 50px;
    margin-right: 10px;
}

.persona-icon img {
    filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(259deg);
}

.persona-title h6 {
    color: var(--dark-text);
    font-size: 17px;
    line-height: 27px;
    font-weight: 600;
}

.persona-question {
    padding: 12px 35px 0 35px;
    color: #616670;
    font-size: 14px;
    line-height: 28px;
}

.persona-image {
    margin: 26px 0 20px 0;
}

.persona-image img {
    width: 100%;
    height: 161px;
    object-fit: cover;
    object-position: top center;
}

.persona-action {
    padding: 10px 0 10px 36px;
}

.btn-text-icon {
    display: inline-flex;
    align-items: center;
    color: var(--heading-color);
    font-weight: 500;
    font-size: 15px;
    fill: var(--heading-color);
}

.btn-text-icon .btn-icon {
    margin-left: 8px;
    transition: transform 0.3s;
}

.btn-text-icon:hover .btn-icon {
    transform: translateX(5px);
}

/* Why Choose Section */
.why-choose-section {
    padding: 110px 0 120px 0;
}

.section-heading-wrapper {
    margin-bottom: 30px;
}

.section-title {
    color: var(--heading-color);
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 20px;
}

.text-center {
    text-align: center;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.feature-box {
    width: 25%;
    position: relative;
    padding: 220px 15px 0 15px;
    background-size: cover;
    background-position: top center;
    margin-right: 1px;
    flex: 1 0 20%;
    border-right: 1px solid transparent; /* Logic adjustment for layout */
    overflow: hidden;
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.6;
    transition: opacity 0.3s;
    z-index: 1;
}

.feature-box:hover .feature-overlay {
    background-color: var(--feature-bg-overlay);
    opacity: 1;
}

.feature-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.feature-text p {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 28px;
    color: var(--white);
    margin-bottom: 4px;
}
.feature-text p strong {
    color: var(--alt-primary-color) !important;
}


.feature-text ul {
    list-style: none;
    margin-bottom: 10px;
    color: var(--white);
}

.feature-text li {
    font-size: 14px;
    line-height: 28px;
    word-wrap: break-word;
}

.feature-btn-wrapper {
    padding: 10px 0 10px 36px;
    margin-top: auto;
}

.btn-text-icon.light {
    color: var(--light-blue-bg);
    fill: var(--light-blue-bg);
}

.btn-text-icon.light:hover {
    color: var(--white);
}

.feature-box .spacer {
    height: 68px;
}

@media (max-width: 768px) {
    .features-grid {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .feature-box {
        width: 100%;
        flex: 0 0 100%;
        padding: 160px 15px 30px 15px; /* adjust height for mobile */
        margin-right: 0;
        border-right: none;
    }
}

/* FAQ Section */
.faq-section {
    background-color: var(--light-gray);
    padding: 120px 0 72px 0;
}

.faq-container {
    display: flex;
}

.faq-column {
    width: 50%;
    padding-right: 60px;
}

.faq-column .section-title {
    padding-bottom: 20px;
    margin-bottom: 0;
}

.accordion-item {
    background: var(--white);
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.accordion-header {
    padding: 11px 30px;
    background-color: #F1F7FF;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--heading-color);
    font-size: 17px;
    font-weight: 600;
}

.accordion-header::-webkit-details-marker {
    display: none;
}

.accordion-item[open] .accordion-header {
    background-color: var(--yellow);
    color: var(--white);
}

.accordion-title {
    flex-grow: 1;
}

.accordion-body {
    padding: 20px 30px;
    color: #616670;
    font-size: 14px;
}

.accordion-body p {
    margin-bottom: 15px;
}

.accordion-body ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq-image-col {
    width: 50%;
    background-image: url('/static/images/assets/bizcorp-hm01-img01.jpg');
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    margin-top: 35px;
}

.spacer-bg {
    height: 566px;
}

/* =========================
   Resource Section – 
========================= */

.resource-heading-section {
    padding: 60px 0 0 0;
}

.resources-section {
    padding: 40px 0 110px 0;
    background-color: #0b0c10; /* noir base */
}

.resources-grid {
    display: flex;
    gap: 30px;
}

/* Resource Card */
.resource-item {
    flex: 1;
    position: relative;
    padding: 30px;
    color: var(--white);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-radius: 6px;
}

/* Dark overlay for noir contrast */
.resource-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.85) 100%
    );
    z-index: 1;
}

/* Unsplash Backgrounds */
.resource-item:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?q=80&w=1200&auto=format&fit=crop');
}

.resource-item:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?q=80&w=1200&auto=format&fit=crop');
}

.resource-item:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?q=80&w=1200&auto=format&fit=crop');
}

/* Content layering */
.resource-item > * {
    position: relative;
    z-index: 2;
}

/* Header */
.resource-header {
    display: flex;
    justify-content: flex-end;
}

/* Date Capsule */
.resource-date {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
    color: var(--white);
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Spacer for visual balance */
.resource-spacer {
    height: 220px;
}

/* Tag */
.resource-tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 4px 10px;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #cfcfcf;
    background: rgba(255,255,255,0.08);
    border-left: 3px solid var(--alt-primary-color);
}

/* Title */
.resource-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 10px;
}

/* Description */
.resource-desc {
    font-size: 15px;
    line-height: 26px;
    color: #d6d6d6;
    max-width: 95%;
}

/* Hover polish */
.resource-item:hover::before {
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.9) 100%
    );
}


/* Footer */
.site-footer {
    background-image: url("https://test.teacherfinancialvibes.com/wp-content/uploads/2025/07/footer-bg.jpg");
    background-size: cover;
    background-color: var(--feature-bg-overlay); /* Fallback */
    padding-top: 60px;
    position: relative;
    border-top: 1px solid #eee;
}

.footer-container {
    display: flex;
    padding-bottom: 50px;
    flex-wrap: wrap;
}

.footer-col {
    padding: 0 15px;
}

.branding-col { width: 25%; }
.services-col { width: 25%; }
.tools-col { width: 25%; }
.newsletter-col { width: 25%; }

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

.footer-text p {
    font-size: 14px;
    color: var(--yellow) !important;
    margin-bottom: 20px;
}

.icon-list {
    font-size: 14px;
}

.icon-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.icon-list i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.footer-heading {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 20px;
}

.links-list li a:hover {
    color: var(--primary-color);
}

.static-subscribe-form {
    display: flex;
    margin-top: 20px;
}

.static-subscribe-form input {
    padding: 10px;
    border: 1px solid #ddd;
    border-right: none;
    width: 100%;
    outline: none;
}

.static-subscribe-form button {
    padding: 10px 15px;
    background: var(--heading-color);
    color: #fff;
    border: none;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid #eaeaea;
    padding: 20px 15px;
    text-align: left;
}

.copyright-text p {
    font-size: 14px;
    color: var(--text-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 40px; }
    .features-grid .feature-box { width: 50%; border-bottom: 1px solid transparent; margin-bottom: 1px; }
    .faq-container { flex-direction: column; }
    .faq-column, .faq-image-col { width: 100%; padding-right: 0; }
    .faq-image-col { height: 300px; margin-top: 0; }
    .spacer-bg { height: 100%; }
    .resources-grid { flex-wrap: wrap; }
    .resource-item { flex: 1 0 45%; }
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-container { flex-direction: column; gap: 40px; }
    .impact-col { width: 100%; }
}

@media (max-width: 768px) {
    .header-container { flex-wrap: wrap; }
    .logo-column { width: 100%; text-align: center; margin-bottom: 15px; }
    .nav-column { display: none; /* Hide nav on mobile for simplicity in static template */ }
    .social-column { justify-content: center; width: 100%; margin-bottom: 10px; }
    .search-column { display: none; }
    
    .hero-section { padding: 135px 0 70px 0; margin-top: -74px; }
    .hero-new-teacher { padding: 80px 0 50px 0; margin-top: 0; }
    .hero-text-col { width: 100%; padding-right: 20px; }
    .hero-title { font-size: 35px; line-height: 48px; }
    
    .personas-section { margin-top: 0; }
    .persona-card { margin-bottom: 20px; }
    
    .features-grid .feature-box { width: 100%; margin-bottom: 10px; }
    
    .resource-item { flex: 1 0 100%; }
    
    .footer-col { width: 100%; margin-bottom: 30px; }
    
    .challenges-grid { grid-template-columns: 1fr; }
    .tools-grid { grid-template-columns: 1fr; }
    .diff-container { flex-direction: column; }
}