/* About Us Page Styles */
:root {
    --primary-color: #4CAF50;
    --secondary-color: #2E7D32;
    --accent-color: #FFC107;
    --text-color: #333;
    --light-text: #fff;
    --dark-bg: #1A1A1A;
    --light-bg: #f9f9f9;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    padding: 150px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.about-hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.story-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.story-logo {
    flex: 0 0 250px;
}

.story-logo img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.story-text {
    flex: 1;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.mission-vision {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.mission, .vision {
    flex: 1;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    max-width: 500px;
}

.mission:hover, .vision:hover {
    transform: translateY(-10px);
}

.mission .icon, .vision .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission h3, .vision h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.mission p, .vision p {
    line-height: 1.6;
}

/* Achievements Section */
.achievements {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-text);
}

.achievements .section-header h2,
.achievements .section-header p {
    color: var(--light-text);
}

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

.achievement-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

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

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.achievement-title {
    font-size: 1.2rem;
}

/* Meet Our Owner Section */
.meet-owner {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.owner-profile {
    display: flex;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
}

.owner-image {
    flex: 1;
    min-height: 400px;
}

.owner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owner-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.owner-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.owner-title {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.owner-bio {
    line-height: 1.8;
}

/* Team Members Section */
.team-members {
    padding: 80px 0;
    background-color: #fff;
}

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

.team-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

@media (max-width: 676px) {
    .team-image {
        height: 250px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.team-title {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}



/* Office Gallery Section */
.office-gallery {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .mission-vision {
        flex-direction: column;
        align-items: center;
    }
    
    .mission, .vision {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 992px) {
    .story-content {
        flex-direction: column;
    }
    
    .story-logo {
        flex: 0 0 200px;
        margin-bottom: 20px;
    }
    
    .story-text {
        text-align: center;
    }
    
    .about-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .about-hero-content p {
        font-size: 1.3rem;
    }
    
    .owner-profile {
        flex-direction: column;
    }
    
    .owner-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0;
    }
    
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-hero-content p {
        font-size: 1.1rem;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}