/* Hero Section for About Page */
.hero-about {
    position: relative;
    padding-top: 115px;
    padding-bottom: 50px;
    background: url('../images/about-bg.webp') no-repeat center center/cover;
    text-align: center;
    color: #fff;
}

.hero-about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(1, 29, 56, 0.8), rgba(0, 78, 152, 0.7));
    z-index: 1;
}

.hero-about .container {
    position: relative;
    z-index: 2;
}

.hero-about h1 {
    font-size: 3.5rem;
    font-weight: 600;
}

.hero-about .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
}

/* About Content Section */
.about-content-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    text-align: justify;
    margin-bottom: 15px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.team-member-info h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #333;
}

.team-member-info span {
    color: #0056b3;
    font-weight: 600;
}

/* CTA Section for About Page */
#cta-about {
    position: relative;
    overflow: hidden;
}

#particles-js-about {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

#cta-about .container {
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        order: -1; /* Move image above text on smaller screens */
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hero-about h1 {
        font-size: 2.5rem;
    }
}
