/* =======================
   JFTECH ALBUR STYLE.CSS
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{

    background:#020814;
    color:#fff;
    overflow-x:hidden;

}

/* ================= HEADER ================= */

header{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 8%;

    background:#03152d;
    border-bottom:2px solid #008cff;

    position:sticky;
    top:0;
    z-index:999;

}

.logo{

    display:flex;
    align-items:center;
    gap:15px;

}

.logo img{

    width:70px;

}

.logo h3{

    color:white;
    font-size:20px;

}

.logo h1{

    color:#0d7dff;
    font-size:55px;
    font-weight:900;

}

nav{

    display:flex;
    gap:30px;

}

nav a{

    color:white;
    text-decoration:none;
    font-size:18px;
    transition:.3s;

}

nav a:hover{

    color:#00bfff;

}

/* ================= HERO ================= */

.hero{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:80px 8%;

    min-height:90vh;

    background:

    linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.7)),
    url(images/bg.jpg);

    background-size:cover;

}

.hero-left{

    max-width:600px;

}

.promo-date{

    display:inline-block;

    background:red;

    color:white;

    padding:12px 25px;

    border-radius:8px;

    font-size:22px;

    font-weight:bold;

    margin-bottom:20px;

}

.hero h2{

    color:#ffd500;

    font-size:45px;

}

.hero h1{

    color:#ffd500;

    font-size:95px;

    font-weight:900;

    line-height:90px;

}

.hero h3{

    font-size:75px;

    margin-top:10px;

}

.hero h4{

    color:red;

    font-size:60px;

}

.hero-right img{

    width:420px;

    animation:float 3s ease-in-out infinite;

}

/* ================= BUTTONS ================= */

.buttons{

    margin-top:35px;

    display:flex;

    gap:20px;

}

.btn{

    background:#008cff;

    color:white;

    padding:15px 35px;

    border-radius:40px;

    text-decoration:none;

    transition:.3s;

}

.btn:hover{

    transform:translateY(-5px);

    box-shadow:0 0 20px #008cff;

}

.btn2{

    background:#ffd500;

    color:black;

    padding:15px 35px;

    border-radius:40px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}

.btn2:hover{

    transform:translateY(-5px);

}

/* ================= FEATURES ================= */

.features{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:20px;

    padding:50px 8%;

}

.feature{

    background:#071b35;

    text-align:center;

    padding:30px;

    border-radius:15px;

    border:1px solid #008cff;

}

.feature i{

    font-size:45px;

    color:#00aaff;

    margin-bottom:15px;

}

.feature h3{

    font-size:22px;

}

/* ================= TITLE ================= */

.title{

    text-align:center;

    font-size:50px;

    margin-top:60px;

    margin-bottom:40px;

}

/* ================= CARDS ================= */

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

    padding:40px 8%;

}

.card{

    background:white;

    color:black;

    border-radius:20px;

    text-align:center;

    padding:30px;

    transition:.3s;

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 0 25px #008cff;

}

.card h1{

    font-size:60px;

    color:#005cff;

}

.card h3{

    margin-top:10px;

    font-size:35px;

}

.card p{

    margin-top:15px;

    font-size:20px;

}

.card span{

    display:inline-block;

    margin-top:25px;

    background:#005cff;

    color:white;

    padding:12px 25px;

    border-radius:30px;

}

/* ================= PROMO ================= */

#promo{

    padding:70px 8%;

    text-align:center;

}

#promo h2{

    font-size:50px;

    color:#ffd500;

    margin-bottom:25px;

}

#promo ul{

    list-style:none;

}

#promo li{

    font-size:25px;

    margin:15px 0;

}

/* ================= COVERAGE ================= */

.coverage{

    background:#03152d;

    text-align:center;

    padding:70px 8%;

}

.coverage h2{

    font-size:50px;

    color:#00aaff;

    margin-bottom:25px;

}

.coverage p{

    font-size:28px;

    margin:15px;

}

/* ================= CONTACT ================= */

#contact{

    text-align:center;

    padding:70px 8%;

}

#contact h2{

    font-size:50px;

    margin-bottom:30px;

}

#contact p{

    font-size:25px;

    margin:18px;

}

#contact i{

    color:#00aaff;

}

/* ================= FOOTER ================= */

footer{

    background:#000;

    color:white;

    text-align:center;

    padding:30px;

    border-top:2px solid #008cff;

}

/* ================= ANIMATION ================= */

@keyframes float{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0px);

    }

}

/* ================= MOBILE ================= */

@media(max-width:900px){

header{

    flex-direction:column;

    gap:20px;

}

nav{

    flex-wrap:wrap;

    justify-content:center;

}

.hero{

    flex-direction:column;

    text-align:center;

}

.hero h1{

    font-size:70px;

}

.hero h3{

    font-size:45px;

}

.hero h4{

    font-size:35px;

}

.hero-right img{

    width:300px;

    margin-top:40px;

}

.features{

    grid-template-columns:1fr 1fr;

}

.logo h1{

    font-size:40px;

}

.title{

    font-size:35px;

}

#promo h2,
.coverage h2,
#contact h2{

    font-size:35px;

}

}