/* ================================
   WHY SKAIO SECTION STYLES
   ================================ */

.why-skaio-section {
    max-width: 95%;
    margin: 50px auto;
    background-color: #f9fafc;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    padding: 80px 80px;
}

/* Title Styling */
.why-skaio-section h1 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}

.why-skaio-section p {
    color: #555;
    line-height: 1.8;
}

/* Box Styles */
.why-box {
    transition: all 0.3s ease;
    border: 1px solid #e6e9ef;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 16px;
    height: 100%;
}

.why-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* Image Styling (make larger and cleaner) */
.feature-icon {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* Spacing Between Rows */
.why-skaio-section .row {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 10px 0;
}

/* Decorative Elements */
.decorative-circle {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 130px;
    opacity: 0.12;
}

.decorative-dot {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 100px;
    opacity: 0.12;
}

/* Responsive Tweaks */
@media (max-width: 992px) {
    .why-skaio-section {
        max-width: 96%;
        padding: 60px 25px;
    }

    .feature-icon {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .why-skaio-section {
        padding: 50px 15px;
    }

    .feature-icon {
        height: 150px;
    }

    .why-box {
        padding: 30px 20px;
    }
}

/* ================================
   SKAIO INFO SECTION STYLES
   ================================ */
.skaio-info-section {
    
    background-color: #f9fafc;
    
}

.skaio-box {
    transition: all 0.4s ease;
    border: 1px solid #e0e0e0;
    max-width: 95%;
    margin: 40px auto; /* space between boxes */
    padding: 80px 60px; /* internal padding */
    border-radius: 18px;
    background-color: #fff;
}

.skaio-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.skaio-img {
    max-width: 92%;
    border-radius: 16px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.skaio-box:hover .skaio-img {
    transform: scale(1.07);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.skaio-info-section h2,
.skaio-info-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4b49ac;
    line-height: 1.3;
}

.skaio-info-section p {
    color: #555;
    line-height: 1.9;
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
}

.text-primary {
    color: #4b49ac !important;
}

a.text-primary:hover {
    text-decoration: underline;
}

/* Responsive Tweaks */
@media (max-width: 992px) {
    .skaio-box {
        max-width: 98%;
        padding: 50px 25px;
        margin: 40px auto;
    }
    .skaio-info-section h2,
    .skaio-info-section h3 {
        font-size: 2rem;
    }
    .skaio-info-section p {
        font-size: 1.05rem;
    }
}


