/* Home Page Specific Styles */

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Photo + dark overlay (white text stays readable) */
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(7, 26, 51, 0.65) 60%, rgba(11, 42, 91, 0.65) 100%),
        url("/LJS1.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;

    /* optional: makes the photo look nicer */
    filter: saturate(1.05) contrast(1.05);
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: left;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-navy);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--corporate-blue);
    border: 2px solid var(--corporate-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--soft-blue);
    border-color: var(--soft-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* Main Content */
.main-content {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    z-index: 10;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.content-left {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
}

.intro-section,
.specializations-section,
.accreditation-section,
.commitment-section {
    margin-bottom: 30px;
}

.intro-text,
.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-grey);
    margin-bottom: 20px;
}

.services-list {
    list-style: none;
    padding-left: 0;
}

.services-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--dark-grey);
}

.services-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--corporate-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Sidebar */
.sidebar {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
    text-align: center;
}

.accreditation-logos {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.logo-card {
    display: flex;
    justify-content: center;
}

.hrd-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 10px var(--shadow);
    border: 2px solid var(--light-grey);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hrd-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo-note {
    font-size: 0.9rem;
    color: var(--medium-grey);
    font-style: italic;
}

/* Responsive */
@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .content-left {
        padding: 25px;
    }

    .main-content {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }
}

