/* About Page Specific Styles */

/* Page Title Section */
.page-title {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--light-blue) 100%);
    position: relative;
    overflow: hidden;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50" cy="40" r="50"><stop offset="0" stop-color="white" stop-opacity=".1"/><stop offset="1" stop-color="white" stop-opacity="0"/></radialGradient></defs><circle cx="10" cy="10" r="1" fill="url(%23a)"/><circle cx="30" cy="5" r="1" fill="url(%23a)"/><circle cx="60" cy="15" r="1" fill="url(%23a)"/><circle cx="80" cy="8" r="1" fill="url(%23a)"/></svg>') repeat;
    opacity: 0.1;
}

/* Company Story Section */
.company-story {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--light-blue) 100%);
}

.story-content h2 {
    color: var(--primary-color);
    position: relative;
    margin-bottom: 2rem;
}

.story-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 2px;
}

.story-content p {
    line-height: 1.7;
    font-size: 1.05rem;
    color: var(--text-color);
}

.story-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--primary-color);
}

.stat-item {
    padding: 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--light-blue) 100%);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.15);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.25);
}

.stat-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.story-image img {
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.2);
    transition: transform 0.3s ease;
    border: 3px solid var(--accent-color);
}

.story-image img:hover {
    transform: scale(1.02);
}

/* Mission & Vision Section */
.mission-vision .card {
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--light-blue) 100%);
    border: 2px solid transparent;
}

.mission-vision .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

.mission-vision .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
    border-color: var(--accent-color);
}

.mission-vision .icon-wrapper {
    text-align: center;
    margin-bottom: 1.5rem;
}

.mission-vision .icon-wrapper i {
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.mission-vision .card:hover .icon-wrapper i {
    color: var(--primary-color);
}

.mission-vision h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission-vision .list-unstyled li {
    padding: 0.25rem 0;
    font-size: 0.95rem;
    color: var(--text-color);
}

        /* Team Section */
        .our-team {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--light-gray) 100%);
            min-height: 100vh;
            padding: 80px 0;
        }

        .team-card {
            padding: 2rem 1rem;
            border-radius: 16px;
            transition: all 0.3s ease;
            position: relative;
            background: var(--secondary-color);
            border: 2px solid transparent;
            height: 100%;
        }

        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
            border-radius: 16px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .team-card:hover::before {
            opacity: 1;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(233, 30, 99, 0.15);
            border-color: var(--accent-color);
        }

        .team-image {
            position: relative;
            margin-bottom: 1.5rem;
        }

        .team-image img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border: 4px solid var(--border-color);
            transition: all 0.3s ease;
            border-radius: 50%;
        }

        .team-card:hover .team-image img {
            border-color: var(--accent-color);
            transform: scale(1.05);
        }

        .team-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
            transition: all 0.3s ease;
        }

        .team-card:hover .team-icon {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
        }

        .team-icon i {
            font-size: 2rem;
            color: white;
        }

        .team-card h5 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .team-card .text-primary {
            font-size: 0.95rem;
            margin-bottom: 1rem;
            color: var(--accent-color) !important;
        }

        .social-links a {
            display: inline-block;
            width: 35px;
            height: 35px;
            line-height: 35px;
            text-align: center;
            border-radius: 50%;
            background: var(--light-gray);
            transition: all 0.3s ease;
            text-decoration: none;
            color: var(--text-color);
            margin: 0 3px;
        }

        .social-links a:hover {
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
        }

        .section-title {
            position: relative;
            margin-bottom: 3rem;
        }

        .section-title::after {
            content: '';
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

/* Statistics Section */
.statistics-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--brand-navy) 100%);
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="b" cx="50" cy="40" r="50"><stop offset="0" stop-color="white" stop-opacity=".1"/><stop offset="1" stop-color="white" stop-opacity="0"/></radialGradient></defs><circle cx="15" cy="10" r="2" fill="url(%23b)"/><circle cx="45" cy="5" r="1.5" fill="url(%23b)"/><circle cx="75" cy="15" r="1" fill="url(%23b)"/></svg>') repeat;
    opacity: 0.2;
}

.statistics-section .stat-item {
    position: relative;
    z-index: 1;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(233, 30, 99, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.statistics-section .stat-item h3 {
    color: var(--secondary-color);
}

.statistics-section .stat-item p {
    color: var(--light-blue);
}

.counter {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: var(--secondary-color);
}

/* Why Different Section */
.why-different {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--light-blue) 100%);
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
    background: var(--light-gray);
    border: 2px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(233, 30, 99, 0.15);
    background: var(--secondary-color);
    border-color: var(--accent-color);
}

.feature-card .icon-wrapper {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card .icon-wrapper i {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.feature-card:hover .icon-wrapper i {
    color: var(--accent-color);
}

.feature-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: var(--text-color);
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-gray) 100%);
}

.testimonial-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--light-blue);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
    border-color: var(--accent-color);
}

.stars {
    text-align: center;
}

.stars i {
    font-size: 1rem;
    margin: 0 2px;
    color: var(--accent-color);
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    position: relative;
    z-index: 1;
    margin: 0;
}

.testimonial-card .author {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-card .author strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-card .author small {
    color: var(--accent-color);
}

/* Animations */
.animate-counter {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .story-content,
    .story-image {
        margin-bottom: 3rem;
    }
    
    .team-card {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-title h1 {
        font-size: 2.5rem;
        color: var(--secondary-color);
    }
    
    .page-title p {
        font-size: 1rem;
        color: var(--light-blue);
    }
    
    .story-content h2 {
        font-size: 2rem;
    }
    
    .story-content .lead {
        font-size: 1.15rem;
    }
    
    .story-content p {
        font-size: 1rem;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .team-image img {
        width: 120px;
        height: 120px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        top: 0.5rem;
        left: 1rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        padding: 3rem 0;
    }
    
    .page-title h1 {
        font-size: 2rem;
        color: var(--secondary-color);
    }
    
    .mission-vision .card {
        margin-bottom: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-card .icon-wrapper {
        margin-bottom: 1rem;
    }
    
    .feature-card h4 {
        font-size: 1.1rem;
    }
}
.display-4{
    font-size: 2.5r3m !important;
}