/* About Page Specific Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ffaa22 0%, #f69c0c 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

.hero-section h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.hero-section p {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Features Section */
.feature-box {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffaa22 0%, #f69c0c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: white;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
}

/* Stats Section */
.stats-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ffaa22;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #6c757d;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
}

/* Button hover effect */
.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2) !important;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
    
    .hero-section p {
        font-size: 16px;
    }

    .feature-box {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    .stat-box {
        padding: 15px 10px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .container[style*="padding: 80px"] {
        padding: 40px 15px !important;
    }

    .col-md-6.order-md-2 {
        margin-bottom: 30px;
    }

    .card-body[style*="min-height: 400px"] {
        min-height: 300px !important;
        padding: 30px 20px !important;
    }

    h2[style*="font-size: 42px"] {
        font-size: 28px !important;
    }

    .d-flex.align-items-center[style*="padding: 20px"] {
        padding: 15px !important;
    }

    .card-body[style*="padding: 80px 40px"] {
        padding: 50px 20px !important;
    }

    h2[style*="font-size: 48px"] {
        font-size: 32px !important;
    }

    p[style*="font-size: 20px"] {
        font-size: 16px !important;
    }

    .btn-light[style*="padding: 16px 48px"] {
        padding: 12px 32px !important;
        font-size: 16px !important;
    }

    div[style*="gap: 30px"] {
        gap: 15px !important;
    }

    .container[style*="padding: 80px 0 0 0"] {
        padding: 40px 15px 0 15px !important;
    }

    .col-12.text-center.mb-5 h2 {
        font-size: 28px;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .feature-box h4 {
        font-size: 18px;
    }

    .feature-box p {
        font-size: 14px;
    }
}
