/* Base Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

/* Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.title-line {
    width: 80px;
    height: 3px;
    background-color: #e17108;
    margin: 0 auto 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 50vh;
    background-image: url('bg-about.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 65px; /* Match header height */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 20px;
    margin-top: 20px;
}

.hero-content .title-line {
    background-color: #e17108;
}

/* About Section */
.background-wrapper {
    padding: 80px 0;
    background-color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 3;
}

.about-text p {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: justify;
    color: #555;
}

.about-image {
    flex: 2;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Values Section */
.values-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: #e17108;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 30px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.value-card p {
    color: #666;
    font-size: 15px;
}

/* Vision & Mission Section */
.vision-mission {
    padding: 80px 0;
    background-color: white;
}

.vm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 50px;
}

.vision, .mission {
    flex: 1;
    padding: 40px;
    border-radius: 10px;
    background-color: #f8f8f8;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.vision:hover, .mission:hover {
    transform: translateY(-10px);
}

.vm-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.vm-header i {
    font-size: 30px;
    color: #e17108;
    margin-right: 15px;
}

.vision h2, .mission h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.vision .title-line, .mission .title-line {
    margin: 0 0 20px 0;
    width: 60px;
}

.vision p, .mission p {
    font-size: 16px;
    color: #555;
    text-align: left;
}

/* Team Section */
.team-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0 5px;
    padding: 0 20px;
    color: #333;
}

.member-title {
    color: #e17108;
    font-weight: 600;
    margin: 0 0 10px;
    padding: 0 20px;
}

.member-bio {
    color: #666;
    font-size: 14px;
    padding: 0 20px 20px;
    margin: 0;
}

/* Call to Action Section */
.cta-section {
    background-color: #222;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ddd;
}

.cta-button {
    display: inline-block;
    background-color: #e17108;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #ff8000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(225, 113, 8, 0.4);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .hero-content h1 {
        font-size: 40px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .about-image img {
        max-width: 250px;
    }
    
    .vm-container {
        flex-direction: column;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .hero-section {
        height: 40vh;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .background-wrapper {
        padding: 60px 0;
    }
    
    .values-section, .vision-mission, .team-section {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media screen and (max-width: 576px) {
    .hero-section {
        height: 35vh;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .about-text p {
        font-size: 15px;
    }
    
    .value-card {
        padding: 20px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 24px;
    }
    
    .vision, .mission {
        padding: 30px;
    }
    
    .vm-header i {
        font-size: 24px;
    }
    
    .vision h2, .mission h2 {
        font-size: 24px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .team-member h3 {
        font-size: 18px;
    }
}