/*==========================================================
HERO
==========================================================*/

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    padding:90px 0 50px;
    isolation:isolate;
}

/*==========================================================
BACKGROUND
==========================================================*/

.hero-bg{
    position:absolute;
    inset:0;
    z-index:-2;
    background:url("../images/a.webp") center/cover no-repeat;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-1;
    background:
        radial-gradient(circle at 50% 18%, rgba(37,99,235,.05), transparent 45%),
        radial-gradient(circle at 20% 85%, rgba(96,165,250,.04), transparent 35%),
        radial-gradient(circle at 82% 25%, rgba(191,219,254,.06), transparent 40%);
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,.08),
            rgba(255,255,255,.22)
        );
    pointer-events:none;
}

/*==========================================================
CONTAINER
==========================================================*/

.hero-container{
    position:relative;
    width:100%;
    max-width:1320px;
    margin:auto;
    padding:0 70px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-content{
    width:100%;
    max-width:1100px;
    text-align:center;
}

/*==========================================================
TOP
==========================================================*/

.hero-top{
    margin-bottom:34px;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:12px 24px;
    border-radius:999px;

    background:rgba(255,255,255,.75);
    backdrop-filter:blur(18px);

    border:1px solid rgba(37,99,235,.12);

    color:blue;
    font-size:.92rem;
    font-weight:600;

    box-shadow:
        0 8px 25px rgba(37,99,235,.08);
}

.hero-tag:hover{
    transform:translateY(-2px);

    background:#fff;

    border-color:rgba(37,99,235,.22);

    box-shadow:
        0 12px 35px rgba(37,99,235,.12);
}

.tag-icon{
    display:flex;
    align-items:center;
    justify-content:center;

    width:30px;
    height:30px;
    border-radius:50%;

    background:linear-gradient(135deg,#2563eb,#38bdf8);

    color:#fff;
    font-size:.9rem;
}

/*==========================================================
HEADING
==========================================================*/

.hero-heading{
    margin-bottom:34px;
}

.hero-title{
    width:100%;
    max-width:1100px;
    margin:0 auto;

    font-size:3.5rem;
    font-weight:800;
    line-height:1.05;
    letter-spacing:-2px;

    color:#111827;
    text-align:center;

    text-wrap:balance;
}

.hero-title span{
    display:block;
    margin-top:10px;
    color:blue;
}

/*==========================================================
DESCRIPTION
==========================================================*/

.hero-text{
    margin-bottom:30px;
}

.hero-description{
    max-width:760px;
    margin:0 auto;

    color:#334155;
    font-size:1.12rem;

    line-height:1.9;

    font-weight:500;
}

/*==========================================================
BUTTONS
==========================================================*/

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-bottom:45px;
    flex-wrap:wrap;
}

.hero-buttons a{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    text-decoration:none;
    padding:16px 30px;

    border-radius:14px;

    font-size:1rem;

    font-weight:600;
    transition:.35s ease;
    overflow:hidden;
}

.hero-buttons a i{
    transition:.35s;
    font-size:.95rem;
}

.hero-buttons a:hover i{

    transform:translateX(6px);

    transition:.3s;
}

/*==========================================================
PRIMARY BUTTON
==========================================================*/

.btn-primary{
    background:linear-gradient(135deg,#2563eb 0%, #3b82f6 55%, #60a5fa 100%);
    color:#fff;
    border:none;

    box-shadow:
        0 10px 25px rgba(37,99,235,.22),
        0 20px 45px rgba(37,99,235,.15);

    transition:all .35s ease;
}

.btn-primary:hover{
    transform:translateY(-5px);

    background:linear-gradient(135deg,#1d4ed8,#2563eb,#3b82f6);

    box-shadow:
        0 18px 40px rgba(37,99,235,.32),
        0 30px 60px rgba(37,99,235,.18);
}

/*==========================================================
SECONDARY BUTTON
==========================================================*/

.btn-secondary{
    background:white;

    color:blue;

    border:1px solid rgba(37,99,235,.15);

    backdrop-filter:none;

    box-shadow:
        0 8px 20px rgba(15,23,42,.06);
}

.btn-secondary:hover{

    background:#f8fbff;

    border-color:#2563eb;

    color:#2563eb;

    transform:translateY(-4px);

    box-shadow:
        0 15px 35px rgba(37,99,235,.12);
}

/*==========================================================
SERVICES
==========================================================*/

.hero-services{
    display:flex;
    justify-content:center;
    align-items:stretch;
    gap:0;
    margin:0 auto;
    max-width:980px;
}

.service-item{
    flex:1;
    padding:0 26px;
    text-align:center;
}

.service-divider{

    width:1px;

    background:linear-gradient(
        to bottom,
        transparent,
        rgba(37,99,235,.22)
        transparent
    );
}


/*==========================================================
TRUSTED BY
==========================================================*/

.hero-trusted{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;

    gap:14px;

    margin:25px 0 70px;
    color:#334155;
    font-size:1.03rem;
    font-weight:600;
    letter-spacing:.2px;
}

.hero-trusted span:first-child{
    text-transform:uppercase;
    color:#334155;
    font-weight:700;
    letter-spacing:2px;
}

.hero-trusted .dot{
    color:blue;
    font-size:1.15rem;
}


/*==========================================================
ICON
==========================================================*/

.service-icon{
    width:82px;
    height:82px;
    border-radius:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#ffffff;              /* White background */
    border:1px solid #e5e7eb;        /* Light border */

    color:#2563eb;
    font-size:32px;

    margin:0 auto 24px;

    box-shadow:
        0 12px 25px rgba(0,0,0,.08),
        0 18px 45px rgba(37,99,235,.08);

    transition:.35s ease;
}

.service-icon i{ color: blue;}

.service-icon::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    border:1px solid rgba(37,99,235,.08);
}

.service-item:hover .service-icon{
    transform:translateY(-8px) scale(1.05);

    box-shadow:
        0 20px 45px rgba(37,99,235,.25);
}

/*==========================================================
TEXT
==========================================================*/

.service-item h4{
    font-size:1rem;
    color:#0f172a;
    font-weight:700;

    line-height:1.6;
}

.service-item:hover h4{
    color:black;
}
/*==========================================================
ANIMATIONS
==========================================================*/

@keyframes heroFadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes heroFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes heroGlow{

    0%{
        opacity:.45;
        transform:scale(1);
    }

    50%{
        opacity:.75;
        transform:scale(1.08);
    }

    100%{
        opacity:.45;
        transform:scale(1);
    }

}

/*==========================================================
ANIMATION APPLY
==========================================================*/

.hero-tag{
    animation:heroFadeUp .7s ease forwards;
}

.hero-title{
    animation:heroFadeUp .8s ease .1s forwards;
}

.hero-description{
    animation:heroFadeUp .9s ease .2s forwards;
}

.hero-buttons{
    animation:heroFadeUp 1s ease .3s forwards;
}

.hero-services{
    animation:heroFadeUp 1.1s ease .4s forwards;
}

.service-icon{
    animation:heroFloat 5s ease-in-out infinite;
}

.service-item:nth-child(3) .service-icon{
    animation-delay:.4s;
}

.service-item:nth-child(5) .service-icon{
    animation-delay:.8s;
}

.service-item:nth-child(7) .service-icon{
    animation-delay:1.2s;
}

/*==========================================================
HOVER EFFECTS
==========================================================*/

.hero-title span{
    transition:.35s;
}

.hero-title:hover span{
    filter:brightness(1.2);
}

.hero-buttons a{
    transition:all .35s ease;
}

.hero-buttons a:hover{
    transform:translateY(-6px);
}

.service-item{
    transition:.35s ease;
}

.service-item:hover{
    transform:translateY(-8px);
}

.service-item:hover .service-icon{
    box-shadow:
        0 20px 45px rgba(0,180,255,.28);
}

.service-divider{
    transition:.35s;
}

.hero-services:hover .service-divider{
    opacity:.8;
}

/*==========================================================
RESPONSIVE
==========================================================*/

@media (max-width:1200px){

    .hero{
        padding:100px 0 70px;
    }

    .hero-container{
        padding:0 45px;
    }

    .hero-title{
        font-size:4rem;
    }

    .hero-description{
        max-width:600px;
    }

}

@media (max-width:992px){

    .hero{
        min-height:auto;
        padding:140px 0 90px;
    }

    .hero-container{
        padding:0 30px;
    }

    .hero-content{
        max-width:100%;
    }

    .hero-title{
        font-size:3.4rem;
        line-height:1;
        letter-spacing:-2px;
    }

    .hero-description{
        font-size:1.05rem;
        max-width:580px;
    }

    .hero-services{
        flex-wrap:wrap;
        gap:40px;
        max-width:700px;
    }

    .service-divider{
        display:none;
    }

    .service-item{
        flex:0 0 calc(50% - 20px);
        padding:0;
    }

}

@media (max-width:768px){

    .hero{
        padding:120px 0 70px;
    }

    .hero-container{
        padding:0 22px;
    }

    .hero-title{
        font-size:2.8rem;
        line-height:1.05;
    }

    .hero-description{
        font-size:1rem;
        line-height:1.8;
    }

    .hero-buttons{
        flex-direction:column;
        gap:16px;
    }

    .hero-buttons a{
        width:100%;
        max-width:360px;
    }

    .hero-services{
        gap:30px;
    }

    .service-item{
        flex:0 0 100%;
    }

}

@media (max-width:480px){

    .hero-title{
        font-size:2.2rem;
        letter-spacing:-1px;
    }

    .hero-tag{
        font-size:.82rem;
        padding:10px 16px;
    }

    .hero-description{
        font-size:.96rem;
    }

    .service-icon{
        width:68px;
        height:68px;
        font-size:26px;
        border-radius:20px;
    }

    .service-item h4{
        font-size:.95rem;
    }

}










/*==========================================================
HOME ABOUT
==========================================================*/

.home-about{
    position:relative;
    padding:110px 0;
    overflow:hidden;
    background:
        radial-gradient(circle at top left,rgba(37,99,235,.08),transparent 30%),
        radial-gradient(circle at bottom right,rgba(14,165,233,.08),transparent 35%),
        #fff;
}

.home-about::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(37,99,235,.04) 1px,transparent 1px),
        linear-gradient(90deg,rgba(37,99,235,.04) 1px,transparent 1px);
    background-size:42px 42px;
    mask-image:linear-gradient(to bottom,rgba(0,0,0,.25),transparent 90%);
    pointer-events:none;
}

.home-about .container{
    position:relative;
    z-index:2;
    max-width:1320px;
    margin:auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:1fr 520px;
    align-items:center;
    gap:70px;
}

/*==========================================================
LEFT CONTENT
==========================================================*/

.about-content{
    max-width:650px;
}

/*==========================================================
BADGE
==========================================================*/

.section-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 22px;

    background:#eef4ff;
    color:#2563eb;

    border-radius:50px;

    font-size:.85rem;
    font-weight:700;
    letter-spacing:1px;
}

.section-badge i{
    font-size:14px;
}

/*==========================================================
HEADING
==========================================================*/

.about-content h2{
    margin:0 0 18px;
    font-size:clamp(2.6rem,3.5vw,3.9rem);
    line-height:1.08;
    font-weight:800;
    color:#0f172a;
}

.about-content h2 span{
    display:block;
    color:#2563eb;
}

/*==========================================================
TEXT
==========================================================*/

.about-text{
    font-size:1.12rem;
    line-height:1.7;
    color:#64748b;
    margin-bottom:24px;
}

/*==========================================================
BUTTONS
==========================================================*/

.about-buttons{
    display:flex;
    gap:18px;
    margin-bottom:27px;
}

.btn-primary,
.btn-outline{
    display:inline-flex;
    align-items:center;
    gap:12px;
    font-size: 13px;

    padding:12px 22px;

    border-radius:14px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;
}

.btn-primary{

    background:#2563eb;
    color:#fff;

}

.btn-primary:hover{

    background:#1d4ed8;
    transform:translateY(-3px);

}

.btn-outline{

    border:2px solid #2563eb;
    color:#2563eb;
    background:#fff;

}

.btn-outline:hover{

    background:#2563eb;
    color:#fff;

}

/*==========================================================
FEATURES
==========================================================*/

.about-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:15px;

}

.feature-item{

    display:flex;
    align-items:flex-start;
    gap:14px;

    padding:20px 10px 20px 20px;

    background:#fff;

    border:1px solid #e2e8f0;

    border-radius:20px;

    box-shadow:0 12px 30px rgba(15,23,42,.05);

    transition:.35s;

}

.feature-item:hover{

    transform:translateY(-6px);

    box-shadow:0 22px 45px rgba(37,99,235,.12);

    border-color:#dbeafe;

}

.feature-icon{

    width:50px;
    height:50px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    font-size:24px;

    background:#eff6ff;
    color:#2563eb;

}

.feature-item:nth-child(2) .feature-icon{

    background:#ecfeff;
    color:#10b981;

}

.feature-item:nth-child(3) .feature-icon{

    background:#fff7ed;
    color:#f97316;

}

.feature-item:nth-child(4) .feature-icon{

    background:#f3e8ff;
    color:#9333ea;

}

.feature-content h4{

    font-size:1rem;
    color:#0f172a;
    margin-bottom:3px;

}

.feature-content p{

    color:#64748b;
    line-height:1.5;
    font-size:.88rem;

}

/*==========================================================
RIGHT SIDE
==========================================================*/

.about-image{

    position: relative;

    width: 100%;
    height: 620px;

    border-radius: 32px;

    background: #f8fafc;

    border: 1px solid #e2e8f0;

    overflow: hidden;

}

.about-image-wrapper{

    width: 100%;
    height: 100%;

}

.about-image-wrapper img{

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

}
/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1100px){

    .home-about .container{

        grid-template-columns:1fr;
        gap:60px;

    }

    .about-content{

        max-width:100%;

    }

    .about-image{

        height:500px;

    }

}

@media(max-width:768px){

    .home-about{

        padding:80px 0;

    }

    .about-content h2{

        font-size:2.4rem;

    }

    .about-buttons{

        flex-direction:column;

    }

    .about-features{

        grid-template-columns:1fr;

    }

    .about-image{

        height:350px;

    }

}













/*==========================================================
TRUST SECTION
==========================================================*/

.trust-section{
    position:relative;
    padding:110px 0;
    background:
        radial-gradient(circle at top left, rgba(37,99,235,.08), transparent 35%),
        radial-gradient(circle at top right, rgba(14,165,233,.08), transparent 35%),
        #fff;
    overflow:hidden;
}

.trust-section::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(37,99,235,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,99,235,.04) 1px, transparent 1px);
    background-size:40px 40px;
    mask-image:linear-gradient(to bottom, rgba(0,0,0,.25), transparent 90%);
    pointer-events:none;
}

.trust-section .container{
    position:relative;
    z-index:2;
    max-width:1320px;
    margin:auto;
    padding:0 20px;
}

/*==========================================================
HEADER
==========================================================*/

.trust-header{
    text-align:center;
    max-width:760px;
    margin:0 auto 50px;
}

.trust-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 22px;
    border-radius:50px;
    background:#eff6ff;
    color:#2563eb;
    font-size:.85rem;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.trust-header h2{
    margin:25px 0 20px;
    font-size:clamp(2.2rem,4vw,3rem);
    line-height:1;
    color:#0f172a;
    font-weight:720;
}

.trust-header h2 span{
    color:#2563eb;
}

.trust-header p{
    max-width:700px;
    margin:auto;
    color:#64748b;
    font-size:1.rem;
    line-height:1.6;
}

/*==========================================================
CARDS
==========================================================*/

.trust-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
    margin-bottom:45px;
}

.stat-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:26px;
    width: 280px;
    height: 370px;
    padding:38px 30px;
    text-align:center;
    box-shadow:0 20px 45px rgba(15,23,42,.06);
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.stat-card::before{
    content:"";
    position:absolute;
    inset:auto 0 0;
    height:5px;
    background:linear-gradient(90deg,#2563eb,#38bdf8);
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}

.stat-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(37,99,235,.15);
}

.stat-card:hover::before{
    transform:scaleX(1);
}

/*==========================================================
ICON
==========================================================*/

.stat-icon{
    width:78px;
    height:78px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 28px;
    background:#eff6ff;
    color:#2563eb;
    font-size:30px;
    box-shadow:0 10px 25px rgba(37,99,235,.12);
}

.stat-icon.purple{
    background:#f3e8ff;
    color:#9333ea;
}

.stat-icon.orange{
    background:#fff7ed;
    color:#f97316;
}

.stat-icon.green{
    background:#ecfdf5;
    color:#10b981;
}

/*==========================================================
TEXT
==========================================================*/

.stat-card h3{
    font-size:3rem;
    font-weight:800;
    color:#0f172a;
    margin-bottom:10px;
}

.stat-card h4{
    font-size:1.25rem;
    font-weight:700;
    color:#1e293b;
    margin-bottom:8px;
}

.stat-card p{
    color:#64748b;
    line-height:1.6;
    font-size:.96rem;
}

/*==========================================================
BOTTOM FEATURES
==========================================================*/

.trust-features{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:18px;

    padding:18px;

    background:#fff;

    border:1px solid #e2e8f0;

    border-radius:22px;

    box-shadow:0 18px 40px rgba(15,23,42,.05);

}

.feature-item{

    display:flex;

    align-items:center;

    gap:14px;

    padding:14px 16px;

    border-radius:16px;

    transition:all .3s ease;

    cursor:default;

}

.feature-item:hover{

    background:#f8fafc;

    transform:translateY(-3px);

}

.feature-item i{

    width:52px;

    height:52px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    background:#eff6ff;

    color:#2563eb;

    font-size:1.25rem;

    transition:.3s;

}

.feature-item:hover i{

    background:#2563eb;

    color:#fff;

}

.feature-item span{

    font-size:.95rem;

    font-weight:600;

    line-height:1.5;

    color:#334155;

}

/*==========================================================
RESPONSIVE
==========================================================*/

@media (max-width:991px){

    .trust-features{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:576px){

    .trust-features{

        grid-template-columns:1fr;

    }

}
/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1100px){

    .trust-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .trust-features{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .trust-section{
        padding:80px 0;
    }

    .trust-stats{
        grid-template-columns:1fr;
    }

    .trust-features{
        grid-template-columns:1fr;
    }

    .trust-header h2{
        font-size:2.2rem;
    }

    .stat-card h3{
        font-size:2.5rem;
    }

}










/*==========================================================
HOME SERVICES
==========================================================*/

.home-services{
    position:relative;
    padding:85px 0;
    overflow:hidden;
    background:
        radial-gradient(circle at top left,rgba(37,99,235,.08),transparent 30%),
        radial-gradient(circle at bottom right,rgba(14,165,233,.08),transparent 35%),
        #fff;
}

.home-services::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(37,99,235,.04) 1px,transparent 1px),
        linear-gradient(90deg,rgba(37,99,235,.04) 1px,transparent 1px);
    background-size:42px 42px;
    mask-image:linear-gradient(to bottom,rgba(0,0,0,.25),transparent 95%);
    pointer-events:none;
}

.home-services .container{
    position:relative;
    z-index:2;
    max-width:1320px;
    margin:auto;
    padding:0 20px;
}

/*==========================================================
SECTION HEADING
==========================================================*/

.section-heading{
    max-width:760px;
    margin:0 auto 45px;
    text-align:center;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 22px;
    border-radius:50px;
    background:#eef4ff;
    color:#2563eb;
    font-size:.85rem;
    font-weight:700;
    letter-spacing:1px;
}



.section-heading p{
    max-width:680px;
    margin:auto;
    font-size:1.08rem;
    line-height:1.8;
    color:#64748b;
}
/*==========================================================
GRID
==========================================================*/

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

/*==========================================================
CARD
==========================================================*/

.service-card{
    position:relative;
    display:flex;
    flex-direction:column;

    padding:22px;
    border-radius:22px;

    background:#fff;
    border:1px solid #e6edf8;

    box-shadow:0 12px 35px rgba(15,23,42,.06);

    transition:.35s;
    overflow:hidden;

    min-height:240px; /* adjust if needed */
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 55px rgba(37,99,235,.15);
    border-color:#dbeafe;
}

.service-card::before{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#38bdf8);
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}

.service-card:hover::before{
    transform:scaleX(1);
}

/*==========================================================
ICON
==========================================================*/

.service-top{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:20px;
}

.service-icon{
    width:68px;
    height:68px;
    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;
    font-size:30px;

    margin-bottom:0;
    background:#eff6ff;
    color:#2563eb;
}

.service-card:nth-child(2) .service-icon{
    background:#ecfeff;
    color:#10b981;
}

.service-card:nth-child(3) .service-icon{
    background:#f3e8ff;
    color:#9333ea;
}

.service-card:nth-child(4) .service-icon{
    background:#fff7ed;
    color:#f97316;
}

.service-card:nth-child(5) .service-icon{
    background:#eef2ff;
    color:#2563eb;
}

.service-card:nth-child(6) .service-icon{
    background:#ecfeff;
    color:#0891b2;
}

/*==========================================================
TEXT
==========================================================*/

.service-content{
    flex:1;
}

.service-content h3{
    font-size:1.25rem;
    margin-bottom:8px;
    line-height:1.3;
    color:#0f172a;
    font-weight:700;
}

.service-content p{
    font-size:.96rem;
    margin-bottom:18px;
    margin:0;
    line-height:1.7;
    color:#64748b;
}

.service-bottom{
    margin-top:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
}

/*==========================================================
TAGS
==========================================================*/
.service-tags{
    display:flex;
    flex-wrap:wrap;
    justify-content:flex-end;
    gap:8px;

    flex:1;
}

.service-tags span{
    padding:6px 12px;
    background:#f1f5f9;
    border-radius:20px;

    font-size:.75rem;
    font-weight:600;

    color:#475569;
}


/*==========================================================
ARROW
==========================================================*/

.service-arrow{
    width:46px;
    height:46px;

    flex-shrink:0;

    border:2px solid #2563eb;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#2563eb;

    transition:.35s;
}

.service-card:hover .service-arrow{
    background:#2563eb;
    color:#fff;
    transform:translateX(5px);
}

/*==========================================================
BOTTOM CTA
==========================================================*/

.services-bottom{
    margin-top:45px;

    padding:26px 34px;

    border-radius:22px;
    border:1px solid #e2e8f0;
    background:#fff;
    box-shadow:0 18px 45px rgba(15,23,42,.05);

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.services-info{
    display:flex;
    align-items:center;
    gap:24px;
}

.bottom-icon{
    width:72px;
    height:72px;
    font-size:30px;
    border-radius:50%;
    background:#eff6ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.services-info h3{
    font-size:1.8rem;
    color:#0f172a;
    margin-bottom:8px;
}

.services-info p{
    color:#64748b;
    line-height:1.7;
}

.services-actions{
    display:flex;
    gap:18px;
}

/*==========================================================
BUTTONS
==========================================================*/

.btn-outline,
.btn-primary{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:14px 24px;
    border-radius:12px;
    font-size:.95rem;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    white-space:nowrap;
}

.btn-outline{
    border:2px solid #2563eb;
    color:#2563eb;
    background:#fff;
}

.btn-outline:hover{
    background:#2563eb;
    color:#fff;
}

.btn-primary{
    background:#2563eb;
    color:#fff;
}

.btn-primary:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
}

/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1100px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .services-bottom{
        flex-direction:column;
        text-align:center;
    }

    .services-info{
        flex-direction:column;
    }

}

@media(max-width:768px){

    .home-services{
        padding:80px 0;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .services-actions{
        width:100%;
        flex-direction:column;
    }

    .btn-outline,
    .btn-primary{
        justify-content:center;
    }

    .section-heading h2{
        font-size:2.3rem;
    }

    .service-content h3{
        font-size:1.4rem;
    }

    .services-info h3{
        font-size:1.5rem;
    }

}












/*==========================================================
RADIANT SYNERGY
WHY CHOOSE US
PART 1
Layout • Left Image • Floating Cards
==========================================================*/


/*==========================================================
SECTION
==========================================================*/

.rs-choose{

    position:relative;
    overflow:hidden;

    padding:110px 0;

    background:#ffffff;

}

.rs-choose *{

    box-sizing:border-box;

}


/*==========================================================
CONTAINER
==========================================================*/

.rs-choose-container{

    width:min(1280px,92%);
    margin:auto;

    display:grid;
    grid-template-columns:520px 1fr;
    gap:60px;

    align-items:center;

    position:relative;
    z-index:2;

}


/*==========================================================
LEFT SIDE
==========================================================*/

.rs-choose-left{

    position:relative;

}


/*==========================================================
IMAGE WRAPPER
==========================================================*/

.rs-image-wrapper{

    position:relative;

    width:100%;
    height:700px;

    border-radius:60px;

    overflow:hidden;

    box-shadow:
        0 35px 90px rgba(15,23,42,.12);

}


/*==========================================================
IMAGE
==========================================================*/

.rs-image-wrapper img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    transition:.7s;

}

.rs-image-wrapper:hover img{

    transform:scale(1.05);

}


/*==========================================================
IMAGE OVERLAY
==========================================================*/

.rs-image-wrapper::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        180deg,
        rgba(37,99,235,.05),
        rgba(15,23,42,.18)
    );

}


/*==========================================================
FLOATING CARD
==========================================================*/

.rs-float-card{

    position:absolute;

    width:128px;
    height:128px;

    border-radius:24px;

    backdrop-filter:blur(18px);

    background:
        rgba(37,99,235,.72);

    border:1px solid
        rgba(255,255,255,.35);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    z-index:5;

    color:#fff;

    box-shadow:
        0 25px 60px
        rgba(37,99,235,.30);

    transition:.45s;

}


/*==========================================================
FLOAT CARD HOVER
==========================================================*/

.rs-float-card:hover{

    transform:
        translateY(-8px)
        scale(1.04);

    box-shadow:
        0 35px 70px
        rgba(37,99,235,.42);

}


/*==========================================================
FLOAT ICON
==========================================================*/

.rs-float-icon{

    width:56px;
    height:56px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    border:2px solid
        rgba(255,255,255,.35);

    margin-bottom:16px;

}

.rs-float-icon i{

    font-size:1.55rem;

    color:#fff;

}


/*==========================================================
FLOAT TEXT
==========================================================*/

.rs-float-card h4{

    font-size:1.18rem;

    font-weight:600;

    color:#fff;

}


/*==========================================================
CARD POSITIONS
==========================================================*/

.rs-card-one{

    top: 70px;
    left: 40px;

}

.rs-card-two{

    top: 230px;
    right: 30px;

}

.rs-card-three{

    bottom: 140px;
    left: 25px;

}

.rs-card-four{

    bottom: 95px;
    right: 70px;

}


/*==========================================================
PLUS DECORATION
==========================================================*/

.rs-plus-shape{

    position:absolute;

    left:-35px;
    bottom:-40px;

    width:105px;
    height:105px;

    z-index:8;

}

.rs-plus-shape::before,
.rs-plus-shape::after{

    content:"";

    position:absolute;

    background:#2563eb;

    border-radius:8px;

}

.rs-plus-shape::before{

    width:105px;
    height:28px;

    top:38px;
    left:0;

}

.rs-plus-shape::after{

    width:28px;
    height:105px;

    left:38px;
    top:0;

}


/*==========================================================
BACKGROUND DECORATION
==========================================================*/

.rs-choose::before{

    content:"";

    position:absolute;

    width:560px;
    height:560px;

    right:-220px;
    top:-180px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(37,99,235,.08),
            transparent 70%
        );

}

.rs-choose::after{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    left:-180px;
    bottom:-180px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(96,165,250,.10),
            transparent 70%
        );

}
/*==========================================================
RADIANT SYNERGY
WHY CHOOSE US
PART 2
Right Content & Features
==========================================================*/


/*==========================================================
RIGHT SIDE
==========================================================*/

.rs-choose-right{

    display:flex;
    flex-direction:column;
    justify-content:center;

}


/*==========================================================
SMALL TITLE
==========================================================*/

.rs-small-title{

    display:inline-flex;
    align-items:center;
    gap:14px;

    width:max-content;

    margin-bottom:26px;

    font-size:1.25rem;
    font-weight:700;

    color:#2563eb;

}

.rs-small-title span{

    width:16px;
    height:16px;

    border-radius:4px;

    background:#2563eb;

}


/*==========================================================
MAIN TITLE
==========================================================*/

.rs-main-title{

    font-size:3.5rem;
    line-height:1;

    font-weight:700;

    letter-spacing:-3px;

    color:#0f172a;

    max-width:900px;

    margin-bottom:10px;

}

.rs-main-title span{
    line-height:1.25;

    display:block;

    background:linear-gradient(
        90deg,
        #2563eb,
        #3b82f6,
        #60a5fa
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}


/*==========================================================
DESCRIPTION
==========================================================*/

.rs-main-description{

    max-width:760px;

    font-size:1.12rem;

    line-height:1.9;

    color:#64748b;

    margin-bottom:30px;

}


/*==========================================================
FEATURE ROW
==========================================================*/

.rs-feature-row{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    border-top:1px solid #e7edf8;

}


/*==========================================================
FEATURE BOX
==========================================================*/

.rs-feature-box{

    position:relative;

    text-align:center;

    padding:34px 28px 0;

    min-height:315px;

}

.rs-feature-box:not(:last-child){

    border-right:1px solid #e7edf8;

}


/*==========================================================
ICON CIRCLE
==========================================================*/

.rs-feature-circle{

    width:92px;
    height:92px;

    margin:0 auto 22px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        180deg,
        #f2f7ff,
        #dfeeff
    );

}

.rs-feature-circle i{

    font-size:2rem;

    color:#2563eb;

}


/*==========================================================
FEATURE TITLE
==========================================================*/

.rs-feature-box h3{

    font-size:1.7rem;

    font-weight:700;

    color:#111827;

    margin-bottom:20px;

}


/*==========================================================
FEATURE TEXT
==========================================================*/

.rs-feature-box p{

    max-width:230px;

    margin:auto;

    color:#64748b;

    font-size:1rem;

    line-height:1.85;

}


/*==========================================================
VERTICAL DIVIDER EFFECT
==========================================================*/

.rs-feature-box::after{

    content:"";

    position:absolute;

    left:50%;
    bottom:0;

    transform:translateX(-50%);

    width:0;
    height:3px;

    border-radius:50px;

    background:#2563eb;

    transition:.4s;

}

.rs-feature-box:hover::after{

    width:90px;

}


/*==========================================================
HOVER
==========================================================*/

.rs-feature-box{

    transition:.4s ease;

}

.rs-feature-box:hover{

    transform:translateY(-8px);

}

.rs-feature-box:hover h3{

    color:#2563eb;

}

.rs-feature-box:hover .rs-feature-circle{

    background:linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    box-shadow:
        0 20px 45px rgba(37,99,235,.20);

}

.rs-feature-box:hover .rs-feature-circle i{

    color:#fff;

}


/*==========================================================
SMOOTH TRANSITIONS
==========================================================*/

.rs-feature-circle,
.rs-feature-circle i,
.rs-feature-box h3,
.rs-feature-box{

    transition:.4s cubic-bezier(.22,.61,.36,1);

}
/*==========================================================
RADIANT SYNERGY
WHY CHOOSE US
PART 3
Responsive • Animations • Final Polish
==========================================================*/


/*==========================================================
ENTRANCE ANIMATION
==========================================================*/

.rs-choose-left,
.rs-choose-right{
    animation:rsFadeUp .9s ease both;
}

.rs-choose-right{
    animation-delay:.15s;
}


/*==========================================================
IMAGE HOVER
==========================================================*/

.rs-image-wrapper{
    transition:
        transform .5s ease,
        box-shadow .5s ease;
}

.rs-image-wrapper:hover{

    transform:translateY(-8px);

    box-shadow:
        0 45px 100px rgba(15,23,42,.16);

}


/*==========================================================
FLOATING CARD ANIMATION
==========================================================*/

.rs-card-one{
    animation:rsFloat1 6s ease-in-out infinite;
}

.rs-card-two{
    animation:rsFloat2 7s ease-in-out infinite;
}

.rs-card-three{
    animation:rsFloat3 6.5s ease-in-out infinite;
}

.rs-card-four{
    animation:rsFloat4 7.5s ease-in-out infinite;
}


/*==========================================================
FEATURE ANIMATION
==========================================================*/

.rs-feature-box{

    opacity:0;

    animation:
        rsFeatureUp .7s forwards;

}

.rs-feature-box:nth-child(1){
    animation-delay:.25s;
}

.rs-feature-box:nth-child(2){
    animation-delay:.40s;
}

.rs-feature-box:nth-child(3){
    animation-delay:.55s;
}

.rs-feature-box:nth-child(4){
    animation-delay:.70s;
}


/*==========================================================
BACKGROUND DOTS
==========================================================*/

.rs-dot-grid{

    position:absolute;

    top:110px;
    right:70px;

    width:180px;
    height:180px;

    opacity:.18;

    background-image:
        radial-gradient(
            #2563eb 1.8px,
            transparent 1.8px);

    background-size:18px 18px;

    pointer-events:none;

}

.rs-dot-grid.left{

    top:auto;
    bottom:70px;
    left:40px;

}


/*==========================================================
SOFT GLOW
==========================================================*/

.rs-soft-glow{

    position:absolute;

    width:280px;
    height:280px;

    border-radius:50%;

    filter:blur(80px);

    background:
        rgba(59,130,246,.10);

    pointer-events:none;

}

.rs-soft-glow.top{

    top:-100px;
    right:-80px;

}

.rs-soft-glow.bottom{

    bottom:-100px;
    left:-80px;

}


/*==========================================================
TABLET
==========================================================*/

@media(max-width:1200px){

    .rs-choose{

        padding:90px 0;

    }

    .rs-choose-container{

        grid-template-columns:1fr;

        gap:70px;

    }

    .rs-choose-left{

        max-width:620px;

        margin:auto;

    }

    .rs-choose-right{

        text-align:center;

    }

    .rs-small-title{

        margin-inline:auto;

    }

    .rs-main-description{

        margin-inline:auto;
        margin-bottom:55px;

    }

    .rs-feature-row{

        grid-template-columns:repeat(2,1fr);

        border:none;

        gap:45px;

    }

    .rs-feature-box{

        min-height:auto;

        border:none !important;

        padding:0;

    }

}


/*==========================================================
MOBILE
==========================================================*/

@media(max-width:768px){

    .rs-choose{

        padding:70px 0;

    }

    .rs-image-wrapper{

        height:560px;

        border-radius:38px;

    }

    .rs-main-title{

        font-size:3rem;

        letter-spacing:-1px;

    }

    .rs-main-description{

        font-size:1rem;

    }

    .rs-feature-row{

        grid-template-columns:1fr;

        gap:35px;

    }

    .rs-float-card{

        width:105px;
        height:105px;

        border-radius:20px;

    }

    .rs-float-icon{

        width:46px;
        height:46px;

        margin-bottom:12px;

    }

    .rs-float-icon i{

        font-size:1.2rem;

    }

    .rs-float-card h4{

        font-size:.9rem;

    }

}


/*==========================================================
SMALL MOBILE
==========================================================*/

@media(max-width:576px){

    .rs-main-title{

        font-size:2.35rem;

    }

    .rs-image-wrapper{

        height:430px;

    }

    .rs-card-two,
    .rs-card-four{

        display:none;

    }

    .rs-plus-shape{

        display:none;

    }

}


/*==========================================================
KEYFRAMES
==========================================================*/

@keyframes rsFadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}


@keyframes rsFeatureUp{

    from{

        opacity:0;
        transform:translateY(30px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}


@keyframes rsFloat1{

    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-12px);}

}

@keyframes rsFloat2{

    0%,100%{transform:translateY(0);}
    50%{transform:translateY(10px);}

}

@keyframes rsFloat3{

    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-8px);}

}

@keyframes rsFloat4{

    0%,100%{transform:translateY(0);}
    50%{transform:translateY(12px);}

}


/*==========================================================
REDUCED MOTION
==========================================================*/

@media(prefers-reduced-motion:reduce){

    *,
    *::before,
    *::after{

        animation:none !important;
        transition:none !important;

    }

}












/*==================================================
TECHNOLOGIES SECTION
==================================================*/

.rs-tech-section{

    position:relative;
    overflow:hidden;
    padding:120px 0;

    background:
        radial-gradient(circle at top left,
        rgba(37,99,235,.07),
        transparent 34%),

        radial-gradient(circle at bottom right,
        rgba(59,130,246,.06),
        transparent 38%),

        linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fbff 100%);

}

/*==================================================
BACKGROUND
==================================================*/

.rs-tech-bg-dots{

    position:absolute;

    left:40px;
    top:170px;

    width:135px;
    height:135px;

    opacity:.35;

    background-image:
        radial-gradient(#2563eb 2px,transparent 2px);

    background-size:22px 22px;

}

.rs-tech-bg-circles{

    position:absolute;

    right:-130px;
    top:-140px;

    width:560px;
    height:560px;

    border-radius:50%;

    pointer-events:none;

    opacity:.35;

}

.rs-tech-bg-circles::before,
.rs-tech-bg-circles::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:50%;

    border:1px solid rgba(37,99,235,.07);

}

.rs-tech-bg-circles::after{

    inset:45px;

}

.rs-tech-bg-circles span{

    position:absolute;

    inset:90px;

    border-radius:50%;

    border:1px solid rgba(37,99,235,.07);

}

/*==================================================
SECTION HEADER
==================================================*/

.rs-tech-heading{

    max-width:900px;

    margin:0 auto 50px;

    text-align:center;

    position:relative;

    z-index:2;

}

.rs-tech-badge{

    display:inline-flex;

    align-items:center;

    gap:16px;

    font-size:.95rem;

    letter-spacing:1px;

    text-transform:uppercase;

    font-weight:700;

    color:#2563eb;

}

.rs-tech-badge span{

    width:50px;

    height:2px;

    background:#2563eb;

    border-radius:30px;

}

.rs-tech-heading h2{

    margin:20px 0;

    font-size:3.3rem;

    line-height:1.1;

    font-weight:720;

    color:#081b4b;

    letter-spacing:-1px;

}

.rs-tech-heading h2 span{

    color:#2563eb;

}

.rs-tech-line{

    width:72px;

    height:5px;

    margin:0 auto 20px;

    border-radius:50px;

    background:
        linear-gradient(
        90deg,
        #2563eb,
        #4f8dff);

}

.rs-tech-heading p{

    max-width:700px;

    margin:auto;

    font-size:1.2rem;

    line-height:1.9;

    color:#64748b;

}

/*==================================================
GRID
==================================================*/

.rs-tech-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    column-gap:28px;

    row-gap:34px;

}

/*==================================================
ITEM
==================================================*/

.rs-tech-item{

    display:flex;

    flex-direction:column;

}

/*==================================================
CATEGORY
==================================================*/

.rs-tech-category{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:14px;

    margin-bottom:16px;

    font-size:.95rem;

    font-weight:700;

    color:#1d4ed8;

    text-transform:uppercase;

    letter-spacing:.8px;

}

.rs-tech-category span{

    width:24px;

    height:2px;

    border-radius:30px;

    background:#2563eb;

    opacity:.35;

}

/*==================================================
CATEGORY COLORS
==================================================*/

.rs-tech-item:nth-child(1) .rs-tech-category{

    color:#2563eb;

}

.rs-tech-item:nth-child(2) .rs-tech-category{

    color:#7c3aed;

}

.rs-tech-item:nth-child(3) .rs-tech-category{

    color:#16a34a;

}

.rs-tech-item:nth-child(4) .rs-tech-category{

    color:#2563eb;

}

.rs-tech-item:nth-child(5) .rs-tech-category{

    color:#2563eb;

}

.rs-tech-item:nth-child(6) .rs-tech-category{

    color:#ea580c;

}

.rs-tech-item:nth-child(7) .rs-tech-category{

    color:#ec4899;

}

.rs-tech-item:nth-child(8) .rs-tech-category{

    color:#06b6d4;

}
/*==================================================
PREMIUM TECHNOLOGY CARD
==================================================*/

.rs-tech-card{

    position:relative;

    background:#fff;

    border-radius:22px;

    min-height:182px;

    padding:22px;

    overflow:hidden;

    border:1px solid rgba(37,99,235,.06);

    box-shadow:
        0 18px 55px rgba(15,23,42,.08),
        0 4px 14px rgba(15,23,42,.03);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    will-change: transform;
}

.rs-tech-card:hover{

    transform:translateY(-8px);

    border-color:rgba(37,99,235,.18);

    box-shadow:
        0 28px 70px rgba(37,99,235,.12),
        0 10px 25px rgba(15,23,42,.08);

}

/*==================================================
TOP ACCENT
==================================================*/

.rs-tech-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
        linear-gradient(
        90deg,
        #2563eb,
        #5aa7ff);

}

.rs-tech-card::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:22px;

    background:
        radial-gradient(circle at top,
        rgba(37,99,235,.07),
        transparent 70%);

    opacity:0;

    transition:.35s;

    pointer-events:none;

}

.rs-tech-card:hover::after{

    opacity:1;

}

/*==================================================
CARD CONTENT
==================================================*/

.rs-tech-content{

    display:flex;

    align-items:center;

    height:120px;

    position:relative;

}

/*==================================================
ICON BOX
==================================================*/

.rs-tech-logo{

    width:94px;

    height:94px;

    flex-shrink:0;

    border-radius:20px;
    overflow:hidden;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
        linear-gradient(
        145deg,
        #ffffff,
        #eef5ff);

    box-shadow:
        inset 0 2px 8px rgba(255,255,255,.9),
        0 12px 24px rgba(37,99,235,.08);

    transition:
        transform .4s ease,
        box-shadow .4s ease;

}
.rs-tech-icon{

    display:flex;

    align-items:center;

    justify-content:center;

    width:100%;
    height:100%;

    transform-origin:center;

}

.rs-tech-card:hover .rs-tech-logo{

    transform:scale(1.05);

    box-shadow:
        inset 0 2px 8px rgba(255,255,255,.95),
        0 18px 32px rgba(37,99,235,.14);

}

/*==================================================
ICON
==================================================*/

.rs-tech-logo i{

    font-size:3rem;
    color:#2563eb;

}

.rs-tech-card:hover .rs-tech-logo i{

    transform:scale(1.08);

}

/*==================================================
TEXT
==================================================*/

.rs-tech-info{

    flex:1;

    padding-left:5px;

}

.rs-tech-info h4{

    margin:0;

    font-size:1.8rem;

    line-height:1.15;

    font-weight:700;

    color:#081b4b;

}

.rs-tech-info p{

    margin:10px 0 0;

    font-size:1rem;

    line-height:1.6;

    color:#64748b;



}

.rs-tech-card:hover .rs-tech-info h4{

    color:#2563eb;

}

/*==================================================
CHANGE BUTTON
==================================================*/

.rs-tech-change{

    width:44px;

    height:44px;

    border:none;

    outline:none;

    cursor:pointer;

    flex-shrink:0;

    border-radius:50%;

    color:#2563eb;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:
        0 8px 22px rgba(37,99,235,.14);

    transition:
        transform .4s ease,
        box-shadow .35s ease;

}

.rs-tech-change i{

    font-size:1rem;

    transition:transform .6s ease;

}

.rs-tech-card:hover .rs-tech-change{

    transform:translateY(-2px);

    box-shadow:
        0 12px 26px rgba(37,99,235,.20);

}

.rs-tech-card:hover .rs-tech-change i{

    transform:rotate(180deg);

}

/*==================================================
INDICATORS
==================================================*/

.rs-tech-indicator{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:9px;

    margin-top:8px;

}

.rs-tech-indicator span{

    width:8px;

    height:8px;

    border-radius:50%;

    background:#d4dceb;

    transition:.35s;

}

.rs-tech-indicator span.active{

    width:10px;

    height:10px;

    background:#2563eb;

}

/*==================================================
CONTENT CHANGE ANIMATION
==================================================*/

.rs-tech-content.rs-tech-hide .rs-tech-logo,
.rs-tech-content.rs-tech-hide .rs-tech-info,
.rs-tech-content.rs-tech-hide .rs-tech-change{

    opacity:0;

    transform:translateY(-16px);

}

.rs-tech-content.rs-tech-show .rs-tech-logo,
.rs-tech-content.rs-tech-show .rs-tech-info,
.rs-tech-content.rs-tech-show .rs-tech-change{

    opacity:1;

    transform:translateY(0);

}


.rs-tech-card.animating .rs-tech-logo,
.rs-tech-card.animating .rs-tech-title,
.rs-tech-card.animating .rs-tech-subtitle{
    animation: rsTechSwap .7s ease;
}

@keyframes rsTechSwap{

    0%{
        opacity:1;
        transform:translateY(0);
    }

    45%{
        opacity:0;
        transform:translateY(-18px);
    }

    55%{
        opacity:0;
        transform:translateY(18px);
    }

    100%{
        opacity:1;
        transform:translateY(0);
    }

}

/*==================================================
ENTRANCE ANIMATION
==================================================*/

.rs-tech-item{

    opacity:0;

    transform:translateY(35px);

    animation:rsTechReveal .8s ease forwards;

}



@keyframes rsTechReveal{

    from{

        opacity:0;

        transform:
            translateY(35px);

    }

    to{

        opacity:1;

        transform:
            translateY(0);

    }

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

    .rs-tech-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .rs-tech-benefits{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .rs-tech-section{

        padding:90px 0;

    }

    .rs-tech-heading h2{

        font-size:2.7rem;

    }

    .rs-tech-heading p{

        font-size:1rem;

    }

    .rs-tech-grid{

        grid-template-columns:1fr;

        gap:24px;

    }

    .rs-tech-benefits{

        grid-template-columns:1fr;

    }

    .rs-tech-content{

        height:auto;

        min-height:90px;

    }

    .rs-tech-logo{

        width:74px;

        height:74px;

    }

    .rs-tech-logo i{

        font-size:2.3rem;

    }

    .rs-tech-info h4{

        font-size:1.4rem;

    }

}

@media(max-width:480px){

    .rs-tech-card{

        padding:18px;

        min-height:165px;

    }

    .rs-tech-logo{

        width:64px;

        height:64px;

    }

    .rs-tech-logo i{

        font-size:2rem;

    }

    .rs-tech-change{

        width:38px;

        height:38px;

    }

    .rs-tech-info{

        padding-left:16px;

    }

    .rs-tech-info h4{

        font-size:1.2rem;

    }

    .rs-tech-info p{

        font-size:.9rem;

    }

}











/*==================================================
TRAINING PROGRAMS
==================================================*/

.training-section{

    position: relative;

    min-height: 100vh;

    padding: 110px 0;

    background: #f8fafc;

    overflow: hidden;

}

.training-section::before{

    content: "";

    position: absolute;

    top: -180px;
    left: -180px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(37,99,235,.12),
            transparent 70%);

}

.training-section::after{

    content: "";

    position: absolute;

    right: -180px;
    bottom: -180px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(124,58,237,.10),
            transparent 70%);

}

.training-section .container{

    position: relative;
    z-index: 2;

}

/*==================================================
HEADER
==================================================*/

.training-header{

    max-width: 760px;

    margin: auto;

    text-align: center;

    margin-bottom: 70px;

}

.training-badge{

    display: inline-flex;

    align-items: center;

    padding: 10px 22px;

    border-radius: 999px;

    background: rgba(37,99,235,.08);

    color: #2563eb;

    font-size: .85rem;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 22px;

}

.training-header h2{

    font-size: clamp(2.6rem,5vw,4.2rem);

    line-height: 1.15;

    color: #0f172a;

    margin-bottom: 22px;

    font-weight: 800;

}

.training-header p{

    max-width: 640px;

    margin: auto;

    font-size: 1.08rem;

    line-height: 1.8;

    color: #64748b;

}

/*==================================================
GRID
==================================================*/

.training-grid{

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 28px;

    margin-bottom: 60px;

}

/*==================================================
CARD
==================================================*/

.training-card{

    display: flex;

    flex-direction: column;

    background: rgba(255,255,255,.75);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,.8);

    border-radius: 26px;

    overflow: hidden;

    transition: .45s ease;

    box-shadow:
        0 20px 45px rgba(15,23,42,.08);

}

.training-card:hover{

    transform: translateY(-10px);

    box-shadow:
        0 35px 70px rgba(15,23,42,.15);

}

/*==================================================
IMAGE
==================================================*/

.training-image{

    position: relative;

    height: 220px;

    overflow: hidden;

}

.training-image img{

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}

.training-card:hover .training-image img{

    transform: scale(1.08);

}

/*==================================================
LEVEL
==================================================*/

.training-level{

    position: absolute;

    left: 18px;

    bottom: 18px;

    padding: 9px 18px;

    border-radius: 50px;

    background: rgba(255,255,255,.92);

    color: #2563eb;

    font-size: .82rem;

    font-weight: 700;

    backdrop-filter: blur(12px);

}

/*==================================================
CONTENT
==================================================*/

.training-content{

    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 24px;

}

.training-content h3{

    font-size: 1rem;

    line-height: 1;

    color: #0f172a;

    margin-bottom: 10px;

    font-weight: 600;

}

.training-content p{
    font-size: 13px;

    color: #64748b;

    line-height: 1.2;

    margin-bottom: 20px;

}
/*==================================================
TECH TAGS
==================================================*/

.training-tech{

    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 10px;

}

.training-tech span{

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 5px 11px;

    background: #eff6ff;

    color: #2563eb;

    border-radius: 10px;

    font-size: .65rem;

    font-weight: 550;

    transition: .3s;

}

.training-card:hover .training-tech span{

    background: #2563eb;

    color: #fff;

}

/*==================================================
META
==================================================*/

.training-meta{

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    padding-top: 10px;

    border-top: 1px solid #e2e8f0;

}

.training-meta div{

    display: flex;

    align-items: center;

    gap: 7px;

    color: #64748b;

    font-size: .8rem;

}

.training-meta i{

    font-size: 1rem;

    color: #2563eb;

}

/*==================================================
BUTTON
==================================================*/

.training-btn{

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 18px;

    padding: 12px 18px;

    border-radius: 14px;

    background: #2563eb;

    color: #fff;

    text-decoration: none;
    font-size: 0.9rem;

    font-weight: 550;

    transition: .35s;

}

.training-btn i{

    transition: .35s;

}

.training-btn:hover{

    background: #1d4ed8;

}

.training-btn:hover i{

    transform: translateX(6px);

}

/*==================================================
BOTTOM CTA
==================================================*/

.training-footer{

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 15px;

    background: rgba(255,255,255,.75);

    backdrop-filter: blur(18px);

    border-radius: 24px;

    border: 1px solid rgba(255,255,255,.8);

    box-shadow: 0 18px 45px rgba(15,23,42,.08);

}

.training-footer-left{

    display: flex;

    align-items: center;

    gap: 20px;

}

.training-icon{

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background: linear-gradient(135deg,#2563eb,#3b82f6);

    color: #fff;

    font-size: 2rem;

    flex-shrink: 0;

}

.training-footer h4{

    font-size: 1.3rem;

    color: #0f172a;

    margin-bottom: 4px;

}

.training-footer p{

    color: #64748b;

    line-height: 1.5;

    max-width: 520px;

}

.training-footer-btn{

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 25px;

    background: #2563eb;

    color: #fff;

    text-decoration: none;

    border-radius: 14px;
    font-size: 1rem;

    font-weight: 600;

    white-space: nowrap;

    transition: .35s;

}

.training-footer-btn i{

    transition: .35s;

}

.training-footer-btn:hover{

    background: #1d4ed8;

}

.training-footer-btn:hover i{

    transform: translateX(6px);

}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:1200px){

    .training-grid{

        grid-template-columns: repeat(2,1fr);

    }

}

@media (max-width:768px){

    .training-section{

        min-height: auto;

        padding: 80px 0;

    }

    .training-header{

        margin-bottom: 50px;

    }

    .training-header h2{

        font-size: 2.4rem;

    }

    .training-grid{

        grid-template-columns: 1fr;

        gap: 24px;

    }

    .training-image{

        height: 210px;

    }

    .training-content{

        padding: 22px;

    }

    .training-content h3{

        font-size: 1.6rem;

    }

    .training-meta{

        flex-direction: column;

        align-items: flex-start;

    }

    .training-footer{

        flex-direction: column;

        align-items: flex-start;

        padding: 28px;

    }

    .training-footer-left{

        flex-direction: column;

        align-items: flex-start;

    }

    .training-footer-btn{

        width: 100%;

        justify-content: center;

    }

}

@media (max-width:480px){

    .training-badge{

        font-size: .72rem;

        padding: 8px 18px;

    }

    .training-header h2{

        font-size: 2rem;

    }

    .training-header p{

        font-size: .95rem;

    }

    .training-image{

        height: 190px;

    }

}










/*==================================================
TESTIMONIALS
==================================================*/

.testimonials-section{

    position: relative;

    padding: 120px 0;

    background: #f8fafc;

    overflow: hidden;

}

.testimonials-section::before{

    content: "";

    position: absolute;

    top: -180px;

    left: -180px;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    background: radial-gradient(circle,
        rgba(37,99,235,.08),
        transparent 70%);

}

.testimonials-section::after{

    content: "";

    position: absolute;

    right: -180px;

    bottom: -180px;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    background: radial-gradient(circle,
        rgba(124,58,237,.08),
        transparent 70%);

}

.testimonials-section .container{

    position: relative;

    z-index: 2;

}

/*==================================================
HEADER
==================================================*/

.testimonials-header{

    max-width: 760px;

    margin: auto;

    text-align: center;

    margin-bottom: 70px;

}

.testimonials-header h2{

    margin: 20px 0;

    font-size: clamp(2.5rem,5vw,4rem);

    line-height: 1.15;

    color: #0f172a;

}

.testimonials-header p{

    max-width: 650px;

    margin: auto;

    font-size: 1.05rem;

    line-height: 1.8;

    color: #64748b;

}

/*==================================================
SLIDER
==================================================*/

.testimonials-slider{
    height: 400px;

    position: relative;

    overflow: hidden;

    width: 100%;

}

.testimonials-track{

    display: flex;

    gap: 30px;

    width: max-content;

    animation: testimonialScroll 40s linear infinite;

}

.testimonials-slider:hover .testimonials-track{

    animation-play-state: paused;

}

/*==================================================
CARD
==================================================*/

.testimonial-card{

    width: 390px;
    height: 350px;

    flex-shrink: 0;

    background: rgba(255,255,255,.75);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,.8);

    border-radius: 24px;

    padding: 32px;

    transition: .35s;

    box-shadow:
        0 15px 40px rgba(15,23,42,.08);

}

.testimonial-card:hover{

    transform: translateY(-10px);

    box-shadow:
        0 30px 70px rgba(15,23,42,.15);

}

/*==================================================
RATING
==================================================*/

.testimonial-rating{

    display: flex;

    gap: 6px;

    margin-bottom: 22px;

}

.testimonial-rating i{

    color: #fbbf24;

    font-size: 1rem;

}

/*==================================================
TEXT
==================================================*/

.testimonial-text{

    color: #475569;

    font-size: 1rem;

    line-height: 1.9;

    margin-bottom: 35px;

    min-height: 145px;

}

/*==================================================
USER
==================================================*/

.testimonial-user{

    display: flex;

    align-items: center;

    gap: 16px;

}

.testimonial-image{

    width: 64px;

    height: 64px;

    border-radius: 50%;

    overflow: hidden;

    flex-shrink: 0;

}

.testimonial-image img{

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.testimonial-details{

    display: flex;

    flex-direction: column;

}

.testimonial-details h4{

    margin: 0;

    font-size: 1.1rem;

    color: #0f172a;

}

.testimonial-details span{

    margin-top: 4px;

    color: #2563eb;

    font-size: .9rem;

    font-weight: 500;

}

.testimonial-details small{

    margin-top: 5px;

    color: #94a3b8;

    font-size: .85rem;

}

/*==================================================
ANIMATION
==================================================*/

@keyframes testimonialScroll{

    from{

        transform: translateX(0);

    }

    to{

        transform: translateX(calc(-50% - 15px));

    }

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

    .testimonial-card{

        width: 340px;

    }

}

@media(max-width:768px){

    .testimonials-section{

        padding: 80px 0;

    }

    .testimonials-header{

        margin-bottom: 50px;

    }

    .testimonial-card{

        width: 300px;

        padding: 26px;

    }

    .testimonial-text{

        min-height: auto;

    }

}

@media(max-width:480px){

    .testimonial-card{

        width: 280px;

    }

}













/*==================================================
CTA
==================================================*/

.cta-section{

    padding:100px 40px;

    background:#f8fafc;
}

.cta-card{

    max-width:1200px;

    margin:auto;

    padding:70px;

    text-align:center;

    background:#ffffff;

    border:1px solid #e2e8f0;

    border-radius:32px;

    box-shadow:
        0 8px 30px rgba(15,23,42,.05),
        0 25px 60px rgba(15,23,42,.08);

    position:relative;

    overflow:hidden;
}

.cta-card::before{

    content:"";

    position:absolute;

    top:-220px;

    right:-220px;

    width:420px;

    height:420px;

    border-radius:50%;

    background:radial-gradient(rgba(37,99,235,.12),transparent 70%);
}

.cta-badge{

    display:inline-flex;

    padding:8px 18px;

    border-radius:999px;

    background:#eff6ff;

    border:1px solid #dbeafe;

    color:#2563eb;

    font-size:12px;

    font-weight:700;

    letter-spacing:.18em;

    text-transform:uppercase;

    margin-bottom:22px;
}

.cta-card h2{

    font-size:56px;

    color:#0f172a;

    line-height:1.1;

    letter-spacing:-2px;

    margin-bottom:20px;
}

.cta-card p{

    max-width:700px;

    margin:0 auto 40px;

    color:#64748b;

    line-height:1.8;

    font-size:18px;
}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:16px;

    margin-bottom:40px;
}

.cta-primary{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:16px 30px;

    border-radius:14px;

    background:#2563eb;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

    box-shadow:0 12px 25px rgba(37,99,235,.18);
}

.cta-primary:hover{

    transform:translateY(-4px);
}

.cta-primary i{

    transition:.35s;
}

.cta-primary:hover i{

    transform:translateX(5px);
}

.cta-secondary{

    padding:16px 30px;

    border-radius:14px;

    border:1px solid #dbeafe;

    text-decoration:none;

    color:#0f172a;

    font-weight:600;

    transition:.35s;
}

.cta-secondary:hover{

    background:#f8fbff;

    transform:translateY(-4px);
}

.cta-features{

    display:flex;

    justify-content:center;

    gap:28px;

    flex-wrap:wrap;

    padding-top:35px;

    border-top:1px solid #eef2f7;
}

.cta-features span{

    display:flex;

    align-items:center;

    gap:8px;

    color:#475569;

    font-size:15px;

    font-weight:500;
}

.cta-features i{

    color:#2563eb;
}

@media(max-width:768px){

    .cta-section{

        padding:80px 20px;
    }

    .cta-card{

        padding:40px 30px;
    }

    .cta-card h2{

        font-size:38px;
    }

    .cta-buttons{

        flex-direction:column;
    }

    .cta-features{

        justify-content:flex-start;
    }

}








/*==================================================
TESTIMONIAL SECTION
==================================================*/

.testimonial-section{

    padding:90px 0;

    background:
        radial-gradient(circle at top left,#eef4ff 0%,transparent 35%),
        radial-gradient(circle at bottom right,#e0f2fe 0%,transparent 40%),
        linear-gradient(180deg,#ffffff,#f8fbff);

    overflow:hidden;
}

/*==================================================
HEADER
==================================================*/

.testimonial-header{

    max-width:720px;

    margin:0 auto 45px;

    text-align:center;
}

.section-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:9px 18px;

    border-radius:999px;

    background:#eef4ff;

    color:#2563eb;

    font-size:12px;

    font-weight:700;

    letter-spacing:.18em;

    text-transform:uppercase;

    margin-bottom:14px;
}

.testimonial-header h2{

    font-size:48px;

    font-weight:800;

    letter-spacing:-2px;

    line-height:1.1;

    color:#0f172a;

    margin-bottom:16px;
}

.testimonial-header p{

    font-size:16px;

    line-height:1.8;

    color:#64748b;

    max-width:580px;

    margin:auto;
}

/*==================================================
CONTROLS
==================================================*/

.testimonial-controls{

    width:min(1320px,92%);

    margin:0 auto 25px;

    display:flex;

    justify-content:flex-end;

    gap:12px;
}

.testimonial-btn{

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    background:white;

    color:#0f172a;

    border:1px solid #e5e7eb;

    font-size:18px;

    cursor:pointer;

    transition:.35s;

    box-shadow:
        0 5px 15px rgba(15,23,42,.05);
}

.testimonial-btn:hover{

    background:#2563eb;

    color:white;

    border-color:#2563eb;

    box-shadow:
        0 15px 35px rgba(37,99,235,.18);
}

/*==================================================
SLIDER
==================================================*/

.testimonial-slider{

    overflow:hidden;
}

.testimonial-track{

    display:flex;

    gap:22px;

    overflow-x:auto;

    scroll-behavior:smooth;

    scroll-snap-type:x mandatory;

    padding:8px calc((100vw - 1320px)/2);

    scrollbar-width:none;
}

.testimonial-track::-webkit-scrollbar{

    display:none;
}

/*==================================================
CARD
==================================================*/

.testimonial-card{

    flex:0 0 430px;

    scroll-snap-align:start;

    background:white;

    border-radius:24px;

    padding:28px;

    position:relative;

    overflow:hidden;

    transition:.35s;

    box-shadow:
        0 2px 6px rgba(15,23,42,.03),
        0 15px 35px rgba(15,23,42,.05),
        0 35px 70px rgba(15,23,42,.05);
}

.testimonial-card::before{

    content:"";

    position:absolute;

    inset:0;

    padding:1px;

    border-radius:24px;

    background:
        linear-gradient(
            135deg,
            rgba(37,99,235,.15),
            rgba(255,255,255,.9),
            rgba(37,99,235,.04)
        );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask-composite:exclude;
}

.testimonial-card:hover{

    transform:translateY(-4px);

    box-shadow:
        0 10px 25px rgba(15,23,42,.06),
        0 28px 55px rgba(37,99,235,.08);
}

/*==================================================
TOP BAR
==================================================*/

.review-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:16px;
}

.stars{

    color:#f59e0b;

    font-size:15px;

    letter-spacing:2px;
}

.verified{

    display:flex;

    align-items:center;

    gap:6px;

    padding:7px 12px;

    border-radius:50px;

    background:#eff6ff;

    color:#2563eb;

    font-size:12px;

    font-weight:600;
}

/*==================================================
CATEGORY
==================================================*/

.project-type{

    display:inline-block;

    margin-bottom:10px;

    color:#2563eb;

    font-size:11px;

    font-weight:700;

    letter-spacing:.15em;

    text-transform:uppercase;
}

/*==================================================
TITLE
==================================================*/

.testimonial-card h3{

    font-size:22px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:14px;

    line-height:1.3;
}

/*==================================================
TEXT
==================================================*/

.testimonial-card p{

    font-size:15px;

    color:#64748b;

    line-height:1.8;

    margin-bottom:22px;
}

/*==================================================
CLIENT
==================================================*/

.client{

    display:flex;

    align-items:center;

    gap:12px;

    padding-top:18px;

    border-top:1px solid #f1f5f9;
}

.client img{

    width:52px;

    height:52px;

    border-radius:50%;

    object-fit:cover;

    border:2px solid #eff6ff;
}

.client-details h4{

    color:#0f172a;

    font-size:16px;

    margin-bottom:3px;
}

.client-details span{

    display:block;

    color:#475569;

    font-size:13px;

    margin-bottom:2px;
}

.client-details small{

    color:#94a3b8;

    font-size:12px;
}

/*==================================================
PROJECT TAG
==================================================*/

.project-tag{

    display:inline-flex;

    align-items:center;

    gap:8px;

    margin-top:18px;

    padding:10px 14px;

    border-radius:50px;

    background:#f8fafc;

    color:#475569;

    font-size:13px;

    font-weight:600;
}

.project-tag i{

    color:#2563eb;

    font-size:16px;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1400px){

    .testimonial-track{

        padding:8px 40px;
    }

}

@media(max-width:768px){

    .testimonial-section{

        padding:70px 0;
    }

    .testimonial-header{

        padding:0 20px;
    }

    .testimonial-header h2{

        font-size:34px;
    }

    .testimonial-header p{

        font-size:15px;
    }

    .testimonial-controls{

        width:calc(100% - 40px);
    }

    .testimonial-track{

        padding:8px 20px;
    }

    .testimonial-card{

        flex:0 0 300px;

        padding:22px;
    }

    .review-top{

        flex-direction:column;

        align-items:flex-start;

        gap:10px;
    }

}