.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/hero-bg.jpg') no-repeat center center/cover;
    z-index: -1;
    animation: fadeIn 2s ease-in-out;
}

.hero__content {
    z-index: 1;
    max-width: 800px;
    padding: 0 1rem;
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--color-white);
}

.hero__btn {
    background: var(--color-secondary);
    padding: 0.75rem 2rem;
    border-radius: 5px;
    color: var(--color-white);
    font-size: 1rem;
    transition: background 0.3s ease;
}

.hero__btn:hover {
    background: var(--color-primary);
}

.featured-skills {
    padding: 4rem 2rem;
    background: var(--color-white);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.skill-card {
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-10px);
}

.skill-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.skill-card__content {
    padding: 1rem;
    text-align: center;
}

.skill-card {
    background: var(--color-white);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 180px;
    justify-content: center;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.skill-card__icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.skill-card__content h3 {
    color: var(--color-dark);
    font-size: 1.2rem;
    margin: 0;
}

.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: var(--color-primary);
}

.modal-skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.modal-skill-card {
    background: var(--color-white);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modal-skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal-skill-card i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.about,
.what-we-do,
.scope {
    background: var(--color-white);
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto 3rem auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.about h2,
.what-we-do h2,
.scope h2 {
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about p,
.what-we-do p,
.scope p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.featured-users {
    padding: 4rem 2rem;
    background: var(--color-white);
}

.users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.user-card {
    background: var(--color-white);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.user-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.user-card h4 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.user-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}
.info-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: 0 auto 3rem auto;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.info-section.reverse {
    flex-direction: row-reverse;
}

.info-content {
    flex: 1 1 50%;
    padding: 1rem 2rem;
}

.info-content h2 {
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.info-image {
    flex: 1 1 50%;
    padding: 1rem;
    text-align: center;
}

.info-image img {
    max-width: 100%;
    border-radius: 10px;
    height: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}