/* About Page Styles - All styles scoped to prevent conflicts */

/* About Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1d4ed8 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero-section .about-hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.about-hero-section .about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease;
}

.about-hero-section .about-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #93c5fd;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.about-hero-section .about-hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.about-hero-section .hero-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.6s both;
}

.about-hero-section .btn-hero-cta {
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.about-hero-section .btn-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.about-hero-section .btn-hero-outline {
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 50px;
    border: 2px solid white;
    color: white;
    transition: all 0.3s ease;
}

.about-hero-section .btn-hero-outline:hover {
    background: white;
    color: #1e3a8a;
    transform: translateY(-3px);
}

/* Hero Image */
.about-hero-section .about-hero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 0.8s ease;
}

.about-hero-section .about-hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-hero-section .floating-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    width: 100%;
    justify-content: center;
}

.about-hero-section .stat-card {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    animation: aboutFloat 3s ease-in-out infinite;
}

.about-hero-section .stat-card:nth-child(2) {
    animation-delay: 1.5s;
}

.about-hero-section .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-hero-section .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Background Shapes */
.about-hero-section .hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.about-hero-section .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.about-hero-section .shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: aboutFloat 20s ease-in-out infinite;
}

.about-hero-section .shape-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
    animation: aboutFloat 25s ease-in-out infinite reverse;
}

.about-hero-section .shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 30%;
    animation: aboutFloat 15s ease-in-out infinite;
}

@keyframes aboutFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

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

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

/* About Seekho Computer Section */
.about-seekho-section {
    background: white;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

/* Images Grid */
.about-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.grid-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.grid-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.grid-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.grid-image:hover img {
    transform: scale(1.08);
}

/* Content */
.about-content {
    padding-left: 2rem;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: #1e293b;
    font-weight: 700;
}

.btn-about-cta {
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    margin-top: 1rem;
}

.btn-about-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Why Choose Us Section */
.why-choose-section {
    background: #f8fafc;
}

.why-choose-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.why-choose-section .section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
}

.why-choose-section .feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.why-choose-section .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.why-choose-section .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.why-choose-section .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.why-choose-section .feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.why-choose-section .feature-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Vision & Mission Section */
.vision-mission-section {
    background: white;
}

.vm-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.vm-section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
}

/* Horizontal Card Layout */
.vm-card-horizontal {
    display: flex;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.vm-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.vm-card-icon-side {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
}

.vision-side {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.mission-side {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.vm-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.vm-side-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.vm-card-content-side {
    flex: 1;
    padding: 3rem;
    background: #f8fafc;
}

.vm-content-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
}

.testimonial-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    background: white;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-right: 0.25rem;
}

.testimonial-text {
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.author-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: #f8fafc;
    padding: 0;
}

.cta-wrapper {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 32px;
    padding: 3.5rem 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.25);
}

.cta-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-text-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 400;
}

.btn-cta-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #2563eb;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: none;
    position: relative;
    z-index: 1;
}

.btn-cta-modern:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    color: #1e40af;
    background: #ffffff;
}

.btn-cta-modern i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-cta-modern:hover i {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 2.75rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .floating-stats {
        position: static;
        transform: none;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.25rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .btn-hero-cta,
    .btn-hero-outline {
        width: 100%;
        text-align: center;
    }
    
    .about-section-title,
    .why-choose-section .section-title {
        font-size: 2rem;
    }
    
    .about-section-title {
        font-size: 2rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .btn-about-cta {
        width: 100%;
        text-align: center;
    }
    
    .vm-section-title {
        font-size: 2rem;
    }
    
    .vm-card-horizontal {
        flex-direction: column;
    }
    
    .vm-card-icon-side {
        flex: 0 0 auto;
        padding: 2.5rem 2rem;
    }
    
    .vm-card-content-side {
        padding: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .cta-wrapper {
        padding: 2.5rem 2rem;
        border-radius: 24px;
    }
    
    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-cta-modern {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        margin-top: 1.5rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 1.875rem;
    }
    
    .stat-card {
        padding: 1rem 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
