/* Base Styles */
    .about-section {
        position: relative;
        overflow: hidden;
        background-color: #f8f9fa;
    }
    
    /* Animated Background Elements */
    .animated-blob-1 {
        position: absolute;
        width: 600px;
        height: 600px;
        background: rgba(13, 110, 253, 0.1);
        border-radius: 50%;
        filter: blur(60px);
        top: -300px;
        right: -300px;
        animation: float 15s ease-in-out infinite;
    }
    
    .animated-blob-2 {
        position: absolute;
        width: 400px;
        height: 400px;
        background: rgba(111, 66, 193, 0.1);
        border-radius: 50%;
        filter: blur(60px);
        bottom: -200px;
        left: -200px;
        animation: float 12s ease-in-out infinite reverse;
    }
    
    @keyframes float {
        0%, 100% {
            transform: translate(0, 0);
        }
        50% {
            transform: translate(-50px, -50px);
        }
    }
    
    /* Divider */
    .divider {
        width: 80px;
        height: 4px;
        border-radius: 2px;
        background: linear-gradient(90deg, #0d6efd, #6f42c1);
    }
    
    /* Image Container */
    .about-img-container {
        position: relative;
        z-index: 1;
    }
    
    .main-img {
        transition: transform 0.3s ease;
    }
    
    .about-img-container:hover .main-img {
        transform: translateY(-5px);
    }
    
    /* Icon Box */
    .icon-box {
        width: 50px;
        height: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        font-size: 1.5rem;
    }
    
    .bg-primary-light {
        background-color: rgba(13, 110, 253, 0.1);
    }
    
    /* Value Cards */
    .value-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    /* Team Cards */
    .team-card {
        padding: 20px;
        border-radius: 12px;
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }
    
    .team-card:hover {
        transform: translateY(-10px);
    }
    
    .team-img-container {
        position: relative;
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .team-img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.3s ease;
    }
    
    .team-social {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(13, 110, 253, 0.9);
        padding: 10px;
        border-radius: 0 0 12px 12px;
        opacity: 0;
        transition: all 0.3s ease;
        display: flex;
        justify-content: center;
        gap: 15px;
    }
    
    .team-social a {
        color: white;
        font-size: 1.2rem;
    }
    
    .team-card:hover .team-social {
        opacity: 1;
    }
    
    .team-card:hover img {
        border-radius: 12px 12px 0 0;
    }
    
    /* Technologies Slider */
    .tech-slider {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .tech-item {
        position: relative;
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }
    
    .tech-item img {
        width: 40px;
        height: 40px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: all 0.3s ease;
    }
    
    .tech-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .tech-item:hover img {
        filter: grayscale(0%);
        opacity: 1;
    }
    
    .tech-tooltip {
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        background: #333;
        color: white;
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 12px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .tech-item:hover .tech-tooltip {
        opacity: 1;
        visibility: visible;
        bottom: -40px;
    }
    
    /* CTA Card */
    .cta-card {
        position: relative;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(13, 110, 253, 0.2);
    }
    
    .bg-gradient-primary {
        background: linear-gradient(135deg, #0d6efd, #6f42c1);
    }
    
    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .about-img-container {
            margin-bottom: 30px;
        }
        
        .tech-slider {
            gap: 20px;
        }
        
        .tech-item {
            width: 60px;
            height: 60px;
        }
        
        .tech-item img {
            width: 30px;
            height: 30px;
        }
    }
    
    @media (max-width: 768px) {
        .tech-slider {
            gap: 15px;
        }
        
        .tech-item {
            width: 50px;
            height: 50px;
        }
        
        .tech-item img {
            width: 25px;
            height: 25px;
        }
    }