/* =========================================
   ROOT VARIABLES
========================================= */

:root{
    --ks-bg:#FDFBF7;
    --ks-text:#1C1B18;
    --ks-text-muted:#706E68;
    --ks-border:#EFECE6;
    --ks-black:#0F0E0C;
    --ks-orange:#E9A15A;

    --ks-font-title:"Fraunces","Instrument Serif",Georgia,serif;
    --ks-font-desc:"Plus Jakarta Sans","Inter",sans-serif;
}

/* =========================================
   HERO SECTION
========================================= */

.hero-section{
    background:var(--ks-bg);
    padding:30px 0 40px;
    overflow:hidden;
}

.hero-container{
    max-width:1280px;
    margin:auto;

    padding:0 30px;

    display:grid;
    grid-template-columns:1.1fr .9fr;

    align-items:center;
    gap:50px;

    min-height:calc(100vh - 90px);
}

/* =========================================
   TRUST BADGE
========================================= */

.trust-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#fff;

    border:1px solid var(--ks-border);

    border-radius:999px;

    padding:10px 18px;

    font-family:var(--ks-font-desc);
    font-size:14px;
    font-weight:500;

    color:var(--ks-text-muted);
}

.trust-badge .dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--ks-orange);
}

/* =========================================
   TITLE
========================================= */

.hero-title{
    margin-top:20px;

    font-family:var(--ks-font-title);
    font-weight:700;

    font-size:68px;

    line-height:.95;

    letter-spacing:-1.5px;

    color:var(--ks-text);

    max-width:700px;
}

.hero-title .highlight{
    color:#D67A21;
    font-style:italic;
}

/* =========================================
   DESCRIPTION
========================================= */

.hero-description{
    margin-top:20px;

    max-width:560px;

    font-family:var(--ks-font-desc);

    font-size:17px;

    line-height:1.8;

    color:var(--ks-text-muted);
}

/* =========================================
   BUTTONS
========================================= */

.hero-buttons{
    display:flex;
    gap:12px;

    margin-top:25px;

    flex-wrap:wrap;
}

.btn-primary{
    background:var(--ks-black);

    color:#fff;

    text-decoration:none;

    padding:14px 26px;

    border-radius:999px;

    display:inline-flex;
    align-items:center;
    gap:8px;

    font-family:var(--ks-font-desc);
    font-weight:600;

    transition:.3s;
}

.btn-primary:hover{
    color:#fff;
    transform:translateY(-2px);
}

.btn-secondary{
    background:#fff;

    border:1px solid var(--ks-border);

    color:var(--ks-text);

    text-decoration:none;

    padding:14px 26px;

    border-radius:999px;

    font-family:var(--ks-font-desc);
    font-weight:600;

    transition:.3s;
}

.btn-secondary:hover{
    background:#faf8f5;
}

/* =========================================
   STATS
========================================= */

.hero-stats{
    margin-top:30px;

    padding-top:20px;

    border-top:1px solid var(--ks-border);

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:20px;
}

.stat-item h3{
    margin:0;

    font-family:var(--ks-font-title);

    font-size:28px;

    line-height:1;

    color:var(--ks-text);
}

.stat-item p{
    margin-top:6px;

    font-family:var(--ks-font-desc);

    font-size:13px;

    color:var(--ks-text-muted);
}

/* =========================================
   IMAGE
========================================= */

.hero-image-wrapper{
    position:relative;
    max-width:430px;
    margin-left:auto;
}

.hero-image{
    width:100%;
    height:580px;
    object-fit:cover;
    border-radius:28px;
    display:block;
}

/* =========================================
   FLOATING CARD
========================================= */

.floating-card{
    position:absolute;

    top:35px;
    left:-25px;

    background:#fff;

    padding:14px 18px;

    border-radius:18px;

    transform:rotate(-4deg);

    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.floating-card span{
    display:block;

    font-size:10px;

    letter-spacing:2px;

    text-transform:uppercase;

    color:var(--ks-text-muted);
}

.floating-card h4{
    margin-top:6px;

    font-family:var(--ks-font-title);

    font-size:22px;

    color:var(--ks-text);
}

/* =========================================
   REVIEW CARD
========================================= */

.review-card{
    position:absolute;

    left:15px;
    right:15px;
    bottom:15px;

    background:#fff;

    border-radius:18px;

    padding:16px;
}

.review-stars{
    color:#D67A21;
    font-size:16px;
}

.review-rating{
    margin-top:4px;

    font-family:var(--ks-font-desc);
    font-size:13px;
    font-weight:600;
}

.review-card p{
    margin-top:8px;

    font-family:var(--ks-font-desc);

    font-size:13px;

    line-height:1.6;

    color:var(--ks-text-muted);
}

/* =========================================
   TABLET
========================================= */

@media (max-width:1024px){

    .hero-container{
        grid-template-columns:1fr;

        min-height:auto;

        gap:40px;
    }

    .hero-title{
        font-size:56px;
    }

    .hero-image-wrapper{
        max-width:600px;
        margin:auto;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width:767px){

    .hero-section{
        padding:20px 0 40px;
    }

    .hero-container{
        padding:0 20px;
        gap:30px;
    }

    .hero-title{
        font-size:42px;
        line-height:1;
        letter-spacing:-1px;
    }

    .hero-description{
        font-size:16px;
        line-height:1.7;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        justify-content:center;
        text-align: center;
    }

    .hero-stats{
        grid-template-columns:repeat(3,1fr);
        gap:10px;
    }

    .stat-item h3{
        font-size:22px;
    }

    .stat-item p{
        font-size:11px;
    }

    .floating-card{
        display:none;
    }

    .review-card{
        position:relative;

        left:auto;
        right:auto;
        bottom:auto;

        margin-top:15px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width:480px){

    .hero-title{
        font-size:36px;
    }

    .hero-description{
        font-size:15px;
    }

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



/* Second Seciton */


.curricula-section{
    background:#faf8f4;
    border-top:1px solid #e8e2d8;
    border-bottom:1px solid #e8e2d8;
}

.curricula-container{
    max-width:1280px;
    margin:0 auto;

    padding:28px 30px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.curricula-title{
    font-family:"Plus Jakarta Sans",sans-serif;

    font-size:14px;

    font-weight:500;

    letter-spacing:4px;

    text-transform:uppercase;

    color:#9f6f3d;
}

.curricula-links{
    display:flex;
    align-items:center;
    gap:42px;
}

.curricula-link{
    text-decoration:none;

    font-family:"Fraunces",serif;

    font-size:18px;

    font-weight:500;

    color:#221d17;

    transition:.25s ease;
}

.curricula-link:hover{
    color:#c77b2d;
}

@media(max-width:991px){

    .curricula-container{
        flex-direction:column;
        gap:20px;
    }

    .curricula-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:24px;
    }
}

@media(max-width:767px){

    .curricula-section{
        padding:10px 0;
    }

    .curricula-container{
        padding:20px;
    }

    .curricula-title{
        font-size:12px;
        letter-spacing:3px;
        text-align:center;
    }

    .curricula-links{
        gap:16px 24px;
    }

    .curricula-link{
        font-size:16px;
    }
}




/* About Seciton*/
/* --- Component CSS Reset Box Wrapper --- */
.kstar-about-section {
    background-color: #FAF6F0 !important; /* Premium warm-linen tone from design */
    padding: 80px 40px !important;
    box-sizing: border-box;
}

.kstar-about-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --- Layout Grid Constraints --- */
.kstar-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto !important;
    padding: 0px 30px;
}

.kstar-split-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
    align-items: start;
}

/* --- Column Span Configuration --- */
.kstar-left-col {
    grid-column: span 5;
}

.kstar-right-col {
    grid-column: span 7;
    padding-top: 8px; /* Perfectly balances alignment horizontally with heading box */
}

/* --- Left Column Typographics --- */
.kstar-badge {
    display: inline-block;
    font-family: "Plus Jakarta Sans", "Inter", ui-sans-serif, system-ui, sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.18em !important;
    color: #C07D4E !important; /* Premium rich amber deep palette */
    margin-bottom: 16px !important;
}

.kstar-heading {
    font-family: 'Fraunces', serif !important;
    font-size: 44px !important;
    font-weight: 500 !important;
    line-height: 1.22 !important;
    color: #111111 !important;
    letter-spacing: -0.01em !important;
}

/* --- Right Column WYSIWYG Content Elements --- */
.kstar-text-editor {
    font-family: "Plus Jakarta Sans", "Inter", ui-sans-serif, system-ui, sans-serif !important;
    font-size: 18px !important;
    line-height: 1.75 !important;
    color: #4A4A4A !important; /* Soft descriptive charcoal tint */
}

.kstar-text-editor p {
    margin-bottom: 24px !important;
}

.kstar-text-editor p:last-child {
    margin-bottom: 0 !important;
}

/* --- Media Breakpoint Responsiveness (Tablet & Mobile UI) --- */
@media (max-width: 1024px) {
    .kstar-about-section {
        padding: 60px 0px !important;
    }
    .kstar-split-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .kstar-left-col, 
    .kstar-right-col {
        grid-column: span 1fr;
        width: 100%;
    }
    .kstar-right-col {
        padding-top: 0;
    }
    .kstar-heading {
        font-size: 36px !important;
    }
}

@media (max-width: 640px) {
    .kstar-heading {
        font-size: 25px !important;
    }
    .kstar-text-editor {
        font-size: 14px !important;
    }
    .kstar-about-section{
        padding: 20px 0px !important;
    }
    .kstar-container{
        padding: 10px 20px !important;
    }
}




/* Box Seciton*/

/* --- Component Canvas Wrapper --- */
.kstar-features-section {
    background-color: #ffffff !important; /* Premium cream layout color */
    padding: 100px 24px !important;
    box-sizing: border-box;
}

.kstar-features-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --- Container Matrix Layout --- */
.kstar-features-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto !important;
}

/* Outer unified border frame layout */
.kstar-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #ffffff;
    border: 1px solid #E6DFD3 !important;
    border-radius: 32px !important;
    overflow: hidden !important;
    box-shadow: 0px 4px 24px rgba(17, 15, 12, 0.02);
}

/* --- Individual Panel Structure --- */
.kstar-feature-card {
    background-color: #ffffff;
    padding: 48px 40px !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

/* Flat thin internal column dividing system lines */
.kstar-feature-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 1px;
    background-color: #E6DFD3;
    z-index: 2;
}

/* --- Dynamic Icon Container System --- */
.kstar-feature-icon-box {
    width: 48px !important;
    height: 48px !important;
    background-color: #110F0C !important; /* Premium dark background token */
    border-radius: 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px !important;
    color: #E08A43 !important; /* Golden amber icon color base */
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Dynamic Inline SVG Vector Overrides --- */
.kstar-feature-icon-box svg {
    width: 22px !important;
    height: 22px !important;
    display: block;
}

/* Forces all vector sub-paths to follow the parent's current color tokens */
.kstar-feature-icon-box svg path,
.kstar-feature-icon-box svg circle,
.kstar-feature-icon-box svg rect,
.kstar-feature-icon-box svg polyline,
.kstar-feature-icon-box svg line {
    stroke: currentColor !important; /* Use this if your icons are stroke lines */
    /* fill: currentColor !important; */ /* Swap with this instead if your SVGs are filled shapes */
}

/* --- Structural Typographics --- */
.kstar-feature-title {
    font-family: 'Fraunces', serif !important;
    font-size: 26px !important;
    font-weight: 500 !important;
    color: #111111 !important;
    margin-bottom: 16px !important;
    letter-spacing: -0.01em !important;
}

.kstar-feature-desc {
    font-family: "Plus Jakarta Sans", "Inter", ui-sans-serif, system-ui, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
    color: #555555 !important;
}

/* --- Active & Hover Color Mechanics --- */
/* Target elements that are active by default, or explicitly hovered by cursor */
.kstar-feature-card.is-active,
.kstar-features-grid:hover .kstar-feature-card:hover {
    background-color: #EEDFCB !important; /* Warm sandy highlight background */
}

.kstar-feature-card.is-active .kstar-feature-icon-box,
.kstar-features-grid:hover .kstar-feature-card:hover .kstar-feature-icon-box {
    background-color: #E08A43 !important; /* Core background swaps to amber */
    color: #110F0C !important;             /* Inner path stroke color turns black */
}

/* --- Hover Reset Rule Controllers --- */
/* Ensures default states remain balanced and clean when surrounding items expand */
.kstar-features-grid:hover .kstar-feature-card:not(:hover) {
    background-color: #ffffff !important;
}
.kstar-features-grid:hover .kstar-feature-card:not(:hover) .kstar-feature-icon-box {
    background-color: #110F0C !important;
    color: #E08A43 !important;
}
.kstar-features-grid:hover .kstar-feature-card.is-active:not(:hover) {
    background-color: #ffffff !important;
}
.kstar-features-grid:hover .kstar-feature-card.is-active:not(:hover) .kstar-feature-icon-box {
    background-color: #110F0C !important;
    color: #E08A43 !important;
}

/* --- Device Breakpoint Responsiveness --- */
@media (max-width: 1024px) {
    .kstar-features-grid {
        grid-template-columns: 1fr;
        border-radius: 24px !important;
    }
    .kstar-feature-card {
        padding: 40px 32px !important;
    }
    /* Rotate divider lines from vertical columns into horizontal rows */
    .kstar-feature-card:not(:last-child)::after {
        width: 100%;
        height: 1px;
        top: auto;
        bottom: 0;
        left: 0;
    }
}

@media (max-width: 640px) {
    .kstar-features-section {
        padding: 60px 16px !important;
    }
    .kstar-feature-title {
        font-size: 22px !important;
    }
}




/* Exam Seciton*/


/* --- Core Section Structure Canvas --- */
.kstar-pathways-section {
    background-color: #FAF6F0 !important; /* Matches exactly the warm linen backdrop */
    padding: 100px 24px !important;
    box-sizing: border-box;
}

.kstar-pathways-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.kstar-pathways-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto !important;
}

/* --- Upper Grid Splitting Layer Engine --- */
.kstar-pathways-header {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
    align-items: end;
    margin-bottom: 56px !important;
}

.kstar-pathways-header-left {
    grid-column: span 7;
}

.kstar-pathways-header-right {
    grid-column: span 5;
    padding-bottom: 6px; /* Balances text alignment layout alignment with title baseline */
}

/* --- Left Side Typography Rules --- */
.kstar-main-badge {
    display: inline-block;
    font-family: "Plus Jakarta Sans", "Inter", sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.18em !important;
    color: #C07D4E !important; /* Dynamic rich amber brown */
    margin-bottom: 14px !important;
}

.kstar-main-title {
    font-family: 'Fraunces', serif !important;
    font-size: 52px !important;
    font-weight: 500 !important;
    line-height: 1.15 !important;
    color: #111111 !important;
    letter-spacing: -0.015em !important;
}

/* --- Right Side Typography Rules --- */
.kstar-header-intro-text {
    font-family: "Plus Jakarta Sans", "Inter", sans-serif !important;
    font-size: 17px !important;
    line-height: 1.65 !important;
    color: #4A4A4A !important;
}

/* --- Responsive Matrix Layout Grid Configuration --- */
.kstar-pathways-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* --- Pathway White Card Blueprint --- */
.kstar-pathway-card {
    background-color: #ffffff !important;
    border: 1px solid #E6DFD3 !important; /* Subtle canvas blended outer frame edge line */
    border-radius: 28px !important;
    padding: 56px 48px !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    box-shadow: 0px 4px 20px rgba(17, 15, 12, 0.01);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

.kstar-pathway-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 12px 32px rgba(17, 15, 12, 0.03);
}

/* --- Top Flex Row Elements --- */
.kstar-card-meta-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px !important;
}

.kstar-card-number {
    font-family: 'Fraunces', serif !important;
    font-size: 64px !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    color: #EEDFCB !important; /* Specialized warm amber gradient tone accentuation code */
}

.kstar-card-inline-badge {
    font-family: "Plus Jakarta Sans", "Inter", sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #555555 !important;
    border: 1px solid #E6DFD3 !important;
    padding: 6px 14px !important;
    border-radius: 100px !important;
    background-color: #FAF6F0 !important;
}

/* --- Card Content Blocks Typographics --- */
.kstar-card-title {
    font-family: 'Fraunces', serif !important;
    font-size: 32px !important;
    font-weight: 500 !important;
    color: #111111 !important;
    margin-bottom: 16px !important;
}

.kstar-card-desc {
    font-family: "Plus Jakarta Sans", "Inter", sans-serif !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
    color: #555555 !important;
    margin-bottom: 40px !important;
    flex-grow: 1; /* Content pushes CTA cleanly down onto baseline */
}

/* --- Link Action Footers Vector Systems --- */
.kstar-card-action-link {
    font-family: "Plus Jakarta Sans", "Inter", sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #111111 !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.kstar-arrow-vector {
    font-size: 16px;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.kstar-card-action-link:hover {
    color: #C07D4E !important;
}

.kstar-card-action-link:hover .kstar-arrow-vector {
    transform: translate(2px, -2px);
}

/* --- Responsive Media Viewport Breakpoints --- */
@media (max-width: 1024px) {
    .kstar-pathways-header {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px !important;
    }
    .kstar-pathways-header-left,
    .kstar-pathways-header-right {
        grid-column: span 1fr;
        width: 100%;
    }
    .kstar-main-title {
        font-size: 40px !important;
    }
    .kstar-pathways-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .kstar-pathway-card {
        padding: 40px 32px !important;
    }
}

@media (max-width: 640px) {
    .kstar-pathways-section {
        padding: 60px 16px !important;
    }
    .kstar-main-title {
        font-size: 32px !important;
    }
    .kstar-card-title {
        font-size: 26px !important;
    }
}




/* WHy k star*/

/* --- Deep Dark Canvas Architecture --- */
.kstar-dark-section {
    background-color: #14110E !important; /* Premium rich obsidian brown matching image_871d1b.png */
    padding: 120px 24px !important;
    box-sizing: border-box;
    overflow: hidden;
}

.kstar-dark-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.kstar-dark-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto !important;
    padding: 0px 0px !important;
}

/* --- Split Screen Engine Grid --- */
.kstar-dark-split-layout {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 64px;
    align-items: center;
}

.kstar-dark-left-col {
    grid-column: span 5;
}

.kstar-dark-right-col {
    grid-column: span 7;
}

/* --- Left Column Typography & Elements --- */
.kstar-dark-badge {
    display: inline-block;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.18em !important;
    color: #E29452 !important; /* Vivid warm amber accent */
    margin-bottom: 24px !important;
}

.kstar-dark-title {
    font-family: 'Fraunces', serif !important;
    font-size: 46px !important;
    font-weight: 400 !important;
    line-height: 1.18 !important;
    color: #FFFFFF !important;
    letter-spacing: -0.015em !important;
    margin-bottom: 40px !important;
}

/* Solid amber premium action button */
.kstar-dark-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #E29452 !important;
    color: #14110E !important;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 16px 32px !important;
    border-radius: 100px !important;
    text-decoration: none !important;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.kstar-dark-btn:hover {
    background-color: #F0A564 !important;
    transform: translateY(-2px);
}

.kstar-btn-arrow {
    font-size: 16px;
    font-weight: 700;
}

/* --- Right Column 2x2 Unified Matrix --- */
.kstar-dark-grid-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid rgba(230, 223, 211, 0.12) !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    background-color: #1A1612 !important; /* Subtle inner highlight card depth color */
}

/* --- Internal Crosshair Divider Grid Lines Mechanics --- */
.kstar-dark-grid-cell {
    padding: 48px 40px !important;
    border-bottom: 1px solid rgba(230, 223, 211, 0.12) !important;
}

/* Vertical crosshair split line line targeting */
.kstar-dark-grid-cell:nth-child(odd) {
    border-right: 1px solid rgba(230, 223, 211, 0.12) !important;
}

/* Clean finish to eliminate outermost bottom borders */
.kstar-dark-grid-cell:nth-child(3),
.kstar-dark-grid-cell:nth-child(4) {
    border-bottom: none !important;
}

/* --- Grid Content Blocks --- */
.kstar-cell-icon {
    color: #E29452 !important;
    margin-bottom: 24px !important;
    display: block;
}

.kstar-cell-icon svg {
    width: 24px !important;
    height: 24px !important;
    display: block;
}

/* Dynamic color configuration targeting inline paths */
.kstar-cell-icon svg path,
.kstar-cell-icon svg circle,
.kstar-cell-icon svg line {
    stroke: currentColor !important;
}

.kstar-cell-title {
    font-family: 'Fraunces', serif !important;
    font-size: 22px !important;
    font-weight: 500 !important;
    color: #FFFFFF !important;
    margin-bottom: 14px !important;
}

.kstar-cell-desc {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #A49F99 !important; /* Blended warm grey copy */
}

/* --- Fully Responsive Viewport Breakpoints --- */
@media (max-width: 1140px) {
    .kstar-dark-split-layout {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .kstar-dark-left-col,
    .kstar-dark-right-col {
        grid-column: span 1fr;
        width: 100%;
    }
    .kstar-dark-title {
        font-size: 38px !important;
    }
}

@media (max-width: 640px) {
    .kstar-dark-section {
        padding: 80px 16px !important;
    }
    .kstar-dark-grid-box {
        grid-template-columns: 1fr;
    }
    /* Realign crosshair lines to match single-column stacking rules */
    .kstar-dark-grid-cell {
        border-right: none !important;
        border-bottom: 1px solid rgba(230, 223, 211, 0.12) !important;
        padding: 36px 28px !important;
    }
    .kstar-dark-grid-cell:last-child {
        border-bottom: none !important;
    }
    .kstar-dark-title {
        font-size: 32px !important;
    }
}



/* HOW IT WORK*/


/* --- Canvas Architecture Layout --- */
.kstar-steps-section {
    background-color: #FAF6F0 !important; /* Premium light warm linen base color */
    padding: 120px 24px !important;
    box-sizing: border-box;
    overflow: hidden;
}

.kstar-steps-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.kstar-steps-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto !important;
}

/* --- Upper Headings Elements --- */
.kstar-steps-header {
    max-width: 700px;
    margin-bottom: 72px !important;
}

.kstar-steps-badge-text {
    display: inline-block;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.18em !important;
    color: #C07D4E !important; /* Warm rich orange amber */
    margin-bottom: 20px !important;
}

.kstar-steps-main-heading {
    font-family: 'Fraunces', serif !important;
    font-size: 50px !important;
    font-weight: 500 !important;
    line-height: 1.16 !important;
    color: #1A1612 !important;
    letter-spacing: -0.02em !important;
}

/* --- Horizontal Connecting Line Track Engine --- */
.kstar-steps-timeline-container {
    position: relative;
    width: 100%;
}

/* Draws the subtle horizontal connecting vector across the screen layout width */
.kstar-steps-timeline-container::before {
    content: "";
    position: absolute;
    top: 27px; /* Positioned perfectly aligned to vertical center of 54px circles */
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #E6DFD3 !important; /* Blended border separation token line */
    z-index: 1;
}

/* --- Process Grid Systems Matrix --- */
.kstar-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
    position: relative;
    z-index: 2; /* Sits over the timeline tracking vector line pseudo-element */
}

.kstar-step-node-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* --- Circular Numerical Badging Architecture --- */
.kstar-step-number-circle {
    width: 54px !important;
    height: 54px !important;
    border-radius: 50% !important;
    background-color: #ffffff !important; /* Matches background canvas color exactly to break/mask the background bar line */
    border: 1px solid #E6DFD3 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px !important;
}

.kstar-step-number-circle span {
    font-family: 'Fraunces', serif !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    color: #1A1612 !important;
}

/* --- Content Typographics --- */
.kstar-step-node-title {
    font-family: 'Fraunces', serif !important;
    font-size: 24px !important;
    font-weight: 500 !important;
    color: #1A1612 !important;
    margin-bottom: 16px !important;
    letter-spacing: -0.01em !important;
}

.kstar-step-node-desc {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
    color: #5A544E !important; /* Muted corporate content color copy text */
}

/* --- High-Fidelity Fluid Responsive Breakpoints --- */
@media (max-width: 900px) {
    .kstar-steps-main-heading {
        font-size: 38px !important;
    }
    .kstar-steps-grid {
        gap: 32px;
    }
    .kstar-step-node-title {
        font-size: 21px !important;
    }
}

@media (max-width: 768px) {
    /* Hide the desktop horizontal track line vector element */
    .kstar-steps-timeline-container::before {
        display: none;
    }
    
    .kstar-steps-header {
        margin-bottom: 48px !important;
    }

    /* Transform columns to step rows vertically stack system */
    .kstar-steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Create a beautiful vertical line down the left edge running behind the nodes */
    .kstar-steps-grid::before {
        content: "";
        position: absolute;
        top: 0;
        left: 27px; /* Targets vertical running alignments at horizontal center of circles */
        width: 1px;
        height: 100%;
        background-color: #E6DFD3 !important;
        z-index: -1;
        display: none;
    }

    .kstar-step-node-item {
        flex-direction: column;
        gap: 0px;
        align-items: flex-start;
    }

    .kstar-step-number-circle {
        margin-bottom: 0 !important;
        flex-shrink: 0 !important;
    }
    
    .kstar-step-node-title {
        margin-top: 10px !important;
    }
}

@media (max-width: 480px) {
    .kstar-steps-section {
        padding: 80px 16px !important;
    }
    .kstar-steps-main-heading {
        font-size: 32px !important;
    }
}


/* Counter Seciton*/


/* --- Canvas Layout Structure --- */
.kstar-stats-section {
    background-color: #fce4c4
 !important; /* Elegant warm light linen base background color */
    padding: 80px 24px !important;
    box-sizing: border-box;
}

.kstar-stats-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.kstar-stats-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto !important;
}

/* --- Inline Column Grid System --- */
.kstar-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
}

/* --- Vertical Separator Line Layout --- */
.kstar-stats-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-left: 1px solid #DCD5C9 !important; /* Precise color value for the warm divider lines */
    padding-left: 32px !important;
    min-height: 110px; /* Ensures lines match the full visual height of numerical content */
}

/* --- Typography Configurations --- */
.kstar-stats-counter-wrap {
    display: flex;
    align-items: baseline;
    font-family: 'Fraunces', serif !important;
    line-height: 1 !important;
    margin-bottom: 12px !important;
}

.kstar-stats-number {
    font-size: 64px !important;
    font-weight: 400 !important;
    color: #1A1612 !important; /* Deep warm charcoal gray text color */
    letter-spacing: -0.02em !important;
}

.kstar-stats-suffix {
    font-size: 44px !important; /* Suffix sits slightly smaller on baseline alignment */
    font-weight: 400 !important;
    color: #C07D4E !important; /* Rich amber orange tone matching theme system */
    margin-left: 2px !important;
}

.kstar-stats-label {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    color: #5A544E !important; /* Muted primary copy color */
}

/* --- Fluid Responsive Adaptations --- */
@media (max-width: 1024px) {
    .kstar-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 32px;
    }
    .kstar-stats-number {
        font-size: 56px !important;
    }
    .kstar-stats-suffix {
        font-size: 38px !important;
    }
}

@media (max-width: 600px) {
    .kstar-stats-section {
        padding: 60px 16px !important;
    }
    .kstar-stats-grid {
        
        gap: 36px;
    }
    .kstar-stats-item {
        min-height: auto;
        padding-left: 20px !important; /* Compresses indentation safely on small panels */
    }
    .kstar-stats-number {
        font-size: 48px !important;
    }
    .kstar-stats-suffix {
        font-size: 32px !important;
    }
}


/* Review Seciton*/

/* --- Canvas Configuration Base --- */
.kstar-revhead-section {
    background-color: #fcf7ef
 !important; /* Authentic warm linen background canvas */
    padding: 64px 24px !important;
    box-sizing: border-box;
}

.kstar-revhead-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.kstar-revhead-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto !important;
}

/* --- Split Matrix Flex Alignment --- */
.kstar-revhead-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Snaps the link directly onto the title's baseline */
    gap: 40px;
    width: 100%;
}

.kstar-revhead-left {
    max-width: 780px; /* Prevents long heading strings from crowding the action link */
}

/* --- Left Side Twin Title Typography --- */
.kstar-revhead-badge {
    display: inline-block;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.18em !important;
    color: #C07D4E !important; /* signature rich amber brown tone */
    margin-bottom: 16px !important;
}

.kstar-revhead-title {
    font-family: 'Fraunces', serif !important;
    font-size: 48px !important;
    font-weight: 500 !important;
    line-height: 1.15 !important;
    color: #1A1612 !important;
    letter-spacing: -0.015em !important;
}

/* --- Right Side Action Vector Link --- */
.kstar-revhead-right {
    flex-shrink: 0;
    padding-bottom: 8px; /* Micro-adjustment alignment with standard serif baselines */
}

.kstar-revhead-link {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #1A1612 !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.kstar-revhead-arrow {
    font-size: 15px;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Animation Hover States --- */
.kstar-revhead-link:hover {
    color: #C07D4E !important;
}

.kstar-revhead-link:hover .kstar-revhead-arrow {
    transform: translate(2px, -2px);
}

/* --- Fluid Responsive Viewport Breakpoints --- */
@media (max-width: 768px) {
    .kstar-revhead-split {
        flex-direction: column;
        align-items: flex-start; /* Clean stack format on small panels */
        gap: 24px;
    }
    
    .kstar-revhead-right {
        padding-bottom: 0;
    }
    
    .kstar-revhead-title {
        font-size: 36px !important;
    }
}

@media (max-width: 480px) {
    .kstar-revhead-section {
        padding: 48px 16px !important;
    }
    
    .kstar-revhead-title {
        font-size: 30px !important;
    }
}




/* Team Seciton*/

/* --- Canvas Architecture Layout --- */
.kstar-tutors-section {
    background-color: #fdfdfd
 !important; /* Premium light warm linen base color */
    padding: 120px 24px !important;
    box-sizing: border-box;
    overflow: hidden;
}

.kstar-tutors-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.kstar-tutors-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto !important;
}

/* --- Upper Headings Elements --- */
.kstar-tutors-header {
    margin-bottom: 56px !important;
}

.kstar-tutors-badge-text {
    display: inline-block;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.18em !important;
    color: #C07D4E !important; /* Warm rich orange amber */
    margin-bottom: 16px !important;
}

.kstar-tutors-main-heading {
    font-family: 'Fraunces', serif !important;
    font-size: 48px !important;
    font-weight: 500 !important;
    line-height: 1.16 !important;
    color: #1A1612 !important;
    letter-spacing: -0.015em !important;
}

/* --- Profile Cards Grid Columns Architecture --- */
.kstar-tutors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
}

.kstar-tutor-card {
    background-color: #FAF6F0 !important;
    border: 1px solid #E6DFD3 !important; /* Subtle framing line outline card wrapper */
    border-radius: 24px !important;
    overflow: hidden !important;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

.kstar-tutor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 22, 18, 0.04);
}

/* --- Profile Photo Engine --- */
.kstar-tutor-img-wrap {
    width: 100%;
    position: relative;
    aspect-ratio: 1 / 1.05 !important; /* Elegant vertical photo framing */
    overflow: hidden;
    background-color: #E6DFD3;
}

.kstar-tutor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center top !important;
    display: block;
}

.kstar-tutor-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #EADFC9 0%, #DCD5C9 100%);
}

/* --- Info Details Meta Content Layout --- */
.kstar-tutor-meta-box {
    padding: 32px !important;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.kstar-tutor-name {
    font-family: 'Fraunces', serif !important;
    font-size: 24px !important;
    font-weight: 500 !important;
    color: #1A1612 !important;
    margin-bottom: 8px !important;
    letter-spacing: -0.01em !important;
}

.kstar-tutor-role {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    color: #6E6861 !important; /* Soft brown muted secondary typography */
    margin-bottom: 24px !important;
}

/* --- Badges Pill Tags Cluster --- */
.kstar-tutor-tags-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto; /* Keeps tags locked cleanly onto bottom border regardless of title line count */
}

.kstar-tutor-pill {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #5A544E !important;
    background-color: #FFFFFF !important; /* Clean standalone white tag fill */
    border: 1px solid #E6DFD3 !important;
    padding: 6px 14px !important;
    border-radius: 100px !important;
    white-space: nowrap;
}

/* --- High-Fidelity Responsive Grid Viewports Breakpoints --- */
@media (max-width: 1024px) {
    .kstar-tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .kstar-tutors-main-heading {
        font-size: 38px !important;
    }
}

@media (max-width: 680px) {
    .kstar-tutors-section {
        padding: 80px 16px !important;
    }
    .kstar-tutors-header {
        margin-bottom: 40px !important;
    }
    .kstar-tutors-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .kstar-tutor-meta-box {
        padding: 24px !important;
    }
    .kstar-tutors-main-heading {
        font-size: 32px !important;
    }
}



/* Contat Us*/

/* --- Master Layout Wrapper Architecture --- */
.kstar-book-section {
    background-color: #FAF6F0 !important; /* Premium light warm linen base color */
    padding: 100px 24px !important;
    box-sizing: border-box;
}

.kstar-book-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.kstar-book-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto !important;
}

/* --- Split Panel Matrix Card Container --- */
.kstar-book-card {
    display: flex;
    background-color: #FFFFFF !important;
    border: 1px solid #E6DFD3 !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 48px rgba(26, 22, 18, 0.03);
    min-height: 580px;
}

/* --- Left Column Panel Styling Structure --- */
.kstar-book-left-panel {
    background-color: #161310 !important; /* Rich deep signature charcoal brown */
    color: #FFFFFF !important;
    width: 44%;
    padding: 64px 56px !important;
    display: flex;
    flex-direction: column;
    
    gap: 48px;
}

.kstar-book-badge {
    display: inline-block;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.18em !important;
    color: #C07D4E !important; /* Elegant signature rich amber gold */
    margin-bottom: 20px !important;
}

.kstar-book-title {
    font-family: 'Fraunces', serif !important;
    font-size: 42px !important;
    font-weight: 400 !important;
    line-height: 1.18 !important;
    color: #FFFFFF !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 20px !important;
}

.kstar-book-desc {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
    color: #C5BDB3 !important; /* Calibrated high contrast text optimization value */
    max-width: 380px;
}

/* --- Contact Channels SVG Lists Panel --- */
.kstar-book-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.kstar-book-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #FFFFFF !important;
}

.kstar-book-icon {
    width: 18px;
    height: 18px;
    color: #C07D4E !important; /* Locks vectors icons with core brand accent color */
    flex-shrink: 0;
}

/* --- Right Column Panel (Shortcode Render Area) --- */
.kstar-book-right-panel {
    width: 56%;
    padding: 64px 56px !important;
    background-color: #FFFFFF !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- Fallback Design Block Layout --- */
.kstar-book-form-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 2px dashed #E6DFD3 !important;
    border-radius: 16px !important;
    background-color: #FAF6F0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px !important;
    text-align: center;
}

.kstar-placeholder-title {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #161310 !important;
    margin-bottom: 8px !important;
}

.kstar-placeholder-subtext {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #8A8175 !important;
    max-width: 400px;
}

/* --- High Fidelity Fluid Grid Layout Adaptations --- */
@media (max-width: 1024px) {
    .kstar-book-card {
        flex-direction: column;
    }
    .kstar-book-left-panel {
        width: 100%;
        padding: 48px !important;
        gap: 36px;
    }
    .kstar-book-right-panel {
        width: 100%;
        padding: 48px !important;
    }
    .kstar-book-title {
        font-size: 36px !important;
    }
}

@media (max-width: 600px) {
    .kstar-book-section {
        padding: 60px 16px !important;
    }
    .kstar-book-card {
        border-radius: 20px !important;
    }
    .kstar-book-left-panel, 
    .kstar-book-right-panel {
        padding: 36px 24px !important;
    }
    .kstar-book-title {
        font-size: 30px !important;
    }
}
.btn-primary svg,
.kstar-card-action-link svg,
.kstar-dark-btn svg,
.kstar-revhead-link svg,
.kstar-faq-browse-link svg {
        margin-left: 0x !important;
        width: 20px;
        height: 20px;
        stroke-width: 2.5;
    }

/* FAQ */

/* --- Canvas & Section Foundation --- */
.kstar-faq-section {
    background-color: #FAF6F0 !important; /* Premium light warm linen base color */
    padding: 120px 24px !important;
    box-sizing: border-box;
}

.kstar-faq-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.kstar-faq-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto !important;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

/* --- Left Branding Column Panel Typography --- */
.kstar-faq-left-col {
    width: 32%;
    position: sticky;
    top: 40px; /* Locks dynamically during side text reads */
}

.kstar-faq-badge {
    display: inline-block;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.18em !important;
    color: #C07D4E !important; /* Elegant signature rich amber gold */
    margin-bottom: 16px !important;
}

.kstar-faq-heading {
    font-family: 'Fraunces', serif !important;
    font-size: 48px !important;
    font-weight: 500 !important;
    line-height: 1.15 !important;
    color: #1A1612 !important;
    letter-spacing: -0.015em !important;
    margin-bottom: 24px !important;
}

.kstar-faq-browse-link {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1A1612 !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.kstar-faq-link-arrow {
    font-size: 14px;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.kstar-faq-browse-link:hover {
    color: #C07D4E !important;
}

.kstar-faq-browse-link:hover .kstar-faq-link-arrow {
    transform: translate(2px, -2px);
}

/* --- Right Column Layout Architecture --- */
.kstar-faq-right-col {
    width: 63%;
}

.kstar-faq-accordion-group {
    border-top: 1px solid #E6DFD3 !important; /* Top perimeter capping rule boundary line */
    width: 100%;
}

/* --- Individual Node Elements --- */
.kstar-faq-item {
    border-bottom: 1px solid #E6DFD3 !important; /* Section splits dividers line paths */
    background: transparent;
}

.kstar-faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none !important;
    border: none !important;
    padding: 30px 0 !important;
    cursor: pointer;
    text-align: left;
    outline: none;
    gap: 24px;
}

.kstar-faq-question {
    font-family: 'Fraunces', serif !important;
    font-size: 22px !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;
    color: #1A1612 !important;
    transition: color 0.25s ease;
}

/* --- Vector Icons Systems --- */
.kstar-faq-icon {
    width: 18px;
    height: 18px;
    color: #1A1612 !important;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.25s ease;
}

.kstar-faq-icon svg {
    width: 100%;
    height: 100%;
}

/* --- Dynamic Interactivity Hover Rules --- */
.kstar-faq-trigger:hover .kstar-faq-question {
    color: #C07D4E !important;
}

.kstar-faq-trigger:hover .kstar-faq-icon {
    color: #C07D4E !important;
    transform: translate(2px, -2px);
}

/* --- Smooth Animation Height Expansion Engine --- */
.kstar-faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

.kstar-faq-item.is-open .kstar-faq-panel {
    grid-template-rows: 1fr;
    padding-bottom: 20px;
}

.kstar-faq-content {
    min-height: 0;
}

.kstar-faq-item.is-expanded .kstar-faq-content{
    padding-bottom: 20px;
}

.kstar-faq-content p {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: #5A544E !important; /* Soft brown muted readable secondary body copy text */
    padding-bottom: 30px !important;
    max-width: 680px;
}

/* --- High-Fidelity Fluid Breakpoints Adaptations --- */
@media (max-width: 960px) {
    .kstar-faq-container {
        flex-direction: column;
        gap: 48px;
    }
    .kstar-faq-left-col {
        width: 100%;
        position: relative;
        top: 0;
    }
    .kstar-faq-right-col {
        width: 100%;
    }
    .kstar-faq-heading {
        font-size: 38px !important;
        margin-bottom: 16px !important;
    }
}

@media (max-width: 600px) {
    .kstar-faq-section {
        padding: 80px 16px !important;
    }
    .kstar-faq-trigger {
        padding: 24px 0 !important;
    }
    .kstar-faq-question {
        font-size: 18px !important;
    }
    .kstar-faq-content p {
        font-size: 14px !important;
        padding-bottom: 24px !important;
    }
}








/* PAGE CHANGED*/

/* --- Global Architectural Base & Resets --- */
.kstar-tutoring-canvas {
    background-color: #FAF6F0 !important; /* Authentic soft premium linen canvas warm tone */
    color: #1A1612 !important;
    padding: 100px 24px !important;
    box-sizing: border-box;
    width: 100%;
}

.kstar-tutoring-canvas * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.kstar-tutoring-wrapper {
    max-width: 1240px;
    margin: 0 auto !important;
    width: 100%;
}

/* --- Hero Frame Metrics Layout (image_52f80e.png) --- */
.kstar-tutoring-hero {
    margin-bottom: 80px !important;
    max-width: 900px;
}

.kstar-breadcrumbs {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #5A544E !important;
    margin-bottom: 40px !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.kstar-breadcrumbs a {
    color: #5A544E !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.kstar-breadcrumbs a:hover {
    color: #C07D4E !important;
}

.kstar-breadcrumb-separator {
    color: #C5BDB3 !important;
}

.kstar-breadcrumb-current {
    color: #1A1612 !important;
}

.kstar-hero-badge {
    display: inline-block;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.18em !important;
    color: #C07D4E !important; /* Identity upper accent orange */
    margin-bottom: 24px !important;
}

.kstar-hero-title {
    font-family: 'Fraunces', serif !important;
    font-size: 64px !important;
    font-weight: 400 !important;
    line-height: 1.12 !important;
    color: #1A1612 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 32px !important;
}

.kstar-accent-text {
    font-family: 'Fraunces', serif !important;
    font-style: italic !important;
    color: #C07D4E !important; /* Italicized emphasis text highlight style */
}

.kstar-hero-desc {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: #5A544E !important;
    max-width: 740px;
}

/* --- Program Directory Structural Matrix Layout (image_52f7ce.png) --- */
.kstar-programs-directory {
    width: 100%;
}

.kstar-programs-grid {
    border-top: 1px solid #E6DFD3 !important; /* Top perimeter divider boundary link path */
}

.kstar-program-row {
    display: grid;
    grid-template-columns: 1.3fr 1.5fr 1fr;
    gap: 48px;
    padding: 56px 0 !important;
    border-bottom: 1px solid #E6DFD3 !important; /* Section splits dividers line paths */
    align-items: flex-start;
}

/* --- Column 1 Layout Systems --- */
.kstar-program-meta-col {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.kstar-program-index {
    font-family: 'Fraunces', serif !important;
    font-style: italic !important;
    font-size: 40px !important;
    font-weight: 400 !important;
    line-height: 0.8 !important;
    color: #EADFC9 !important; /* Light amber/beige numerical designation tracking node */
}

.kstar-program-identity {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kstar-program-title {
    font-family: 'Fraunces', serif !important;
    font-size: 32px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    color: #1A1612 !important;
    letter-spacing: -0.01em !important;
}

.kstar-program-subtitle {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    color: #8A8175 !important;
}

/* --- Column 2 Layout Systems --- */
.kstar-program-desc-col p {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: #5A544E !important;
    max-width: 440px;
}

/* --- Column 3 Layout Systems --- */
.kstar-program-features-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kstar-program-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none !important;
}

.kstar-program-bullets li {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 14.5px !important;
    font-weight: 500 !important;
    color: #1A1612 !important;
    position: relative;
    padding-left: 16px !important;
}

/* Elegant Vector Alignment Dots */
.kstar-program-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #C07D4E !important;
    font-size: 16px;
    line-height: 1;
}

.kstar-program-link {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1A1612 !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px !important;
    transition: color 0.2s ease;
    align-self: flex-start;
}

.kstar-link-arrow {
    font-size: 13px;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.kstar-program-link:hover {
    color: #C07D4E !important;
}

.kstar-program-link:hover .kstar-link-arrow {
    transform: translate(2px, -2px);
}

/* ================= FLUID BREAKPOINT RESPONSIVENESS ADAPTATIONS ================= */
@media (max-width: 1024px) {
    .kstar-program-row {
        grid-template-columns: 1.2fr 1.3fr 1fr;
        gap: 32px;
    }
    .kstar-hero-title {
        font-size: 52px !important;
    }
}

@media (max-width: 960px) {
    .kstar-tutoring-canvas {
        padding: 80px 24px !important;
    }
    .kstar-program-row {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 44px 0 !important;
    }
    .kstar-program-desc-col p {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .kstar-tutoring-canvas {
        padding: 60px 16px !important;
    }
    .kstar-hero-title {
        font-size: 38px !important;
        margin-bottom: 20px !important;
    }
    .kstar-hero-desc {
        font-size: 16px !important;
    }
    .kstar-program-title {
        font-size: 26px !important;
    }
    .kstar-program-index {
        font-size: 32px !important;
    }
}


/* ==========================================================================
   YOUTUBE SHOWCASE COMPONENT CSS
   ========================================================================== */
.kstar-yt-section {
    width: 100%;
    background-color: #f7ede2; /* Warm soft linen background canvas color */
    padding: 100px 20px;
    box-sizing: border-box !important;
}

.kstar-yt-container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box !important;
}

/* Header Alignment Matrix Row Flex layout */
.kstar-yt-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    width: 100%;
    box-sizing: border-box !important;
}

.kstar-yt-titles-group {
    max-width: 680px;
}

.kstar-yt-section-overline {
    font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #c47b3a; /* Earthy organic bronze tone */
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.kstar-yt-section-overline svg {
    width: 13px;
    height: 13px;
}

.kstar-yt-main-title {
    font-family: "Fraunces", Georgia, serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.15;
    color: #111111;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.kstar-yt-italic-title {
    font-style: italic;
    font-weight: 400;
}

.kstar-yt-main-desc {
    font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #555555;
    margin: 0;
}

/* Global Navigation Action Button Channel Button */
.kstar-yt-channel-btn {
    font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #111111;
    text-decoration: none;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 12px 24px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.kstar-yt-channel-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.kstar-yt-channel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.kstar-yt-channel-btn:hover svg {
    transform: translate(1px, -1px);
}

/* Three-Column Fluid Grid Framework Matrix */
.kstar-yt-grid-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    box-sizing: border-box !important;
}

/* Card Block Modules Custom Properties rules */
.kstar-yt-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box !important;
    transition: transform 0.3s ease;
}

.kstar-yt-card:hover {
    transform: translateY(-4px);
}

/* Upper Zone: Media Window with 16:9 Aspect Ratio */
.kstar-yt-thumb-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    background-color: #000000;
    overflow: hidden;
}

.kstar-yt-bg-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.kstar-yt-card:hover .kstar-yt-bg-thumb {
    transform: scale(1.03);
}

/* Central Circular Glassmorphic Play Trigger controller overlay */
.kstar-yt-play-trigger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.kstar-yt-play-trigger svg {
    width: 16px;
    height: 16px;
    margin-left: 3px;
}

.kstar-yt-play-trigger:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #12225b;
    color: #ffffff;
}

/* Video Frame Overlay Clock label placement */
.kstar-yt-timestamp {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Lower Zone: Dynamic editorial text card wrapper space layout blocks */
.kstar-yt-content-wrapper {
    padding: 28px 30px 32px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    box-sizing: border-box !important;
}

.kstar-yt-card-badge {
    font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #c47b3a;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.kstar-yt-card-title {
    font-family: "Fraunces", Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    color: #111111;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

/* Micro Diagonal Arrow Typography Link element inline controls */
.kstar-yt-card-link {
    font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #444444;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: color 0.2s ease;
}

.kstar-yt-card-link svg {
    width: 13px;
    height: 13px;
    color: #666666;
    transition: transform 0.2s ease, color 0.2s ease;
}

.kstar-yt-card-link:hover {
    color: #12225b;
}

.kstar-yt-card-link:hover svg {
    transform: translate(1px, -1px);
    color: #12225b;
}

/* Responsive Engines */
@media (max-width: 1024px) {
    .kstar-yt-grid-matrix {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .kstar-yt-section {
        padding: 70px 16px;
    }
    .kstar-yt-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 40px;
    }
    .kstar-yt-main-title {
        font-size: 32px;
    }
    .kstar-yt-grid-matrix {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .kstar-yt-content-wrapper {
        padding: 24px 24px 28px 24px;
    }
}


.kstar-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    width: 100%;
    box-sizing: border-box !important;
    padding-top: 30px;
}

.kstar-review-card {
    background-color: #ffffff;
    border: 1px solid rgba(196, 123, 58, 0.15); /* Delicate warm tinted frame outline border */
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box !important;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kstar-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(196, 123, 58, 0.06);
}

/* Amber Quotation Graphic Asset Marker */
.kstar-review-quote-mark {
    font-family: "Fraunces", Georgia, serif;
    font-size: 64px;
    line-height: 1;
    color: #f3b26c; /* Soft amber orange quote tone from blueprint */
    font-weight: 700;
    height: 32px;
    margin-bottom: 4px;
    user-select: none;
    transform: scaleX(-1); /* Flips the glyph structure correctly */
    display: inline-block;
    width: max-content;
}

/* Card Body Narrative Block Settings */
.kstar-review-text {
    font-family: "Fraunces", Georgia, serif;
    font-size: 17px;
    line-height: 1.45;
    color: #222222;
    margin: 0 0 32px 0;
    flex-grow: 1; /* Aligns author block heights perfectly across cards */
}

/* Card Footer Component Metadata */
.kstar-review-meta {
    border-top: 1px solid #e8e8e8;
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kstar-review-author {
    font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #111111;
}

.kstar-review-role {
    font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
    font-size: 12px;
    color: #666666;
}

/* ==========================================================================
   RESPONSIVE ENGINES
   ========================================================================== */
@media (max-width: 1024px) {
    .kstar-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .kstar-revhead-section {
        padding: 70px 16px;
    }
    .kstar-revhead-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 36px;
    }
    .kstar-revhead-title {
        font-size: 32px;
    }
    .kstar-reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .kstar-review-card {
        padding: 28px 24px;
    }
}