/* Team Page - Clean Simple Design with Slider */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fixed Logo - Matching main page exactly */
.fixed-logo {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}

.fixed-logo a {
    display: block;
    text-decoration: none;
}

.fixed-logo img {
    width: 100px;
    height: 50px;
    transition: opacity 0.3s ease;
}

.fixed-logo:hover img {
    opacity: 0.8;
}

.fixed-logo.scrolling {
    opacity: 0;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, #18072e 100%);
}

.hero-container h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #48bb70;
}

.hero-container p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #48bb70;
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Team Slider */
.team-slider-container {
    position: relative;
    padding: 0 50px;
}

.teamSwiper {
    padding: 20px 0 60px 0;
}

.team-card {
    background: transparent;
    border-radius: 20px;
    height: 400px;
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.team-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.card-front {
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.card-back {
    background: rgba(255, 255, 255, 0.08);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-color: #48bb70;
}

.team-image {
    flex: 1;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.team-name {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    padding: 20px;
    position: relative;
}

.team-name h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.team-info {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.team-info .position {
    font-size: 1.1rem;
    color: #48bb70;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-info .description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-align: center;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #48bb70 !important;
    background: rgba(255, 255, 255, 0.1);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(72, 187, 112, 0.2);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3) !important;
    opacity: 1 !important;
    width: 12px !important;
    height: 12px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #48bb70 !important;
    transform: scale(1.2);
}

/* Core Values Section */
.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #18072e 0%, #000000 100%);
}

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

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #48bb70;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #48bb70;
    background: rgba(255, 255, 255, 0.08);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(72, 187, 112, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: #48bb70;
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2rem;
    color: #48bb70;
    transition: color 0.3s ease;
}

.value-card:hover .value-icon i {
    color: #ffffff;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Join Team Section */
.join-team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #18072e 0%, #000000 100%);
    text-align: center;
}

.join-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.join-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.join-btn {
    display: inline-block;
    background: #48bb70;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.join-btn:hover {
    background: #3da15f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(72, 187, 112, 0.3);
}

/* Footer Styles */
.footer-section {
    background: #000000;
    color: #ffffff;
}

.footer-top {
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-company .footer-logo img {
    width: 180px;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
    color: #48bb70;
    width: 16px;
}

.footer-nav h3 {
    color: #48bb70;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #48bb70;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #48bb70;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-designed-by {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.hamza-logo img {
    width: 100px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container h1 {
        font-size: 2.5rem;
    }

    .hero-container p {
        font-size: 1rem;
    }

    .team-section,
    .values-section,
    .join-team-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .team-slider-container {
        padding: 0 20px;
    }

    .team-card {
        padding: 25px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px !important;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 30px 20px;
    }

    .join-content h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-container h1 {
        font-size: 2rem;
    }

    .team-slider-container {
        padding: 0 10px;
    }

    .team-card {
        padding: 20px;
    }

    .team-info h3 {
        font-size: 1.3rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .value-card {
        padding: 25px 15px;
    }

    .value-icon {
        width: 60px;
        height: 60px;
    }

    .value-icon i {
        font-size: 1.5rem;
    }

    .join-content h2 {
        font-size: 1.8rem;
    }
} 