@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.container{

    width:100%;

    max-width:1320px;

    margin:auto;

    padding:0 20px;

}

/*==================================================
            SERVER HERO VARIABLES
==================================================*/

:root{

    /* Background */

    --server-bg:#05070d;
    --server-card:#0b1020;
    --server-border:rgba(255,255,255,.08);

    /* Colors */

    --server-primary:#4169ff;
    --server-primary-light:#6f8cff;
    --server-text:#bfc7d9;
    --server-white:#ffffff;

    /* Gradient */

    --server-gradient:linear-gradient(135deg,#4169ff,#5b7dff);

    /* Shadows */

    --server-shadow-sm:0 12px 30px rgba(65,105,255,.20);
    --server-shadow-lg:0 25px 60px rgba(65,105,255,.30);

    /* Radius */

    --server-radius-lg:28px;
    --server-radius-md:20px;
    --server-radius-sm:14px;

    /* Transition */

    --server-transition:.35s ease;

}


.server-hero .container{

    width:90%;

    max-width:1450px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

    position:relative;

    z-index:2;

}

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

.server-hero{

    padding:90px 0;

    background:var(--server-bg);

    position:relative;

    overflow:hidden;

}

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

.server-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at 20% 20%,rgba(65,105,255,.12),transparent 35%),

    radial-gradient(circle at 85% 80%,rgba(65,105,255,.08),transparent 40%);

    z-index:0;

}

.server-hero .container{

    width:90%;

    max-width:1450px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

    position:relative;

    z-index:2;

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

.server-content{

    flex:0 0 48%;

    max-width:600px;

}

.server-badge{

    display:inline-block;

    padding:9px 18px;

    border-radius:50px;

    background:var(--server-gradient);

    color:#fff;

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:25px;

}

.server-content h1{

    color:#fff;

    font-size:41px;

    line-height:1.15;

    margin-bottom:25px;

}

.server-content h1 span{

    color:var(--server-primary);

}

.server-content p{

    color:var(--server-text);

    font-size:16px;

    line-height:1.9;

    margin-bottom:35px;

}
/*=========================
      FEATURE LIST
==========================*/

.server-features{

    display:grid;

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

    gap:18px;

    margin-bottom:40px;

}

.server-features div{

    display:flex;

    align-items:center;

    gap:12px;

    color:#fff;

    font-size:15px;

    font-weight:500;

}

.server-features i{

    color:#2ecc71;

    font-size:18px;

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

.server-buttons{

    display:flex;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:35px;

}

.server-btn-primary,
.server-btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:13px 26px;

    border-radius:50px;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    transition:var(--server-transition);

}

.server-btn-primary{

    background:var(--server-gradient);

    color:#fff;

    box-shadow:var(--server-shadow-sm);

}

.server-btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:var(--server-shadow-lg);

}

.server-btn-secondary{

    border:2px solid var(--server-primary);

    color:var(--server-primary);

}

.server-btn-secondary:hover{

    background:var(--server-primary);

    color:#fff;

    transform:translateY(-5px);

}

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

.server-rating{

    color:#FFD700;

    font-size:18px;

}

.server-rating span{

    color:var(--server-text);

    margin-left:10px;

    font-size:15px;

}

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

.server-image{

    flex:0 0 46%;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

/*=========================
        BLUE GLOW
==========================*/

.server-image::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    border-radius:50%;

    background:rgba(65,105,255,.18);

    filter:blur(130px);

    z-index:-1;

}

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

.server-image img{

     width:682px;
    height: 413px;

    border-radius:var(--server-radius-lg);

    border:1px solid rgba(65,105,255,.20);

    box-shadow:var(--server-shadow-lg);

    animation:serverHeroFloat 6s ease-in-out infinite;

}

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

.server-image .floating-box{

    position:absolute;

    background:var(--server-card);

    border:1px solid var(--server-border);

    border-radius:18px;

    padding:16px 22px;

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}
.server-image .floating-box h3{
    color:var(--server-primary);
    font-size:18px;
    margin-bottom:0px;
}
.server-image .floating-box p{
    color:var(--server-text);
    font-size: 13px;
}
/*=========================
        POSITION
==========================*/
.server-image .one{
    top:45px;
    left:-55px;
    animation:serverHeroFloat 6s ease-in-out infinite;

}
.server-image .two{
    bottom:40px;
    right:-45px;
    animation:serverHeroFloat 6s ease-in-out infinite;

}
.server-image .three{
    top:11%;
    width: 170px;
    right:-50px;
    animation:serverHeroFloat 6s ease-in-out infinite;

}
/*=========================
        ANIMATION
==========================*/
@keyframes serverHeroFloat{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0);
    }
}
/*==================================================
        SERVER HERO RESPONSIVE
==================================================*/

/* Laptop */

@media (max-width:1200px){

    .server-content h1{

        font-size:50px;

    }

    .server-hero .container{

        gap:60px;

    }

}

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

@media (max-width:992px){

    .server-hero{

        padding:70px 0;

    }

    .server-hero .container{

        flex-direction:column;

        text-align:center;

        gap:60px;

    }

    .server-content{

        flex:100%;

        max-width:700px;

    }

    .server-features{

        justify-content:center;

    }

    .server-buttons{

        justify-content:center;

    }

    .server-rating{

        text-align:center;

    }

    .server-image{

        flex:100%;

    }

}

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

@media (max-width:768px){

    .server-hero{

        padding:60px 0;

    }

    .server-content h1{

        font-size:40px;

        line-height:1.25;

    }

    .server-content p{

        font-size:15px;

        line-height:1.8;

    }

    .server-features{

        grid-template-columns:1fr;

        gap:14px;

        margin-bottom:30px;

    }

    .server-features div{

        font-size:14px;

    }

    .server-buttons{

        flex-direction:column;

        gap:15px;

    }

    .server-btn-primary,

    .server-btn-secondary{

        width:100%;

    }

    .server-rating{

        font-size:16px;

    }

    .server-rating span{

        display:block;

        margin-top:8px;

        margin-left:0;

        font-size:14px;

    }

}

/*=========================
        iQOO 13
==========================*/

@media (max-width:480px){

    .server-hero{

        padding:55px 0;

    }

    .server-content h1{

        font-size:34px;

    }

    .server-content p{

        font-size:14px;

    }

    .server-badge{

        font-size:11px;

        padding:8px 16px;

    }

    .server-image{

        margin-top:20px;

    }

    .server-image img{

        max-width:100%;
        display: none;

        border-radius:22px;

    }

    /* Floating Cards Hide */

    .server-image .floating-box{

        display:none;

    }

}

/*==================================================
            OUR SERVER SERVICES
==================================================*/

.server-services{
    padding:90px 0;
    background:#05070d;
    position:relative;
    overflow:hidden;
}

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

.server-services::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(65,105,255,.08);
    filter:blur(140px);
    top:-180px;
    left:-180px;
}

.server-services::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(65,105,255,.06);
    filter:blur(130px);
    right:-180px;
    bottom:-180px;
}

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

.server-section-title{

    max-width:800px;

    margin:0 auto;

    text-align:center;

    position:relative;

    z-index:2;

}

.server-section-badge{

    display:inline-block;

    padding:8px 20px;

    border-radius:50px;

    background:rgba(65,105,255,.12);

    border:1px solid rgba(65,105,255,.25);

    color:var(--server-primary);

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;

    text-transform:uppercase;

}

.server-section-title h2{

    color:#fff;

    font-size:46px;

    line-height:1.25;

    margin-bottom:20px;

}

.server-section-title h2 span{

    color:var(--server-primary);

}

.server-section-title p{

    max-width:760px;

    margin:0 auto;

    color:var(--server-text);

    font-size:16px;

    line-height:1.9;

}

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

.server-services-grid{

    display:grid;

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

    gap:30px;

    margin-top:60px;

    position:relative;

    z-index:2;

}

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

.server-service-card{

    background:#0b1020;

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

    border-radius:22px;

    padding:35px 30px;

    transition:var(--server-transition);

}

.server-service-card:hover{

    transform:translateY(-10px);

    border-color:rgba(65,105,255,.40);

    box-shadow:0 20px 45px rgba(65,105,255,.18);

}

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

.server-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(65,105,255,.10);

    border:1px solid rgba(65,105,255,.25);

    margin-bottom:25px;

    transition:var(--server-transition);

}

.server-icon i{

    font-size:30px;

    color:var(--server-primary);

}

.server-service-card:hover .server-icon{

    background:var(--server-gradient);

    /* transform:rotate(-6deg) scale(1.08); */

}

.server-service-card:hover .server-icon i{

    color:#fff;

}

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

.server-service-card h3{

    color:#fff;

    font-size:22px;

    margin-bottom:16px;

    line-height:1.4;

}

.server-service-card p{

    color:var(--server-text);

    font-size:15px;

    line-height:1.8;

}

/*==================================================
        SERVER SERVICES RESPONSIVE
==================================================*/

/* Laptop */

@media (max-width:1200px){

    .server-section-title h2{

        font-size:40px;

    }

    .server-services-grid{

        gap:24px;

    }

}

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

@media (max-width:992px){

    .server-services{

        padding:70px 0;

    }

    .server-services-grid{

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

        gap:24px;

        margin-top:50px;

    }

    .server-section-title h2{

        font-size:36px;

    }

}

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

@media (max-width:768px){

    .server-services{

        padding:60px 0;

    }

    .server-section-title h2{

        font-size:30px;

        line-height:1.3;

    }

    .server-section-title p{

        font-size:15px;

        line-height:1.8;

    }

    .server-services-grid{

        grid-template-columns:1fr;

        gap:20px;

        margin-top:40px;

    }

    .server-service-card{

        padding:30px 24px;

    }

    .server-icon{

        width:65px;

        height:65px;

    }

    .server-icon i{

        font-size:28px;

    }

    .server-service-card h3{

        font-size:20px;

    }

}

/*=========================
        iQOO 13
==========================*/

@media (max-width:480px){

    .server-services{

        padding:50px 0;

    }

    .server-section-badge{

        font-size:11px;

        padding:8px 16px;

    }

    .server-section-title h2{

        font-size:26px;

    }

    .server-section-title p{

        font-size:14px;

    }

    .server-services-grid{

        gap:18px;

    }

    .server-service-card{

        padding:25px 20px;

        border-radius:18px;

    }

    .server-icon{

        width:60px;

        height:60px;

        margin-bottom:20px;

    }

    .server-icon i{

        font-size:24px;

    }
    .server-service-card h3{

        font-size:18px;

        margin-bottom:12px;
    }
    .server-service-card p{

        font-size:14px;

        line-height:1.7;
    }
}

/*==================================================
        WHY CHOOSE NETWORKGENIE
==================================================*/

.server-why{
    padding:90px 0;
    background:#05070d;
    position:relative;
    overflow:hidden;
}

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

.server-why::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(65,105,255,.08);
    filter:blur(140px);
    top:-180px;
    left:-180px;
}

.server-why::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(65,105,255,.06);
    filter:blur(130px);
    bottom:-180px;
    right:-180px;
}

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

.server-why-title{

    max-width:800px;

    margin:0 auto;

    text-align:center;

    position:relative;

    z-index:2;

}

.server-why-badge{

    display:inline-block;

    padding:8px 20px;

    border-radius:50px;

    background:rgba(65,105,255,.12);

    border:1px solid rgba(65,105,255,.25);

    color:var(--server-primary);

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;

    text-transform:uppercase;

}

.server-why-title h2{

    color:#fff;

    font-size:46px;

    line-height:1.25;

    margin-bottom:20px;

}

.server-why-title h2 span{

    color:var(--server-primary);

}

.server-why-title p{

    max-width:760px;

    margin:0 auto;

    color:var(--server-text);

    font-size:16px;

    line-height:1.9;

}

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

.server-why-grid{

    display:grid;

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

    gap:30px;

    margin-top:60px;

    position:relative;

    z-index:2;

}

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

.server-why-card{

    background:#0b1020;

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

    border-radius:22px;

    padding:35px 30px;

    transition:var(--server-transition);

}

.server-why-card:hover{

    transform:translateY(-10px);

    border-color:rgba(65,105,255,.40);

    box-shadow:0 20px 45px rgba(65,105,255,.18);

}

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

.server-why-icon{

    width:70px;

    height:70px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    background:rgba(65,105,255,.10);

    border:1px solid rgba(65,105,255,.25);

    margin-bottom:25px;

    transition:var(--server-transition);

}

.server-why-icon i{

    color:var(--server-primary);

    font-size:30px;

}

.server-why-card:hover .server-why-icon{

    background:var(--server-gradient);

    /* transform:rotate(-6deg) scale(1.08); */

}

.server-why-card:hover .server-why-icon i{

    color:#fff;

}

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

.server-why-card h3{
    color:#fff;
    font-size:22px;
    margin-bottom:16px;
    line-height:1.4;
}
.server-why-card p{
    color:var(--server-text);
    font-size:15px;
    line-height:1.8;
}
/*==================================================
        WHY CHOOSE RESPONSIVE
==================================================*/

/* Laptop */

@media (max-width:1200px){

    .server-why-title h2{

        font-size:40px;

    }

    .server-why-grid{

        gap:24px;

    }

}

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

@media (max-width:992px){

    .server-why{

        padding:70px 0;

    }

    .server-why-grid{

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

        gap:24px;

        margin-top:50px;

    }

    .server-why-title h2{

        font-size:36px;

    }

}

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

@media (max-width:768px){

    .server-why{

        padding:60px 0;

    }

    .server-why-title h2{

        font-size:30px;

        line-height:1.3;

    }

    .server-why-title p{

        font-size:15px;

        line-height:1.8;

    }

    .server-why-grid{

        grid-template-columns:1fr;

        gap:20px;

        margin-top:40px;

    }

    .server-why-card{

        padding:30px 24px;

    }

    .server-why-icon{

        width:65px;

        height:65px;

    }

    .server-why-icon i{

        font-size:28px;

    }

    .server-why-card h3{

        font-size:20px;

    }

}

/*=========================
        iQOO 13
==========================*/

@media (max-width:480px){

    .server-why{

        padding:50px 0;

    }

    .server-why-badge{

        font-size:11px;

        padding:8px 16px;

    }

    .server-why-title h2{

        font-size:26px;

    }

    .server-why-title p{

        font-size:14px;

    }

    .server-why-grid{

        gap:18px;

    }

    .server-why-card{

        padding:25px 20px;

        border-radius:18px;

    }

    .server-why-icon{

        width:60px;

        height:60px;

        margin-bottom:20px;

    }

    .server-why-icon i{

        font-size:24px;

    }

    .server-why-card h3{

        font-size:18px;

        margin-bottom:12px;

    }

    .server-why-card p{

        font-size:14px;

        line-height:1.7;

    }

}

/*==================================================
            SERVER SETUP PROCESS
==================================================*/

.server-process{
    padding:90px 0;
    background:#05070d;
    position:relative;
    overflow:hidden;
}

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

.server-process::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(65,105,255,.08);
    filter:blur(140px);
    top:-180px;
    left:-180px;
}

.server-process::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(65,105,255,.06);
    filter:blur(130px);
    right:-180px;
    bottom:-180px;
}

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

.server-process-title{
    max-width:800px;
    margin:0 auto;
    text-align:center;
    position:relative;
    z-index:2;
}

.server-process-badge{
    display:inline-block;
    padding:8px 20px;
    border-radius:50px;
    background:rgba(65,105,255,.12);
    border:1px solid rgba(65,105,255,.25);
    color:var(--server-primary);
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.server-process-title h2{
    color:#fff;
    font-size:46px;
    line-height:1.25;
    margin-bottom:20px;
}

.server-process-title h2 span{
    color:var(--server-primary);
}

.server-process-title p{
    max-width:760px;
    margin:0 auto;
    color:var(--server-text);
    font-size:16px;
    line-height:1.9;
}

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

.server-process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
    position:relative;
    z-index:2;
}

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

.server-process-card{
    position:relative;
    background:#0b1020;
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:35px 30px;
    overflow:hidden;
    transition:var(--server-transition);
}

.server-process-card:hover{
    transform:translateY(-10px);
    border-color:rgba(65,105,255,.40);
    box-shadow:0 20px 45px rgba(65,105,255,.18);
}

/*=========================
      STEP NUMBER
==========================*/

.process-number{
    position:absolute;
    top:18px;
    right:22px;
    font-size:46px;
    font-weight:700;
    color:rgba(65,105,255,.08);
    user-select:none;
}

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

.process-icon{
    width:70px;
    height:70px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:18px;
    background:rgba(65,105,255,.10);
    border:1px solid rgba(65,105,255,.25);
    margin-bottom:25px;
    transition:var(--server-transition);
}

.process-icon i{
    color:var(--server-primary);
    font-size:30px;
}

.server-process-card:hover .process-icon{
    background:var(--server-gradient);
    /* transform:rotate(-8deg) scale(1.08); */
}

.server-process-card:hover .process-icon i{
    color:#fff;
}

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

.server-process-card h3{
    color:#fff;
    font-size:22px;
    margin-bottom:16px;
    line-height:1.4;
}

.server-process-card p{
    color:var(--server-text);
    font-size:15px;
    line-height:1.8;
}

/*==================================================
        SERVER PROCESS RESPONSIVE
==================================================*/

/* Laptop */

@media (max-width:1200px){

    .server-process-title h2{

        font-size:40px;

    }

    .server-process-grid{

        gap:24px;

    }

}

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

@media (max-width:992px){

    .server-process{

        padding:70px 0;

    }

    .server-process-grid{

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

        gap:24px;

        margin-top:50px;

    }

    .server-process-title h2{

        font-size:36px;

    }

}

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

@media (max-width:768px){

    .server-process{

        padding:60px 0;

    }

    .server-process-title h2{

        font-size:30px;

        line-height:1.3;

    }

    .server-process-title p{

        font-size:15px;

        line-height:1.8;

    }

    .server-process-grid{

        grid-template-columns:1fr;

        gap:20px;

        margin-top:40px;

    }

    .server-process-card{

        padding:30px 24px;

    }

    .process-icon{

        width:65px;

        height:65px;

    }

    .process-icon i{

        font-size:28px;

    }

    .process-number{

        font-size:40px;

    }

    .server-process-card h3{

        font-size:20px;

    }

}

/*=========================
        iQOO 13
==========================*/

@media (max-width:480px){

    .server-process{

        padding:50px 0;

    }

    .server-process-badge{

        font-size:11px;

        padding:8px 16px;

    }

    .server-process-title h2{

        font-size:26px;

    }

    .server-process-title p{

        font-size:14px;

    }

    .server-process-grid{

        gap:18px;

    }

    .server-process-card{

        padding:25px 20px;

        border-radius:18px;

    }

    .process-icon{

        width:60px;

        height:60px;

        margin-bottom:20px;

    }

    .process-icon i{

        font-size:24px;

    }

    .process-number{

        font-size:34px;

        top:15px;

        right:18px;

    }

    .server-process-card h3{

        font-size:18px;

        margin-bottom:12px;

    }

    .server-process-card p{

        font-size:14px;

        line-height:1.7;

    }

}
/*==================================================
            INDUSTRIES WE SERVE
==================================================*/

.server-industries{
    padding:90px 0;
    background:#05070d;
    position:relative;
    overflow:hidden;
}

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

.server-industries::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(65,105,255,.08);
    filter:blur(140px);
    top:-180px;
    left:-180px;
}

.server-industries::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(65,105,255,.06);
    filter:blur(130px);
    bottom:-180px;
    right:-180px;
}

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

.server-industries-title{

    max-width:800px;

    margin:0 auto;

    text-align:center;

    position:relative;

    z-index:2;

}

.server-industries-badge{

    display:inline-block;

    padding:8px 20px;

    border-radius:50px;

    background:rgba(65,105,255,.12);

    border:1px solid rgba(65,105,255,.25);

    color:var(--server-primary);

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;

    text-transform:uppercase;

}

.server-industries-title h2{

    color:#fff;

    font-size:46px;

    line-height:1.25;

    margin-bottom:20px;

}

.server-industries-title h2 span{

    color:var(--server-primary);

}

.server-industries-title p{

    max-width:760px;

    margin:0 auto;

    color:var(--server-text);

    font-size:16px;

    line-height:1.9;

}

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

.server-industries-grid{

    display:grid;

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

    gap:30px;

    margin-top:60px;

    position:relative;

    z-index:2;

}

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

.server-industries-card{

    background:#0b1020;

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

    border-radius:22px;

    padding:35px 30px;

    text-align:center;

    transition:var(--server-transition);

}

.server-industries-card:hover{

    transform:translateY(-10px);

    border-color:rgba(65,105,255,.40);

    box-shadow:0 20px 45px rgba(65,105,255,.18);

}

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

.industry-icon{

    width:75px;

    height:75px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 25px;

    border-radius:20px;

    background:rgba(65,105,255,.10);

    border:1px solid rgba(65,105,255,.25);

    transition:var(--server-transition);

}

.industry-icon i{

    color:var(--server-primary);

    font-size:32px;

}

.server-industries-card:hover .industry-icon{

    background:var(--server-gradient);

    /* transform:rotate(-8deg) scale(1.08); */

}

.server-industries-card:hover .industry-icon i{

    color:#fff;

}

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

.server-industries-card h3{

    color:#fff;

    font-size:22px;

    margin-bottom:16px;

    line-height:1.4;

}

.server-industries-card p{

    color:var(--server-text);

    font-size:15px;

    line-height:1.8;

}

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

/* Laptop */

@media (max-width:1200px){

    .server-industries-title h2{

        font-size:40px;

    }

    .server-industries-grid{

        gap:24px;

    }

}

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

@media (max-width:992px){

    .server-industries{

        padding:70px 0;

    }

    .server-industries-grid{

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

        gap:24px;

        margin-top:50px;

    }

    .server-industries-title h2{

        font-size:36px;

    }

}

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

@media (max-width:768px){

    .server-industries{

        padding:60px 0;

    }

    .server-industries-title h2{

        font-size:30px;

        line-height:1.3;

    }

    .server-industries-title p{

        font-size:15px;

        line-height:1.8;

    }

    .server-industries-grid{

        grid-template-columns:1fr;

        gap:20px;

        margin-top:40px;

    }

    .server-industries-card{

        padding:30px 24px;

    }

    .industry-icon{

        width:65px;

        height:65px;

    }

    .industry-icon i{

        font-size:28px;

    }

    .server-industries-card h3{

        font-size:20px;

    }

}

/*=========================
        iQOO 13
==========================*/

@media (max-width:480px){

    .server-industries{

        padding:50px 0;

    }

    .server-industries-badge{

        font-size:11px;

        padding:8px 16px;

    }

    .server-industries-title h2{

        font-size:26px;

    }

    .server-industries-title p{

        font-size:14px;

    }

    .server-industries-grid{

        gap:18px;

    }

    .server-industries-card{

        padding:25px 20px;

        border-radius:18px;

    }

    .industry-icon{

        width:60px;

        height:60px;

        margin-bottom:20px;

    }

    .industry-icon i{

        font-size:24px;

    }

    .server-industries-card h3{

        font-size:18px;

        margin-bottom:12px;

    }

    .server-industries-card p{

        font-size:14px;

        line-height:1.7;

    }

}
/*==================================================
        SERVER BENEFITS
==================================================*/

.server-benefits{
    padding:90px 0;
    background:#05070d;
    position:relative;
    overflow:hidden;
}

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

.server-benefits::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(65,105,255,.08);
    filter:blur(140px);
    top:-180px;
    left:-180px;
}

.server-benefits::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(65,105,255,.06);
    filter:blur(130px);
    bottom:-180px;
    right:-180px;
}

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

.server-benefits-title{

    max-width:800px;

    margin:0 auto;

    text-align:center;

    position:relative;

    z-index:2;

}

.server-benefits-badge{

    display:inline-block;

    padding:8px 20px;

    border-radius:50px;

    background:rgba(65,105,255,.12);

    border:1px solid rgba(65,105,255,.25);

    color:var(--server-primary);

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.server-benefits-title h2{

    color:#fff;

    font-size:46px;

    line-height:1.25;

    margin-bottom:20px;

}

.server-benefits-title h2 span{

    color:var(--server-primary);

}

.server-benefits-title p{

    max-width:760px;

    margin:0 auto;

    color:var(--server-text);

    font-size:16px;

    line-height:1.9;

}

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

.server-benefits-grid{

    display:grid;

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

    gap:30px;

    margin-top:60px;

    position:relative;

    z-index:2;

}

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

.server-benefit-card{

    background:#0b1020;

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

    border-radius:22px;

    padding:35px 30px;

    transition:var(--server-transition);

}

.server-benefit-card:hover{

    transform:translateY(-10px);

    border-color:rgba(65,105,255,.40);

    box-shadow:0 20px 45px rgba(65,105,255,.18);

}

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

.benefit-icon{

    width:70px;

    height:70px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    background:rgba(65,105,255,.10);

    border:1px solid rgba(65,105,255,.25);

    margin-bottom:25px;

    transition:var(--server-transition);

}

.benefit-icon i{

    color:var(--server-primary);

    font-size:30px;

}

.server-benefit-card:hover .benefit-icon{

    background:var(--server-gradient);

    /* transform:rotate(-8deg) scale(1.08); */

}

.server-benefit-card:hover .benefit-icon i{

    color:#fff;

}

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

.server-benefit-card h3{

    color:#fff;

    font-size:22px;

    margin-bottom:16px;

    line-height:1.4;

}

.server-benefit-card p{

    color:var(--server-text);

    font-size:15px;

    line-height:1.8;

}
/*==================================================
        SERVER BENEFITS RESPONSIVE
==================================================*/

/* Laptop */

@media (max-width:1200px){

    .server-benefits-title h2{

        font-size:40px;

    }

    .server-benefits-grid{

        gap:24px;

    }

}

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

@media (max-width:992px){

    .server-benefits{

        padding:70px 0;

    }

    .server-benefits-grid{

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

        gap:24px;

        margin-top:50px;

    }

    .server-benefits-title h2{

        font-size:36px;

    }

}

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

@media (max-width:768px){

    .server-benefits{

        padding:60px 0;

    }

    .server-benefits-title h2{

        font-size:30px;

        line-height:1.3;

    }

    .server-benefits-title p{

        font-size:15px;

        line-height:1.8;

    }

    .server-benefits-grid{

        grid-template-columns:1fr;

        gap:20px;

        margin-top:40px;

    }

    .server-benefit-card{

        padding:30px 24px;

    }

    .benefit-icon{

        width:65px;

        height:65px;

    }

    .benefit-icon i{

        font-size:28px;

    }

    .server-benefit-card h3{

        font-size:20px;

    }

}

/*=========================
        iQOO 13
==========================*/

@media (max-width:480px){

    .server-benefits{

        padding:50px 0;

    }

    .server-benefits-badge{

        font-size:11px;

        padding:8px 16px;

    }

    .server-benefits-title h2{

        font-size:26px;

    }

    .server-benefits-title p{

        font-size:14px;

    }

    .server-benefits-grid{

        gap:18px;

    }

    .server-benefit-card{

        padding:25px 20px;

        border-radius:18px;

    }

    .benefit-icon{

        width:60px;

        height:60px;

        margin-bottom:20px;

    }

    .benefit-icon i{

        font-size:24px;

    }

    .server-benefit-card h3{

        font-size:18px;

        margin-bottom:12px;

    }

    .server-benefit-card p{

        font-size:14px;

        line-height:1.7;

    }

}

/*==================================================
                    SERVER FAQ
==================================================*/

.server-faq{
    padding:90px 0;
    background:#05070d;
    position:relative;
    overflow:hidden;
}

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

.server-faq::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(65,105,255,.08);
    filter:blur(140px);
    top:-180px;
    left:-180px;
}

.server-faq::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(65,105,255,.06);
    filter:blur(130px);
    right:-180px;
    bottom:-180px;
}

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

.server-faq-title{

    max-width:800px;

    margin:0 auto 60px;

    text-align:center;

    position:relative;

    z-index:2;

}

.server-faq-badge{

    display:inline-block;

    padding:8px 20px;

    border-radius:50px;

    background:rgba(65,105,255,.12);

    border:1px solid rgba(65,105,255,.25);

    color:var(--server-primary);

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;

    text-transform:uppercase;

}

.server-faq-title h2{

    color:#fff;

    font-size:46px;

    margin-bottom:20px;

    line-height:1.25;

}

.server-faq-title h2 span{

    color:var(--server-primary);

}

.server-faq-title p{

    color:var(--server-text);

    font-size:16px;

    line-height:1.9;

}

/*=========================
      FAQ WRAPPER
==========================*/

.server-faq-wrapper{

    max-width:900px;

    margin:auto;

    position:relative;

    z-index:2;

}

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

.server-faq-item{

    background:#0b1020;

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

    border-radius:18px;

    margin-bottom:18px;

    overflow:hidden;

    transition:var(--server-transition);

}

.server-faq-item:hover{

    border-color:rgba(65,105,255,.35);

    box-shadow:0 15px 35px rgba(65,105,255,.15);

}

/*=========================
      QUESTION
==========================*/

.server-faq-question{

    width:100%;

    background:none;

    border:none;

    outline:none;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 28px;

    color:#fff;

    font-size:18px;

    font-weight:600;

    text-align:left;

}

.server-faq-question span{

    flex:1;

    padding-right:20px;

}

.server-faq-question i{

    width:42px;

    height:42px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(65,105,255,.10);

    color:var(--server-primary);

    transition:var(--server-transition);

}

/*=========================
        ANSWER
==========================*/

.server-faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}

.server-faq-answer p{

    color:var(--server-text);

    font-size:15px;

    line-height:1.9;

    padding:0 28px 25px;

}

/*=========================
      ACTIVE STATE
==========================*/

.server-faq-item.active{

    border-color:rgba(65,105,255,.40);

}

.server-faq-item.active .server-faq-question i{

    background:var(--server-gradient);

    color:#fff;

    /* transform:rotate(45deg); */

}

.server-faq-item.active .server-faq-answer{

    max-height:250px;

}

/*==================================================
            SERVER FAQ RESPONSIVE
==================================================*/

/* Laptop */

@media (max-width:1200px){

    .server-faq-title h2{

        font-size:40px;

    }

}

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

@media (max-width:992px){

    .server-faq{

        padding:70px 0;

    }

    .server-faq-title{

        margin-bottom:50px;

    }

    .server-faq-title h2{

        font-size:36px;

    }

}

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

@media (max-width:768px){

    .server-faq{

        padding:60px 0;

    }

    .server-faq-title{

        margin-bottom:40px;

    }

    .server-faq-title h2{

        font-size:30px;

        line-height:1.3;

    }

    .server-faq-title p{

        font-size:15px;

        line-height:1.8;

    }

    .server-faq-question{

        padding:20px;

        font-size:17px;

    }

    .server-faq-question i{

        width:38px;

        height:38px;

        font-size:14px;

    }

    .server-faq-answer p{

        padding:0 20px 22px;

        font-size:14px;

    }

}

/*=========================
        iQOO 13
==========================*/

@media (max-width:480px){

    .server-faq{

        padding:50px 0;

    }

    .server-faq-badge{

        font-size:11px;

        padding:8px 16px;

    }

    .server-faq-title h2{

        font-size:26px;

    }

    .server-faq-title p{

        font-size:14px;

    }

    .server-faq-question{

        padding:18px;

        font-size:15px;

    }

    .server-faq-question span{

        padding-right:12px;

    }

    .server-faq-question i{

        width:34px;

        height:34px;

        font-size:13px;

    }

    .server-faq-answer p{

        padding:0 18px 20px;

        font-size:14px;

        line-height:1.7;

    }

}

/*==================================================
            SERVER PERFORMANCE STATS
==================================================*/

.server-stats{
    padding:90px 0;
    background:#05070d;
    position:relative;
    overflow:hidden;
}

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

.server-stats::before{
    content:"";
    position:absolute;
    width:480px;
    height:480px;
    background:rgba(65,105,255,.08);
    filter:blur(150px);
    top:-180px;
    left:-180px;
}

.server-stats::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(65,105,255,.06);
    filter:blur(130px);
    bottom:-180px;
    right:-180px;
}

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

.server-stats-content{

    max-width:820px;

    margin:0 auto;

    text-align:center;

    position:relative;

    z-index:2;

}

.server-stats-badge{

    display:inline-block;

    padding:8px 20px;

    border-radius:50px;

    background:rgba(65,105,255,.12);

    border:1px solid rgba(65,105,255,.25);

    color:var(--server-primary);

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.server-stats-content h2{

    color:#fff;

    font-size:46px;

    line-height:1.25;

    margin-bottom:20px;

}

.server-stats-content h2 span{

    color:var(--server-primary);

}

.server-stats-content p{

    max-width:760px;

    margin:0 auto;

    color:var(--server-text);

    font-size:16px;

    line-height:1.9;

}

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

.server-stats-grid{

    display:grid;

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

    gap:30px;

    margin-top:60px;

    position:relative;

    z-index:2;

}

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

.server-stat-card{

    background:#0b1020;

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

    border-radius:22px;

    padding:40px 25px;

    text-align:center;

    transition:var(--server-transition);

}

.server-stat-card:hover{

    transform:translateY(-10px);

    border-color:rgba(65,105,255,.40);

    box-shadow:0 20px 45px rgba(65,105,255,.18);

}

/*=========================
        NUMBER
==========================*/

.server-stat-card h3{

    font-size:46px;

    font-weight:700;

    color:var(--server-primary);

    margin-bottom:12px;

}

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

.server-stat-card p{

    color:var(--server-text);

    font-size:16px;

    font-weight:500;

    line-height:1.7;

}
/*==================================================
        SERVER STATS RESPONSIVE
==================================================*/

/* Laptop */

@media (max-width:1200px){

    .server-stats-content h2{

        font-size:40px;

    }

    .server-stats-grid{

        gap:24px;

    }

}

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

@media (max-width:992px){

    .server-stats{

        padding:70px 0;

    }

    .server-stats-content h2{

        font-size:36px;

    }

    .server-stats-grid{

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

        gap:24px;

        margin-top:50px;

    }

}

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

@media (max-width:768px){

    .server-stats{

        padding:60px 0;

    }

    .server-stats-content h2{

        font-size:30px;

        line-height:1.3;

    }

    .server-stats-content p{

        font-size:15px;

        line-height:1.8;

    }

    .server-stats-grid{

        grid-template-columns:1fr;

        gap:20px;

        margin-top:40px;

    }

    .server-stat-card{

        padding:30px 20px;

    }

    .server-stat-card h3{

        font-size:38px;

    }

    .server-stat-card p{

        font-size:15px;

    }

}

/*=========================
        iQOO 13
==========================*/

@media (max-width:480px){

    .server-stats{

        padding:50px 0;

    }

    .server-stats-badge{

        font-size:11px;

        padding:8px 16px;

    }

    .server-stats-content h2{

        font-size:26px;

    }

    .server-stats-content p{

        font-size:14px;

    }

    .server-stats-grid{

        gap:18px;

    }

    .server-stat-card{

        padding:25px 18px;

        border-radius:18px;

    }

    .server-stat-card h3{

        font-size:34px;

        margin-bottom:10px;

    }

    .server-stat-card p{

        font-size:14px;

        line-height:1.6;

    }
}