/* for page */
/* About Page Specific Styles */
 .about-hero-image { 
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.about-hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(12, 54, 73, 0.1), rgba(12, 54, 73, 0.4));
}

.our-story-section {
    padding: 80px 0;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.story-content {
    padding-left: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 20px 0;
}

.mission-vision-section {
    padding: 80px 0;
}

.mission-card, .vision-card {
    transition: transform 0.3s;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.values-section {
    padding: 80px 0;
}

.value-item {
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s;
}

.value-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
}

.team-section {
    padding: 80px 0;
}

.founder-card {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.founder-image {
    flex: 0 0 300px;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-content {
    padding: 30px;
}

.founder-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member {
    padding: 20px;
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid var(--light-bg);
}

.why-choose-section {
    padding: 80px 0;
}

.feature-card {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

/* Responsive Styles */
 @media (max-width: 992px) {
    .story-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .founder-card {
        flex-direction: column;
    }
    
    .founder-image {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .value-item, .feature-card {
        padding: 20px 15px;
    }
}  