﻿/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 20px;
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 14px;
}

.breadcrumb-home-icon {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

.breadcrumb-text {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #4B5563;
}

.breadcrumb-arrow {
    width: 14px;
    height: 14px;
    opacity: 0.5;
}

.breadcrumb-current {
    color: #111827;
    font-weight: 500;
}

/* Header layout */
.landing-header {
    display: flex;
    justify-content: center;
    padding: 1rem 0 0rem;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.landing-header-icon {
    width: 87px;
    height: 87px;
    margin-bottom: 1.5rem;
}

.landing-header h1 {
    font-size: 24px;
    font-weight: 500;
    color: #05C653;
    margin: 0;
    box-shadow: none;
}

/* Grid layout */
.landing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem 8rem;
}


/* Box styling */
.landing-box {
    border: 2px solid #F3F4F6;
    background: #FFFFFF;
    box-shadow: 0px 0px 0px 0px #00000000, 0px 4px 6px -1px #0000001A, 0px 2px 4px -2px #0000001A;
    border-radius: 8px;
    padding: 2rem 5rem;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center; 
}

h1:focus {
    outline: none;
}


/* Icon circle */
.icon-circle {
    width: 48px;
    height: 48px;
    background-color: #EFF6FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.box-icon {
    width: 24px;
    height: 24px;
}

/* Text styling */
.box-title {
    font-size: 16px;
    font-weight: 500;
    color: #1F2937;
    margin-bottom: 0.25rem;
}

.box-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: #6B7280;
    line-height: 1.4;
    margin-top: 4px;
    max-width: 180px; 
    white-space: normal;
}

/* ✅ Large screens (above 1600px) */
@media (min-width: 1600px) {
    .landing-grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 2rem 10rem;
    }

    .landing-box {
        padding: 2rem 4rem;
    }
}


/* ✅ Laptops (1024px to 1366px) */
@media (max-width: 1366px) {
    .landing-grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 2rem 4rem;
    }

    .landing-box {
        padding: 1.5rem 3rem;
    }

    .landing-header-icon {
        width: 72px;
        height: 72px;
    }

    .landing-header h1 {
        font-size: 22px;
    }
}

/* ✅ Tablets (768px to 1024px) */
@media (max-width: 1024px) {
    .landing-grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 2rem 2rem;
    }

    .landing-box {
        padding: 1.5rem 2rem;
    }

    .box-title {
        font-size: 15px;
    }

    .box-subtitle {
        font-size: 11px;
    }

    .landing-header-icon {
        width: 64px;
        height: 64px;
    }

    .landing-header h1 {
        font-size: 20px;
    }
}

/* ✅ Mobile (below 768px) */
@media (max-width: 768px) {
    .landing-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .landing-box {
        padding: 1rem 1.5rem;
    }

    .box-title {
        font-size: 14px;
    }

    .box-subtitle {
        font-size: 11px;
    }

    .landing-header-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }

    .landing-header h1 {
        font-size: 18px;
    }
}
