/* IIC Section - Full Background */
.iic-container {
    padding: 80px 20px;
    background: linear-gradient(135deg, #001f3f 30%, #007bff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

/* IIC Card with Glassmorphism Effect */
.iic-card {
    max-width: 850px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    transform: skewY(-3deg);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.iic-card:hover {
    transform: skewY(-3deg) translateY(-10px);
}

/* Content Styling */
.iic-content {
    flex: 1;
    text-align: left;
}

.iic-title {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.iic-text {
    font-size: 20px;
    line-height: 1.6;
    color: #e3e3e3;
}

/* Highlighted Text */
.iic-text .highlight {
    color: #ffdd57;
    font-weight: bold;
}

/* Icon Section */
.iic-icon {
    font-size: 60px;
    color: #ffdd57;
    opacity: 0.8;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .iic-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        transform: none;
    }

    .iic-title {
        font-size: 24px;
    }

    .iic-icon {
        font-size: 50px;
        margin-top: 15px;
    }
}
