/* About info box responsive */
@media (max-width: 575.98px) {
    .about-info-box {
        padding: 0.75rem !important;
        border-radius: 0.75rem !important;
        min-width: 0;
        max-width: 90vw;
        font-size: 0.95rem;
        right: 0;
        left: auto;
        bottom: 0;
        transform: translate(8px, 8px) !important;
    }
    .about-info-box h4 {
        font-size: 1rem !important;
        margin-bottom: 0.25rem !important;
    }
    .about-info-box p {
        font-size: 0.85rem !important;
        margin-bottom: 0 !important;
    }
}
/* Hamburger ve Navbar Responsive Fix */
/* Hamburger menü responsive kodları kaldırıldı. Hamburger menü style.css'den alınacak. */

/* stat-box responsive */
@media (max-width: 575.98px) {
    .stat-box {
        padding: 0.5rem;
        font-size: 0.95rem;
        min-width: 80px;
        border-radius: 0.75rem;
    }
    .about-hero .display-4 {
        font-size: 2rem;
    }
    .about-hero .lead {
        font-size: 1rem;
    }
    .about-hero p {
        font-size: 0.95rem;
    }
    .stat-box h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.25rem;
    }
    .stat-box p {
        font-size: 0.85rem !important;
        margin-bottom: 0;
    }
    .d-flex.gap-3 {
        gap: 0.5rem !important;
        flex-wrap: wrap;
    }
    /* 127-137 arası: .approach-feature ve .feature-icon */
    .approach-feature {
        padding: 10px;
        border-radius: 10px;
    }
    .feature-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 8px;
    }
    .feature-icon i {
        font-size: 18px;
    }
    .approach-feature h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    .approach-feature p {
        font-size: 0.85rem;
    }
}
/* About Page Styles */
.about-hero {
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0.03;
    transform: rotate(45deg);
}

.stat-box {
    padding: 1rem;
    background: var(--secondary-color);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

/* Our Approach Section Styles */
.our-approach {
    background: var(--secondary-color);
    position: relative;
}

.approach-image-wrapper {
    position: relative;
    padding: 20px;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    transform: translate(20px, 20px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.experience-badge .h2 {
    margin: 0;
    line-height: 1;
}

.experience-badge .text-sm {
    font-size: 14px;
    opacity: 0.9;
}

.approach-feature {
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.approach-feature:hover {
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon i {
    font-size: 24px;
}

.approach-feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1f36;
}

.approach-feature p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .approach-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .experience-badge {
        transform: translate(0, 20px);
    }
}

@media (max-width: 767px) {
    .approach-feature {
        padding: 15px;
    }
    
    .experience-badge {
        padding: 15px;
        transform: translate(0, 15px);
    }
}
