/*==================================================
PORTFOLIO HERO
==================================================*/

.portfolio-hero{

    position:relative;

    overflow:hidden;

    

    display:flex;

    align-items:center;

    padding:60px 0 40px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfcff 45%,
            #f4f8fd 100%
        );

}

/*==================================================
BACKGROUND
==================================================*/


.portfolio-hero::after{

    content:"";

    position:absolute;

    inset:0;

    background-image:

        linear-gradient(
            rgba(37,99,235,.045) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(37,99,235,.045) 1px,
            transparent 1px
        );

    background-size:72px 72px;

    opacity:.6;

    pointer-events:none;

}

/*==================================================
CONTAINER
==================================================*/

.portfolio-hero .port-container{

    position:relative;

    z-index:2;

    max-width:1320px;

    margin:auto;

    padding:0 32px;

}

/*==================================================
GRID
==================================================*/

.portfolio-grid{

    display:grid;

    grid-template-columns:1.05fr .95fr;

    align-items:center;

    gap:60px;

}

/*==================================================
LEFT CONTENT
==================================================*/

.portfolio-content{

    max-width:650px;

}

/*==================================================
BADGE
==================================================*/

.section-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:999px;

    background:#eef5ff;

    border:1px solid #d7e7ff;

    color:#2563eb;

    font-size:.82rem;

    font-weight:600;

    letter-spacing:.3px;

    box-shadow:

        0 10px 30px rgba(37,99,235,.08);

}

.section-badge::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:#2563eb;

    box-shadow:

        0 0 14px rgba(37,99,235,.6);

}

/*==================================================
HEADING
==================================================*/

.portfolio-content h1{

    margin:24px 0;

    font-size:clamp(2.0rem,3.8vw,3.4rem);

    line-height:1.08;

    letter-spacing:-2px;

    font-weight:800;

    color:#0f172a;

}

.portfolio-content h1 span{

    display:block;

    margin-top:10px;

    color:#2563eb;

}

/*==================================================
DESCRIPTION
==================================================*/

.portfolio-content p{

    max-width:540px;

    margin:0;

    color:#64748b;

    font-size:1rem;

    line-height:1.8;

}

/*==================================================
BUTTONS
==================================================*/

.portfolio-actions{

    display:flex;

    align-items:center;

    gap:18px;

    margin-top:42px;

}

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 30px;
    border-radius:15px;

    background:#2563eb;

    color:#fff;

    font-weight:600;

    text-decoration:none;

    transition:.35s;

    box-shadow:

        0 18px 45px rgba(37,99,235,.25);

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:

        0 25px 60px rgba(37,99,235,.30);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 30px;

    border-radius:15px;

    border:1px solid #d7e7ff;

    background:#fff;

    color:#2563eb;

    font-weight:600;

    text-decoration:none;

    transition:.35s;

    box-shadow:

        0 10px 30px rgba(15,23,42,.04);

}

.btn-secondary:hover{

    transform:translateY(-5px);

    border-color:#2563eb;

    box-shadow:

        0 20px 50px rgba(15,23,42,.08);

}

/*==================================================
RIGHT VISUAL
==================================================*/

.portfolio-visual{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:520px;

}

/*==================================================
GLOBE
==================================================*/

#portfolio-globe{

    position:relative;

    z-index:5;

    width:420px;

    height:420px;

    max-width:100%;

    max-height:100%;

    cursor:grab;

    transition:.4s ease;

}

#portfolio-globe:active{

    cursor:grabbing;

}

/*==================================================
FLOATING TAGS
==================================================*/

.floating-tag{

    position:absolute;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:12px 22px;

    border-radius:999px;

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(18px);

    border:1px solid rgba(223,231,245,.9);

    box-shadow:

        0 20px 45px rgba(15,23,42,.08);

    color:#0f172a;

    font-size:.82rem;

    font-weight:600;

    white-space:nowrap;

    animation:float 6s ease-in-out infinite;

    z-index:8;

}

.tag-one{

    top:60px;

    left:20px;

    animation-delay:0s;

}

.tag-two{

    top:110px;

    right:20px;

    animation-delay:1.2s;

}

.tag-three{

    bottom:120px;

    left:40px;

    animation-delay:2.2s;

}

.tag-four{

    bottom:60px;

    right:30px;

    animation-delay:3s;

}

/*==================================================
TAG ACCENTS
==================================================*/

.tag-one{

    border-left:4px solid #ff2d55;

}

.tag-two{

    border-left:4px solid #38bdf8;

}

.tag-three{

    border-left:4px solid #2563eb;

}

.tag-four{

    border-left:4px solid #22c55e;

}

/*==================================================
FLOAT ANIMATION
==================================================*/

@keyframes float{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0px);

    }

}

/*==================================================
SUBTLE GLOW
==================================================*/



@keyframes pulseGlow{

    0%{

        transform:scale(1);

        opacity:.7;

    }

    50%{

        transform:scale(1.08);

        opacity:1;

    }

    100%{

        transform:scale(1);

        opacity:.7;

    }

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px){

    .portfolio-grid{

        grid-template-columns:1fr;

        gap:70px;

    }

    .portfolio-content{

        max-width:100%;

        text-align:center;

    }

    .portfolio-content p{

        margin:auto;

    }

    .portfolio-actions{

        justify-content:center;

    }

    .hero-trust{

        justify-content:center;

    }

    .portfolio-visual{

        min-height:520px;

    }

}

@media(max-width:768px){

    .portfolio-hero{

        min-height:auto;

        padding:120px 0 80px;

    }

    .portfolio-hero .port-container{

        padding:0 22px;

    }

    #portfolio-globe{

        width:360px;

        height:360px;

    }

    .floating-tag{

        font-size:.8rem;

        padding:10px 18px;

    }

    .tag-one{

        top:20px;

        left:10px;

    }

    .tag-two{

        top:50px;

        right:10px;

    }

    .tag-three{

        bottom:60px;

        left:20px;

    }

    .tag-four{

        bottom:20px;

        right:10px;

    }

    .hero-trust{

        flex-wrap:wrap;

        gap:20px;

        border:none;

        padding-top:20px;

    }

    .trust-divider{

        display:none;

    }

}

@media(max-width:576px){

    .portfolio-content h1{

        font-size:2.8rem;

        letter-spacing:-1.5px;

    }

    #portfolio-globe{

        width:290px;

        height:290px;

    }

    .floating-tag{

        display:none;

    }

    .portfolio-actions{

        flex-direction:column;

        align-items:stretch;

    }

    .btn-primary,

    .btn-secondary{

        width:100%;

        justify-content:center;

    }

}







/*==========================================================
HOW WE WORK
==========================================================*/

.portfolio-process{
    position:relative;
    overflow:hidden;
    background:#ffffff;
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:40px 0;
}

/* Background */

.portfolio-process::before{
    content:"";
    position:absolute;
    top:-220px;
    right:-180px;
    width:900px;
    height:900px;
    border-radius:50%;
    background:
        radial-gradient(circle,
        rgba(37,99,235,.05) 0%,
        rgba(37,99,235,.025) 40%,
        transparent 75%);
    pointer-events:none;
}

.portfolio-process::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top left,
        rgba(37,99,235,.03),
        transparent 35%);
    pointer-events:none;
}

/*==========================================================
GRID
==========================================================*/

.process-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:55px;
}

/*==========================================================
LEFT CONTENT
==========================================================*/

.process-content{
    max-width:620px;
}

.process-content .section-badge{
    margin-bottom:24px;
}

.process-content h2{
    font-size:2.45rem;
    line-height:1.12;
    margin-bottom:18px;
    font-weight:800;
    color:#0f172a;
    letter-spacing:-1.5px;
}

.process-content h2 span{
    display:block;
    margin-top:8px;
    color:#2563eb;
}

.process-divider{
    width:65px;
    height:4px;
    background:#2563eb;
    border-radius:10px;
    margin-bottom:22px;
}

.process-content>p{
    font-size:1rem;
    line-height:1.75;
    margin-bottom:34px;
    color:#475569;
    max-width:500px;
}

/*==========================================================
FEATURES
==========================================================*/

.process-features{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.process-feature{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

/* Icon */

.process-feature .feature-icon{
    width:56px;
    height:56px;

    border-radius:18px;
    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;
    background:
        linear-gradient(145deg,
        #f8fbff,
        #eef4ff);

    box-shadow:
        0 12px 30px rgba(37,99,235,.08);

    transition:.35s;
}

.process-feature:hover .feature-icon{
    transform:translateY(-6px);
}

.process-feature .feature-icon i{
    font-size:1.2rem;
    color:#2563eb;
}

/* Text */

.feature-content{
    padding-top:6px;
}

.feature-content h3{
    font-size:1.22rem;
    margin-bottom:6px;    
    font-weight:700;
    color:#0f172a;
}

.feature-content p{
    font-size:.93rem;
    line-height:1.6;
    color:#475569;
    max-width:430px;
}

/*==========================================================
SECTION SPACING
==========================================================*/

@media (min-width:1200px){

    .portfolio-process .container{
        max-width:1400px;
    }

}
/*==========================================================
RIGHT TIMELINE
==========================================================*/

.process-timeline{
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding-left:70px;
    min-height:470px;
    gap:14px;
}

/* Vertical Line */

.timeline-line{
    position:absolute;
    left:19px;
    top:18px;
    bottom:18px;
    width:3px;
    background:#2563eb;
    border-radius:20px;
    opacity:.18;
}

/* Timeline Item */

.timeline-item{
    position:relative;
}

/* Circle */

.timeline-dot{
    position:absolute;
    left:-58px;
    top:50%;
    transform:translateY(-50%);
    width:18px;
    height:18px;
    border-radius:50%;

    background:#2563eb;

    border:4px solid #fff;

    box-shadow:
        0 8px 18px rgba(37,99,235,.18);

    z-index:3;
}

/*==========================================================
CARD
==========================================================*/

.timeline-card{
    display:grid;
    grid-template-columns:72px 1fr;

    padding:22px 24px;

    border-radius:20px;

    min-height:110px;

    box-shadow:
        0 12px 35px rgba(15,23,42,.07);   
    align-items:center;

    background:#ffffff;
    transition:.35s ease;
}

.timeline-card:hover{
    transform:translateY(-8px);
    box-shadow:
        0 30px 70px rgba(37,99,235,.12);
}

/* Number */

.timeline-number{
    font-size:2.45rem;
    padding-right:18px;
    border-right:1px solid #edf2f7;    
    font-weight:800;
    color:#2563eb;
    text-align:center;
}

/* Content */

.timeline-content{
    padding-left:22px;
}

.timeline-content h3{
    font-size:1.3rem;
    margin-bottom:6px;
    font-weight:700;
    color:#0f172a;
}

.timeline-content p{
    color:#475569;
    font-size:.94rem;
    line-height:1.55;
    max-width:360px;
}

/*==========================================================
BACKGROUND RINGS
==========================================================*/

.process-timeline::before{
    content:"";
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:620px;
    height:620px;

    right:-240px;

    box-shadow:
        0 0 0 70px rgba(37,99,235,.025),
        0 0 0 140px rgba(37,99,235,.02),
        0 0 0 210px rgba(37,99,235,.015);
    border-radius:50%;
    border:1px solid rgba(37,99,235,.06);

    pointer-events:none;
}

/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1200px){

    .process-grid{
        gap:60px;
    }

    .process-content h2{
        font-size:2.9rem;
    }

    .timeline-card{
        padding:35px;
    }

    .timeline-number{
        font-size:3rem;
    }

}

@media(max-width:992px){

    .portfolio-process{
        min-height:auto;
        padding:90px 0;
    }

    .process-grid{
        grid-template-columns:1fr;
        gap:70px;
    }

    .process-content{
        max-width:100%;
    }

    .process-content h2{
        font-size:2.5rem;
    }

    .process-content>p{
        max-width:100%;
    }

    .process-timeline{
        min-height:auto;
        padding-left:55px;
    }

    .timeline-dot{
        left:-55px;
    }

    .timeline-line{
        left:10px;
    }

    .timeline-card{
        grid-template-columns:90px 1fr;
        padding:30px;
    }

    .timeline-number{
        font-size:2.5rem;
        padding-right:24px;
    }

    .timeline-content{
        padding-left:24px;
    }

    .timeline-content h3{
        font-size:1.55rem;
    }

}

@media(max-width:768px){

    .portfolio-process{
        padding:70px 0;
    }

    .process-content h2{
        font-size:2rem;
    }

    .process-content>p{
        font-size:1rem;
        line-height:1.8;
    }

    .process-feature{
        gap:18px;
    }

    .process-feature .feature-icon{
        width:70px;
        height:70px;
        border-radius:22px;
    }

    .process-feature .feature-icon i{
        font-size:1.5rem;
    }

    .feature-content h3{
        font-size:1.35rem;
    }

    .feature-content p{
        font-size:.98rem;
    }

    .timeline-card{
        grid-template-columns:1fr;
        text-align:center;
        gap:18px;
    }

    .timeline-number{
        border:none;
        padding:0;
    }

    .timeline-content{
        padding:0;
    }

    .timeline-content h3{
        font-size:1.45rem;
    }

    .timeline-content p{
        max-width:100%;
        font-size:1rem;
    }

}









/*==========================================================
FEATURED PROJECTS
==========================================================*/

.portfolio-projects{
    position:relative;
    overflow:hidden;
    background:#ffffff;
    padding:100px 0 80px;
}

/*==========================================================
BACKGROUND
==========================================================*/

.portfolio-projects::before{
    content:"";
    position:absolute;
    top:-300px;
    right:-220px;
    width:700px;
    height:700px;
    border-radius:50%;
    background:
        radial-gradient(circle,
        rgba(37,99,235,.05) 0%,
        rgba(37,99,235,.025) 45%,
        transparent 72%);
    pointer-events:none;
}

.portfolio-projects::after{
    content:"";
    position:absolute;
    left:-250px;
    bottom:-250px;
    width:600px;
    height:600px;
    border-radius:50%;
    background:
        radial-gradient(circle,
        rgba(37,99,235,.04),
        transparent 72%);
    pointer-events:none;
}

/*==========================================================
CONTAINER
==========================================================*/

.portfolio-projects .container{
    position:relative;
    z-index:2;
    max-width:1380px;
}

/*==========================================================
HEADER
==========================================================*/

.projects-header{

    max-width:760px;

    margin:0 auto 55px;

    text-align:center;

}

.projects-header .section-badge{

    margin-bottom:22px;

}

.projects-header h2{

    font-size:3rem;

    line-height:1.1;

    font-weight:800;

    letter-spacing:-1.6px;

    color:#0f172a;

    margin-bottom:22px;

}

.projects-header h2 span{

    display:block;

    margin-top:8px;

    color:#2563eb;

}

.projects-header p{

    max-width:640px;

    margin:auto;

    color:#64748b;

    font-size:1.05rem;

    line-height:1.85;

}

/* Small Divider */

.projects-divider{

    width:70px;

    height:4px;

    border-radius:10px;

    margin:26px auto;

    background:#2563eb;

}
/*==========================================================
FEATURED PROJECTS - FILTER
==========================================================*/

.projects-filter{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:14px;
    margin:45px 0 55px;
}

.projects-filter button{
    background:#f8fafc;
    color:#475569;
    border:1px solid #e2e8f0;
    padding:12px 24px;
    border-radius:50px;
    font-size:.92rem;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.projects-filter button:hover{
    background:#2563eb;
    border-color:#2563eb;
    color:#ffffff !important;
}

.projects-filter button.active{
    background:#2563eb !important;
    border-color:#2563eb !important;
    color:#ffffff !important;
}

/*==========================================================
PROJECT GRID
==========================================================*/

.projects-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
    align-items:stretch;
}

.projects-list .project-card{
    width:100%;
}

/*==========================================================
BOTTOM CTA
==========================================================*/

.projects-footer{
    margin-top:60px;
    text-align:center;
}

.projects-footer .btn-primary{
    display:inline-flex;
    align-items:center;
    gap:10px;
}

/*==========================================================
BACKGROUND SHAPES
==========================================================*/

.portfolio-projects::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:
        radial-gradient(circle,
        rgba(37,99,235,.04),
        transparent 70%);
    left:-220px;
    bottom:-220px;
    pointer-events:none;
}
/*==========================================================
RESPONSIVE
==========================================================*/

@media (max-width:1200px){

    .projects-header{
        margin-bottom:50px;
    }

    .projects-header h2{
        font-size:2.4rem;
    }

    .projects-list{
        gap:24px;
    }

}

@media (max-width:992px){

    .portfolio-projects{
        padding:80px 0;
    }

    .projects-header{
        max-width:100%;
        margin-bottom:45px;
    }

    .projects-header h2{
        font-size:2.1rem;
    }

    .projects-header p{
        font-size:1rem;
    }

    .projects-filter{
        gap:12px;
        margin:40px 0;
    }

    .projects-filter button{
        padding:10px 20px;
        font-size:.9rem;
    }

    .projects-list{
        grid-template-columns:1fr;
        gap:22px;
    }

}

@media (max-width:768px){

    .portfolio-projects{
        padding:70px 0;
    }

    .projects-header h2{
        font-size:1.9rem;
        line-height:1.25;
    }

    .projects-header h2 span{
        display:inline;
    }

    .projects-header p{
        font-size:.96rem;
        line-height:1.75;
    }

    .projects-filter{
        justify-content:flex-start;
        overflow-x:auto;
        flex-wrap:nowrap;
        padding-bottom:8px;
        margin:35px 0;
        scrollbar-width:none;
    }

    .projects-filter::-webkit-scrollbar{
        display:none;
    }

    .projects-filter button{
        white-space:nowrap;
        flex-shrink:0;
    }

    .projects-footer{
        margin-top:45px;
    }

}

@media (max-width:576px){

    .portfolio-projects{
        padding:60px 0;
    }

    .projects-header{
        text-align:left;
    }

    .projects-header h2{
        font-size:1.7rem;
    }

    .projects-header p{
        max-width:100%;
    }

    .projects-filter{
        margin:30px 0;
    }

    .projects-filter button{
        padding:9px 18px;
        font-size:.85rem;
    }

    .projects-footer .btn-primary{
        width:100%;
        justify-content:center;
    }

}








/*==========================================================
TECHNOLOGY STACK
==========================================================*/

.portfolio-tech{
    position:relative;
    overflow:hidden;
    background:#f8fbff;
    padding:100px 0;
}

.portfolio-tech::before{
    content:"";
    position:absolute;
    top:-250px;
    right:-220px;
    width:700px;
    height:700px;
    border-radius:50%;
    background:
        radial-gradient(circle,
        rgba(37,99,235,.05),
        transparent 70%);
    pointer-events:none;
}

.portfolio-tech::after{
    content:"";
    position:absolute;
    left:-180px;
    bottom:-180px;
    width:500px;
    height:500px;
    border-radius:50%;
    background:
        radial-gradient(circle,
        rgba(59,130,246,.035),
        transparent 70%);
    pointer-events:none;
}

/*==========================================================
HEADER
==========================================================*/

.tech-header{
    position:relative;
    z-index:2;
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.tech-header h2{
    margin:18px 0;
    font-size:2.8rem;
    font-weight:800;
    line-height:1.15;
    color:#0f172a;
    letter-spacing:-1px;
}

.tech-header h2 span{
    display:block;
    color:#2563eb;
}

.tech-header p{
    max-width:650px;
    margin:auto;
    font-size:1.05rem;
    line-height:1.8;
    color:#64748b;
}

/*==========================================================
GRID
==========================================================*/

.tech-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}
/*==========================================================
TECH CARD
==========================================================*/

.tech-card{
    position:relative;
    background:#ffffff;
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:34px 28px;
    transition:.35s ease;
    box-shadow:0 12px 35px rgba(15,23,42,.05);
    overflow:hidden;
}

.tech-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#2563eb;
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}

.tech-card:hover{
    transform:translateY(-8px);
    border-color:#bfdbfe;
    box-shadow:0 22px 55px rgba(37,99,235,.12);
}

.tech-card:hover::before{
    transform:scaleX(1);
}

/*==========================================================
ICON
==========================================================*/

.tech-icon{
    width:68px;
    height:68px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:26px;

    background:linear-gradient(135deg,#2563eb,#3b82f6);
    color:#ffffff;

    font-size:1.5rem;

    box-shadow:0 12px 30px rgba(37,99,235,.22);

    transition:.35s;
}

.tech-card:hover .tech-icon{
    transform:rotate(-8deg) scale(1.05);
}

.tech-icon.backend{
    background:linear-gradient(135deg,#0f766e,#14b8a6);
}

.tech-icon.database{
    background:linear-gradient(135deg,#7c3aed,#8b5cf6);
}

.tech-icon.cloud{
    background:linear-gradient(135deg,#ea580c,#f97316);
}

/*==========================================================
TITLE
==========================================================*/

.tech-card h3{
    font-size:1.4rem;
    font-weight:700;
    color:#0f172a;
    margin-bottom:12px;
}

.tech-card p{
    font-size:.95rem;
    color:#64748b;
    line-height:1.75;
    margin-bottom:28px;
}

/*==========================================================
TECHNOLOGY LIST
==========================================================*/

.tech-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.tech-list span{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:8px 14px;

    background:#f8fafc;

    border:1px solid #e2e8f0;
    border-radius:999px;

    color:#475569;

    font-size:.82rem;
    font-weight:600;

    transition:.3s;
}

.tech-card:hover .tech-list span{
    background:#eff6ff;
    border-color:#bfdbfe;
    color:#2563eb;
}
/*==========================================================
RESPONSIVE
==========================================================*/

@media (max-width:1200px){

    .tech-grid{
        grid-template-columns:repeat(2,1fr);
        gap:24px;
    }

    .tech-header{
        margin-bottom:60px;
    }

    .tech-header h2{
        font-size:2.5rem;
    }

    .tech-card{
        padding:30px 24px;
    }

}

@media (max-width:992px){

    .portfolio-tech{
        padding:85px 0;
    }

    .tech-header{
        max-width:100%;
        margin-bottom:50px;
    }

    .tech-header h2{
        font-size:2.2rem;
    }

    .tech-header p{
        font-size:1rem;
        max-width:680px;
    }

    .tech-grid{
        gap:20px;
    }

    .tech-icon{
        width:62px;
        height:62px;
        font-size:1.35rem;
        margin-bottom:22px;
    }

    .tech-card h3{
        font-size:1.3rem;
    }

}

@media (max-width:768px){

    .portfolio-tech{
        padding:70px 0;
    }

    .tech-header h2{
        font-size:2rem;
        line-height:1.2;
    }

    .tech-header h2 span{
        display:inline;
    }

    .tech-header p{
        font-size:.95rem;
        line-height:1.75;
    }

    .tech-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .tech-card{
        padding:24px 22px;
        border-radius:20px;
    }

    .tech-icon{
        width:56px;
        height:56px;
        border-radius:16px;
        font-size:1.25rem;
        margin-bottom:20px;
    }

    .tech-card h3{
        font-size:1.2rem;
        margin-bottom:10px;
    }

    .tech-card p{
        font-size:.92rem;
        margin-bottom:22px;
    }

    .tech-list{
        gap:8px;
    }

    .tech-list span{
        font-size:.78rem;
        padding:7px 12px;
    }

}

@media (max-width:576px){

    .portfolio-tech{
        padding:60px 0;
    }

    .tech-header{
        text-align:left;
        margin-bottom:40px;
    }

    .tech-header h2{
        font-size:1.75rem;
    }

    .tech-header p{
        max-width:100%;
    }

    .tech-card{
        padding:22px 18px;
    }

    .tech-card h3{
        font-size:1.1rem;
    }

    .tech-card p{
        font-size:.88rem;
    }

    .tech-list span{
        font-size:.75rem;
        padding:6px 10px;
    }

}











/*==========================================================
ENGINEERING SECTION
==========================================================*/

.portfolio-engineering{
    position:relative;
    overflow:hidden;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:#fff;
    padding:80px 0;
}

.portfolio-engineering::before{
    content:"";
    position:absolute;
    top:-250px;
    right:-220px;
    width:750px;
    height:750px;
    border-radius:50%;
    background:
        radial-gradient(circle,
        rgba(37,99,235,.06),
        transparent 70%);
    pointer-events:none;
}

.portfolio-engineering::after{
    content:"";
    position:absolute;
    left:-220px;
    bottom:-220px;
    width:650px;
    height:650px;
    border-radius:50%;
    background:
        radial-gradient(circle,
        rgba(6,182,212,.05),
        transparent 70%);
    pointer-events:none;
}

/*==========================================================
GRID
==========================================================*/

.engineering-grid{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

/*==========================================================
LEFT
==========================================================*/

.engineering-content{
    max-width:560px;
}

.engineering-content h2{
    font-size:2.9rem;
    line-height:1.12;
    font-weight:800;
    color:#0f172a;
    margin:18px 0 22px;
    letter-spacing:-1px;
}

.engineering-content h2 span{
    display:block;
    color:#2563eb;
}

.engineering-content p{
    font-size:1.05rem;
    color:#64748b;
    line-height:1.8;
    margin-bottom:40px;
}

/*==========================================================
FEATURES
==========================================================*/

.engineering-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.engineering-point{
    display:flex;
    align-items:center;
    gap:14px;

    padding:18px 20px;

    background:#fff;

    border:1px solid #e2e8f0;

    border-radius:18px;

    transition:.35s;

    box-shadow:0 8px 25px rgba(15,23,42,.05);
}

.engineering-point:hover{
    transform:translateY(-6px);
    border-color:#bfdbfe;
    box-shadow:0 18px 40px rgba(37,99,235,.12);
}

.engineering-point i{
    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:14px;

    background:#eff6ff;

    color:#2563eb;

    font-size:1.15rem;

    flex-shrink:0;
}

.engineering-point span{
    font-weight:600;
    color:#1e293b;
    font-size:.95rem;
}
/*==========================================================
RIGHT SIDE
==========================================================*/

.architecture-wrapper{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:650px;
}

.architecture-wrapper::before{
    content:"";
    position:absolute;
    width:640px;
    height:640px;
    border-radius:50%;
    background:
    radial-gradient(circle,
    rgba(37,99,235,.06),
    transparent 72%);
    pointer-events:none;
}
.architecture-image{
    position: relative;
    z-index: 2;
    max-width: 740px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden; /* Important */
}

.architecture-image img{
    width: 100%;
    display: block;
    object-fit: contain;
    border-radius: inherit;

    filter: drop-shadow(0 40px 70px rgba(37,99,235,.12));
    transition: .5s ease;
}

.architecture-image:hover img{
    transform:translateY(-10px) scale(1.02);
}



/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1200px){

    .engineering-grid{
        gap:50px;
    }

    .engineering-content h2{
        font-size:2.5rem;
    }

    .architecture-image{
        max-width:560px;
    }

}

@media(max-width:992px){

    .portfolio-engineering{
        min-height:auto;
        padding:90px 0;
    }

    .engineering-grid{
        grid-template-columns:1fr;
        gap:70px;
    }

    .engineering-content{
        max-width:100%;
    }

    .engineering-content h2{
        font-size:2.3rem;
    }

    .architecture-image{
        max-width:500px;
        margin:auto;
    }

}

@media(max-width:768px){

    .portfolio-engineering{
        padding:70px 0;
    }

    .engineering-content h2{
        font-size:2rem;
    }

    .engineering-content p{
        font-size:1rem;
    }

    .engineering-points{
        grid-template-columns:1fr;
    }

    .architecture-image{
        max-width:100%;
    }

}












/*==================================================
CLIENT TESTIMONIALS
==================================================*/

.portfolio-testimonials{

    position:relative;

    padding:110px 0;

    background:#f8fbff;

    overflow:hidden;

}

.portfolio-testimonials::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        radial-gradient(circle at 15% 20%,rgba(37,99,235,.05),transparent 35%),

        radial-gradient(circle at 90% 80%,rgba(0,194,255,.05),transparent 35%);

    pointer-events:none;

}

/*=====================================
HEADER
=====================================*/

.testimonials-header{

    position:relative;

    z-index:2;

    max-width:720px;

    margin:0 auto 70px;

    text-align:center;

}

.testimonials-header h2{

    margin:18px 0;

    font-size:2.8rem;

    font-weight:800;

    line-height:1.15;

    color:#102542;

}

.testimonials-header h2 span{

    display:block;

    color:var(--primary-color);

}

.testimonials-header p{

    max-width:620px;

    margin:auto;

    color:#667085;

    line-height:1.9;

}

/*=====================================
GRID
=====================================*/

.testimonials-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*=====================================
CARD
=====================================*/

.testimonial-card{

    position:relative;

    background:#ffffff;

    border:1px solid rgba(15,23,42,.06);

    border-radius:24px;

    padding:34px;

    overflow:hidden;

    transition:.35s ease;

    box-shadow:0 12px 35px rgba(15,23,42,.05);

}

.testimonial-card::before{

    content:"“";

    position:absolute;

    top:18px;

    right:24px;

    font-size:5rem;

    font-weight:800;

    color:rgba(37,99,235,.06);

    line-height:1;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 24px 60px rgba(15,23,42,.10);

}

/*=====================================
RATING
=====================================*/

.testimonial-rating{

    display:flex;

    gap:6px;

    margin-bottom:24px;

}

.testimonial-rating i{

    color:#FDB022;

    font-size:.9rem;

}
/*=====================================
QUOTE
=====================================*/

.testimonial-text{

    color:#667085;

    font-size:.95rem;

    line-height:1.9;

    margin-bottom:32px;

    min-height:135px;

}

/*=====================================
CLIENT
=====================================*/

.testimonial-user{

    display:flex;

    align-items:center;

    gap:16px;

    padding-top:22px;

    border-top:1px solid rgba(15,23,42,.06);

}

.testimonial-user img{

    width:58px;

    height:58px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid rgba(37,99,235,.12);

}

.testimonial-user h4{

    font-size:1rem;

    font-weight:700;

    color:#102542;

    margin-bottom:4px;

}

.testimonial-user span{

    font-size:.85rem;

    color:#667085;

}

/*=====================================
HOVER EFFECTS
=====================================*/

.testimonial-card:hover .testimonial-user img{

    transform:scale(1.08);

    transition:.35s;

}

.testimonial-card:hover h4{

    color:var(--primary-color);

}

.testimonial-card::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    height:4px;

    background:linear-gradient(
        90deg,
        var(--primary-color),
        #00C2FF
    );

    transition:.4s;

}

.testimonial-card:hover::after{

    width:100%;

}

/*=====================================
RESPONSIVE
=====================================*/

@media(max-width:1200px){

    .testimonials-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .portfolio-testimonials{

        padding:90px 0;

    }

    .testimonials-header{

        margin-bottom:50px;

    }

    .testimonials-header h2{

        font-size:2.2rem;

    }

    .testimonials-grid{

        grid-template-columns:1fr;

        gap:22px;

    }

    .testimonial-card{

        padding:28px;

    }

    .testimonial-text{

        min-height:auto;

    }

}

@media(max-width:480px){

    .portfolio-testimonials{

        padding:70px 0;

    }

    .testimonials-header h2{

        font-size:1.8rem;

    }

    .testimonial-card{

        border-radius:18px;

        padding:24px;

    }

    .testimonial-user{

        gap:12px;

    }

    .testimonial-user img{

        width:52px;

        height:52px;

    }

}






/*==================================================
CALL TO ACTION
==================================================*/

.portfolio-cta{

    position:relative;

    padding:120px 0;

    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            #0f172a 0%,
            #102542 50%,
            #1d4ed8 100%
        );

}

.portfolio-cta::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        radial-gradient(circle at 15% 25%,rgba(255,255,255,.08),transparent 30%),

        radial-gradient(circle at 85% 80%,rgba(0,194,255,.18),transparent 35%);

    pointer-events:none;

}

.portfolio-cta::after{

    content:"";

    position:absolute;

    inset:0;

    background-image:

        linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),

        linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);

    background-size:50px 50px;

    mask-image:linear-gradient(to bottom,transparent,black 15%,black 85%,transparent);

    opacity:.35;

}

/*=====================================
WRAPPER
=====================================*/

.cta-wrapper{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:60px;

    align-items:center;

}

/*=====================================
CONTENT
=====================================*/

.cta-content h2{

    margin:20px 0;

    font-size:3rem;

    line-height:1.15;

    font-weight:800;

    color:#ffffff;

}

.cta-content h2 span{

    display:block;

    color:#7dd3fc;

}

.cta-content p{

    max-width:620px;

    color:rgba(255,255,255,.78);

    line-height:1.9;

    font-size:1.02rem;

}

.portfolio-cta .section-badge{

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.15);

    color:#ffffff;

    backdrop-filter:blur(12px);

}

/*=====================================
BUTTONS
=====================================*/

.cta-buttons{

    display:flex;

    gap:18px;

    margin-top:40px;

    flex-wrap:wrap;

}

.cta-buttons .btn-primary{

    padding:15px 34px;

    border-radius:14px;

    display:inline-flex;

    align-items:center;

    gap:12px;

    background:#ffffff;

    color:#102542;

    font-weight:700;

    transition:.35s;

}

.cta-buttons .btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 45px rgba(255,255,255,.18);

}

.cta-buttons .btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.25);

    color:#ffffff;

    text-decoration:none;

    transition:.35s;

}

.cta-buttons .btn-outline:hover{

    background:rgba(255,255,255,.10);

}
/*=====================================
INFO PANEL
=====================================*/

.cta-info{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.info-card{

    position:relative;

    display:flex;

    align-items:center;

    gap:18px;

    padding:22px 24px;

    border-radius:20px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(20px);

    transition:.35s ease;

    overflow:hidden;

}

.info-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(255,255,255,.10),
        transparent
    );

    opacity:0;

    transition:.35s;

}

.info-card:hover{

    transform:translateX(10px);

    border-color:rgba(255,255,255,.25);

    background:rgba(255,255,255,.12);

}

.info-card:hover::before{

    opacity:1;

}

.info-card i{

    width:58px;

    height:58px;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.14);

    color:#7dd3fc;

    font-size:1.3rem;

    flex-shrink:0;

}

.info-card small{

    display:block;

    margin-bottom:6px;

    color:rgba(255,255,255,.65);

    font-size:.82rem;

    letter-spacing:.3px;

}

.info-card strong{

    display:block;

    color:#ffffff;

    font-size:1rem;

    font-weight:700;

    line-height:1.5;

}

/*=====================================
BUTTON ICON
=====================================*/

.cta-buttons .btn-primary i{

    transition:.35s;

}

.cta-buttons .btn-primary:hover i{

    transform:translateX(6px);

}

/*=====================================
RESPONSIVE
=====================================*/

@media(max-width:992px){

    .cta-wrapper{

        grid-template-columns:1fr;

        gap:50px;

    }

    .cta-content{

        text-align:center;

    }

    .cta-content p{

        margin:auto;

    }

    .cta-buttons{

        justify-content:center;

    }

    .cta-content h2{

        font-size:2.5rem;

    }

}

@media(max-width:768px){

    .portfolio-cta{

        padding:90px 0;

    }

    .cta-content h2{

        font-size:2.1rem;

    }

    .cta-buttons{

        flex-direction:column;

        align-items:center;

    }

    .cta-buttons a{

        width:100%;

        max-width:300px;

        justify-content:center;

    }

    .info-card{

        padding:18px;

    }

}

@media(max-width:480px){

    .portfolio-cta{

        padding:70px 0;

    }

    .cta-content h2{

        font-size:1.8rem;

    }

    .info-card{

        flex-direction:column;

        text-align:center;

    }

    .info-card i{

        margin-bottom:10px;

    }

}