.iosapp1-con {
    background: linear-gradient(to bottom, #C1BAFF 30%, #ffffff 70%);
    padding: 40px 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
   
}

.iosapp1-con .app-content {
    max-width: 400px;
    padding: 10px;
}

.iosapp1-con .app-title h1 {
    color: #332A7C;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
}

.iosapp1-con .app-para p {
    color: #332A7C;
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 400;
}

.iosapp1-con .app-img {
    text-align: center;
    padding: 10px;
}

.iosapp1-con .app-img img {
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.15);
    transition: transform 0.3s ease;
}

.iosapp1-con .app-img img:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 991px) {
    .iosapp1-con {
        text-align: center;
        padding: 60px 20px;
    }

    .iosapp1-con .app-title h1 {
        font-size: 38px;
    }

    .iosapp1-con .app-para p {
        font-size: 18px;
    }

    .iosapp1-con .app-img {
        margin-top: 20px;
    }
}

/* .iosapp2-con {
    display: flex;
    padding: 20px;
    background-color: white;
}

.iosapp2-con .nav-title h2{
    color: #2e2e81;
    font-weight: 700;
    font-size: 40px;

}

.iosapp2-con .nav-para p{
    color: #000000;
}

.iosapp2-con .nav-para b{
    color: #000000;
    font-size: 30px;
}

.iosapp2-con .nav-img {
    position: relative;
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    overflow: hidden; 
    border: 5px solid #fcfdfd; 
} */

.iosapp2-con {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 30px;
    background-color: #fff;
    align-items: center;
    justify-content: space-between;
}

.iosapp2-con .nav-title h2 {
    color: #2e2e81;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 20px;
}

.iosapp2-con .nav-para {
    padding-right: 15px;
}

.iosapp2-con .ios-list {
    list-style-type: none;
    padding-left: 0;
}

.iosapp2-con .ios-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    font-size: 18px;
    color: #000000;
}

.iosapp2-con .ios-list li::before {
    content: "●";
    color: #000;
    font-size: 24px;
    margin-right: 12px;
    line-height: 1;
    flex-shrink: 0;
}

.iosapp2-con .nav-img {
    text-align: center;
    margin-top: 20px;
}

.iosapp2-con .nav-img img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

