/* About Page Specific Styles */

/* Hero Section */
.about-hero-section {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(105, 184, 70, 0.15) 0%, rgba(255, 255, 255, 0.8) 100%);
}

/* Team Image Section */
.team-image-section {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.team-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Globe Section */
.globe-wrapper {
    position: relative;
    min-height: 400px;
}

.globe-wrapper canvas {
    max-width: 100%;
    height: auto !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-hero-section {
        min-height: 300px;
    }
    
    .team-image-section {
        height: 300px;
    }
    
    .globe-wrapper {
        min-height: 300px;
    }
    
    .globe-wrapper canvas {
        width: 300px !important;
        height: 300px !important;
    }
}

/* Brand Story Section Icon Animation */
.brand-icon {
    animation: pulse-gentle 2s ease-in-out infinite;
}

@keyframes pulse-gentle {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Additional hover effects */
.about-hero-section .container {
    position: relative;
    z-index: 10;
}

/* Trust section enhancements */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 2rem;
    font-size: 0.875rem;
    color: #166534;
    font-weight: 500;
}

