/* About Page Styles */

/* About Hero Section */
.about-hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 120px 0 80px 0;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.about-hero-section .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.about-hero-section .floating-shapes div {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.about-hero-section .shape-1 {
    width: 120px;
    height: 120px;
    top: -60px;
    right: 15%;
    animation-delay: 0s;
}

.about-hero-section .shape-2 {
    width: 80px;
    height: 80px;
    bottom: 20px;
    left: 10%;
    animation-delay: -3s;
}

.about-hero-section .shape-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 5%;
    animation-delay: -6s;
}

.about-hero-content {
    color: white;
    position: relative;
    z-index: 1;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-description {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* About Content Section */
.about-content-section {
    background-color: white;
}

.about-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.about-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(40, 16, 64, 0.3);
}

.about-icon i {
    font-size: 2rem;
    color: white;
}

.about-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-card-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

/* Vision and Mission Cards */
.vision-card .about-icon {
    background: linear-gradient(45deg, #4CAF50, #45a049);
}

.mission-card .about-icon {
    background: linear-gradient(45deg, #FF6B6B, #ee5a24);
}

/* Values Section */
.values-section {
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0;
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(40, 16, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon i {
    color: white;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* About CTA Section */
.about-cta-section {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

/* About CTA Floating Shapes */
.about-cta-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.about-cta-floating-shapes div {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: aboutCtaFloat 14s ease-in-out infinite;
}

.about-cta-shape-1 {
    width: 110px;
    height: 110px;
    top: 15%;
    right: 12%;
    animation-delay: 0s;
}

.about-cta-shape-2 {
    width: 75px;
    height: 75px;
    bottom: 25%;
    left: 18%;
    animation-delay: -5s;
}

.about-cta-shape-3 {
    width: 55px;
    height: 55px;
    top: 65%;
    right: 25%;
    animation-delay: -10s;
}

.about-cta-shape-4 {
    width: 85px;
    height: 85px;
    top: 25%;
    left: 10%;
    animation-delay: -3s;
}

.about-cta-section .container {
    position: relative;
    z-index: 1;
}

.about-cta-section .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-cta-section .cta-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.about-cta-section .cta-button {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.about-cta-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: var(--light-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-description {
        font-size: 1.1rem;
    }

    .about-card {
        padding: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 80px 0 60px 0;
        min-height: 300px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-description {
        font-size: 1rem;
    }

    .about-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .about-card-title {
        font-size: 1.5rem;
    }

    .about-card-text {
        font-size: 1rem;
    }

    .about-cta-section .cta-title {
        font-size: 2rem;
    }

    .about-cta-section .cta-description {
        font-size: 1rem;
    }

    .floating-shapes div {
        opacity: 0.5;
    }

    .about-cta-floating-shapes div {
        opacity: 0.3;
    }

    .about-cta-shape-1 {
        width: 70px;
        height: 70px;
    }

    .about-cta-shape-2 {
        width: 50px;
        height: 50px;
    }

    .about-cta-shape-3 {
        width: 35px;
        height: 35px;
    }

    .about-cta-shape-4 {
        width: 55px;
        height: 55px;
    }
}

/* Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes aboutCtaFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-35px) rotate(180deg);
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
    }
}

/* Team Section */
.team-section {
    background: #f8f9fa;
}

.team-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.team-info {
    margin-top: 15px;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1.3;
}

.team-position {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.team-location {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.team-location i {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .team-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .team-name {
        font-size: 1.2rem;
    }
}
