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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        Arial,
        sans-serif;

    background: #f8fafc;
    color: #172033;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.navbar {
    height: 76px;
    background: #101a33;
    color: white;

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

    padding: 0 7%;
}

.logo {
    font-size: 25px;
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 14px;
    color: #dbe3f5;
}

.nav-links a:hover {
    color: white;
}

.menu-button {
    display: none;
    background: none;
    border: 0;
    color: white;
    font-size: 28px;
}


.hero {
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 80px 8%;

    background-image:
        linear-gradient(
            rgba(31, 45, 73, 0.65),
            rgba(10, 20, 40, 0.65)
        ),
        url("../images/hero-background.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 700px;
}

.hero-label,
.section-heading span,
.form-container > span {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #2563eb;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.08;
    margin: 18px 0;
}

.hero h1 span {
    color: #2563eb;
}

.hero p {
    max-width: 600px;
    font-size: 19px;
    color: #596579;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-top: 30px;
}

.primary-button,
.secondary-button,
.submit-button {
    display: inline-block;
    border-radius: 8px;
    padding: 14px 22px;
    font-weight: 700;
}

.primary-button,
.submit-button {
    background: #2563eb;
    color: white;
    border: 0;
}

.secondary-button {
    border: 1px solid #2563eb;
    color: #2563eb;
}


.services-section,
.enquiry-section,
.about-section,
.services-page {
    padding: 90px 8%;
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-heading h1,
.section-heading h2 {
    font-size: 42px;
    margin: 10px 0;
}

.section-heading p {
    color: #687386;
}


.service-grid {
    max-width: 1200px;
    margin: auto;

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

    gap: 25px;
}

.service-card {
    background: white;
    border-radius: 18px;
    padding: 32px;

    border: 1px solid #e5eaf2;

    box-shadow:
        0 12px 35px
        rgba(20, 30, 60, 0.06);

    transition: 0.25s;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #eef4ff;

    font-size: 24px;
    font-weight: 800;

    color: #2563eb;

    margin-bottom: 20px;
}

.violin .service-icon {
    background: #f4ecff;
    color: #7c3aed;
}

.design .service-icon {
    background: #fff3e8;
    color: #f97316;
}

.service-card h3 {
    font-size: 23px;
    margin-bottom: 12px;
}

.service-card p {
    color: #697386;
}

.service-card ul {
    list-style: none;
    margin: 20px 0;
}

.service-card li {
    margin: 8px 0;
}

.service-card li::before {
    content: "✓";
    color: #2563eb;
    font-weight: bold;
    margin-right: 8px;
}

.service-card a {
    color: #2563eb;
    font-weight: 700;
}


.benefits {
    background: #101a33;
    color: white;

    padding: 35px 8%;

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

    gap: 20px;
}

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

.benefits strong {
    font-size: 24px;
    color: #60a5fa;
}


.enquiry-section {
    background: #f1f5f9;
}

.enquiry-grid {
    max-width: 1100px;
    margin: auto;

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

    gap: 22px;
}

.enquiry-card {
    background: white;
    padding: 30px;
    border-radius: 16px;

    border: 1px solid #e3e8f0;

    transition: 0.25s;
}

.enquiry-card:hover {
    transform: translateY(-5px);
}

.enquiry-card span {
    color: #2563eb;
    font-weight: 800;
}

.enquiry-card h3 {
    margin: 12px 0;
    font-size: 21px;
}

.enquiry-card p {
    color: #697386;
}


.about-section {
    background: white;

    display: grid;
    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;
}

.about-section h2 {
    font-size: 42px;
    line-height: 1.15;
    margin: 15px 0;
}

.about-section p {
    color: #697386;
}

.feature-grid {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}

.feature-grid div {
    padding: 25px;
    border: 1px solid #e4e8ef;
    border-radius: 15px;
}

.feature-grid strong {
    font-size: 25px;
}


.form-page {
    min-height: calc(100vh - 76px);

    padding: 80px 20px;

    background: #eef5ff;
}

.violin-page {
    background: #f6efff;
}

.design-page {
    background: #fff5eb;
}

.form-container {
    max-width: 750px;
    margin: auto;

    background: white;

    padding: 45px;

    border-radius: 20px;

    box-shadow:
        0 20px 50px
        rgba(20, 30, 60, 0.08);
}

.form-container h1 {
    font-size: 40px;
    line-height: 1.15;
    margin: 12px 0;
}

.form-container > p {
    color: #697386;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 7px;
}

.form-control {
    width: 100%;

    padding: 13px 15px;

    border: 1px solid #d8dee8;
    border-radius: 8px;

    font: inherit;

    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #2563eb;
}

.form-row {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}

.checkbox-group ul {
    list-style: none;

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

    gap: 10px;
}

.checkbox-group li {
    display: flex;
    gap: 8px;
}

.errorlist {
    list-style: none;
    color: #dc2626;
    font-size: 13px;
    margin-top: 5px;
}

.submit-button {
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}


.messages {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 1000;
}

.message {
    background: #166534;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
}


footer {
    background: #101a33;
    color: white;
    padding: 60px 8% 25px;
}

.footer-content {
    display: grid;
    grid-template-columns:
        2fr 1fr;

    gap: 40px;
}

.footer-content h3 {
    font-size: 25px;
}

.footer-content h4 {
    margin-bottom: 12px;
}

.footer-content a {
    display: block;
    color: #cbd5e1;
    margin: 6px 0;
}

.footer-content p {
    color: #aebbd0;
}

.copyright {
    border-top: 1px solid #29344e;
    margin-top: 40px;
    padding-top: 20px;
    color: #94a3b8;
    text-align: center;
}


@media (max-width: 900px) {

    .nav-links {
        display: none;

        position: absolute;
        top: 76px;
        left: 0;
        right: 0;

        background: #101a33;

        flex-direction: column;
        align-items: stretch;

        padding: 20px 8%;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 10px 0;
    }

    .menu-button {
        display: block;
    }

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

    .benefits {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .about-section {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {

    .navbar {
        padding: 0 5%;
    }

    .hero {
        min-height: 600px;
        padding: 60px 6%;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 16px;
    }

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

    .primary-button,
    .secondary-button {
        text-align: center;
    }

    .section-heading h1,
    .section-heading h2,
    .about-section h2 {
        font-size: 32px;
    }

    .benefits {
        grid-template-columns: 1fr;
        padding: 30px 6%;
    }

    .form-container {
        padding: 28px 20px;
    }

    .form-container h1 {
        font-size: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .checkbox-group ul {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   MINIMAL ONE-PAGE PORTFOLIO
   No JavaScript required
   ========================================================= */

.portfolio {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 70px 20px;
    background: #f8fafc;
    overflow: hidden;
}

.portfolio-wrapper {
    width: min(1100px, 92%);
    margin: auto;

    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 80px;

    align-items: center;
}


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

.portfolio-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-ring {
    width: 320px;
    height: 320px;

    padding: 8px;

    border: 1px solid #d0d5dd;
    border-radius: 50%;

    background: #ffffff;

    transition: transform 0.4s ease;
}

.image-ring:hover {
    transform: scale(1.02);
}

.image-ring img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;
}


/* =========================================================
   CONTENT
   ========================================================= */

.portfolio-content {
    max-width: 700px;
}

.portfolio-label {
    display: inline-block;

    margin-bottom: 15px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #667085;
}

.portfolio-content h1 {
    margin: 0;

    font-size: clamp(3rem, 6vw, 5.5rem);

    line-height: 0.95;

    letter-spacing: -4px;

    color: #101828;
}

.portfolio-content h2 {
    margin: 25px 0 20px;

    font-size: clamp(1.1rem, 2vw, 1.5rem);

    font-weight: 500;

    line-height: 1.6;

    color: #344054;
}

.portfolio-content h2 span {
    color: #98a2b3;
    margin: 0 5px;
}

.portfolio-description {
    max-width: 620px;

    margin: 0 0 35px;

    font-size: 1rem;

    line-height: 1.8;

    color: #667085;
}


/* =========================================================
   SPECIALTIES
   ========================================================= */

.portfolio-services {
    display: grid;

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

    gap: 12px;

    margin-bottom: 30px;
}

.portfolio-services div {
    padding: 18px;

    background: #ffffff;

    border: 1px solid #eaecf0;

    border-radius: 10px;
}

.portfolio-services strong {
    display: block;

    margin-bottom: 6px;

    font-size: 14px;

    color: #101828;
}

.portfolio-services small {
    display: block;

    font-size: 12px;

    line-height: 1.5;

    color: #667085;
}


/* =========================================================
   BUTTON
   ========================================================= */

.portfolio-button {
    display: inline-block;

    padding: 13px 22px;

    background: #101828;

    color: #ffffff;

    border-radius: 7px;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.portfolio-button:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}


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

@media (max-width: 850px) {

    .portfolio {
        padding: 60px 20px;
    }

    .portfolio-wrapper {
        grid-template-columns: 1fr;

        gap: 45px;

        text-align: center;
    }

    .portfolio-image {
        order: 1;
    }

    .portfolio-content {
        order: 2;
        margin: auto;
    }

    .image-ring {
        width: 240px;
        height: 240px;
    }

    .portfolio-content h1 {
        letter-spacing: -2px;
    }

    .portfolio-services {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .portfolio-social {
        justify-content: center;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 450px) {

    .portfolio {
        padding: 45px 15px;
    }

    .image-ring {
        width: 190px;
        height: 190px;
    }

    .portfolio-content h1 {
        font-size: 2.8rem;
    }

    .portfolio-content h2 {
        font-size: 1rem;
    }

}
/* =====================================================
   HOME SERVICES
   ===================================================== */

.home-services {
    padding: 100px 20px;
    background: #f8fafc;
}


/* Heading */

.services-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.services-heading span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #6c55e8;
}

.services-heading h2 {
    margin: 12px 0;

    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;

    color: #101828;
}

.services-heading p {
    margin: 0;

    color: #667085;

    font-size: 1.05rem;
    line-height: 1.7;
}


/* Cards */

.service-grid {
    width: min(1200px, 92%);
    margin: auto;

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

    gap: 24px;
}


.service-card {
    position: relative;

    padding: 24px;
    padding-bottom: 35px;

    background: #ffffff;

    border: 1px solid #eaecf0;
    border-radius: 18px;

    text-align: center;

    box-shadow: 0 8px 30px rgba(16, 24, 40, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.service-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.10);
}


/* Images */

.service-image {
    width: 100%;
    height: 205px;

    overflow: hidden;

    border-radius: 13px;
}


.service-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}


.service-card:hover .service-image img {
    transform: scale(1.03);
}


/* Round icon */

.service-icon {
    position: relative;

    width: 68px;
    height: 68px;

    margin: -34px auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #6c55e8;

    border: 5px solid #ffffff;

    color: #ffffff;

    font-size: 24px;

    z-index: 2;
}


/* Title */

.service-card h3 {
    margin: 0 0 15px;

    font-size: 1.3rem;

    color: #101828;
}


/* Description */

.service-card p {
    max-width: 310px;

    margin: 0 auto 25px;

    color: #667085;

    line-height: 1.7;
}


/* List */

.service-card ul {
    margin: 0 0 30px;
    padding: 20px 0 0;

    border-top: 1px solid #eaecf0;

    list-style: none;

    text-align: left;
}


.service-card li {
    position: relative;

    margin-bottom: 13px;

    padding-left: 28px;

    color: #344054;

    font-size: 14px;
}


.service-card li::before {
    content: "✓";

    position: absolute;

    left: 0;

    width: 17px;
    height: 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #6c55e8;

    color: white;

    font-size: 10px;
}


/* Enquiry */

.service-card a {
    color: #6c55e8;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;
}


.service-card a:hover {
    text-decoration: underline;
}


/* Mobile */

@media (max-width: 900px) {

    .service-grid {
        grid-template-columns: 1fr;

        max-width: 550px;
    }

}


@media (max-width: 600px) {

    .home-services {
        padding: 70px 15px;
    }

    .service-image {
        height: 190px;
    }

}

/* =========================================================
   STUDENT DASHBOARD
   ========================================================= */

.student-navbar {
    min-height: 70px;
    background: #101a33;
    color: #ffffff;

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

    padding: 0 6%;
}

.student-brand {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
}

.student-logout {
    display: inline-block;

    padding: 9px 16px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.student-logout:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}


/* =========================================================
   DASHBOARD CONTAINER
   ========================================================= */

.student-container {
    width: min(1100px, 92%);
    margin: 0 auto;

    padding: 55px 0 80px;
}


/* =========================================================
   WELCOME
   ========================================================= */

.student-welcome {
    margin-bottom: 35px;
}

.student-label {
    display: block;

    margin-bottom: 8px;

    color: #2563eb;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.student-welcome h1 {
    margin: 0;

    color: #101828;

    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.1;
}

.student-welcome p {
    margin-top: 12px;

    color: #667085;

    font-size: 16px;
}


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

.student-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 45px;

    max-width: 500px;
}

.student-stat-card {
    padding: 25px;

    background: #ffffff;

    border: 1px solid #e4e7ec;
    border-radius: 16px;

    box-shadow: 0 8px 25px rgba(16, 24, 40, 0.05);
}

.student-stat-title {
    margin-bottom: 8px;

    color: #667085;

    font-size: 14px;
    font-weight: 600;
}

.student-stat-number {
    color: #101828;

    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}


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

.student-section {
    margin-top: 30px;
}

.student-section-heading {
    margin-bottom: 22px;

    color: #101828;

    font-size: 25px;
    font-weight: 800;
}


/* =========================================================
   CYCLE
   ========================================================= */

.student-cycle {
    margin-bottom: 30px;

    background: #ffffff;

    border: 1px solid #e4e7ec;
    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 8px 25px rgba(16, 24, 40, 0.05);
}

.student-cycle-header {
    padding: 17px 22px;

    background: #f8fafc;

    border-bottom: 1px solid #e4e7ec;

    color: #101828;

    font-size: 17px;
    font-weight: 800;
}


/* =========================================================
   CLASS GRID
   ========================================================= */

.student-classes {
    display: grid;

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

    gap: 15px;

    padding: 20px;
}

.student-class-card {
    padding: 18px;

    background: #f8fafc;

    border: 1px solid #e4e7ec;
    border-radius: 14px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.student-class-card:hover {
    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.06);
}


/* =========================================================
   PAYMENT CLASS
   ========================================================= */

.student-payment-class {
    border: 2px solid #22c55e;

    background: #f0fdf4;
}

.student-class-number {
    margin-bottom: 6px;

    color: #101828;

    font-size: 18px;
    font-weight: 800;
}

.student-class-date {
    margin-bottom: 12px;

    color: #667085;

    font-size: 13px;
}


/* =========================================================
   ATTENDANCE STATUS
   ========================================================= */

.student-class-status {
    display: inline-flex;
    align-items: center;

    padding: 6px 10px;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;
}

.student-present {
    background: #dcfce7;
    color: #166534;
}

.student-absent {
    background: #fee2e2;
    color: #991b1b;
}


/* =========================================================
   PAYMENT BOX
   ========================================================= */

.student-payment-box {
    margin-top: 15px;
    padding-top: 15px;

    border-top: 1px solid #bbf7d0;
}

.student-payment-title {
    margin-bottom: 7px;

    color: #166534;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.student-payment-status {
    display: inline-block;

    margin-bottom: 7px;

    font-size: 14px;
    font-weight: 800;
}

.student-paid {
    color: #15803d;
}

.student-pending {
    color: #d97706;
}

.student-payment-amount {
    margin-bottom: 4px;

    color: #101828;

    font-size: 17px;
    font-weight: 800;
}

.student-payment-date {
    color: #667085;

    font-size: 12px;
}


/* =========================================================
   EMPTY STATE
   ========================================================= */

.student-empty {
    padding: 30px;

    background: #ffffff;

    border: 1px dashed #d0d5dd;
    border-radius: 14px;

    color: #667085;

    text-align: center;
}


/* =========================================================
   STUDENT DASHBOARD MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .student-container {
        width: min(94%, 700px);

        padding-top: 40px;
    }

    .student-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: none;
    }

    .student-classes {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   STUDENT DASHBOARD SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .student-navbar {
        padding: 0 5%;
    }

    .student-brand {
        font-size: 19px;
    }

    .student-logout {
        padding: 8px 12px;

        font-size: 12px;
    }

    .student-container {
        width: 92%;

        padding: 35px 0 60px;
    }

    .student-welcome {
        margin-bottom: 28px;
    }

    .student-welcome h1 {
        font-size: 32px;
    }

    .student-welcome p {
        font-size: 14px;
    }

    .student-section-heading {
        font-size: 22px;
    }

    .student-cycle-header {
        padding: 15px 17px;

        font-size: 15px;
    }

    .student-classes {
        grid-template-columns: 1fr;

        padding: 15px;
    }

    .student-class-card {
        padding: 17px;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 400px) {

    .student-brand {
        font-size: 17px;
    }

    .student-logout {
        padding: 7px 10px;

        font-size: 11px;
    }

    .student-welcome h1 {
        font-size: 28px;
    }

    .student-stat-card {
        padding: 20px;
    }

    .student-stat-number {
        font-size: 30px;
    }

}

/* =========================================
   STUDENT PORTAL + ABOUT ME
========================================= */

.about-section {
    background: #f8fafc;
    padding: 70px 6%;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;

    align-items: stretch;
}


/* =========================================
   STUDENT PORTAL
========================================= */

.student-portal-home {
    background: #eef8f5;
    padding: 45px;

    border: 1px solid #d9eee8;
    border-radius: 24px;

    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
}

.section-label {
    display: block;
    margin-bottom: 12px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;

    color: #16705c;
}

.student-portal-home h2,
.about-me-home h2 {
    font-size: 42px;
    line-height: 1.15;
    margin: 15px 0;
}

.student-portal-home > p {
    color: #596579;
    line-height: 1.7;
}


/* Student features */

.student-portal-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;

    margin: 30px 0;
}

.student-portal-features div {
    background: rgba(255, 255, 255, 0.75);
    padding: 18px;

    border: 1px solid #dcece7;
    border-radius: 14px;
}

.student-portal-features span {
    font-size: 25px;
}

.student-portal-features h3 {
    margin: 7px 0;
    font-size: 16px;
}

.student-portal-features p {
    margin: 0;

    color: #697386;
    font-size: 13px;
    line-height: 1.5;
}


/* Student login */

.student-login-button {
    display: inline-block;

    background: #101a33;
    color: #ffffff;

    padding: 14px 26px;
    border-radius: 9px;

    font-weight: 700;
    transition: 0.25s;
}

.student-login-button:hover {
    background: #16705c;
    transform: translateY(-2px);
}

.student-login-note {
    margin-top: 12px;

    color: #697386;
    font-size: 13px;
}


/* =========================================
   ABOUT ME
========================================= */

.about-me-home {
    background: #ffffff;
    padding: 45px;

    border: 1px solid #e4e8ef;
    border-radius: 24px;

    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
}

.about-me-home h3 {
    margin-bottom: 25px;

    color: #475467;
    font-size: 15px;
    font-weight: 500;
}

.about-me-profile {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.about-me-text {
    flex: 1;
    min-width: 0;
}

.about-me-text p {
    color: #697386;
    line-height: 1.7;
}

.about-me-button {
    display: inline-block;

    margin-top: 20px;
    padding: 12px 22px;

    border: 1px solid #16705c;
    border-radius: 8px;

    color: #16705c;
    font-weight: 700;
}

.about-me-button:hover {
    background: #16705c;
    color: #ffffff;
}


/* =========================================
   HOME PAGE PROFILE PHOTO
========================================= */

.about-me-photo {
    width: 120px;
    height: 120px;

    flex: 0 0 120px;

    border-radius: 50%;
    overflow: hidden;

    border: 5px solid #ffffff;

    box-shadow:
        0 0 0 2px #d9eee8,
        0 10px 25px rgba(16, 24, 40, 0.12);
}

.about-me-photo img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: none;
    max-height: none;

    object-fit: cover;
    object-position: center;

    border-radius: 50%;
}


/* =========================================
   HOME PORTAL + ABOUT MOBILE
========================================= */

@media (max-width: 900px) {

    .about-section {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 55px 5%;
    }

    .about-me-home {
        padding: 40px;
    }
}


@media (max-width: 600px) {

    .about-section {
        padding: 40px 5%;
    }

    .student-portal-home,
    .about-me-home {
        padding: 30px 22px;
        border-radius: 20px;
    }

    .student-portal-home h2,
    .about-me-home h2 {
        font-size: 32px;
    }

    .student-portal-features {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .about-me-profile {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-me-photo {
        width: 110px;
        height: 110px;
        flex-basis: 110px;
    }
}

/* =========================================================
   MORE ABOUT ME / PORTFOLIO PREVIEW
========================================================= */

.more-about-me {
    margin-top: 45px;
    padding: 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;

    background: #f7fbf8;
    border: 1px solid #e1eee8;
    border-radius: 24px;
}


/* =========================================================
   TEXT
========================================================= */

.more-about-me-content {
    padding: 10px;
}

.more-about-me-content .section-label {
    display: block;
    margin-bottom: 12px;

    color: #176b58;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.more-about-me-content h2 {
    margin: 0 0 15px;

    color: #13252b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    line-height: 1.15;
}

.more-about-me-content p {
    max-width: 560px;
    margin: 0 0 25px;

    color: #596763;
    font-size: 16px;
    line-height: 1.6;
}


/* =========================================================
   PORTFOLIO BUTTON
========================================================= */

.more-about-button {
    display: inline-flex;
    align-items: center;

    padding: 13px 22px;

    background: #176b58;
    color: #ffffff;

    border-radius: 10px;

    text-decoration: none;
    font-size: 15px;
    font-weight: 600;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.more-about-button:hover {
    background: #0f5647;
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================================
   SMALL PORTFOLIO PREVIEW
========================================================= */

.portfolio-preview {
    position: relative;

    display: block;

    width: 100%;
    max-width: 380px;
    height: 210px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 16px;

    text-decoration: none;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
}

.portfolio-preview img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.portfolio-preview:hover img {
    transform: scale(1.04);
}


/* IMAGE OVERLAY */

.portfolio-preview::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 45%;

    background: linear-gradient(
        transparent,
        rgba(0, 0, 0, 0.75)
    );

    pointer-events: none;
}


/* IMAGE TEXT */

.portfolio-preview-content {
    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 17px;

    z-index: 2;

    color: #ffffff;
}

.portfolio-preview-content strong {
    display: block;

    margin-bottom: 4px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 22px;
}

.portfolio-preview-content span {
    display: block;

    font-size: 12px;
}

/* =========================================================
   ABOUT ME - PROFILE + QUOTE
   ========================================================= */

.about-me-home {
    position: relative;
    padding: 45px 50px 50px;
}


/* ABOUT ME LABEL */

.about-me-home .section-label {
    display: block;
    margin-bottom: 14px;

    color: #176b58;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;
}


/* MAIN HEADING */

.about-me-home h2 {
    margin: 0 0 14px;

    color: #13252b;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 42px;
    line-height: 1.15;
}


/* PROFESSIONAL TITLE */

.about-me-home > h3 {
    margin: 0;

    color: #596763;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.6;
}


/* =========================================================
   PROFILE + QUOTE AREA
   ========================================================= */

.about-me-profile {
    display: grid;

    grid-template-columns: 300px 1fr;

    gap: 55px;

    align-items: center;

    margin-top: 50px;
}


/* =========================================================
   PROFILE PHOTO
   ========================================================= */

.about-me-photo {
    width: 220px;
    height: 220px;

    margin: 0 auto;

    padding: 7px;

    border: 2px solid #dce8e4;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.10);

    box-sizing: border-box;
}


.about-me-photo img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;

    border-radius: 50%;
}


/* =========================================================
   QUOTE
   ========================================================= */

.about-me-quote {
    position: relative;

    display: flex;

    align-items: center;

    min-height: 180px;

    padding: 20px 45px 20px 0;

    box-sizing: border-box;
}


/* VERTICAL GREEN LINE */

.quote-line {
    width: 4px;

    height: 135px;

    margin-right: 28px;

    flex-shrink: 0;

    background: #176b58;

    border-radius: 3px;
}


/* QUOTE TEXT */

.about-me-quote p {
    max-width: 700px;

    margin: 0;

    color: #34464d;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 21px;

    font-style: italic;

    line-height: 1.65;
}


/* =========================================================
   DECORATIVE QUOTATION MARKS
   ========================================================= */

.quote-mark {
    position: absolute;

    color: #8ac8b6;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 80px;

    font-weight: bold;

    line-height: 1;
}


.quote-open {
    top: -10px;
    left: 25px;
}


.quote-close {
    right: 0;
    bottom: -20px;
}


/* =========================================================
   MORE ABOUT ME BUTTON
   ========================================================= */

.about-me-button {
    display: flex;

    width: fit-content;

    align-items: center;
    justify-content: center;

    margin: 35px auto 0;

    padding: 14px 24px;

    color: #176b58;
    background: #ffffff;

    border: 1.5px solid #176b58;

    border-radius: 10px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.about-me-button:hover {
    color: #ffffff;
    background: #176b58;

    transform: translateY(-2px);
}


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

@media (max-width: 900px) {

    .about-me-profile {
        grid-template-columns: 220px 1fr;

        gap: 35px;
    }

    .about-me-photo {
        width: 190px;
        height: 190px;
    }

    .about-me-quote p {
        font-size: 18px;
    }

}


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

@media (max-width: 768px) {

    .about-me-home {
        padding: 35px 25px 40px;
    }


    .about-me-home h2 {
        font-size: 34px;
    }


    .about-me-home > h3 {
        font-size: 15px;
        line-height: 1.7;
    }


    .about-me-profile {
        display: flex;

        flex-direction: column;

        gap: 30px;

        margin-top: 40px;
    }


    /* MEDIUM PROFILE PHOTO */

    .about-me-photo {
        width: 180px;
        height: 180px;

        margin: 0 auto;
    }


    /* QUOTE */

    .about-me-quote {
        width: 100%;

        min-height: auto;

        padding: 20px 15px 25px 0;
    }


    .quote-line {
        height: 120px;

        margin-right: 20px;
    }


    .about-me-quote p {
        font-size: 17px;

        line-height: 1.6;
    }


    .quote-mark {
        font-size: 65px;
    }


    .quote-open {
        top: -15px;
        left: 10px;
    }


    .quote-close {
        right: 0;
        bottom: -15px;
    }


    .about-me-button {
        margin-top: 20px;
    }

}


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

@media (max-width: 480px) {

    .about-me-home {
        padding: 30px 20px 35px;
    }


    .about-me-home h2 {
        font-size: 30px;
    }


    .about-me-home > h3 {
        font-size: 14px;
    }


    .about-me-photo {
        width: 165px;
        height: 165px;
    }


    .about-me-quote {
        padding-right: 5px;
    }


    .quote-line {
        width: 3px;

        height: 135px;

        margin-right: 16px;
    }


    .about-me-quote p {
        font-size: 15px;

        line-height: 1.65;
    }


    .quote-mark {
        font-size: 55px;
    }


    .about-me-button {
        width: 100%;

        box-sizing: border-box;
    }

}

/* FORCE ABOUT ME PROFILE IMAGE TO STAY CIRCULAR */

.about-me-home .about-me-profile .about-me-photo {
    width: 180px !important;
    height: 180px !important;
    min-width: 180px !important;
    min-height: 180px !important;
    max-width: 180px !important;
    max-height: 180px !important;

    flex: 0 0 180px !important;

    overflow: hidden !important;
    border-radius: 50% !important;
    box-sizing: border-box !important;
}

.about-me-home .about-me-profile .about-me-photo img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    min-width: 0 !important;
    min-height: 0 !important;
    max-width: none !important;
    max-height: none !important;

    object-fit: cover !important;
    object-position: center !important;

    border-radius: 50% !important;
}


@media (max-width: 768px) {

    .about-me-home .about-me-profile .about-me-photo {
        width: 180px !important;
        height: 180px !important;
        min-width: 180px !important;
        min-height: 180px !important;
        max-width: 180px !important;
        max-height: 180px !important;

        flex: 0 0 180px !important;

        margin: 0 auto !important;
    }

    .about-me-home .about-me-profile .about-me-photo img {
        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
        object-position: center !important;
    }

}


@media (max-width: 480px) {

    .about-me-home .about-me-profile .about-me-photo {
        width: 165px !important;
        height: 165px !important;
        min-width: 165px !important;
        min-height: 165px !important;
        max-width: 165px !important;
        max-height: 165px !important;

        flex: 0 0 165px !important;
    }

}

/* =====================================================
   HERO COVER BACKGROUND
   ===================================================== */

.hero {
    position: relative;

    min-height: 680px;

    display: flex;
    align-items: center;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.15),
            rgba(255, 255, 255, 0.15)
        ),
        url("../images/hero.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* HERO CONTENT */

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

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 100px 40px;

    text-align: center;
}


/* HERO LABEL */

.hero-label {
    display: inline-block;

    margin-bottom: 25px;

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 4px;

    color: #174f3f;

    text-transform: uppercase;
}


/* HERO TITLE */

.hero h1 {
    margin: 0 auto 25px;

    max-width: 800px;

    font-size: clamp(42px, 6vw, 76px);

    line-height: 1.05;

    font-weight: 700;

    color: #163b31;
}


.hero h1 span {
    display: block;

    margin-top: 10px;

    color: #1d624d;
}


/* HERO DESCRIPTION */

.hero p {
    max-width: 650px;

    margin: 0 auto 35px;

    font-size: 18px;

    line-height: 1.7;

    color: #30443d;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}


/* MOBILE */

@media (max-width: 768px) {

    .hero {
        min-height: 620px;

        background-position: center;
    }

    .hero-content {
        padding: 80px 25px;
    }

    .hero-label {
        font-size: 12px;

        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 16px;

        line-height: 1.6;
    }

}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .hero {
        min-height: 600px;

        background-position: center;
    }

    .hero-content {
        padding: 70px 20px;
    }

    .hero-label {
        font-size: 11px;

        letter-spacing: 1.5px;
    }

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

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

    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .hero-buttons a {
        width: 100%;

        max-width: 260px;

        text-align: center;
    }

}


/* =========================================================
   FRAMEBLAZER — VISUAL REDESIGN
   CSS-only visual update
   Preserves existing Django HTML, URLs and functionality.
   ========================================================= */

/* ---------- DESIGN TOKENS ---------- */

:root {
    --fb-green: #176b58;
    --fb-green-dark: #0f4f41;
    --fb-green-deep: #0b3d32;
    --fb-green-soft: #eaf5ef;

    --fb-cream: #fbf8f0;
    --fb-cream-dark: #f3ecdd;
    --fb-white: #ffffff;

    --fb-text: #13252b;
    --fb-muted: #596763;
    --fb-border: #e4e9e4;

    --fb-violin: #d49a16;
    --fb-violin-soft: #fff6df;

    --fb-blue: #2587d1;
    --fb-blue-soft: #edf7ff;

    --fb-pink: #d62c83;
    --fb-pink-soft: #fff0f7;

    --fb-shadow: 0 18px 45px rgba(20, 48, 40, 0.08);
    --fb-shadow-hover: 0 24px 55px rgba(20, 48, 40, 0.14);

    --fb-radius: 22px;
}

/* ---------- GLOBAL ---------- */

html {
    scroll-behavior: smooth;
}

body {
    background: var(--fb-cream);
    color: var(--fb-text);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
}

h1,
h2,
h3 {
    color: var(--fb-text);
}

::selection {
    background: #cfe7dc;
    color: var(--fb-green-deep);
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    position: relative;
    z-index: 50;

    min-height: 76px;
    height: auto;

    padding: 14px clamp(20px, 6vw, 90px);

    background: rgba(255, 255, 255, 0.96);
    color: var(--fb-text);

    border-bottom: 1px solid rgba(23, 107, 88, 0.10);

    box-shadow: 0 4px 20px rgba(20, 48, 40, 0.04);
}

.logo {
    color: var(--fb-text);
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-links {
    gap: 34px;
}

.nav-links a {
    position: relative;

    color: #344a43;
    font-size: 14px;
    font-weight: 500;

    padding: 8px 0;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 1px;

    width: 0;
    height: 2px;

    border-radius: 99px;
    background: var(--fb-green);

    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: var(--fb-green);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-button {
    color: var(--fb-green-deep);
}


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

.hero {
    position: relative;

    min-height: 650px;

    padding: 70px 7%;

    display: flex;
    align-items: center;

    background-color: var(--fb-cream);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

/* Soft cream veil over the image.
   The inline hero.webp background remains untouched. */
.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(251, 248, 240, 0.97) 0%,
            rgba(251, 248, 240, 0.90) 38%,
            rgba(251, 248, 240, 0.45) 65%,
            rgba(251, 248, 240, 0.12) 100%
        );

    pointer-events: none;
}

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

    width: min(1200px, 100%);
    max-width: 1200px;

    margin: 0 auto;
    padding: 55px 0;

    text-align: left;
}

.hero-label {
    display: inline-block;

    margin-bottom: 20px;

    color: var(--fb-green-deep);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
}

.hero h1 {
    max-width: 760px;

    margin: 0 0 22px;

    color: var(--fb-text);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -2px;
}

.hero h1 span {
    display: block;

    margin-top: 5px;

    color: var(--fb-green);
}

.hero p {
    max-width: 610px;

    margin: 0 0 30px;

    color: #40534d;

    font-size: 17px;
    line-height: 1.75;
}

.hero-buttons {
    justify-content: flex-start;
    gap: 14px;
}

.primary-button,
.secondary-button,
.submit-button {
    min-height: 48px;

    padding: 13px 24px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.primary-button,
.submit-button {
    background: var(--fb-green);
    color: #ffffff;

    box-shadow: 0 8px 20px rgba(23, 107, 88, 0.20);
}

.primary-button:hover,
.submit-button:hover {
    background: var(--fb-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(23, 107, 88, 0.25);
}

.secondary-button {
    border: 1.5px solid var(--fb-green);
    background: rgba(255, 255, 255, 0.65);
    color: var(--fb-green);
}

.secondary-button:hover {
    background: var(--fb-green);
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.section-heading,
.services-heading {
    max-width: 760px;
}

.section-heading span,
.services-heading span {
    color: var(--fb-green);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section-heading h1,
.section-heading h2,
.services-heading h2 {
    color: var(--fb-text);

    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.section-heading p,
.services-heading p {
    color: var(--fb-muted);
}


/* =========================================================
   MY SERVICES
   ========================================================= */

.home-services {
    padding: 90px 20px 100px;
    background: var(--fb-cream);
}

.services-heading {
    margin-bottom: 50px;
}

.services-heading h2 {
    margin: 10px 0 12px;

    font-size: clamp(36px, 5vw, 52px);
    line-height: 1.08;
}

.service-grid {
    width: min(1180px, 92%);
    gap: 22px;
}

.service-card {
    position: relative;

    padding: 0 24px 26px;

    overflow: visible;

    background: var(--fb-white);

    border: 1px solid rgba(19, 37, 43, 0.08);
    border-radius: 18px;

    box-shadow: var(--fb-shadow);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--fb-shadow-hover);
}

.service-image {
    height: 205px;

    margin: 0 -24px;

    width: calc(100% + 48px);

    border-radius: 18px 18px 0 0;
}

.service-image img {
    object-fit: cover;
}

.service-icon {
    width: 64px;
    height: 64px;

    margin: -32px auto 18px;

    border: 4px solid #ffffff;
    border-radius: 50%;

    box-shadow: 0 8px 20px rgba(20, 48, 40, 0.16);
}

.service-card .service-icon svg {
    width: 28px;
    height: 28px;

    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card.violin .service-icon {
    background: var(--fb-violin);
    color: #ffffff;
}

.service-card.software .service-icon {
    background: var(--fb-blue);
    color: #ffffff;
}

.service-card.design .service-icon {
    background: var(--fb-pink);
    color: #ffffff;
}

.service-card h3 {
    margin: 0 0 10px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    line-height: 1.2;
}

.service-card p {
    margin: 0 auto 22px;

    color: var(--fb-muted);
    font-size: 14px;
    line-height: 1.65;
}

.service-card ul {
    margin: 0 0 25px;
    padding: 18px 0 0;

    border-top: 1px solid #edf0ed;
}

.service-card li {
    margin-bottom: 11px;
    padding-left: 29px;

    color: #33443f;
    font-size: 13.5px;
}

.service-card li::before {
    top: 0;

    width: 18px;
    height: 18px;

    margin: 0;

    color: #ffffff;
    font-size: 10px;
}

.service-card.violin li::before {
    background: var(--fb-violin);
}

.service-card.software li::before {
    background: var(--fb-blue);
}

.service-card.design li::before {
    background: var(--fb-pink);
}

.service-card > a {
    display: block;

    padding: 11px 15px;

    border-radius: 999px;

    text-align: center;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform 0.25s ease,
        filter 0.25s ease;
}

.service-card > a:hover {
    text-decoration: none;
    transform: translateY(-1px);
    filter: brightness(0.96);
}

.service-card.violin > a {
    background: var(--fb-violin-soft);
    color: #b47700;
}

.service-card.software > a {
    background: var(--fb-blue-soft);
    color: #176bb0;
}

.service-card.design > a {
    background: var(--fb-pink-soft);
    color: #bf226e;
}


/* =========================================================
   STUDENT PORTAL + ABOUT ME
   ========================================================= */

.about-section {
    padding: 75px clamp(20px, 5vw, 70px);

    background: #f5f3eb;

    gap: 24px;
}

.student-portal-home,
.about-me-home {
    border-radius: var(--fb-radius);

    box-shadow: 0 14px 38px rgba(20, 48, 40, 0.06);
}

.student-portal-home {
    padding: 42px;

    background:
        linear-gradient(
            145deg,
            #edf7f1 0%,
            #e7f3ed 100%
        );

    border: 1px solid #d9e9e1;
}

.student-portal-home .section-label,
.about-me-home .section-label {
    color: var(--fb-green);

    font-size: 11px;
    letter-spacing: 3px;
}

.student-portal-home h2,
.about-me-home h2 {
    margin: 10px 0 12px;

    color: var(--fb-text);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 42px);
    line-height: 1.1;
}

.student-portal-home > p {
    color: var(--fb-muted);
}

.student-portal-features {
    gap: 12px;
    margin: 28px 0;
}

.student-portal-features div {
    padding: 17px 14px;

    background: rgba(255, 255, 255, 0.68);

    border: 1px solid rgba(23, 107, 88, 0.10);
    border-radius: 16px;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.student-portal-features div:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

.student-portal-features span {
    display: inline-flex;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    margin-bottom: 8px;

    border-radius: 50%;

    background: #d4ecdf;
    color: var(--fb-green);

    font-size: 21px;
}

.student-portal-features h3 {
    color: var(--fb-text);
}

.student-portal-features p {
    color: #65746f;
}

.student-login-button {
    padding: 13px 24px;

    border-radius: 999px;

    background: var(--fb-green);
    box-shadow: 0 8px 20px rgba(23, 107, 88, 0.16);
}

.student-login-button:hover {
    background: var(--fb-green-dark);
}

.student-login-note {
    color: #6b7974;
}


/* =========================================================
   ABOUT ME
   ========================================================= */

.about-me-home {
    padding: 42px 44px 44px;

    background: #fffdf8;

    border: 1px solid #ece9de;
}

.about-me-home h3 {
    color: #596763;
}

.about-me-profile {
    grid-template-columns: 190px 1fr;
    gap: 35px;

    margin-top: 35px;
}

.about-me-home .about-me-profile .about-me-photo {
    width: 180px !important;
    height: 180px !important;
    min-width: 180px !important;
    min-height: 180px !important;
    max-width: 180px !important;
    max-height: 180px !important;

    flex: 0 0 180px !important;

    padding: 5px;

    border: 2px solid #cfe4da;
    border-radius: 50% !important;

    background: #ffffff;

    box-shadow:
        0 0 0 5px #f0f7f3,
        0 14px 30px rgba(20, 48, 40, 0.12);

    overflow: hidden !important;
}

.about-me-home .about-me-profile .about-me-photo img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center !important;

    border-radius: 50% !important;
}

.about-me-quote {
    min-height: 170px;

    padding: 18px 35px 18px 0;
}

.quote-line {
    width: 3px;
    height: 125px;

    margin-right: 22px;

    background: var(--fb-green);
}

.about-me-quote p {
    color: #344b44;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.65;
}

.quote-mark {
    color: #a9cfbd;
}

.about-me-button {
    margin: 28px auto 0;

    padding: 12px 25px;

    border: 0;
    border-radius: 999px;

    background: #dcecc8;
    color: var(--fb-green-deep);

    font-weight: 800;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.about-me-button:hover {
    background: #cde3b4;
    color: var(--fb-green-deep);

    transform: translateY(-2px);
}


/* =========================================================
   CHOOSE YOUR SERVICE
   ========================================================= */

.enquiry-section {
    position: relative;

    padding: 90px clamp(20px, 6vw, 80px);

    background:
        linear-gradient(
            180deg,
            #f4ecdc 0%,
            #eee5d1 100%
        );

    overflow: hidden;
}

.enquiry-section::before {
    content: "";

    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -120px;

    height: 220px;

    border-radius: 50% 50% 0 0;

    background: rgba(23, 107, 88, 0.08);

    pointer-events: none;
}

.enquiry-section .section-heading {
    position: relative;
    z-index: 2;

    margin-bottom: 45px;
}

.enquiry-section .section-heading span {
    color: var(--fb-green);
}

.enquiry-section .section-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
}

.enquiry-grid {
    position: relative;
    z-index: 2;

    width: min(1100px, 100%);
    gap: 18px;
}

.enquiry-card {
    position: relative;

    min-height: 120px;

    padding: 25px 28px 24px 76px;

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid rgba(19, 37, 43, 0.08);
    border-radius: 18px;

    box-shadow: 0 12px 30px rgba(20, 48, 40, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.enquiry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(20, 48, 40, 0.13);
}

.enquiry-card > span {
    position: absolute;
    left: 22px;
    top: 28px;

    display: flex;

    width: 38px;
    height: 38px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e5f0ff;
    color: var(--fb-blue);

    font-size: 13px;
    font-weight: 800;
}

.enquiry-card:nth-child(2) > span {
    background: var(--fb-violin-soft);
    color: #b47700;
}

.enquiry-card:nth-child(3) > span {
    background: var(--fb-pink-soft);
    color: var(--fb-pink);
}

.enquiry-card h3 {
    margin: 0 0 6px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
}

.enquiry-card p {
    margin: 0;

    color: var(--fb-muted);
    font-size: 13px;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    padding: 55px clamp(20px, 7vw, 90px) 22px;

    background: var(--fb-green-deep);
    color: #ffffff;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
}

.footer-content h3 {
    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;
}

.footer-content h4 {
    color: #dceee7;
}

.footer-content a {
    color: #d5e7e0;

    transition: color 0.2s ease;
}

.footer-content a:hover {
    color: #ffffff;
}

.footer-content p {
    color: #abc5bb;
}

.copyright {
    border-top-color: rgba(255, 255, 255, 0.14);
    color: #91b1a5;
}


/* =========================================================
   GENERAL FORM PAGES
   ========================================================= */

.form-page {
    padding: 80px 20px;

    background: var(--fb-cream);
}

.violin-page {
    background: #fff9eb;
}

.design-page {
    background: #fff4f9;
}

.form-container {
    border: 1px solid rgba(19, 37, 43, 0.07);
    border-radius: 24px;

    box-shadow: var(--fb-shadow);
}

.form-container > span {
    color: var(--fb-green);
}

.form-container h1 {
    color: var(--fb-text);

    font-family: Georgia, "Times New Roman", serif;
}

.form-container > p {
    color: var(--fb-muted);
}

.form-control {
    border-color: #dce3df;
    border-radius: 10px;

    background: #fffefa;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-control:focus {
    border-color: var(--fb-green);

    box-shadow: 0 0 0 4px rgba(23, 107, 88, 0.10);
}


/* =========================================================
   PORTFOLIO VISUAL UPDATE
   ========================================================= */

.portfolio {
    background:
        linear-gradient(
            135deg,
            #fbf8f0 0%,
            #f1f6f1 100%
        );
}

.portfolio-content h1 {
    color: var(--fb-text);

    font-family: Georgia, "Times New Roman", serif;
}

.portfolio-content h2 {
    color: #40534d;
}

.portfolio-description {
    color: var(--fb-muted);
}

.portfolio-services div {
    border-color: #e3eae5;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(20, 48, 40, 0.04);
}

.portfolio-button {
    background: var(--fb-green);
    border-radius: 999px;

    box-shadow: 0 8px 20px rgba(23, 107, 88, 0.18);
}

.portfolio-button:hover {
    background: var(--fb-green-dark);
}


/* =========================================================
   STUDENT DASHBOARD — MATCH SITE BRAND
   ========================================================= */

.student-navbar {
    background: var(--fb-green-deep);
}

.student-label {
    color: var(--fb-green);
}

.student-welcome h1,
.student-section-heading,
.student-stat-number,
.student-class-number {
    color: var(--fb-text);
}

.student-stat-card,
.student-cycle {
    border-color: #e1e8e3;
    box-shadow: 0 10px 28px rgba(20, 48, 40, 0.05);
}

.student-cycle-header {
    background: #f1f6f2;
    border-bottom-color: #e1e8e3;
}

.student-class-card {
    background: #fafbf8;
    border-color: #e1e8e3;
}

.student-payment-class {
    border-color: #4caf7d;
    background: #eff9f2;
}

.student-payment-title {
    color: #23734f;
}


/* =========================================================
   RESPONSIVE VISUAL REFINEMENT
   ========================================================= */

@media (max-width: 900px) {
    .hero {
        min-height: 610px;
        padding: 60px 6%;
    }

    .hero::before {
        background:
            linear-gradient(
                180deg,
                rgba(251, 248, 240, 0.94),
                rgba(251, 248, 240, 0.78)
            );
    }

    .hero-content {
        padding: 40px 0;
    }

    .hero h1 {
        max-width: 700px;
    }

    .about-section {
        padding: 60px 5%;
    }

    .student-portal-home,
    .about-me-home {
        padding: 38px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 13px 5%;
    }

    .nav-links {
        background: #fffdf8;
        border-top: 1px solid #e8eee9;
        box-shadow: 0 15px 25px rgba(20, 48, 40, 0.08);
    }

    .nav-links a {
        color: var(--fb-text);
    }

    .hero {
        min-height: 600px;
        background-position: center;
    }

    .hero-content {
        text-align: left;
    }

    .hero h1 {
        font-size: clamp(38px, 10vw, 56px);
        letter-spacing: -1px;
    }

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

    .hero-buttons {
        justify-content: flex-start;
    }

    .about-section {
        gap: 20px;
    }

    .student-portal-home,
    .about-me-home {
        padding: 32px 25px;
        border-radius: 20px;
    }

    .student-portal-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-me-profile {
        display: flex;
        flex-direction: column;
        gap: 25px;

        text-align: center;
    }

    .about-me-quote {
        width: 100%;
        padding-right: 10px;
        text-align: left;
    }

    .about-me-home .about-me-profile .about-me-photo {
        margin: 0 auto !important;
    }

    .quote-line {
        height: 115px;
    }

    .enquiry-section {
        padding: 70px 5%;
    }

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

@media (max-width: 600px) {
    .home-services {
        padding: 70px 15px 80px;
    }

    .service-grid {
        width: min(94%, 550px);
    }

    .service-card {
        padding: 0 20px 23px;
    }

    .service-image {
        width: calc(100% + 40px);
        margin: 0 -20px;
        height: 190px;
    }

    .services-heading {
        margin-bottom: 42px;
    }

    .services-heading h2 {
        font-size: 38px;
    }

    .student-portal-home h2,
    .about-me-home h2 {
        font-size: 32px;
    }

    .about-me-quote p {
        font-size: 16px;
    }

    .enquiry-card {
        padding-left: 70px;
    }

    .enquiry-card > span {
        left: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 580px;
        padding: 45px 6%;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons a {
        width: auto;
        min-width: 190px;
    }

    .student-portal-features {
        gap: 9px;
    }

    .student-portal-features div {
        padding: 14px 10px;
    }

    .about-me-home .about-me-profile .about-me-photo {
        width: 165px !important;
        height: 165px !important;
        min-width: 165px !important;
        min-height: 165px !important;
        max-width: 165px !important;
        max-height: 165px !important;

        flex-basis: 165px !important;
    }

    .about-me-quote {
        padding-right: 0;
    }

    .quote-line {
        width: 3px;
        height: 125px;
        margin-right: 14px;
    }

    .quote-mark {
        font-size: 55px;
    }

    .about-me-button {
        width: fit-content;
    }

    .enquiry-section {
        padding: 60px 15px;
    }
}

/* =========================================================
   STYLISH SERVICE ICONS
   ========================================================= */

.service-card .service-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: -29px auto 18px;

    border-radius: 50%;
    border: 4px solid #ffffff;

    position: relative;
    z-index: 3;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* SVG ICON */
.service-card .service-icon svg {
    width: 30px;
    height: 30px;

    fill: none;
    stroke: currentColor;

    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ---------------------------------------------------------
   VIOLIN
   --------------------------------------------------------- */

.service-card.violin .violin-icon {
    background: #D49A16;
    color: #ffffff;
    font-size: 40px;
    line-height: 1;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    color: #ffffff;
    transform: translateY(-1px);
}


/* ---------------------------------------------------------
   SOFTWARE
   --------------------------------------------------------- */

.service-card.software .software-icon {
    background: #2587D1;
    color: #ffffff;
}


/* ---------------------------------------------------------
   GRAPHIC DESIGN
   --------------------------------------------------------- */

.service-card.design .design-icon {
    background: #D62C83;
    color: #ffffff;
}


/* ---------------------------------------------------------
   ICON HOVER
   --------------------------------------------------------- */

.service-card .service-icon {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

/* SAME LIGHT GREEN BACKGROUND FOR ALL ENQUIRY PAGES */

section.form-page {
    background-color: #EAF6F1 !important;
    background-image: none !important;
}

/* =========================================================
   FRAMEBLAZER STUDENT PORTAL — APPROVED MINIMAL DESIGN
   Final dashboard-only styling.
   Existing HTML, backend, URLs and other site sections unchanged.
   ========================================================= */

.student-dashboard {
    --sp-green: #176b58;
    --sp-green-dark: #0f4f41;
    --sp-deep: #0b3d32;
    --sp-cream: #fbf8f0;
    --sp-text: #13252b;
    --sp-muted: #687872;
    --sp-border: #dfe8e3;
    --sp-soft: #edf2ef;
    --sp-paid-bg: #f1f9f4;
    --sp-paid-border: #cfe5d8;

    width: 100%;
    min-height: 100vh;
    background: var(--sp-cream);
    color: var(--sp-text);
    overflow-x: hidden;
}

/* NAVBAR */

.student-dashboard .student-navbar {
    width: 100%;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 6%;
    background: var(--sp-deep);
    color: #fff;
    border: 0;
    box-shadow: none;
}

.student-dashboard .student-brand {
    display: flex;
    align-items: baseline;
    gap: 9px;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.student-dashboard .student-brand span {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
}

.student-dashboard .student-logout {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border: 1px solid rgba(255,255,255,.26);
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: background .2s ease, border-color .2s ease;
}

.student-dashboard .student-logout:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.45);
}

/* MAIN WIDTH */

.student-dashboard .student-container {
    width: min(920px, calc(100% - 40px));
    margin: 0 auto;
    padding: 62px 0 70px;
}

/* WELCOME */

.student-dashboard .student-welcome {
    margin: 0 0 30px;
}

.student-dashboard .student-label {
    display: block;
    margin: 0 0 8px;
    color: var(--sp-green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    line-height: 1.3;
}

.student-dashboard .student-welcome h1 {
    margin: 0;
    color: var(--sp-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.8px;
}

.student-dashboard .student-welcome p {
    margin: 9px 0 0;
    color: var(--sp-muted);
    font-size: 15px;
    line-height: 1.5;
}

/* STATS */

.student-dashboard .student-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 240px));
    gap: 12px;
    max-width: 492px;
    margin: 0 0 58px;
}

.student-dashboard .student-stat-card {
    min-width: 0;
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 16px;
    background: rgba(255,255,255,.72);
    border: 1px solid var(--sp-border);
    border-radius: 12px;
    box-shadow: none;
}

.student-dashboard .student-stat-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e4f2ea;
    color: var(--sp-green);
    font-size: 16px;
    font-weight: 800;
}

.student-dashboard .student-stat-number {
    margin: 0 0 2px;
    color: var(--sp-text);
    font-size: 25px;
    font-weight: 800;
    line-height: 1;
}

.student-dashboard .student-stat-title {
    margin: 0;
    color: var(--sp-muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
}

/* LEARNING JOURNEY */

.student-dashboard .student-roadmap-section {
    margin: 0;
}

.student-dashboard .student-section-heading {
    margin: 0 0 28px;
    color: var(--sp-text);
}

.student-dashboard .student-section-heading > span {
    display: block;
    margin: 0 0 7px;
    color: var(--sp-green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    line-height: 1.3;
}

.student-dashboard .student-section-heading h2 {
    margin: 0;
    color: var(--sp-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.4px;
}

.student-dashboard .student-section-heading p {
    margin: 7px 0 0;
    color: var(--sp-muted);
    font-size: 13px;
    line-height: 1.5;
}

/* ROADMAP LINE */

.student-dashboard .student-roadmap {
    position: relative;
    margin: 0;
    padding: 0 0 0 48px;
}

.student-dashboard .student-roadmap::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 16px;
    width: 1px;
    background: #b9d9ca;
}

/* CYCLE */

.student-dashboard .student-cycle {
    position: relative;
    display: block;
    margin: 0 0 42px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.student-dashboard .student-cycle:last-child {
    margin-bottom: 0;
}

.student-dashboard .student-cycle-marker {
    position: absolute;
    left: -48px;
    top: 1px;
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.student-dashboard .student-cycle-marker span {
    width: 15px;
    height: 15px;
    display: block;
    border-radius: 50%;
    background: var(--sp-green);
    border: 3px solid var(--sp-cream);
    box-shadow: 0 0 0 1px #a8d0bc;
}

.student-dashboard .student-cycle-content {
    min-width: 0;
    padding: 0;
}

/* CYCLE HEADING */

.student-dashboard .student-cycle-heading {
    min-width: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding: 0 0 11px;
    border-bottom: 1px solid var(--sp-border);
}

.student-dashboard .student-cycle-label {
    display: block;
    margin: 0 0 3px;
    color: var(--sp-green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    line-height: 1.3;
}

.student-dashboard .student-cycle-heading h3 {
    margin: 0;
    color: var(--sp-text);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.2;
}

.student-dashboard .student-cycle-count {
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    background: transparent;
    color: var(--sp-muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}

/* CLASS LIST */

.student-dashboard .student-class-list {
    display: block;
    margin: 0;
    padding: 0;
}

.student-dashboard .student-class-row {
    min-width: 0;
    min-height: 56px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 12px;
    padding: 10px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--sp-soft);
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.student-dashboard .student-class-row:hover {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.student-dashboard .student-class-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e4f2ea;
    color: var(--sp-green);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.student-dashboard .student-class-info {
    min-width: 0;
}

.student-dashboard .student-class-number {
    margin: 0 0 2px;
    color: var(--sp-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.student-dashboard .student-class-date {
    margin: 0;
    color: var(--sp-muted);
    font-size: 12px;
    line-height: 1.35;
}

.student-dashboard .student-class-status {
    min-width: 62px;
    display: flex;
    justify-content: flex-end;
}

.student-dashboard .student-present,
.student-dashboard .student-absent {
    min-height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.student-dashboard .student-present {
    background: #e1f3e8;
    color: #197346;
}

.student-dashboard .student-absent {
    background: #fae6e6;
    color: #a33a3a;
}

/* PAYMENT — PART OF THE 4TH CLASS ROW */

.student-dashboard .student-payment-class {
    position: relative;
    margin: 0;
    padding: 10px 10px 9px;
    background: var(--sp-paid-bg);
    border: 1px solid var(--sp-paid-border);
    border-left: 3px solid #4caf7d;
    border-radius: 8px;
    box-shadow: none;
}

.student-dashboard .student-payment-class .student-class-icon {
    background: #dff2e6;
    color: #23814f;
    border-radius: 8px;
}

/*
   The payment block is placed underneath the class information,
   while the class number/date and attendance status remain on
   the first line.
*/
.student-dashboard .student-payment-details {
    grid-column: 2 / -1;
    min-width: 0;
    margin: -2px 0 0;
    padding: 2px 0 0;
}

.student-dashboard .student-payment-title {
    margin: 0 0 3px;
    color: #28734f;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.3px;
    line-height: 1.2;
}

.student-dashboard .student-payment-info {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}

.student-dashboard .student-payment-amount {
    margin: 0;
    color: var(--sp-text);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
}

.student-dashboard .student-paid,
.student-dashboard .student-pending {
    font-size: 11px;
    font-weight: 800;
    line-height: 1.3;
}

.student-dashboard .student-paid {
    color: #1b7c4b;
}

.student-dashboard .student-pending {
    color: #b46d13;
}

.student-dashboard .student-payment-date {
    margin: 2px 0 0;
    color: var(--sp-muted);
    font-size: 10px;
    line-height: 1.3;
}

/* EMPTY STATE */

.student-dashboard .student-empty {
    padding: 34px 20px;
    background: transparent;
    border: 1px dashed #cbd9d1;
    border-radius: 10px;
    color: var(--sp-muted);
    text-align: center;
}

.student-dashboard .student-empty-icon {
    color: var(--sp-green);
}

/* FOOTER MESSAGE */

.student-dashboard .student-message {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 54px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--sp-border);
    color: var(--sp-muted);
}

.student-dashboard .student-message-icon {
    color: var(--sp-green);
    font-size: 22px;
    line-height: 1;
}

.student-dashboard .student-message p {
    margin: 0;
    color: var(--sp-muted);
    font-size: 12px;
    line-height: 1.5;
}

.student-dashboard .student-message span {
    display: block;
    margin: 1px 0 0;
    color: var(--sp-muted);
    font-size: 11px;
}

.student-dashboard .student-bottom-logout {
    display: none;
}

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

@media (max-width: 700px) {

    .student-dashboard .student-navbar {
        min-height: 62px;
        padding: 0 5%;
    }

    .student-dashboard .student-brand {
        display: block;
        font-size: 18px;
        line-height: 1.1;
    }

    .student-dashboard .student-brand span {
        display: block;
        margin: 3px 0 0;
        font-size: 10px;
        line-height: 1.1;
    }

    .student-dashboard .student-logout {
        min-height: 38px;
        padding: 7px 12px;
        font-size: 12px;
    }

    .student-dashboard .student-container {
        width: calc(100% - 30px);
        max-width: 560px;
        padding: 40px 0 50px;
    }

    .student-dashboard .student-welcome {
        margin-bottom: 24px;
    }

    .student-dashboard .student-label {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .student-dashboard .student-welcome h1 {
        font-size: 32px;
        letter-spacing: -.5px;
    }

    .student-dashboard .student-welcome p {
        margin-top: 7px;
        font-size: 14px;
    }

    .student-dashboard .student-stats {
        width: 100%;
        max-width: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
        margin-bottom: 42px;
    }

    .student-dashboard .student-stat-card {
        min-height: 68px;
        gap: 9px;
        padding: 10px;
        border-radius: 10px;
    }

    .student-dashboard .student-stat-icon {
        width: 31px;
        height: 31px;
        flex-basis: 31px;
        font-size: 14px;
    }

    .student-dashboard .student-stat-number {
        font-size: 22px;
    }

    .student-dashboard .student-stat-title {
        font-size: 10px;
    }

    .student-dashboard .student-section-heading {
        margin-bottom: 22px;
    }

    .student-dashboard .student-section-heading > span {
        font-size: 10px;
    }

    .student-dashboard .student-section-heading h2 {
        font-size: 25px;
    }

    .student-dashboard .student-section-heading p {
        max-width: 340px;
        margin-top: 6px;
        font-size: 12px;
    }

    .student-dashboard .student-roadmap {
        padding-left: 29px;
    }

    .student-dashboard .student-roadmap::before {
        left: 6px;
        top: 9px;
        bottom: 14px;
    }

    .student-dashboard .student-cycle {
        margin-bottom: 34px;
    }

    .student-dashboard .student-cycle-marker {
        left: -29px;
        top: 1px;
        width: 15px;
        height: 15px;
    }

    .student-dashboard .student-cycle-marker span {
        width: 13px;
        height: 13px;
        border-width: 2px;
    }

    .student-dashboard .student-cycle-heading {
        gap: 10px;
        padding-bottom: 9px;
    }

    .student-dashboard .student-cycle-label {
        margin-bottom: 2px;
        font-size: 9px;
        letter-spacing: 1.2px;
    }

    .student-dashboard .student-cycle-heading h3 {
        font-size: 19px;
    }

    .student-dashboard .student-cycle-count {
        font-size: 11px;
    }

    .student-dashboard .student-class-row {
        min-height: 56px;
        grid-template-columns: 29px minmax(0, 1fr) auto;
        column-gap: 8px;
        padding: 10px 0;
    }

    .student-dashboard .student-class-icon {
        width: 27px;
        height: 27px;
        font-size: 12px;
    }

    .student-dashboard .student-class-number {
        font-size: 13px;
    }

    .student-dashboard .student-class-date {
        font-size: 11px;
    }

    .student-dashboard .student-class-status {
        min-width: 57px;
    }

    .student-dashboard .student-present,
    .student-dashboard .student-absent {
        min-height: 25px;
        padding: 4px 8px;
        font-size: 10px;
    }

    .student-dashboard .student-payment-class {
        padding: 9px 8px 8px;
    }

    .student-dashboard .student-payment-details {
        grid-column: 2 / -1;
        padding-top: 2px;
    }

    .student-dashboard .student-payment-title {
        font-size: 8px;
    }

    .student-dashboard .student-payment-info {
        gap: 7px;
    }

    .student-dashboard .student-payment-amount {
        font-size: 12px;
    }

    .student-dashboard .student-paid,
    .student-dashboard .student-pending {
        font-size: 10px;
    }

    .student-dashboard .student-message {
        margin-top: 42px;
        padding-top: 17px;
    }
}

/* VERY SMALL PHONES */

@media (max-width: 380px) {

    .student-dashboard .student-container {
        width: calc(100% - 24px);
        padding-top: 34px;
    }

    .student-dashboard .student-brand {
        font-size: 17px;
    }

    .student-dashboard .student-brand span {
        font-size: 9px;
    }

    .student-dashboard .student-logout {
        padding-left: 10px;
        padding-right: 10px;
    }

    .student-dashboard .student-welcome h1 {
        font-size: 29px;
    }

    .student-dashboard .student-stat-card {
        padding: 9px 8px;
    }

    .student-dashboard .student-stat-title {
        font-size: 9px;
    }

    .student-dashboard .student-roadmap {
        padding-left: 27px;
    }

    .student-dashboard .student-roadmap::before {
        left: 5px;
    }

    .student-dashboard .student-cycle-marker {
        left: -27px;
    }

    .student-dashboard .student-cycle-heading h3 {
        font-size: 18px;
    }

    .student-dashboard .student-cycle-count {
        font-size: 10px;
    }

    .student-dashboard .student-class-row {
        grid-template-columns: 27px minmax(0, 1fr) auto;
        column-gap: 7px;
    }

    .student-dashboard .student-class-icon {
        width: 25px;
        height: 25px;
    }

    .student-dashboard .student-class-number {
        font-size: 12px;
    }

    .student-dashboard .student-class-date {
        font-size: 10px;
    }

    .student-dashboard .student-class-status {
        min-width: 52px;
    }

    .student-dashboard .student-present,
    .student-dashboard .student-absent {
        padding-left: 7px;
        padding-right: 7px;
        font-size: 9px;
    }
}

/* =========================================================
   SHOW / HIDE OLDER CYCLES
   Minimal student portal style
   ========================================================= */

.student-dashboard .student-older-cycles-toggle {
    display: flex;
    justify-content: center;
    margin: 24px 0 10px;
}

.student-dashboard .student-older-cycles-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 42px;
    padding: 8px 18px;

    background: transparent;
    color: #176b58;

    border: 1px solid #b9d9ca;
    border-radius: 999px;

    font-family: inherit;
    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.student-dashboard .student-older-cycles-button:hover {
    background: #f1f8f4;
    border-color: #176b58;
    color: #0f4f41;
}

.student-dashboard .student-older-cycles-button:focus-visible {
    outline: 2px solid #176b58;
    outline-offset: 3px;
}

.student-dashboard #older-cycles-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    line-height: 1;

    transition: transform 0.2s ease;
}


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

@media (max-width: 700px) {

    .student-dashboard .student-older-cycles-toggle {
        margin: 20px 0 8px;
    }

    .student-dashboard .student-older-cycles-button {
        min-height: 44px;
        padding: 8px 17px;

        font-size: 11px;
    }

}


/* =========================================================
   VISHNU DEV PORTFOLIO
   Portfolio-only CSS
   Uses unique vd-* classes so existing FrameBlazer pages
   are not affected.
   ========================================================= */

.vd-portfolio {
    --vd-green: #176b58;
    --vd-green-dark: #0f5647;
    --vd-green-soft: #eaf5ee;
    --vd-cream: #fbfaf6;
    --vd-text: #13252b;
    --vd-muted: #63716d;
    --vd-border: #e4ebe7;
    background: var(--vd-cream);
    color: var(--vd-text);
    overflow: hidden;
}

.vd-portfolio * {
    box-sizing: border-box;
}

.vd-portfolio a {
    text-decoration: none;
}

/* HERO */

.vd-hero {
    position: relative;
    min-height: 560px;
    padding: 65px 20px 70px;
    background:
        radial-gradient(circle at 23% 46%, rgba(226, 239, 232, 0.75), transparent 21%),
        radial-gradient(circle at 86% 78%, rgba(231, 241, 231, 0.55), transparent 23%),
        var(--vd-cream);
}

.vd-hero-inner {
    width: min(1080px, 92%);
    min-height: 420px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px minmax(0, 1fr);
    gap: 55px;
    align-items: center;
}

.vd-hero-photo {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vd-photo-halo {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(232, 241, 234, 0.72);
}

.vd-photo-ring {
    position: relative;
    z-index: 2;
    width: 300px;
    height: 300px;
    padding: 7px;
    border: 2px solid #dce8e3;
    border-radius: 50%;
    background: #fff;
    box-shadow:
        0 14px 38px rgba(20, 48, 40, 0.12),
        0 0 0 7px rgba(255, 255, 255, 0.75);
}

.vd-photo-ring img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}


.vd-hero-content {
    max-width: 650px;
}

.vd-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #5c6d68;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.vd-hero-content h1 {
    margin: 0;
    color: var(--vd-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4rem, 7vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -3px;
}

.vd-hero-content h2 {
    margin: 18px 0 13px;
    color: #263d45;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 500;
    line-height: 1.55;
}

.vd-hero-content h2 b {
    margin: 0 5px;
    color: #91a19b;
    font-weight: 400;
}

.vd-hero-text {
    max-width: 600px;
    margin: 0 0 24px;
    color: var(--vd-muted);
    font-size: 15px;
    line-height: 1.7;
}

.vd-capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-bottom: 23px;
}

.vd-capability-grid article {
    min-height: 102px;
    padding: 13px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--vd-border);
    border-radius: 14px;
    box-shadow: 0 7px 22px rgba(20, 48, 40, 0.055);
}


.vd-capability-grid strong {
    display: block;
    margin-bottom: 3px;
    color: var(--vd-text);
    font-size: 14px;
}

.vd-capability-grid small {
    color: #71807b;
    font-size: 11px;
    line-height: 1.4;
}

.vd-socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 23px;
}

.vd-socials a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #34464d;
    font-size: 13px;
    font-weight: 600;
}

.vd-socials a span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 21px;
    height: 21px;
    padding: 0 3px;
    border: 1px solid #9db4ab;
    border-radius: 4px;
    color: var(--vd-green);
    font-size: 9px;
    font-weight: 800;
}

.vd-main-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    background: var(--vd-green);
    color: #fff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(23, 107, 88, 0.18);
}

.vd-main-button:hover {
    background: var(--vd-green-dark);
}


/* COMMON SECTIONS */

.vd-section {
    padding: 82px 20px;
}

.vd-skills {
    background: #fff;
}

.vd-section-inner {
    width: min(1080px, 92%);
    margin: 0 auto;
}

.vd-heading {
    margin-bottom: 38px;
}

.vd-heading > span {
    display: block;
    margin-bottom: 10px;
    color: var(--vd-green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.vd-heading h2 {
    margin: 0 0 9px;
    color: var(--vd-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    line-height: 1.08;
}

.vd-heading p {
    max-width: 680px;
    margin: 0;
    color: #65736f;
    font-size: 14px;
    line-height: 1.65;
}


/* SKILLS */

.vd-skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.vd-skill-card {
    min-height: 180px;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--vd-border);
    border-radius: 16px;
    box-shadow: 0 7px 23px rgba(20, 48, 40, 0.055);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vd-skill-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(20, 48, 40, 0.09);
}

.vd-skill-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 17px;
    font-weight: 800;
}

.vd-blue { background: #e6f4ff; color: #1686c7; }
.vd-purple { background: #eee8ff; color: #6d4bc0; }
.vd-green { background: #e5f3ed; color: #176b58; font-size: 24px; }
.vd-orange { background: #fff0dd; color: #ae661a; font-size: 22px; }
.vd-red { background: #fde8ed; color: #a83c57; font-size: 21px; }
.vd-teal { background: #e4f3ec; color: #27826b; font-size: 24px; }

.vd-skill-card h3 {
    margin: 0 0 7px;
    color: var(--vd-text);
    font-size: 16px;
}

.vd-skill-card p {
    margin: 0;
    color: #687773;
    font-size: 12.5px;
    line-height: 1.7;
}


/* ABOUT */

.vd-about {
    background: #f7faf7;
}

.vd-about-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 18px;
}

.vd-about-card {
    padding: 30px;
    background: #fff;
    border: 1px solid var(--vd-border);
    border-radius: 18px;
    box-shadow: 0 7px 24px rgba(20, 48, 40, 0.04);
}

.vd-about-card h3 {
    margin: 0 0 13px;
    color: var(--vd-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
}

.vd-about-card p {
    margin: 0 0 13px;
    color: #61716c;
    font-size: 13.5px;
    line-height: 1.8;
}

.vd-about-card p:last-child {
    margin-bottom: 0;
}

.vd-about-highlight {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #eaf5ee;
    border-color: #d5e9dd;
}

.vd-about-highlight > span {
    margin-bottom: 7px;
    color: var(--vd-green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.vd-about-highlight h3 {
    font-size: 29px;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .vd-hero-inner {
        grid-template-columns: 300px minmax(0, 1fr);
        gap: 35px;
    }

    .vd-photo-ring {
        width: 260px;
        height: 260px;
    }

    .vd-photo-halo {
        width: 305px;
        height: 305px;
    }

    .vd-skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 760px) {

    

    

    

    .vd-hero {
        padding: 45px 15px 60px;
    }

    .vd-hero-inner {
        width: 94%;
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .vd-hero-photo {
        min-height: 275px;
    }

    .vd-photo-ring {
        width: 225px;
        height: 225px;
    }

    .vd-photo-halo {
        width: 255px;
        height: 255px;
    }

    .vd-hero-content {
        max-width: 650px;
        margin: 0 auto;
    }

    .vd-hero-content h1 {
        font-size: clamp(3.3rem, 13vw, 4.8rem);
    }

    .vd-hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .vd-capability-grid {
        text-align: left;
    }

    

    .vd-skills-grid,
    .vd-about-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 560px) {

    

    .vd-capability-grid {
        grid-template-columns: 1fr;
    }

    .vd-capability-grid article {
        min-height: auto;
    }

    .vd-socials {
        justify-content: center;
        gap: 12px;
    }

    .vd-section {
        padding: 62px 15px;
    }

    .vd-section-inner {
        width: 94%;
    }

    .vd-heading {
        margin-bottom: 28px;
    }

    .vd-heading h2 {
        font-size: 2.35rem;
    }

    

    .vd-about-card {
        padding: 24px;
    }

    

}



/* =========================================================
   SOCIAL LINKS
   ========================================================= */

.vd-socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 23px;
}

.vd-socials a {
    position: relative;
    color: #34464d;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.vd-socials a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.2s ease;
}

.vd-socials a:hover {
    color: #176b58;
}

.vd-socials a:hover::after {
    width: 100%;
}

.vd-social-separator {
    color: #98a2b3;
    font-size: 13px;
}

@media (max-width: 560px) {
    .vd-socials {
        justify-content: center;
        gap: 10px;
    }
}
