.aplicaton {
    background: #f4f7fc;
    overflow: hidden;
}

/* HEADING */

.section-heading .mini-title {
    display: inline-block;
    background: #0f172a;
    color: #fff;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.section-heading h2 {
    font-size: 58px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
}

.section-heading p {
    max-width: 800px;
    margin: auto;
    font-size: 19px;
    line-height: 1.8;
    color: #555;
}

/* TIMELINE */

.timeline-wrapper {
    position: relative;
    max-width: 1100px;
    margin: auto;
}

.timeline-wrapper::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #dbe4f0;
}

/* ITEM */

.timeline-item {
    width: 50%;
    position: relative;
    padding: 20px 50px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.timeline-content:hover {
    transform: translateY(-8px);
}

.timeline-content h4 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* ICON */

.timeline-icon {
    position: absolute;
    top: 35px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -35px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -35px;
}

.timeline-icon i {
    color: #fff;
    font-size: 30px;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .section-heading h2 {
        font-size: 42px;
    }

    .timeline-wrapper::before {
        left: 35px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 100px;
        padding-right: 20px;
        margin-bottom: 30px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: 0;
        right: auto;
    }
}

@media(max-width:767px) {

    .section-heading h2 {
        font-size: 32px;
    }

    .section-heading p {
        font-size: 16px;
    }

    .timeline-content {
        padding: 25px;
    }

    .timeline-content h4 {
        font-size: 22px;
    }

    .timeline-content p {
        font-size: 15px;
    }

    .timeline-icon {
        width: 60px;
        height: 60px;
    }

    .timeline-icon i {
        font-size: 24px;
    }
}

/*  */
.compliance-section {
    background: #f7f9fc;
    overflow: hidden;
}

/* HEADING */

.compliance-tag {
    display: inline-block;
    background: #0f172a;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.compliance-title {
    font-size: 45px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
}

.compliance-subtitle {
    font-size: 19px;
    color: #666;
    line-height: 1.8;
}

/* IMAGE */

.compliance-image {
    position: relative;
}

.compliance-image img {
    border-radius: 30px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.experience-box1 {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #2563eb;
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    max-width: 240px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    animation: floatBox 3s ease-in-out infinite;
}

.experience-box1 h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.experience-box1 p {
    margin: 0;
    line-height: 1.6;
    font-size: 15px;
}

/* CARD */

.compliance-card {
    background: #fff;
    border-radius: 25px;
    padding: 30px;
    height: 100%;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.compliance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.compliance-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.compliance-icon i {
    color: #fff;
    font-size: 28px;
}

.compliance-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.compliance-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 16px;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .compliance-title {
        font-size: 42px;
    }

    .experience-box1 {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
        max-width: 100%;
        
    }
}

@media(max-width:767px) {

    .compliance-title {
        font-size: 32px;
    }

    .compliance-subtitle {
        font-size: 16px;
    }

    .compliance-card {
        padding: 25px;
    }

    .compliance-card h4 {
        font-size: 21px;
    }

    .compliance-card p {
        font-size: 15px;
    }
}