/* 1. Hero Section Override (Behind Navigation) */
.hero-new-teacher {
    margin-top: -100px !important;
    padding-top: 200px !important;
    padding-bottom: 100px !important;

    background-image:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=80");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: transparent !important;
    position: relative;
}

p{
	 color: #000000 !important;
}

.hero-new-teacher .hero-overlay {
	display: block !important;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.75);
	z-index: 1;
}
.hero-new-teacher .hero-content { position: relative; z-index: 2; justify-content: center; }
.hero-new-teacher .hero-text-col { width: 100%; max-width: 900px; margin: 0 auto; text-align: center; }
.hero-new-teacher .hero-title { color: #FFFFFF !important; font-size: 3rem; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero-new-teacher .hero-desc p { color: #e0e0e0 !important; font-size: 1.125rem; line-height: 1.6; }
.hero-new-teacher .hero-btn-wrapper { display: flex; justify-content: center; margin-top: 30px; }
.hero-new-teacher .hero-btn {
	 background-color: var(--yellow) !important;
	 color: #0a0a0a !important;
	 padding: 12px 30px;
	 border-radius: 0;
	 font-size: 0.85rem;
	 font-weight: 600;
	 text-decoration: none;
	 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	 transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* 2. Split Section Image Helpers */
.section-image-col {
	position: relative;
	min-height: 400px; /* Ensure height on mobile */
	height: 100%;
	border-radius: 8px;
	overflow: hidden;
}
.section-img-cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 8px;
}


    /* Challenges Section Refined Layout */
    .section-img-cover { width: 100%; height: 500px; object-fit: cover; border: 1px solid #000; }
    .skill-fill { transition: width 2s ease-in-out; }
    .challenges-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
    .challenge-item {
        border: 1px solid #d4d4d4;
        padding: 20px;
        background: #fff;
        box-shadow: 0 3rem 1rem  rgba(0, 0, 0, 0.12);
    }

    .challenge-item:hover {
        background: #f1f5f9;
    }

    .challenge-title {
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
        color: #0f172a;
    }

    .challenge-desc {
        font-size: 0.85rem;
        line-height: 1.6;
        color: #475569; /* Muted slate */
        margin-bottom: 0;
    }

    /* Fixed Image Container */
    .image-container-noir {
        width: 100%;
        height: auto; /* Force visibility */
        background-color: #0f172a;
        border: 1px solid #000;
        overflow: hidden;
    }

    .image-container-noir img {
        width: 100%;
        height: auto;
        object-fit: cover;
        filter: grayscale(100%) contrast(110%); /* Match Noir theme */
        opacity: 0.9;
    }

    @media (max-width: 992px) {
        .challenges-split-grid {
            grid-template-columns: 1fr; /* Single column on mobile/tablet */
        }
        .image-container-noir {
            min-height: 300px;
            margin-top: 30px;
        }
    }


/* 4. Animations */
.impact-number { display: inline-flex; align-items: baseline; justify-content: center; }


/* ================================
   TOOLS + IMPACT STATS OVERLAP
   FINAL CONTINUOUS CSS (FIXED)
   ================================ */

/* Tools Section (BACKGROUND LAYER) */
.tools-section {
    position: relative;
    padding: 100px 0 220px; /* extra space so bg shows under impact card */
    background: #145c46;
    z-index: 1; /* stays behind impact */
}
/* Tools Section */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.tool-item {
    background: rgba(241, 241, 241, 0.08);
    padding: 30px;
    position: relative;
    transition: transform 0.3s;
}
.tool-item:hover { transform: translateY(-5px); }
.tool-icon { font-size: 50px; color: var(--yellow); margin-bottom: 20px; }
.tool-count { 
    position: absolute; 
    top: -100px; 
    right: 10px; 
    font-size: 40px; 
    font-weight: 500; 
    color: #c9c9c9; 
    z-index: 0;
}
.tool-content { position: relative; z-index: 1; }
.tool-title { font-size: 18px; margin-bottom: 15px; color:  #c0ddcf; }
.tool-desc { font-size: 14px; color: #c0ddcf !important; }

/* Impact Stats Section (FLOATING CARD) */
.impact-stats-section {
    position: relative;
    margin-top: -140px; /* pulls card into tools bg */
    z-index: 5; /* sits above tools background */
	 background: transparent;
	 border: none;
}

/* Impact Stats Card */
.impact-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;

    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 0;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-right: 6px solid #f2c300;
}

/* Individual Impact Columns */
.impact-col {
    flex: 1;
    padding: 0 1.5rem;
}

/* Vertical Dividers */
.impact-col:not(:last-child) {
    border-right: 1px solid #e3e6ea;
}

/* Numbers */
.impact-number {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    color: #1f1f4a;
}

/* Prefix / Suffix */
.impact-number .prefix,
.impact-number .suffix {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: super;
}

/* Labels */
.impact-label {
    margin-top: 0.75rem;
    font-weight: 700;
    color: #0b5d3a;
}

/* Descriptions */
.impact-desc {
    margin-top: 0.25rem;
    color: #5f6c7b;
    max-width: 260px;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 992px) {
    .tools-section {
        padding-bottom: 180px;
    }

    .tools-grid {
            grid-template-columns: 1fr; /* Single column on mobile/tablet */
        }

    

    .impact-stats-section {
        margin-top: -90px;
    }

    .impact-container {
        flex-direction: column;
        text-align: center;
    }

    .impact-col {
        padding: 0;
    }

    .impact-col:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #e3e6ea;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .impact-desc {
        max-width: none;
    }
}

/* ================================
   PRICING SECTION
   ================================ */

.pricing-section {
    padding: 50px 0;
    background-color: #f6f8fb;
}

/* Header */
.pricing-header {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.pricing-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
}

.pricing-header p {
    color: #475569;
    margin-top: 0.5rem;
}

/* Grid */
.pricing-grid {
    display: grid;
    /* Force exactly 3 columns */
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    max-width: 1200px;
    margin: 40px auto 0 auto;
    align-items: stretch; /* All cards equal height */
}

/* Cards */
.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* Featured */
.pricing-card.featured {
    transform: translateY(-20px);
    border: 2px solid #16a34a;
}

/* Badge */
.badge {
    position: absolute;
    top: 14px;
    right: 20px;
    background: #a39a16;
    color: #ffffff;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Card Headers */
.pricing-card-header {
    padding: 1rem 2rem;
    text-align: center;
}

.pricing-card-header.light {
    background: #a0adb9;
	 color: #ffffff;
}

.pricing-card-header.dark {
    background: #16a34a;
    color: #ffffff;
}

.pricing-card-header h4 {
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    font-weight: 700;
	 color: var(--yellow);
}

.price {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    margin: 1rem 0 0.25rem;
}

.price small {
    font-size: 1rem;
}

.price-desc {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Features */
.feature-list {
    list-style: none;
    padding: 2rem;
    margin: 0;
}

.feature-list li {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
	 color: #4a5c75;
}

.feature-list li::before {
    content: "✔";
    margin-right: 0.75rem;
    font-weight: 700;
    color: #16a34a;
}

.feature-list li.no {
    color: #4a5c75;
    text-decoration: line-through;
}

.feature-list li.no::before {
    content: "✕";
    color: #ef4444;
}

/* Footer */
.pricing-footer {
    padding: 1.5rem 2rem 2.5rem;
    text-align: center;
}

.best-for {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 1.25rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
}

.btn-primary.solid {
    background: #16a34a;
    color: #ffffff;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }
}

