/* ===========================
   POWER UPS PREMIUM WEBSITE
   =========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;

background:#f5f7fb;

color:#222;

overflow-x:hidden;

line-height:1.7;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

transition:.3s;

}

ul{

list-style:none;

}

.container{

width:90%;

max-width:1200px;

margin:auto;

}

/*=========================
LOADER
=========================*/

#loader{

position:fixed;

top:0;

left:0;

width:100%;

height:100vh;

background:#081c3d;

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

}

.spinner{

width:70px;

height:70px;

border:7px solid rgba(255,255,255,.2);

border-top:7px solid #fff;

border-radius:50%;

animation:spin 1s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

/*=========================
HEADER
=========================*/

header{

position:fixed;

top:0;

left:0;

width:100%;

background:rgba(6,25,59,.96);

backdrop-filter:blur(10px);

z-index:999;

}

header .container{

display:flex;

justify-content:space-between;

align-items:center;

height:80px;

}

.logo{

font-size:30px;

font-weight:800;

color:white;

letter-spacing:2px;

}

.logo span{

color:#ffb400;

}

nav ul{

display:flex;

gap:35px;

}

nav a{

color:white;

font-weight:500;

font-size:15px;

}

nav a:hover{

color:#ffb400;

}

.menu-btn{

display:none;

color:white;

font-size:30px;

cursor:pointer;

}

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

.hero{

position:relative;

padding-top:120px;

padding-bottom:100px;

background:

linear-gradient(rgba(0,22,60,.90),rgba(0,22,60,.90));

color:white;

}

.hero-content{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:60px;

}

.hero h4{

color:#ffb400;

font-size:18px;

margin-bottom:15px;

letter-spacing:2px;

}

.hero h1{

font-size:58px;

line-height:1.15;

font-weight:800;

margin-bottom:25px;

}

.hero h1 span{

display:block;

color:#ffb400;

}

.hero p{

font-size:18px;

opacity:.95;

margin-bottom:35px;

}

.hero-button{

display:flex;

gap:20px;

}

.btn-primary{

background:#ffb400;

color:#111;

padding:16px 34px;

border-radius:8px;

font-weight:700;

}

.btn-primary:hover{

background:white;

}

.btn-secondary{

border:2px solid white;

padding:16px 34px;

color:white;

border-radius:8px;

}

.btn-secondary:hover{

background:white;

color:#111;

}

.hero-image img{

border-radius:20px;

box-shadow:0 25px 70px rgba(0,0,0,.45);

transition:.5s;

}

.hero-image img:hover{

transform:translateY(-10px);

}

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

section{

padding:90px 0;

}

.title{

text-align:center;

margin-bottom:60px;

}

.title h2{

font-size:42px;

color:#06224d;

margin-bottom:15px;

}

.title p{

color:#666;

}

/*=========================
ABOUT
=========================*/

.about{

background:white;

}

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.about img{

border-radius:15px;

box-shadow:0 20px 50px rgba(0,0,0,.2);

}

.about h3{

font-size:32px;

margin-bottom:20px;

color:#06224d;

}

.about p{

margin-bottom:20px;

}

.about li{

margin-bottom:12px;

font-size:17px;

}

.about i{

color:#ffb400;

margin-right:10px;

}

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

.services{

background:#eef3f8;

}

.card-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:30px;

}

.card{

background:white;

padding:35px;

border-radius:15px;

text-align:center;

transition:.4s;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.card:hover{

transform:translateY(-12px);

box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.card i{

font-size:55px;

color:#ffb400;

margin-bottom:20px;

}

.card h3{

margin-bottom:18px;

font-size:24px;

color:#06224d;

}

/*=========================
COUNTER
=========================*/

.counter{

background:#06224d;

color:#fff;

}

.counter .container{

display:grid;

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

gap:30px;

text-align:center;

}

.counter h2{

font-size:56px;

color:#ffb400;

margin-bottom:10px;

font-weight:700;

}

.counter p{

font-size:18px;

letter-spacing:1px;

}

/*=========================
WHY CHOOSE US
=========================*/

.why{

background:#ffffff;

}

.why-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(230px,1fr));

gap:30px;

margin-top:20px;

}

.why-grid div{

background:#f7f9fc;

padding:40px 25px;

border-radius:15px;

text-align:center;

transition:.35s;

border:1px solid #e8edf4;

}

.why-grid div:hover{

background:#06224d;

transform:translateY(-10px);

box-shadow:0 15px 40px rgba(0,0,0,.18);

}

.why-grid div:hover h3{

color:white;

}

.why-grid div:hover i{

color:#ffb400;

}

.why-grid i{

font-size:48px;

margin-bottom:20px;

color:#06224d;

transition:.3s;

}

.why-grid h3{

font-size:22px;

color:#06224d;

transition:.3s;

}

/*=========================
CTA
=========================*/

.cta{

background:linear-gradient(135deg,#041b3d,#0a3f84);

color:white;

text-align:center;

}

.cta h2{

font-size:42px;

margin-bottom:20px;

font-weight:700;

}

.cta p{

font-size:18px;

max-width:700px;

margin:auto;

margin-bottom:35px;

opacity:.95;

}

.cta a{

display:inline-block;

background:#ffb400;

color:#111;

padding:16px 40px;

border-radius:8px;

font-weight:700;

transition:.3s;

}

.cta a:hover{

background:white;

transform:translateY(-4px);

}

/*=========================
FOOTER
=========================*/

footer{

background:#021327;

color:white;

padding-top:70px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:50px;

padding-bottom:50px;

}

.footer-grid h2{

font-size:30px;

margin-bottom:20px;

}

.footer-grid h3{

margin-bottom:20px;

color:#ffb400;

}

.footer-grid p{

opacity:.8;

}

.footer-grid li{

margin-bottom:12px;

opacity:.8;

cursor:pointer;

transition:.3s;

}

.footer-grid li:hover{

color:#ffb400;

padding-left:6px;

}

.copyright{

text-align:center;

padding:25px;

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

font-size:14px;

opacity:.75;

}

/*=========================
FLOATING WHATSAPP
=========================*/

.whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:65px;

height:65px;

background:#25D366;

color:white;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:34px;

box-shadow:0 12px 35px rgba(0,0,0,.25);

z-index:999;

transition:.3s;

}

.whatsapp:hover{

transform:scale(1.1);

}

/*=========================
BUTTON EFFECT
=========================*/

.btn-primary,
.btn-secondary,
.cta a{

transition:all .35s ease;

}

.btn-primary:hover,
.btn-secondary:hover,
.cta a:hover{

box-shadow:0 15px 40px rgba(0,0,0,.2);

}

/*=========================
SCROLLBAR
=========================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#dfe5ec;

}

::-webkit-scrollbar-thumb{

background:#06224d;

border-radius:10px;

}

::-webkit-scrollbar-thumb:hover{

background:#0b4f9c;

}

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

@media(max-width:991px){

.hero-content,
.about-grid{

grid-template-columns:1fr;

}

.hero{

text-align:center;

}

.hero-image{

order:-1;

}

.hero h1{

font-size:42px;

}

.counter .container{

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

}

.footer-grid{

grid-template-columns:1fr;

}

nav{

display:none;

}

.menu-btn{

display:block;

}

}

@media(max-width:768px){

section{

padding:70px 0;

}

.hero h1{

font-size:34px;

}

.hero p{

font-size:16px;

}

.title h2{

font-size:32px;

}

.about h3{

font-size:26px;

}

.counter .container{

grid-template-columns:1fr;

gap:20px;

}

.hero-button{

flex-direction:column;

}

.btn-primary,
.btn-secondary{

width:100%;

text-align:center;

}

.whatsapp{

width:58px;

height:58px;

font-size:30px;

}

}

@media(max-width:480px){

.logo{

font-size:24px;

}

.hero{

padding-top:110px;

}

.hero h1{

font-size:30px;

}

.cta h2{

font-size:28px;

}

.cta p{

font-size:16px;

}

}

/* Sticky */

header.sticky{

background:#021327;

box-shadow:0 10px 30px rgba(0,0,0,.25);

}

/* Reveal */

section{

opacity:0;

transform:translateY(60px);

transition:1s;

}

section.show{

opacity:1;

transform:translateY(0);

}

/* Mobile Menu */

nav.active{

display:block;

position:absolute;

top:80px;

left:0;

width:100%;

background:#06224d;

padding:25px;

}

nav.active ul{

display:flex;

flex-direction:column;

gap:20px;

}

/* Back To Top */

.backTop{

position:fixed;

bottom:100px;

right:28px;

width:55px;

height:55px;

background:#06224d;

color:white;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

cursor:pointer;

opacity:0;

visibility:hidden;

transition:.3s;

z-index:999;

}

.backTop.active{

opacity:1;

visibility:visible;

}

.backTop:hover{

background:#ffb400;

color:#111;

}

/* Ripple */

button,

a{

position:relative;

overflow:hidden;

}

.ripple{

position:absolute;

width:15px;

height:15px;

background:rgba(255,255,255,.5);

border-radius:50%;

transform:scale(0);

animation:ripple .6s linear;

}

@keyframes ripple{

to{

transform:scale(18);

opacity:0;

}

}

.mips-title{
    margin-top:15px;
    margin-bottom:15px;
    text-align:center;
    font-size:32px;
    color:#06224d;
}

.mips-desc{
    max-width:850px;
    margin:0 auto;
    text-align:center;
    line-height:1.8;
    color:#555;
    font-size:17px;
}

.mips-card{
    padding:35px;
    height:auto;
    min-height:unset;
    display:block;
}

.mips-image{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:20px;
}

.mips-image img{
    width:320px;
    max-width:100%;
    display:block;
}

.mips-title{
    margin-top:10px;
    margin-bottom:15px;
    font-size:40px;
    color:#06224d;
}

.mips-desc{
    max-width:850px;
    margin:auto;
    line-height:1.8;
    font-size:18px;
    color:#555;
}

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

.product-image{

    height:320px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

    overflow:hidden;

}

.product-image img{

    max-width:100%;

    max-height:280px;

    width:auto;

    height:auto;

    object-fit:contain;

    transition:.3s;

}

.product-image img:hover{

    transform:scale(1.05);

}

/* CARD */

.card{

    background:#fff;

    border-radius:18px;

    padding:30px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.card h3{

    color:#06224d;

    font-size:28px;

    margin-top:10px;

}