/* Services Hero Section */
.hero-section {
    background: url('img/servies.webp') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
  }

  .hero-text {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    background-color: rgba(0, 0, 0, 0.5); 
    padding: 20px 40px;
    border: 5px solid white;
  }

  .hero-text span {
    display: block;
  }


/* Our Story Section */
.our-story {
    padding: 4rem 2rem;
    background: linear-gradient(120deg, #e0f2fe, #dbeafe, #e0e7ff);
}

.our-story .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.story-content p {
    color: var(--light-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.story-image img {
    width: 80%;
    height: 80vh;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Our Mission Section */
.our-mission {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.our-mission .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-box {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
}

.mission-box i {
    font-size: 3rem;
    color: var(--main-color);
    margin-bottom: 1.5rem;
}

.mission-box h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.mission-box p {
    color: var(--light-color);
    line-height: 1.6;
}

/* Team Section */
.our-team {
    padding: 4rem 2rem;
    background: linear-gradient(120deg, #e0f2fe, #dbeafe, #e0e7ff);
    text-align: center;
}

.our-team h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--light-color);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    color: var(--main-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--accent-color);
}

/* Stats Section */
.stats {
    padding: 4rem 2rem;
    background: var(--light-bg);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-box {
    background: #fff;
    padding: 2rem;
    text-align: center;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--main-color);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--light-color);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        height: 40vh;
    }

    .about-content h1 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .our-story .container {
        grid-template-columns: 1fr;
    }

    .story-content {
        text-align: center;
    }

    .team-member img {
        width: 120px;
        height: 120px;
    }
} 