/* RESET */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:
    linear-gradient(
        to right,
        #031433,
        #071d45
    );

    color:white;

    overflow-x:hidden;

}

/* CONTAINER */

.container{

    width:92%;

    max-width:1350px;

    margin:auto;

}

/* SECTION */

.section{

    padding:70px 0;

}

/* HERO */

.hero{

    padding:
    120px 0 60px;

}

.hero-content{

    max-width:760px;

}

.hero-tag{

    display:inline-block;

    background:
    rgba(56,182,255,0.12);

    color:#38b6ff;

    padding:10px 20px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    margin-bottom:22px;

}

.hero h1{

    font-size:48px;

    line-height:1.2;

    margin-bottom:20px;

    font-weight:700;

}

.hero p{

    font-size:16px;

    color:#c9d4f1;

    line-height:1.8;

}

/* SECTION TITLE */

.section-title{

    margin-bottom:40px;

}

.section-title h2{

    font-size:34px;

    margin-bottom:10px;

}

.section-title p{

    color:#aebbd7;

    font-size:15px;

}

/* GRID */

.grid{

    display:grid;

    gap:22px;

}

/* 3 COLUMN */

.grid-3{

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

}

/* CARD */

.card{

    background:
    rgba(20,35,75,0.82);

    border-radius:22px;

    padding:24px;

    border:
    1px solid rgba(255,255,255,0.05);

    transition:0.3s ease;

}

.card:hover{

    transform:
    translateY(-6px);

    border-color:
    rgba(56,182,255,0.3);

    box-shadow:
    0 10px 25px rgba(56,182,255,0.12);

}

/* CARD ICON */

.card-icon{

    width:65px;
    height:65px;

    border-radius:18px;

    background:
    rgba(56,182,255,0.12);

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:18px;

}

.card-icon i{

    font-size:28px;

    color:#38b6ff;

}

/* CARD TITLE */

.card h2{

    font-size:22px;

    margin-bottom:12px;

}

/* CARD TEXT */

.card p{

    font-size:14px;

    line-height:1.7;

    color:#c9d4f1;

}

/* BUTTON */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:14px 24px;

    border:none;

    border-radius:14px;

    font-size:14px;

    font-weight:600;

    cursor:pointer;

    transition:0.3s;

    text-decoration:none;

}

.btn-primary{

    background:
    linear-gradient(
        145deg,
        #0077ff,
        #33b5ff
    );

    color:white;

}

.btn-secondary{

    background:
    rgba(255,255,255,0.06);

    color:white;

}

.btn:hover{

    transform:
    translateY(-3px);

}

/* PAGE SPACING */

.page-bottom{

    padding-bottom:80px;

}

/* RESPONSIVE */

@media(max-width:768px){

    .hero{

        padding:
        100px 0 50px;

    }

    .hero h1{

        font-size:36px;

    }

    .section-title h2{

        font-size:28px;

    }

}