/* POC Section Styles - Added for visual enhancement */
.poc-section {
    background: linear-gradient(135deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
}

.poc-content {
    position: relative;
    z-index: 2;
}

.poc-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.poc-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    font-weight: 500;
    max-width: 600px;
}

/* Glassmorphism Cards */
.poc-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px 25px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: default;
}

.poc-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.poc-card-icon {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.poc-card-icon svg {
    width: 20px;
    height: 20px;
    fill: #4CAF50;
}

.poc-card-text {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* CTA Button */
.poc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #4540DB;
    font-weight: 800;
    padding: 20px 60px;
    border-radius: 50px;
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 10px;
    border: 2px solid transparent;
}

.poc-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    color: #4540DB;
    background: #fff;
}

/* 3D Image Styling */
.poc-img-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.poc-img-wrapper img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    transition: transform 0.5s ease;
    /* Ensure image is visible on mobile but scaled */
    display: block !important; 
}

.poc-img-wrapper:hover img {
    transform: scale(1.05) rotate(2deg);
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .poc-content h2 {
        font-size: 3rem;
    }
    .poc-card-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .poc-section {
        padding: 60px 0;
        text-align: center; /* Center align on tablet/mobile */
    }
    
    .poc-content h2 {
        font-size: 2.5rem;
    }
    
    .poc-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .poc-card {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        text-align: left; /* Keep card text left aligned */
    }
    
    .poc-img-wrapper {
        margin-bottom: 40px;
    }
    
    .poc-img-wrapper img {
        max-width: 80%; /* Smaller image on mobile */
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .poc-section {
        padding: 50px 0;
    }

    .poc-content h2 {
        font-size: 2rem;
    }
    
    .poc-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .poc-card {
        padding: 15px;
    }
    
    .poc-card-icon {
        width: 30px;
        height: 30px;
        margin-right: 15px;
    }
    
    .poc-card-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .poc-card-text {
        font-size: 1.1rem;
    }
    
    .poc-btn {
        padding: 16px 40px;
        font-size: 1.2rem;
        width: 100%; /* Full width button on small screens */
    }
}
