/* Advantage Page Styles */

.advantage-banner {
    padding-top: 80px;
    background-color: #001529;
}

.advantage-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.section-padding {
    padding: 60px 0;
}


/* Process Intro */
.process-intro p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
    max-width: 900px;
}

/* Component Grid */
.component-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-top: 3rem;
}

.component-main-card {
    background: linear-gradient(135deg, #1e4b9c 0%, #0c2a66 100%);
    color: #fff;
    padding: 35px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.component-main-card::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 20px;
    width: 2px;
    height: 40px;
    background: rgba(255,255,255,0.3);
}

.component-main-card::after {
    content: 'N2';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: rgba(255,255,255,0.2);
}

.component-card {
    background: #fff;
    padding:65px 25px 25px;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    position: relative;
}
.component-card p{font-size: .95rem;line-height: 1.8}

.component-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.comp-tag {
    position: absolute;
    top: 10px;
    left: -4px;
    background: #023894;
    color: #fff;
    padding: 10px 35px;
    border-radius: 5px 20px 20px 5px;
    font-size: 1.4rem;
    font-weight: 700;
    border-left:  solid 8px #5179bd;width: 60%;

}
    /*.component-section .row .col-lg-4:nth-child(odd) .comp-tag*/
    /*{*/
    /*    border-left:  solid 4px #8cc63f !important;color: #fff;*/
    /*    background: #8daf60;*/
    /*}*/

/* Advantage Cards - Updated to match floating text design */
.adv-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.adv-card-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    color: #fff;
    z-index: 3;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.adv-card-header h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.adv-card-header p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 90%;
}

.adv-card-img {
    width: 100%;
    height: 100%;

    overflow: hidden;
    position: relative;
}

.adv-card-img img {
    width: 100%;
     aspect-ratio: 1/1.2;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.adv-card:hover .adv-card-img img {
    transform: scale(1.1);
}

.adv-shield-overlay {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    z-index: 2;
    pointer-events: none;
}

/* Tech Support Section */
.tech-support-section {
    background: linear-gradient(135deg, #001529 0%, #023894 100%);
    padding: 100px 0;
    color: #fff;
}

.tech-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    color: #333;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tech-card-img {
    height: 220px;
}

.tech-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tech-card-content {
    padding: 30px;
}

.tech-card-content h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.tech-card-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}
.ad-title{font-size: 1.3rem!important;font-weight: 700}
.ad-summary{font-size: .85rem}

/* Responsive adjustments */
@media (max-width: 991px) {
    .component-main-card { margin-bottom: 0;padding: 1rem 1rem 1rem 2rem  }
    .adv-card { height: auto; }
    .comp-tag{font-size: 1.2rem;padding:5px 0 5px 25px;width: 80%}
    .component-card{padding: 50px 15px 5px;font-size: .9rem;line-height: 1.4}
    .section-padding {
        padding: 2.5rem 0;
    }

    .component-section{margin-top: 0;padding: 0}
    .adv-card-img img {
        width: 100%;aspect-ratio: 4/3;
        object-fit: cover;
        transition: transform 0.6s ease;
    }
    .component-card p{font-size: .8rem;line-height: 1.6}
    .adv-card-header h4{font-size: 1.4rem;margin-bottom: .5rem}
}

