/* About Page Styles */

/* General Body Adjustments */
body {
    background-color: #f8fafc;
    color: #374151;
    font-family: 'Poppins', sans-serif;
}

/* Ensure proper content flow */
.about-hero-section,
.about-main-section,
.about-values-section {
    display: block;
    width: 100%;
}

/* Hero Section for About Page */
.about-hero-section {
    padding: 100px 0 80px 0;
    background: linear-gradient(135deg, #003a66 0%, #002a4d 100%);
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
    z-index: 1;
}

.about-hero-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 100"><defs><pattern id="aboutHeroPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23aboutHeroPattern)"/></svg>');
    pointer-events: none;
}

.about-hero-section .hero-content {
    position: relative;
    z-index: 2;
}

.about-hero-section .about-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #e12355 0%, #c41e4a 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(225, 35, 85, 0.3);
}

.about-hero-section .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

.about-hero-section .text-gradient {
    background: linear-gradient(135deg, #e12355 0%, #c41e4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-section .hero-description {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Main About Section */
.about-main-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
    clear: both;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image Gallery - Vertical Layout */
.about-image-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-image-gallery .main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 58, 102, 0.15);
    transition: transform 0.3s ease;
}

.about-image-gallery .main-image:hover {
    transform: scale(1.02);
}

.about-image-gallery .secondary-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 58, 102, 0.2);
    transition: transform 0.3s ease;
}

.about-image-gallery .secondary-image:hover {
    transform: scale(1.02);
}

/* Content Section */
.about-content {
    padding-left: 20px;
}

.about-content .section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #e12355 0%, #c41e4a 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(225, 35, 85, 0.3);
}

.about-content .content-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #003a66;
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-content .content-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

/* Stats Section */
.about-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
}

.about-stats .stat-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 58, 102, 0.08);
    border: 1px solid rgba(0, 58, 102, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 150px;
}

.about-stats .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 58, 102, 0.15);
}

.about-stats .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #003a66 0%, #e12355 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    box-shadow: 0 5px 20px rgba(0, 58, 102, 0.2);
}

.about-stats .stat-icon i {
    font-size: 24px;
    color: #ffffff;
}

.about-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003a66;
    margin-bottom: 5px;
}

.about-stats .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Features List */
.about-features {
    margin: 40px 0;
}

.about-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-features .feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 58, 102, 0.1);
}

.about-features .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e12355 0%, #c41e4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(225, 35, 85, 0.3);
}

.about-features .feature-icon i {
    font-size: 20px;
    color: #ffffff;
}

.about-features .feature-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #003a66;
}

/* Contact Section */
.about-contact {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
    box-shadow: 0 10px 25px rgba(0, 58, 102, 0.08);
    border: 1px solid rgba(0, 58, 102, 0.05);
}

.about-contact .contact-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-contact .contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #003a66 0%, #e12355 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 58, 102, 0.2);
    position: relative;
    animation: pulse 2s infinite;
}

.about-contact .contact-icon i {
    font-size: 32px;
    color: #ffffff;
}

.about-contact .contact-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #e12355 0%, #c41e4a 100%);
    border-radius: 50%;
    opacity: 0.3;
    animation: ripple 2s infinite;
}

.about-contact .contact-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #003a66;
    margin-bottom: 10px;
}

.about-contact .contact-info .phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e12355;
    letter-spacing: 1px;
}

/* Values Section */
.about-values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e2e8f0 0%, #f0f4f8 100%);
    position: relative;
    z-index: 1;
    clear: both;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.about-values-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 100"><defs><pattern id="valuesPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d1d8e0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23valuesPattern)"/></svg>');
    pointer-events: none;
}

.about-values-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #003a66;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.about-values-section .section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.about-value-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 58, 102, 0.1);
    border: 1px solid rgba(0, 58, 102, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.about-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 58, 102, 0.15);
}

.about-value-card .value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #003a66 0%, #e12355 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0 8px 25px rgba(0, 58, 102, 0.2);
}

.about-value-card .value-icon i {
    font-size: 32px;
    color: #ffffff;
}

.about-value-card .value-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #003a66;
    margin-bottom: 15px;
}

.about-value-card .value-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .about-hero-section .hero-title {
        font-size: 2.8rem;
    }
    
    .about-content .content-title {
        font-size: 2.2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-contact .contact-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 80px 0 60px 0;
    }
    
    .about-hero-section .hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero-section .hero-description {
        font-size: 1rem;
    }
    
    .about-main-section {
        padding: 60px 0;
    }
    
    .about-content .content-title {
        font-size: 1.8rem;
    }
    
    .about-content .content-text {
        font-size: 1rem;
    }
    
    .about-stats .stat-card {
        padding: 20px;
    }
    
    .about-stats .stat-number {
        font-size: 2rem;
    }
    
    .about-contact {
        padding: 30px;
    }
    
    .about-values-section {
        padding: 60px 0;
    }
    
    .about-values-section .section-title {
        font-size: 2rem;
    }
    
    .about-value-card {
        padding: 30px;
    }
    
    .about-image-gallery .main-image {
        height: 250px;
    }
    
    .about-image-gallery .secondary-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .about-hero-section .hero-title {
        font-size: 1.8rem;
    }
    
    .about-hero-section .about-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .about-content .content-title {
        font-size: 1.5rem;
    }
    
    .about-stats .stat-card {
        min-width: 120px;
        padding: 15px;
    }
    
    .about-stats .stat-number {
        font-size: 1.8rem;
    }
    
    .about-features .feature-item {
        padding: 12px;
    }
    
    .about-features .feature-text {
        font-size: 1rem;
    }
    
    .about-contact .contact-info .phone-number {
        font-size: 1.2rem;
    }
    
    .about-values-section .section-title {
        font-size: 1.6rem;
    }
    
    .about-value-card {
        padding: 25px;
    }
    
    .about-value-card .value-title {
        font-size: 1.2rem;
    }
}
