
/* --- Slider Styles --- */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 60vh;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.slide-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.slide-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.btn-slider {
    display: inline-block;
    background-color: var(--color-accent-blue);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 300ms, transform 300ms;
}

.btn-slider:hover {
    background-color: var(--color-accent-hover);
    transform: scale(1.03);
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    z-index: 2;
    font-size: 1.5rem;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}


/* --- MAIN Content Positioning (Adjusted) --- */
main {
    padding: auto;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Ensure space at the bottom */
}


/* --- NEW: Company Overview Section Styles --- */
.company-overview {
    width: 100%;
    max-width: 1280px;
    padding: 4rem 2rem;
    background-color: var(--color-section-bg-light);
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    margin-top: 2rem;
    /* Add spacing below navbar */
}

.overview-header {
    text-align: center;
    margin-bottom: 3rem;
}

.overview-header h2 {
    font-size: 2.5rem;
    color: var(--color-accent-blue);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.overview-header p {
    font-size: 1.15rem;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto;
}

.key-focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.focus-card {
    background-color: var(--color-section-bg-dark);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-top: 4px solid var(--color-accent-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 300ms, background-color 300ms;
}

.focus-card:hover {
    transform: translateY(-5px);
    background-color: #1a243a;
    /* Slight lift and color change on hover */
}

.focus-card h3 {
    font-size: 1.35rem;
    color: var(--color-accent-blue);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Icon styling (assuming you'd use a small SVG or image here) */
.focus-card h3 svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: var(--color-accent-blue);
}

.focus-card p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.focus-card a {
    color: var(--color-accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 300ms;
    display: inline-block;
}

.focus-card a:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}

/* CTA Section at the bottom of the overview */
.overview-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px dashed var(--color-overlay-light);
}

.overview-cta strong {
    display: block;
    font-size: 1.5rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-accent-blue);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 300ms, transform 300ms;
}

.cta-button:hover {
    background-color: var(--color-accent-hover);
    transform: scale(1.03);
}


/* Media Query for Medium (md) breakpoint - typical 768px */
@media (min-width: 768px) {

    main {
        padding:0;
    }
}