/* Reset & Base Styles */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



:root {

    /* IngramSpark Color Palette */

    --primary-color: #4E9EB8;

    /* Fountain Blue */

    --primary-dark: #3a7a8f;

    --secondary-color: #6ACCE5;

    /* Turquoise Blue */

    --secondary-dark: #4E9EB8;

    /* Fountain Blue - darker accent */

    --text-color: #333333;

    --light-bg: #f8f9fa;

    --white: #ffffff;

    --grey-text: #666666;

    --yellow: #FFD700;

    --yellow-dark: #ccac00;

}



body {

    font-family: 'Inter', system-ui, -apple-system, sans-serif;

    line-height: 1.6;

    color: var(--text-color);

    background-color: var(--white);

}



a {

    text-decoration: none;

    color: inherit;

    transition: color 0.3s;

}



ul {

    list-style: none;

}



.container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

}



/* Buttons */

.btn {

    display: inline-block;

    padding: 12px 24px;

    border-radius: 4px;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;

    text-align: center;

}



.btn-primary {

    background-color: var(--primary-color);

    color: var(--white);

    border: 2px solid var(--primary-color);

}



.btn-primary:hover {

    background-color: var(--primary-dark);

    border-color: var(--primary-dark);

}



.btn-secondary {

    background-color: transparent;

    color: var(--primary-color);

    border: 2px solid var(--primary-color);

}



.btn-secondary:hover {

    background-color: var(--primary-color);

    color: var(--white);

}



.btn-yellow {

    background-color: var(--yellow);

    color: var(--text-color);

    border: 2px solid var(--yellow);

}



.btn-yellow:hover {

    background-color: var(--yellow-dark);

    border-color: var(--yellow-dark);

}



.btn-text {

    color: var(--text-color);

    font-weight: 600;

    margin-right: 20px;

}



.btn-text:hover {

    color: var(--primary-color);

}



.btn-large {

    padding: 16px 32px;

    font-size: 1.1rem;

}



/* Header: Topbar & Navbar */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

}



.topbar {

    background-color: var(--white);

    padding: 10px 0;

    border-bottom: 1px solid #eee;

}



.topbar-container {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.logo-container {

    display: flex;

    align-items: center;

    gap: 15px;

}



.logo-img {

    height: 48px;

    width: auto;

}



.logo-text {

    font-size: 1.5rem;

    font-weight: 700;

    color: var(--primary-color);

}



.logo-chinese-img {

    height: 32px;

    width: auto;

    margin-left: 5px;

}



.topbar-auth {

    display: flex;

    align-items: center;

}



.mobile-menu-toggle {

    display: none;

    flex-direction: column;

    justify-content: space-between;

    width: 30px;

    height: 21px;

    background: transparent;

    border: none;

    cursor: pointer;

    padding: 0;

    z-index: 1001;

}



.mobile-menu-toggle span {

    width: 100%;

    height: 3px;

    background-color: var(--primary-color);

    border-radius: 3px;

    transition: all 0.3s ease;

}



.mobile-menu-toggle.active span:nth-child(1) {

    transform: translateY(9px) rotate(45deg);

}



.mobile-menu-toggle.active span:nth-child(2) {

    opacity: 0;

}



.mobile-menu-toggle.active span:nth-child(3) {

    transform: translateY(-9px) rotate(-45deg);

}



.navbar {

    background-color: var(--white);

    padding: 12px 0;

}



@media (min-width: 769px) {

    .mobile-menu {

        display: none !important;

    }

}



.mobile-menu {

    display: none;

    background-color: var(--white);

    border-top: 1px solid #eee;

    padding: 20px 0;

    position: absolute;

    width: 100%;

    top: 100%;

    left: 0;

    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);

}



.mobile-menu.active {

    display: block;

}



.mobile-nav-links {

    display: flex;

    flex-direction: column;

    gap: 15px;

    margin-bottom: 25px;

}



.mobile-nav-links a {

    font-weight: 600;

    font-size: 1.1rem;

    color: var(--text-color);

    display: block;

}



.mobile-auth {

    display: flex;

    flex-direction: column;

    gap: 15px;

    padding-top: 20px;

    border-top: 1px solid #eee;

}



.mobile-auth .btn-text {

    margin: 0;

    padding: 10px 0;

}



.mobile-auth .btn {

    width: 100%;

}



.nav-container {

    display: flex;

    justify-content: center;

    align-items: center;

}



.nav-links {

    display: flex;

    gap: 60px;

    align-items: center;

}



.nav-links a {

    font-weight: 600;

    font-size: 0.95rem;

    color: var(--text-color);

}



.nav-links a:hover {

    color: var(--primary-color);

}



/* Hero Section */

.hero {

    background: linear-gradient(135deg, #fdfbfd 0%, #e6f7fc 100%);

    padding: 50px 0;

    text-align: left;

}



.hero-container {

    display: grid;

    grid-template-columns: 1.2fr 1fr;

    gap: 60px;

    align-items: center;

}



.hero-content {

    max-width: 100%;

}



.hero h1 {

    font-size: 4rem;

    color: var(--primary-color);

    margin-bottom: 24px;

    line-height: 1.1;

}



.hero .subtitle {

    font-size: 1.4rem;

    color: var(--grey-text);

    margin-bottom: 30px;

    line-height: 1.6;

}



.hero-points {

    list-style: none;

    padding: 0;

    margin-bottom: 40px;

}



.hero-points li {

    font-size: 1.1rem;

    color: var(--text-color);

    margin-bottom: 15px;

    position: relative;

    padding-left: 25px;

    font-weight: 500;

}



.hero-points li::before {

    content: "●";

    position: absolute;

    left: 0;

    color: var(--primary-color);

    font-size: 0.8rem;

    top: 2px;

}



.hero-buttons {

    display: flex;

    justify-content: flex-start;

    gap: 20px;

}



.hero-image-placeholder {

    background-color: #e0e0e0;

    border-radius: 8px;

    width: 100%;

    aspect-ratio: 4/3;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #888;

    font-weight: 600;

    border: 2px dashed #ccc;

}



.hero-trust p {

    font-size: 0.9rem;

    color: var(--grey-text);

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 10px;

}



/* About Page Banner */

.page-banner {

    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);

    padding: 60px 0;

    text-align: center;

    color: var(--white);

}



.page-banner h1 {

    font-size: 3rem;

    font-weight: 700;

}



/* Stats Section */

.stats {

    background-color: var(--primary-color);

    color: var(--white);

    padding: 40px 0;

}



.stats-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    gap: 30px;

    text-align: center;

}



.stat-item h3 {

    font-size: 2.5rem;

    margin-bottom: 5px;

    color: white;

    /* Pop of turquoise on purple bg */

}



.stat-item p {

    font-size: 1.1rem;

    opacity: 0.9;

}



/* Features Section */

.features {

    padding: 80px 0 0;

    background-color: var(--white);

}



.section-title {

    text-align: center;

    font-size: 2.5rem;

    margin-bottom: 80px;

    color: var(--text-color);

}



.feature-item {

    padding: 100px 0;

}



.feature-item:nth-child(odd) {

    background-color: var(--white);

}



.feature-item:nth-child(even) {

    background-color: var(--light-bg);

}



.feature-item:last-child {

    padding-bottom: 120px;

}



.feature-item h3 {

    font-size: 3rem;

    margin-bottom: 40px;

    color: var(--primary-color);

    text-align: center;

}



.heading-eng {

    display: block;

    font-size: 1.9rem;

    color: var(--grey-text);

    margin-top: 0px;

    font-weight: 400;

}



.feature-split {

    display: grid;

    grid-template-columns: 1fr 1.2fr;

    gap: 80px;

    align-items: center;

}



.feature-item:nth-child(even) .feature-split {

    direction: rtl;

}



.feature-item:nth-child(even) .feature-split>* {

    direction: ltr;

}



.feature-split.reverse {

    direction: rtl !important;

}



.feature-split.reverse>* {

    direction: ltr !important;

}



.feature-split.no-reverse {

    direction: ltr !important;

}



.feature-split.no-reverse>* {

    direction: ltr !important;

}



.feature-image img {

    width: 100%;

    height: auto;

    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    display: block;

}



/* Specific sizing for SVG illustrations to prevent them from becoming too large */

.feature-image img[src$=".svg"] {

    max-width: 450px;

    margin: 0 auto;

    box-shadow: none;

    /* SVGs often look cleaner without shadows */

}



.feature-image-placeholder {

    background-color: #f0f0f0;

    border-radius: 12px;

    width: 100%;

    aspect-ratio: 16/9;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #999;

    font-weight: 600;

    border: 2px dashed #ddd;

}



.feature-list {

    list-style: none;

    padding: 0;

}



.feature-list li {

    position: relative;

    padding-left: 30px;

    margin-bottom: 15px;

    font-size: 1.1rem;

    color: var(--grey-text);

}



.feature-list li::before {

    content: "✔";

    position: absolute;

    left: 0;

    color: var(--primary-color);

    font-weight: bold;

}



.feature-subheading {

    font-size: 2rem;

    margin: 0px 0 20px;

    line-height: 1.4;

    font-weight: 600;

}



.vision-points {

    list-style: none;

    padding: 0;

}



.vision-points li {

    font-size: 1.1rem;

    color: var(--grey-text);

    margin-bottom: 25px;

    line-height: 1.7;

    position: relative;

    padding-left: 20px;

}



.vision-points li::before {

    content: "•";

    position: absolute;

    left: 0;

    color: var(--primary-color);

    font-weight: bold;

}



/* Target Section (Goal Grid) */

.target-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;

    margin-top: 30px;

}



.target-module {

    background: #fdfdfd;

    padding: 20px;

    border-radius: 8px;

    border-left: 4px solid var(--primary-color);

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);

}



.target-module h5 {

    font-size: 1.25rem;

    color: var(--text-color);

    margin-bottom: 10px;

    font-weight: 700;

}



.target-module p {

    font-size: 1rem;

    color: var(--grey-text);

    line-height: 1.5;

}



@media (max-width: 600px) {

    .target-grid {

        grid-template-columns: 1fr;

    }

}



/* Stacked Feature Styles */

.feature-stack {

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

}



.feature-stack-img {

    max-width: 100%;

    height: auto;

    margin: 40px 0;

    display: block;

}



.text-center {

    text-align: center;

}



.list-centered {

    display: inline-block;

    text-align: left;

    margin: 0 auto;

}



/* Process Section Styles */

.process-grid {

    display: grid;

    grid-template-columns: 1fr 100px 1fr;

    grid-template-rows: auto 100px auto 100px auto;

    gap: 0;

    max-width: 1000px;

    margin: 60px auto;

}



.process-step {

    background: #fdfdfd;

    padding: 30px;

    border-radius: 8px;

    border: 1px solid #eee;

    text-align: center;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    grid-row: auto;

}



/* Process Grid Positioning - Explicit Zigzag Flow */

.process-grid>*:nth-child(1) {

    grid-row: 1;

    grid-column: 1;

}



/* Step 1: Evaluation (Left) */

.process-grid>*:nth-child(2) {

    grid-row: 1;

    grid-column: 2;

}



/* Arrow 1 -> 2 (Horizontal) */

.process-grid>*:nth-child(3) {

    grid-row: 1;

    grid-column: 3;

}



/* Step 2: Positioning (Right) */

.process-grid>*:nth-child(4) {

    grid-row: 2;

    grid-column: 3;

}



/* Arrow 2 -> 3 (Vertical Down) */

.process-grid>*:nth-child(5) {

    grid-row: 3;

    grid-column: 3;

}



/* Step 3: Editing (Right) */

.process-grid>*:nth-child(6) {

    grid-row: 3;

    grid-column: 2;

}



/* Arrow 3 -> 4 (Horizontal Left) */

.process-grid>*:nth-child(7) {

    grid-row: 3;

    grid-column: 1;

}



/* Step 4: Translation (Left) */

.process-grid>*:nth-child(8) {

    grid-row: 4;

    grid-column: 1;

}



/* Arrow 4 -> 5 (Vertical Down) */

.process-grid>*:nth-child(9) {

    grid-row: 5;

    grid-column: 1;

}



/* Step 5: Production (Left) */

.process-grid>*:nth-child(10) {

    grid-row: 5;

    grid-column: 2;

}



/* Arrow 5 -> 6 (Horizontal Right) */

.process-grid>*:nth-child(11) {

    grid-row: 5;

    grid-column: 3;

}



/* Step 6: Launch (Right) */



.process-step .step-icon {

    font-size: 2.2rem;

    margin-bottom: 15px;

}



.process-step h5 {

    font-size: 1.2rem;

    color: var(--secondary-color);

    margin-bottom: 10px;

    font-weight: 600;

}



.process-step p {

    font-size: 0.95rem;

    color: var(--grey-text);

    line-height: 1.5;

}



.process-arrow {

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    z-index: 1;

}



.arrow-horizontal::before {

    content: '';

    width: 60px;

    height: 2px;

    background: #555;

}



.arrow-horizontal::after {

    content: '';

    width: 0;

    height: 0;

    border-top: 6px solid transparent;

    border-bottom: 6px solid transparent;

    position: absolute;

}



.arrow-right::after {

    border-left: 10px solid #555;

    transform: translateX(30px);

}



.arrow-left::after {

    border-right: 10px solid #555;

    transform: translateX(-30px);

}



.arrow-vertical {

    height: 100px;

}



.arrow-vertical::before {

    content: '';

    width: 2px;

    height: 60px;

    background: #555;

}



.arrow-vertical::after {

    content: '';

    width: 0;

    height: 0;

    border-left: 6px solid transparent;

    border-right: 6px solid transparent;

    border-top: 10px solid #555;

    position: absolute;

    bottom: 15px;

}



.empty-cell {

    height: 100px;

}



@media (max-width: 900px) {

    .process-grid {

        grid-template-columns: 1fr;

        grid-template-rows: none;

        gap: 0;

    }



    .process-step,

    .process-arrow {

        grid-column: auto !important;

        grid-row: auto !important;

    }



    .process-arrow {

        display: flex;

        height: 60px;

        width: 100%;

        justify-content: center;

    }



    /* Force all arrows to look like vertical down arrows on mobile */

    .process-arrow::before {

        width: 2px !important;

        height: 40px !important;

        background: #555;

    }



    .process-arrow::after {

        border-left: 6px solid transparent !important;

        border-right: 6px solid transparent !important;

        border-top: 10px solid #555 !important;

        border-bottom: none !important;

        transform: translate(0, 5px) !important;

        bottom: 15px;

        left: auto;

        right: auto;

        position: absolute;

    }



    .empty-cell {

        display: none;

    }



    .process-step {

        margin: 5px 0;

    }

}



/* Categories Section Styles */

.categories-intro {

    text-align: center;

    max-width: 800px;

    margin: 0 auto 40px;

    font-size: 1.1rem;

    color: var(--secondary-color);

    font-weight: 500;

}



.category-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

    gap: 30px;

    max-width: 1200px;

    margin: 0 auto;

}



.category-card {

    background: var(--white);

    padding: 30px;

    border-radius: 8px;

    border: 1px solid #eee;

    border-left: 4px solid var(--primary-color);

    transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.category-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);

}



.category-card h5 {

    font-size: 1.3rem;

    color: var(--secondary-color);



    display: flex;

    align-items: center;

    gap: 10px;

}

.category-card h6 {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--grey-text);
}



.category-card .card-eng {

    font-size: 0.9rem;

    color: var(--grey-text);

    font-weight: 400;

}



.category-card p {

    font-size: 1rem;

    color: var(--grey-text);

    line-height: 1.6;

}



@media (max-width: 768px) {

    .category-grid {

        grid-template-columns: 1fr;

    }

}



/* About Page Content Adjustments */





.feature-item p strong {

    margin-bottom: 10px;

}



.prominent-text {

    font-size: 1.4rem;

    font-weight: 700;

    color: var(--primary-color);

    border-left: 4px solid var(--secondary-color);

    padding-left: 15px;

    margin: 25px 0;

    line-height: 1.4;

}



.feature-item blockquote {

    margin-top: 30px;

    padding: 24px;

    border-left: 5px solid var(--primary-color);

    font-style: italic;

    color: var(--grey-text);

    border-radius: 4px;

}



.feature-item:nth-child(odd) blockquote {

    background-color: var(--light-bg);

}



.feature-item:nth-child(even) blockquote {

    background-color: var(--white);

}



.feature-item ol {

    list-style-position: inside;

    margin-top: 20px;

}



.feature-item ol li {

    margin-bottom: 15px;

    font-size: 1.1rem;

    color: var(--grey-text);

}



.feature-item hr {

    border: none;

    border-top: 1px solid #eee;

    margin: 40px 0;

}



.feature-item h4 {

    color: var(--primary-color);

    font-size: 1.5rem;

}



/* CTA Section */

.cta {

    padding: 80px 0;

    text-align: center;

    background-color: #fcfcfc;

}





.cta h2 {

    font-size: 2.4rem;

    margin-bottom: 15px;

    color: var(--secondary-color);

}



.cta p {

    font-size: 1.2rem;

    margin-bottom: 30px;

    color: var(--grey-text);

}



.cta-image-wrapper {

    margin-top: 50px;

    max-width: 900px;

    margin-left: auto;

    margin-right: auto;

}



.cta-image {

    width: 100%;

    height: auto;

    border-radius: 12px;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);

}



/* Footer */

.footer {

    background-color: var(--primary-color);

    color: var(--white);

    padding: 70px 0 0px;

}



.footer-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 40px;

    margin-bottom: 50px;

}



.footer h4 {

    color: var(--white);

    margin-bottom: 20px;

    font-size: 1.1rem;

}



.footer ul li {

    margin-bottom: 10px;

}



.footer-bottom-section {

    margin-top: 50px;

}



.footer-social-row {

    display: flex;

    justify-content: flex-start;

    margin-bottom: 20px;

}



.footer-copyright-bar {

    padding: 30px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.2);

    text-align: center;

}



.social-icons {

    display: flex;

    gap: 20px;

    align-items: center;

}



.social-icons li {

    margin: 0 !important;

}



.social-icons img {

    height: 32px;

    width: auto;

    transition: transform 0.3s ease, filter 0.3s ease;

}



.social-icons img:hover {

    transform: scale(1.1);

    filter: brightness(1.2);

}



.footer-copyright-bar p {

    font-size: 0.9rem;

    color: var(--white);

    opacity: 0.9;

}



@media (max-width: 768px) {

    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 30px;

    }



    .footer-social-row {

        justify-content: center;

    }

}



@media (max-width: 480px) {

    .footer-grid {

        grid-template-columns: 1fr;

    }

}



/* Page Banner Styles (Universal) */

.page-banner {

    background-color: var(--primary-color);

    color: var(--white);

    padding: 80px 0;

    text-align: center;

}



.page-banner h1 {

    font-size: 3rem;

    font-weight: 700;

}



/* Service Detail Styles */

.service-detail {

    padding: 100px 0;

    background-color: var(--white);

}



.service-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}



.service-info h2 {

    font-size: 2.5rem;

    margin-bottom: 30px;

    color: var(--primary-color);

}



.service-list {

    list-style: none;

    padding: 0;

}



.service-list li {

    position: relative;

    padding-left: 35px;

    margin-bottom: 20px;

    font-size: 1.2rem;

    line-height: 1.6;

    color: var(--text-color);

}



.service-list li::before {

    content: "●";

    position: absolute;

    left: 0;

    color: var(--primary-color);

    font-size: 1rem;

    top: 2px;

}



.service-image-container img {

    width: 100%;

    height: auto;

    border-radius: 12px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);

}



/* Partners Page Styles */

.partners-intro {

    padding: 80px 0 40px;

    text-align: center;

    max-width: 1200px;

    margin: 0 auto;

}



.partners-intro h2 {

    font-size: 2rem;

    color: var(--primary-color);

    line-height: 1.6;

}



.partners-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));

    gap: 25px;

    padding: 20px 0 100px;

}



.partner-card {

    background-color: var(--white);

    border-radius: 8px;

    padding: 30px 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    height: 100%;

    min-height: 160px;

}



.partner-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);

}



.partner-logo {

    max-width: 100%;

    max-height: 50px;

    width: auto;

    height: auto;

    margin-bottom: 20px;

    object-fit: contain;

}



.partner-name {

    font-size: 0.85rem;

    color: #888;

    font-weight: 400;

}



@media (max-width: 992px) {

    .service-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }



    .page-banner h1 {

        font-size: 2.5rem;

    }

}



/* Mobile Responsiveness */

@media (max-width: 768px) {

    .hero {

        padding: 60px 0;

        text-align: center;

    }



    .hero-container {

        grid-template-columns: 1fr;

        gap: 40px;

    }



    .hero-content {

        order: 1;

    }



    .hero-image {

        order: 2;

    }



    .hero h1 {

        font-size: 2.2rem;

    }



    .hero-buttons {

        justify-content: center;

    }



    .navbar {

        display: none;

    }



    .topbar-auth {

        display: none;

    }



    .mobile-menu-toggle {

        display: flex;

    }



    .logo {

        margin: 0 auto;

    }



    /* Features Mobile Styles */

    .section-title {

        font-size: 2rem;

        margin-bottom: 50px;

    }



    .feature-item {

        margin-bottom: 80px;

    }



    .feature-item h3 {

        font-size: 1.6rem;

        margin-bottom: 25px;

    }



    .feature-split {

        grid-template-columns: 1fr;

        gap: 30px;

    }



    .feature-item:nth-child(even) .feature-split {

        direction: ltr;

        /* Reset RTL for mobile */

    }



    .feature-item:nth-child(even) .feature-split>* {

        direction: ltr;

    }



    .feature-image {

        order: 1;

    }



    .feature-content {

        order: 2;

    }

}



/* Assessment Page Styles */

.assessment-section {

    padding: 80px 0;

    background-color: #fcfcfc;

}



.container-narrow {

    max-width: 800px;

    margin: 0 auto;

}



.assessment-intro {

    text-align: center;

    margin-bottom: 50px;

}



.assessment-intro h2 {

    font-size: 2.2rem;

    color: var(--primary-color);

    margin-bottom: 15px;

}



.assessment-intro .subtitle {

    font-size: 1.2rem;

    color: var(--grey-text);

    margin-bottom: 30px;

}



.assessment-intro .checklist {

    display: flex;

    justify-content: center;

    gap: 30px;

    list-style: none;

    padding: 0;

    flex-wrap: wrap;

}



.assessment-intro .checklist li {

    font-weight: 600;

    color: var(--secondary-color);

}



.assessment-form {

    background: var(--white);

    padding: 40px;

    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

}



.form-group {

    margin-bottom: 25px;

}



.form-group label {

    display: block;

    margin-bottom: 10px;

    font-weight: 600;

    color: var(--text-color);

}



.form-group input[type="text"],

.form-group select,

.form-group textarea {

    width: 100%;

    padding: 12px 15px;

    border: 1px solid #ddd;

    border-radius: 6px;

    font-family: inherit;

    font-size: 1rem;

    transition: border-color 0.3s ease;

}



.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus {

    outline: none;

    border-color: var(--primary-color);

}



.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

}



.form-submit {

    margin-top: 35px;

}



.btn-full {

    width: 100%;

}



/* Custom File Input */

.file-input-wrapper {

    position: relative;

    display: flex;

    align-items: center;

    gap: 15px;

}



.file-input-wrapper input[type="file"] {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    opacity: 0;

    cursor: pointer;

    z-index: 1;

    /* Place above the label but transparent */

}



.file-input-button {

    position: relative;

    z-index: 0;

    display: inline-block;

    padding: 8px 20px;

    background-color: #eee;

    color: var(--text-color);

    border-radius: 4px;

    cursor: pointer;

    font-size: 0.9rem;

    font-weight: 500;

    transition: background-color 0.3s ease;

}



.file-input-button:hover {

    background-color: #ddd;

}



.file-name {

    color: var(--grey-text);

    font-size: 0.9rem;

}



@media (max-width: 600px) {

    .assessment-intro h2 {

        font-size: 1.8rem;

    }



    .assessment-intro .checklist {

        flex-direction: column;

        gap: 10px;

        align-items: center;

    }



    .assessment-form {

        padding: 25px;

    }



    .form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }

}