*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    overflow-x:hidden;
    width:100%;
}

body{
    margin:0;
    background:#020617;
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
    color:white;
}

/* =========================
   NAVBAR
========================= */

.main-navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(1,8,28,.92);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,.05);
}

.nav-container{
    width:90%;
    max-width:1280px;
    height:82px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.nav-logo img{
    height:70px;
    display:block;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:38px;
    margin-left:auto;
    margin-right:40px;
}

.nav-menu a{
    color:white;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    position:relative;
    transition:.3s;
}

.nav-menu a:hover{
    color:#ff3131;
}

.nav-menu a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#ff3131;
    transition:.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after{
    width:100%;
}

.quote-btn{
    background:#ff3131;
    color:white;
    text-decoration:none;
    padding:16px 28px;
    border-radius:14px;
    font-size:14px;
    font-weight:700;
    transition:.3s;
    white-space:nowrap;
}

.quote-btn:hover{
    background:#ff1f1f;
    transform:translateY(-2px);
}

/* =========================
   HERO
========================= */

.hero-section{
    min-height:10vh;
    display:flex;
    align-items:center;
    background:
    radial-gradient(circle at top left, rgba(37, 99, 235, .12), transparent 25%), radial-gradient(circle at bottom right, rgba(255, 49, 49, .08), transparent 25%), linear-gradient(to bottom, #061225, #0b1730);
    overflow:hidden;
    padding-top:120px;
}

.hero-container{
    width:92%;
    max-width:1280px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    margin-bottom: 100px;
}

.hero-title{
    word-break:break-word;
}

.hero-left{
    width:52%;
}

.hero-right{
    width:48%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    border-radius:50px;
    background:rgba(0,90,255,.08);
    border:1px solid rgba(0,90,255,.18);
    font-size:13px;
    margin-bottom:38px;
}

.hero-title{
    font-size:64px;
    line-height:1.08;
    font-weight:700;
    margin-bottom:30px;
    max-width:700px;
}

.hero-title .red{
    color:#ff3131;
}

.hero-description{
    font-size:20px;
    line-height:1.9;
    color:#94a3b8;
    max-width:620px;
    margin-bottom:48px;
}

 .hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    width:100%;
    margin-bottom:40px;
}

.hero-btn-primary{
    padding:0 20px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#ff3131;
    color:white;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    white-space:nowrap;
    border-radius:0 16px 0 16px;
    transition:.3s;
}

.hero-btn-primary:hover{
    transform:translateY(-3px);
}

.hero-btn-secondary{
    padding:0 20px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.02);
    color:white;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    white-space:nowrap;
    border-radius:0 16px 0 16px;
    transition:.3s;
}

.hero-btn-secondary:hover{
    background:rgba(255,255,255,.05);
}

.hero-features{
    display:flex;
    justify-content:space-between;
    gap:20px;
}

.feature-item{
    flex:1;
    text-align:center;
}

.feature-icon{
    width:64px;
    height:64px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.02);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 15px;
}

.feature-icon img{
    width:28px;
    height:28px;
    object-fit:contain;
}

.feature-content h4{
    margin:0 0 10px;
    font-size:17px;
}

.feature-content p{
    margin:0;
    color:#94a3b8;
    font-size:14px;
    line-height:1.7;
}

.hero-image{
    width:100%;
    max-width:620px;
    object-fit:contain;
    animation:float 5s ease-in-out infinite;
}

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }

}

/* =========================
   FOOTER
========================= */

.main-footer{
    position:relative;
    background:#0d5be1;
    color:white;
    margin-top:180px;
    overflow:visible;
}

/* CLOUD */

.footer-cloud{
    position:absolute;
    top:-70px;
    left:0;
    width:100%;
    height:120px;
    display:flex;
    align-items:flex-end;
    z-index:10;
}

.footer-cloud span{
    display:block;
    background:#0d5be1;
    border-radius:50%;
    flex-shrink:0;
    margin-left:-35px;
}

.footer-cloud span:nth-child(1){
    width:120px;
    height:120px;
    margin-left:-10px;
}

.footer-cloud span:nth-child(2){
    width:80px;
    height:80px;
}

.footer-cloud span:nth-child(3){
    width:160px;
    height:160px;
}

.footer-cloud span:nth-child(4){
    width:90px;
    height:90px;
}

.footer-cloud span:nth-child(5){
    width:200px;
    height:200px;
}

.footer-cloud span:nth-child(6){
    width:110px;
    height:110px;
}

.footer-cloud span:nth-child(7){
    width:160px;
    height:160px;
}

.footer-cloud span:nth-child(8){
    width:90px;
    height:90px;
}

.footer-cloud span:nth-child(9){
    width:180px;
    height:180px;
}

.footer-cloud span:nth-child(10){
    width:130px;
    height:130px;
}

.footer-cloud::after{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:50px;
    background:#0d5be1;
    z-index:-1;
}

/* FOOTER CONTENT */

.footer-container{
    width:90%;
    max-width:1280px;
    margin:auto;
    padding:90px 0 80px;
    display:grid;
    grid-template-columns:1.2fr 1fr 1.2fr 1fr;
    gap:60px;
    position:relative;
    z-index:5;
}

.footer-logo{
    width:220px;
    margin-bottom:25px;
}

.footer-brand p{
    font-size:16px;
    line-height:2;
    color:rgba(255,255,255,.92);
}

.footer-column h3{
    font-size:24px;
    margin-bottom:28px;
}

.footer-column ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-column ul li{
    margin-bottom:18px;
}

.footer-column ul li a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

.footer-column ul li a:hover{
    color:#ff3131;
    padding-left:5px;
}

.footer-contact li{
    line-height:2;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    padding:25px 0;
    background-color: #000;
}

.footer-bottom-container{
    width:90%;
    max-width:1280px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background-color: #000;
}

.footer-socials{
    display:flex;
    gap:12px;
}

.footer-socials a{
    width:44px;
    height:44px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    text-decoration:none;
}

/* =========================
   MOBILE
========================= */

@media(max-width:992px){

    .nav-menu{
        display:none;
    }

    .nav-container{
        height:78px;
    }

    .nav-logo img{
        height:70px;
    }

    .quote-btn{
        padding:14px 20px;
        font-size:13px;
    }

    .hero-section{
        padding-top:110px;
        padding-bottom:100px;
    }

    .hero-container{
        flex-direction:column;
        text-align:center;
        gap:50px;
    }

    .hero-left,
    .hero-right{
        width:100%;
    }

    .hero-title{
        font-size:45px;
        line-height:1.1;
    }

    .hero-description{
        font-size:18px;
        margin:auto auto 35px;
    }

    .hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    width:100%;
    margin-bottom:40px;
}

    .hero-features{
        gap:15px;
    }

    .feature-content h4{
        font-size:14px;
    }

    .feature-content p{
        font-size:12px;
    }

    .hero-image{
        max-width:500px;
        margin:auto;
    }

    .footer-cloud{
        top:-50px;
        height:80px;
    }

    .footer-cloud span{
        margin-left:-20px;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:45px;
        padding:100px 0 70px;
    }

    .footer-bottom-container{
        flex-direction:column;
        gap:20px;
        text-align:center;
        background-color: #000;
    }

}

/* =========================
   SERVICES
========================= */

.services-section{
    padding:120px 0;
    background:#020617;
}

.services-container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/* HEADER */

.services-header{
    text-align:center;
    margin-bottom:70px;
}

.services-header h2{
    font-size:52px;
    font-weight:800;
    margin-bottom:18px;
    color:white;
}

.services-header h2 span{
    color:#ff3131;
}

.services-header p{
    font-size:18px;
    color:#94a3b8;
    max-width:700px;
    margin:auto;
    line-height:1.9;
}

/* GRID */

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* FIX SERVICES GRID */

.services-grid{
    position:relative;
    z-index:5;
}

.services-section{
    position:relative;
    overflow:hidden;
}

/* CARD */

.service-card{
    position:relative;
    background:
    linear-gradient(
        rgba(3,10,28,.88),
        rgba(3,10,28,.92)
    ),
    url('/images/bg-3.png');

    background-size:cover;
    background-position:center;

    border:1px solid rgba(255,255,255,.12);
    border-radius:24px;

    padding:45px 35px;

    transition:.4s ease;
    overflow:hidden;

    backdrop-filter:blur(10px);
}

/* =========================
   SERVICE CARD ANIMATION
========================= */

.service-card{
    opacity:0;
    transform:translateX(-60px);
    animation:serviceSlideLeft .8s ease forwards;
}

/* DELAY EACH CARD */

.service-card:nth-child(1){
    animation-delay:.1s;
}

.service-card:nth-child(2){
    animation-delay:.2s;
}

.service-card:nth-child(3){
    animation-delay:.3s;
}

.service-card:nth-child(4){
    animation-delay:.4s;
}

.service-card:nth-child(5){
    animation-delay:.5s;
}

.service-card:nth-child(6){
    animation-delay:.6s;
}

/* KEYFRAMES */

@keyframes serviceSlideLeft{

    from{
        opacity:0;
        transform:translateX(-60px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

.service-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(to right,#2563eb,#ff3131);
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:rgba(255,49,49,.35);
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

/* ICON */

.service-icon{
    width:82px;
    height:82px;
    border-radius:22px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:30px;
}

.service-icon img{
    width:42px;
    height:42px;
    object-fit:contain;
}

/* TEXT */

.service-card h3{
    font-size:24px;
    line-height:1.4;
    margin-bottom:18px;
    color:white;
}

.service-card p{
    font-size:16px;
    line-height:1.9;
    color:#94a3b8;
    text-align: justify;
}

/* MOBILE */

@media(max-width:992px){

    .services-grid{
        grid-template-columns:1fr;
    }

    .services-header h2{
        font-size:40px;
    }

    .service-card{
        padding:35px 28px;
    }

}

/* =========================
   PROCESS SECTION
========================= */

.process-section{
    position:relative;
    padding:130px 0;
    background:#011331;
    overflow:hidden;
}

/* BACKGROUND SHAPES */

.process-section::before{
    content:'';
    position:absolute;
    top:-150px;
    right:-120px;
    width:500px;
    height:500px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
}

.process-section::after{
    content:'';
    position:absolute;
    bottom:-250px;
    left:-100px;
    width:450px;
    height:450px;
    background:rgba(255,255,255,.04);
    transform:rotate(20deg);
}

/* CONTAINER */

.process-container{
    width:90%;
    max-width:1280px;
    margin:auto;
    position:relative;
    z-index:5;
}

/* HEADER */

.process-header{
    text-align:center;
    margin-bottom:70px;
}

.process-header h2{
    font-size:52px;
    font-weight:800;
    color:white;
    margin-bottom:20px;
    line-height:1.2;
}

.process-header h2 span{
    color:#ff3131;
}

.process-header p{
    max-width:850px;
    margin:auto;
    color:rgba(255,255,255,.85);
    font-size:18px;
    line-height:1.9;
}

/* GRID */

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    align-items:stretch;
}

/* CARD */

.process-card{
    background:#f8fafc;
    border-radius:22px;
    padding:32px 24px;
    text-align:center;
    transition:.4s ease;
    position:relative;
    overflow:hidden;
    min-height:430px;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.18);
}

/* ICON */

.process-icon{
    width:72px;
    height:72px;
    margin:0 auto 22px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.process-icon img{
    width:72px;
    height:72px;
    object-fit:contain;
}

/* TEXT */

.process-card h3{
    font-size:20px;
    line-height:1.4;
    margin-bottom:14px;
    color:#0f172a;
}

.process-card p{
    font-size:15px;
    line-height:1.85;
    color:#475569;
}

/* BUTTON */

.process-btn-wrap{
    text-align:center;
    margin-top:60px;
}

.process-btn{
    display:inline-block;
    background:#ff3131;
    color:white;
    text-decoration:none;
    padding:18px 40px;
    border-radius:14px;
    font-weight:700;
    transition:.3s;
}

.process-btn:hover{
    transform:translateY(-3px);
    background:#ff1f1f;
}

/* MOBILE */

@media(max-width:992px){

    .process-grid{
        grid-template-columns:1fr;
    }

    .process-header h2{
        font-size:38px;
    }

    .process-card{
        padding:40px 25px;
    }

}
/* =========================
   TECH STACK
========================= */

.tech-stack-section{
    position:relative;
    padding:120px 0;
    background:
    radial-gradient(circle at top left, rgba(37,99,235,.08), transparent 30%),
    #020617;
    overflow-x:hidden;
    overflow-y:visible;
}

/* GRID EFFECT */

.tech-stack-section::before{
    content:'';
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

    background-size:50px 50px;
    opacity:.15;
    pointer-events:none;
}

/* CONTAINER */

.tech-stack-container{
    width:90%;
    max-width:1280px;
    margin:auto;
    position:relative;
    z-index:5;
}

/* HEADER */

.tech-header{
    text-align:center;
    margin-bottom:70px;
}

.tech-header h2{
    font-size:52px;
    font-weight:800;
    margin-bottom:18px;
    color:white;
}

.tech-header h2 span{
    color:#ff3131;
}

.tech-header p{
    max-width:780px;
    margin:auto;
    color:#94a3b8;
    font-size:18px;
    line-height:1.9;
}

/* SLIDER */

.tech-slider{
    overflow:hidden;
    margin-bottom:28px;
    position:relative;
}

/* TRACK */

.tech-track{
    display:flex;
    gap:24px;
    width:max-content;
}

.tech-slider{
    width:100%;
    overflow:hidden;
}

/* ITEMS */

.tech-item{
    min-width:240px;
    height:90px;

    background:
    linear-gradient(
        135deg,
        rgba(37,99,235,.18),
        rgba(15,23,42,.9)
    );

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    display:flex;
    align-items:center;
    gap:16px;

    padding:0 28px;

    backdrop-filter:blur(12px);

    transition:.3s;
}

.tech-item:hover{
    transform:translateY(-5px);
    border-color:rgba(255,49,49,.35);
    box-shadow:0 15px 40px rgba(0,0,0,.3);
}

.tech-item img{
    width:38px;
    height:38px;
    object-fit:contain;
}

.tech-item span{
    color:white;
    font-size:24px;
    font-weight:700;
}

/* ANIMATION */

.tech-left{
    animation:techSlideLeft 30s linear infinite;
}

.tech-right{
    animation:slideRight 30s linear infinite;
}

@keyframes techSlideLeft{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

@keyframes slideRight{

    from{
        transform:translateX(-50%);
    }

    to{
        transform:translateX(0);
    }

}

/* MOBILE */

@media(max-width:992px){

    .tech-header h2{
        font-size:40px;
    }

    .tech-item{
        min-width:190px;
        height:75px;
        padding:0 20px;
    }

    .tech-item img{
        width:30px;
        height:30px;
    }

    .tech-item span{
        font-size:18px;
    }

    .tech-stack-section{
    overflow:hidden;
    }

    .tech-track{
    width:max-content;
    }

}

/* =========================
   WHY CHOOSE US
========================= */

.why-section{
    position:relative;
    padding:130px 0;
    background:
    radial-gradient(circle at top left, rgba(37,99,235,.12), transparent 25%),
    radial-gradient(circle at bottom right, rgba(255,49,49,.08), transparent 25%),
    linear-gradient(to bottom,#061225,#0b1730);
    overflow:hidden;
}

/* GRID EFFECT */

.why-section::before{
    content:'';
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size:50px 50px;
    opacity:.12;
    pointer-events:none;
}

/* GLOW EFFECT */

.why-section::after{
    content:'';
    position:absolute;
    top:-200px;
    right:-200px;
    width:500px;
    height:500px;
    background:rgba(37,99,235,.12);
    border-radius:50%;
    filter:blur(120px);
    pointer-events:none;
}

/* CONTAINER */
.why-container{
    width:90%;
    max-width:1280px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

/* LEFT */

.why-left{
    flex:1;
}

/* TAG */

.why-tag{
    display:inline-block;
    font-size:14px;
    font-weight:800;
    color:#2563eb;
    letter-spacing:1px;
    margin-bottom:20px;
}

/* TITLE */

.why-left h2{
    font-size:35px;
    line-height:1.2;
    color:white;
    margin-bottom:40px;
}

.why-left h2 span{
    color:#ff3131;
}

/* ITEMS */

.why-item{
    display:flex;
    align-items:flex-start;
    gap:18px;

    margin-bottom:32px;
}

/* ICON */

.why-icon{
    width:32px;
    height:32px;
    min-width:32px;
    border-radius:50%;
    background:#2563eb;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:700;
    margin-top:4px;
}

/* CONTENT */

.why-content h3{
    font-size:24px;
    color:white;
    margin-bottom:12px;
}

.why-content p{
    font-size:17px;
    line-height:1.9;
    color:#94a3b8;
}

/* RIGHT */

.why-right{
    flex:1;
    display:flex;
    justify-content:center;
}

/* IMAGE */
.why-image{
    width:100%;
    max-width:520px;
    object-fit:contain;
    animation:floatWhy 5s ease-in-out infinite;
}

@keyframes floatWhy{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }

}

/* MOBILE */

@media(max-width:992px){

    .why-container{
        flex-direction:column;
    }

    .why-left h2{
        font-size:31px;
    }

    .why-content h3{
        font-size:20px;
    }

    .why-content p{
        font-size:15px;
    }

    .why-image{
        max-width:420px;
    }

}

/* =========================
   PORTFOLIO
========================= */

.portfolio-section{
    position:relative;
    padding:130px 0;
    background:
    radial-gradient(circle at top left, rgba(37,99,235,.08), transparent 25%),
    #f8fafc;
    overflow:hidden;
}

/* CONTAINER */

.portfolio-container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/* HEADER */

.portfolio-header{
    text-align:center;
    margin-bottom:70px;
}

/* TAG */

.portfolio-tag{
    display:inline-block;
    font-size:14px;
    font-weight:800;
    color:#2563eb;
    letter-spacing:1px;
    margin-bottom:18px;
}

/* TITLE */

.portfolio-header h2{
    font-size:56px;
    color:#0f172a;
    margin-bottom:22px;
}

.portfolio-header h2 span{
    color:#ff3131;
}

/* TEXT */
.portfolio-header p{
    max-width:850px;
    margin:auto;
    font-size:18px;
    line-height:1.9;
    color:#475569;
}

/* GRID */

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

/* CARD */

.portfolio-card{
    background:white;
    border-radius:24px;
    overflow:hidden;
    transition:.4s ease;
    position:relative;
    box-shadow:0 10px 40px rgba(0,0,0,.06);
}

.portfolio-card:hover{
    transform:translateY(-10px);
}

/* IMAGE */

.portfolio-image{
    position:relative;
    overflow:hidden;
}

.portfolio-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s ease;
}

.portfolio-card:hover img{
    transform:scale(1.08);
}

/* OVERLAY */

.portfolio-overlay{
    position:absolute;
    inset:0;
    background:rgba(2,6,23,.72);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    opacity:0;
    visibility:hidden;
    transition:.4s ease;
}

.portfolio-card:hover .portfolio-overlay{
    opacity:1;
    visibility:visible;
}

/* ICON */

.portfolio-icon{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#ff3131;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:22px;
    transition:.3s ease;
}

.portfolio-icon:hover{
    transform:translateY(-5px) scale(1.05);
    background:#2563eb;
}

/* CONTENT */

.portfolio-content{
    padding:28px;
}

.portfolio-content h3{
    font-size:28px;
    color:#0f172a;
    margin-bottom:10px;
}

.portfolio-content p{
    font-size:16px;
    color:#64748b;
}

/* BUTTON */

.portfolio-btn-wrap{
    text-align:center;
    margin-top:55px;
}

.portfolio-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:56px;
    padding:0 34px;
    background:#2563eb;
    color:white;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    border-radius:0 18px 0 18px;
    transition:.3s ease;
}

/* HOVER */

.portfolio-btn:hover{
    background:#ff3131;
    transform:translateY(-4px);
}

.portfolio-btn:hover{
    background:#ff3131;
    transform:translateY(-4px);
}

/* MOBILE */

@media(max-width:992px){

    .portfolio-grid{
        grid-template-columns:1fr;
    }

    .portfolio-header h2{
        font-size:40px;
    }

    .portfolio-content h3{
        font-size:24px;
    }

}

/* =========================
   TESTIMONIALS
========================= */

.testimonial-section{
    position:relative;
    padding:130px 0;
    backgorund-color: radial-gradient(circle at top left, rgba(37,99,235,.08), transparent 30%),
    #020617;
    overflow:hidden;
}

/* CONTAINER */

.testimonial-container{
    width:90%;
    max-width:1280px;
    margin:auto;
    display:grid;
    grid-template-columns:380px 1fr;
    gap:60px;
    align-items:center;
}

/* LEFT */

.testimonial-tag{
    display:inline-block;
    font-size:14px;
    font-weight:800;
    color:#2563eb;
    letter-spacing:1px;
    margin-bottom:18px;
}

.testimonial-left h2{
    font-size:54px;
    line-height:1.2;
    margin-bottom:24px;
    color:#fff;
}

.testimonial-left h2 span{
    color:#ff3131;
}

.testimonial-left p{
    font-size:18px;
    line-height:1.9;
    color:#f4f5f7;
}

/* SLIDER */

.testimonial-slider{
    overflow:hidden;
    position:relative;
    width:100%;
}

/* TRACK */

.testimonial-track{
    display:flex;
    align-items:stretch;
    gap:28px;
    width:max-content;
    animation:testimonialSlide 30s linear infinite;
}

/* CARD */

.testimonial-card{
    width:360px;
    background:white;
    border-radius:26px;
    padding:40px 34px;
    position:relative;
    text-align:center;
    box-shadow:0 12px 40px rgba(0,0,0,.06);
    transition:.4s ease;
    flex-shrink:0;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

/* QUOTE */

.quote-icon{
    position:absolute;
    top:0;
    right:0;
    width:70px;
    height:70px;
    border-radius:0 26px 0 60px;
    background:#2563eb;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
}

/* IMAGE */

.testimonial-avatar{
    width:85px;
    height:85px;
    border-radius:50%;
    object-fit:cover;
    margin:0 auto 20px;
    border:4px solid #f1f5f9;
    display:block;
}

/* TEXT */

.testimonial-card h3{
    font-size:24px;
    line-height:1.4;
    color:#0f172a;
    margin-bottom:8px;
}

.testimonial-role{
    display:block;
    font-size:15px;
    line-height:1.7;
    color:#94a3b8;
    margin-bottom:18px;
}

/* STARS */

.testimonial-stars{
    color:#f59e0b;
    font-size:18px;
    margin-bottom:20px;
    letter-spacing:4px;
}

/* PARAGRAPH */

.testimonial-card p{
    font-size:16px;
    line-height:1.9;
    color:#64748b;
}

/* ANIMATION */

@keyframes testimonialSlide{
    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

/* =========================
   MOBILE TESTIMONIAL FIX
========================= */

@media(max-width:992px){
    .testimonial-section{
        padding:100px 0;
    }

    /* CONTAINER */

    .testimonial-container{
        display:flex;
        flex-direction:column;
        gap:45px;
    }

    /* LEFT CONTENT */
    .testimonial-left{
        text-align:center;
        width:100%;
    }

    .testimonial-left h2{
        font-size:40px;
        margin-bottom:18px;
    }

    .testimonial-left p{
        font-size:16px;
        line-height:1.9;
    }

    /* SLIDER */

    .testimonial-slider{
        width:100%;
        overflow:hidden;
        position:relative;
    }

    /* TRACK */

    .testimonial-track{
        display:flex;
        gap:18px;
        width:max-content;
        animation:testimonialSlideMobile 22s linear infinite;
    }

    /* CARD */

    .testimonial-card{

        width:88vw;
        max-width:320px;
        flex-shrink:0;
        padding:34px 22px;
        border-radius:22px;
        margin:0;
    }

    /* IMAGE */

    .testimonial-avatar{
        width:78px;
        height:78px;
        margin:0 auto 18px;
    }

    /* NAME */

    .testimonial-card h3{
        font-size:24px;
        line-height:1.4;
        margin-bottom:8px;
    }

    /* ROLE */

    .testimonial-role{
        font-size:14px;
        line-height:1.7;
        margin-bottom:16px;
    }

    /* STARS */

    .testimonial-stars{
        font-size:17px;
        margin-bottom:18px;
    }

    /* TEXT */

    .testimonial-card p{
        font-size:15px;
        line-height:1.9;
    }

    /* QUOTE */

    .quote-icon{
        width:62px;
        height:62px;
        border-radius:0 22px 0 50px;
        font-size:36px;
    }

}

/* MOBILE ANIMATION */

@keyframes testimonialSlideMobile{
    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

/* =========================
   CTA SECTION
========================= */

.cta-section {
    position: relative;
    padding: 120px 0 180px;
    background: linear-gradient(rgb(17 31 57 / 95%), rgba(13, 91, 225, .95)), url(/images/tech-pattern.png);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* OVERLAY */

.cta-overlay{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right, rgba(255,255,255,.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255,255,255,.05), transparent 25%);
    pointer-events:none;
}

/* CONTAINER */

.cta-container{
    width:90%;
    max-width:1280px;
    margin:auto;
    position:relative;
    z-index:5;
    text-align:center;
}

/* TAG */

.cta-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:40px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.12);
    color:white;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:24px;
}

/* TITLE */

.cta-content h2{
    font-size:62px;
    line-height:1.2;
    color:white;
    margin-bottom:24px;
}

.cta-content h2 span{
    color:#ff3131;
}

/* TEXT */

.cta-content p{
    max-width:900px;
    margin:0 auto 40px;
    font-size:18px;
    line-height:2;
    color:rgba(255,255,255,.92);
}

/* BUTTON */

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:58px;
    padding:0 38px;
    background:#ffb000;
    color:#0f172a;
    text-decoration:none;
    font-size:14px;
    font-weight:800;
    border-radius:0 18px 0 18px;
    transition:.3s ease;
}

.cta-btn:hover{
    transform:translateY(-5px);
    background:white;
}

/* IMAGE */

.cta-image-wrap{
    margin-top:70px;
}

.cta-image{
    width:100%;
    max-width:420px;
    object-fit:contain;
    animation:floatCTA 5s ease-in-out infinite;
}

/* FLOAT */

@keyframes floatCTA{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-14px);
    }

    100%{
        transform:translateY(0);
    }

}

/* BOTTOM SHAPE */

.cta-shape{
    position:absolute;
    bottom:-2px;
    left:0;
    width:100%;
    height:160px;
    background:#f8fafc;
    clip-path:polygon(0 55%, 100% 0, 100% 100%, 0 100%);
}

/* MOBILE */

@media(max-width:992px){

    .cta-section{
        padding:100px 0 150px;
    }

    .cta-content h2{
        font-size:42px;
    }

    .cta-content p{
        font-size:16px;
        line-height:1.9;
    }

    .cta-image{
        max-width:320px;
    }

}

/* =========================
   DARK PAGES TEXT
========================= */
.blog-header h1{
    color:white;
}

.blog-header p{
    color:#94a3b8;
}

.product-card{
    background:#081225;
    border:1px solid rgba(255,255,255,.06);
}

.product-content h3{
    color:white;
}

.product-tech{
    color:#94a3b8;
}

.product-price{
    color:white;
}

.preview-icon-btn{
    width:58px;
    height:58px;
    border-radius:50%;
    background:white;
    color:#0f172a;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:22px;
    transition:.3s ease;
}

.preview-icon-btn:hover{
    background:#ff3131;
    color:white;
}

.product-icon-btn{
    width:58px;
    height:58px;
    border-radius:50%;
    background:white;
    color:#0f172a;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:22px;
    transition:.3s ease;
}

.product-icon-btn:hover{
    background:#ff3131;
    color:white;
}

/* =========================
   NAV RIGHT
========================= */

.nav-right{
    display:flex;

    align-items:center;

    gap:14px;
}

/* =========================
   MOBILE MENU
========================= */

/* TOGGLE */

.mobile-menu-toggle{
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 3px;
    background: #ff3131;
    color: white;
    font-size: 22px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    padding-right: 12px;
    padding-left: 12px;
    margin-left: 13px;
}

/* OVERLAY */

.mobile-menu-overlay{
    position:fixed;

    inset:0;

    background:rgba(0,0,0,.65);

    z-index:999999;

    opacity:0;

    visibility:hidden;

    transition:.4s ease;
}

/* ACTIVE */

.mobile-menu-overlay.active{
    opacity:1;
    visibility:visible;
}

/* MENU */

.mobile-menu{
    position:absolute;

    top:0;
    left:-320px;

    width:300px;
    height:100%;

    background:white;

    padding:30px 24px;

    transition:.4s ease;

    overflow-y:auto;
}

/* OPEN */

.mobile-menu-overlay.active .mobile-menu{
    left:0;
}

/* TOP */

.mobile-menu-top{
    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:40px;
}

.mobile-menu-top img{
    width:170px;
}

/* CLOSE */

.mobile-menu-close{
    border:none;

    background:none;

    font-size:30px;

    cursor:pointer;

    color:#111827;
}

/* LINKS */

.mobile-menu-links{
    display:flex;

    flex-direction:column;

    gap:22px;

    margin-bottom:40px;
}

.mobile-menu-links a{
    text-decoration:none;

    color:#111827;

    font-size:15px;
    font-weight:700;

    border-bottom:1px solid #e5e7eb;

    padding-bottom:14px;
}

/* BUTTON */

.mobile-menu-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:56px;
    border-radius:0 18px 0 18px;
    background:#ff3131;
    color:white;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
}

.mobile-menu-btnn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 46px;
    border-radius: 0 16px 0 16px;
    background: #ff3131;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding-left: 40px;
    padding-right: 40px;
}

/* MOBILE */

@media(max-width:992px){

    .desktop-nav{
        display:none;
    }

    .mobile-menu-toggle{
        display:flex;
    }

}


