/* ===================================
      ITSoftPK Website
      Version 1.0
=================================== */


/*************
 RESET
**************/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:#F8FAFC;

    color:#1E293B;

    overflow-x:hidden;

}


/*************
 VARIABLES
**************/

:root{

    --primary:#2563EB;

    --secondary:#0F172A;

    --accent:#06B6D4;

    --success:#10B981;

    --danger:#EF4444;

    --text:#334155;

    --light:#F8FAFC;

    --white:#ffffff;

    --border:#E2E8F0;

    --radius:18px;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --transition:.35s;

}


/*************
 TYPOGRAPHY
**************/

h1,h2,h3,h4,h5{

    font-family:'Poppins',sans-serif;

    color:var(--secondary);

}

p{

    color:#64748B;

    line-height:1.8;

}

a{

    text-decoration:none;

}

img{

    width:100%;

    display:block;

}


/*************
 CONTAINER
**************/

.container{

    width:90%;

    max-width:1320px;

    margin:auto;

}


/*************
 SECTION
**************/

section{

    padding:100px 0;

    position:relative;

}


/*************
 BUTTONS
**************/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 35px;

    border-radius:50px;

    transition:var(--transition);

    font-weight:600;

}

.btn-primary{

    background:var(--primary);

    color:#fff;

}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 30px rgba(37,99,235,.35);

}

.btn-outline{

    border:2px solid var(--primary);

    color:var(--primary);

}

.btn-outline:hover{

    background:var(--primary);

    color:white;

}


/*************
 SECTION TITLE
**************/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--primary);

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

}

.section-title h2{

    font-size:42px;

    margin-top:15px;

}

.section-title p{

    width:700px;

    max-width:100%;

    margin:20px auto 0;

}


/*************
 CARDS
**************/

.card{

    background:white;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}


/*************
 BACKGROUND
**************/

.background-blur{

    position:fixed;

    border-radius:50%;

    filter:blur(120px);

    z-index:-1;

}

.blur1{

    width:350px;

    height:350px;

    background:#60A5FA;

    top:-100px;

    left:-100px;

    opacity:.20;

}

.blur2{

    width:400px;

    height:400px;

    background:#22D3EE;

    right:-120px;

    bottom:-120px;

    opacity:.15;

}
/*=========================================
            HEADER
==========================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    backdrop-filter:blur(18px);

    background:rgba(255,255,255,.75);

    border-bottom:1px solid rgba(226,232,240,.6);

    transition:.35s;

}
/*=========================================
            HERO
==========================================*/

.hero{

    padding-top:170px;

    padding-bottom:100px;

}

.hero-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

}

.hero-left{

    flex:1;

}

.hero-right{

    flex:1;

    position:relative;

}

.hero-tag{

    display:inline-block;

    background:#E0F2FE;

    color:var(--primary);

    padding:10px 20px;

    border-radius:50px;

    font-weight:600;

    margin-bottom:25px;

}

.hero h1{

    font-size:58px;

    line-height:1.2;

    margin-bottom:25px;

}

.hero h1 span{

    color:var(--primary);

}

.hero p{

    font-size:18px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:40px;

}

.hero-info{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    font-weight:600;

}

.dashboard-card{

    background:white;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.dashboard-card img{

    width:100%;

}

.floating-card{

    position:absolute;

    background:white;

    padding:15px 25px;

    border-radius:15px;

    box-shadow:0 15px 40px rgba(0,0,0,.10);

    font-weight:600;

}

.card-one{

    top:50px;

    left:-30px;

}

.card-two{

    right:-30px;

    top:180px;

}

.card-three{

    bottom:40px;

    left:20px;

}

.navbar{

    height:82px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo img{

    width:42px;

}

.logo span{

    font-size:24px;

    font-weight:700;

    color:var(--secondary);

    font-family:'Poppins',sans-serif;

}

.nav-links{

    list-style:none;

    display:flex;

    gap:38px;

}

.nav-links a{

    color:var(--text);

    font-weight:600;

    transition:.3s;

    position:relative;

}

.nav-links a:hover{

    color:var(--primary);

}

.nav-links a.active{

    color:var(--primary);

}

.nav-links a::after{

    content:"";

    position:absolute;

    bottom:-8px;

    left:0;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.35s;

}

.nav-links a:hover::after{

    width:100%;

}

.nav-links a.active::after{

    width:100%;

}

.nav-buttons{

    display:flex;

    gap:15px;

}

.menu-toggle{

    display:none;

    cursor:pointer;

}

.menu-toggle span{

    width:28px;

    height:3px;

    background:var(--secondary);

    display:block;

    margin:5px;

    border-radius:50px;

}
/*=========================================
            MOBILE
==========================================*/

@media(max-width:991px){

.nav-links{

    position:absolute;

    top:82px;

    left:0;

    width:100%;

    background:white;

    flex-direction:column;

    align-items:center;

    padding:30px 0;

    display:none;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.nav-links.active{

    display:flex;

}

.nav-buttons{

    display:none;

}

.menu-toggle{

    display:block;

}

}@media(max-width:991px){

.hero{

    padding-top:130px;

}

.hero-wrapper{

    flex-direction:column;

}

.hero h1{

    font-size:38px;

}

.hero-buttons{

    flex-direction:column;

}

.hero-info{

    grid-template-columns:1fr;

}

.card-one,
.card-two,
.card-three{

    display:none;

}

}/*=========================================
            HERO STATS
==========================================*/

.hero-stats{

    margin-top:-40px;
    position:relative;
    z-index:10;

}

.stats-wrapper{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}

.stat-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 20px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-8px);

}

.stat-card h2{

    color:var(--primary);

    font-size:42px;

    margin-bottom:10px;

}

.stat-card p{

    font-weight:600;

    color:#64748B;

}
@media(max-width:991px){

.stats-wrapper{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.stats-wrapper{

    grid-template-columns:1fr;

}

}/*=========================================
            ICONS
==========================================*/

.icon{

    width:70px;
    height:70px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:18px;

    background:linear-gradient(135deg,#2563EB,#06B6D4);

    color:#fff;

    font-size:28px;

    margin-bottom:25px;

    box-shadow:0 15px 35px rgba(37,99,235,.25);

    transition:.35s;

}

.card:hover .icon{

    transform:rotate(-8deg) scale(1.08);

}
/*=========================================
        PREMIUM SERVICE CARD
==========================================*/

.service-card{

    width:100%;

    min-height:420px;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

}

/* Animated Gradient Border */

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    padding:1px;

    border-radius:24px;

    background:linear-gradient(
        135deg,
        transparent,
        #2563EB,
        #06B6D4,
        transparent);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

            mask-composite:exclude;

    opacity:0;

    transition:.45s;

}

/* Glow */

.service-card::after{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    border-radius:50%;

    background:rgba(37,99,235,.08);

    top:-120px;

    right:-120px;

    transition:.5s;

    opacity:0;

}
.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(15,23,42,.12);

}

.service-card:hover::before{

    opacity:1;

}

.service-card:hover::after{

    opacity:1;

}
.service-icon{

    width:74px;

    height:74px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        #2563EB,
        #06B6D4);

    color:white;

    font-size:30px;

    margin-bottom:25px;

    transition:.45s;
    flex-shrink:0;

}

.service-card:hover .service-icon{

    transform:
        rotate(-10deg)
        scale(1.12);

    box-shadow:0 20px 35px rgba(37,99,235,.35);

}
.service-card h3{

    margin-bottom:18px;

    font-size:24px;

}

.service-card p{

    color:#64748B;

    line-height:1.8;

    margin-bottom:30px;

}
.service-link{

     margin-top:auto;

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#2563EB;

    font-weight:700;

}

.service-link i{

    transition:.35s;

}

.service-card:hover .service-link i{

    transform:translateX(8px);

}
.service-card .shine{

    position:absolute;

    width:120px;

    height:400px;

    background:rgba(255,255,255,.35);

    transform:rotate(25deg);

    left:-180px;

    top:-120px;

    transition:1s;

}

.service-card:hover .shine{

    left:160%;

}
.page-banner{

padding:180px 0 100px;

text-align:center;

background:linear-gradient(135deg,#EFF6FF,#F8FAFC);

}

.page-banner h1{

font-size:60px;

margin-bottom:20px;

}

.page-banner p{

font-size:20px;

max-width:700px;

margin:auto;

}

.services{

padding:100px 0;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:30px;

    align-items:stretch;

}
@media(max-width:991px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:767px){

.services-grid{

grid-template-columns:1fr;

}

.page-banner h1{

font-size:42px;

}

}