/*==================================================
PLUTEK (PTY) LTD
Main Stylesheet
Version: 1.0
==================================================*/

/*======================
GOOGLE FONT
======================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

html,
body{
    width:100%;
    overflow-x:hidden;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

:root{
    --bg-dark:#06101d;
    --bg-surface:#0b1728;
    --bg-card:rgba(255,255,255,.05);
    --text-main:#f7fbff;
    --text-muted:#b9c4d1;
    --accent:#00bfff;
    --accent-strong:#0066ff;
    --border:rgba(255,255,255,.12);
    --shadow:0 20px 50px rgba(0,0,0,.25);
}

body{
    font-family:'Poppins',sans-serif;
    background:linear-gradient(180deg,var(--bg-dark) 0%,#08111f 100%);
    color:var(--text-main);
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

section{
    padding:95px 8%;
}

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

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#07101d;
}

::-webkit-scrollbar-thumb{
    background:#0066ff;
    border-radius:30px;
}

::-webkit-scrollbar-thumb:hover{
    background:#00bfff;
}

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

#loader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#08111f;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.spinner{
    width:70px;
    height:70px;
    border:5px solid rgba(255,255,255,.1);
    border-top:5px solid #00bfff;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

#loader h2{
    margin-top:25px;
    font-size:30px;
    color:#00bfff;
    letter-spacing:4px;
}

@keyframes spin{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

/*======================
NAVBAR
======================*/

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:rgba(6,16,29,.8);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.08);
    transition:.4s;
    gap:30px;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:24px;
    flex:1;
    justify-content:flex-end;
    margin-left:auto;
}


.nav-links a{
    font-size:15px;
    white-space:nowrap;
    color:#fff;
    transition:.3s;
    position:relative;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--accent);
    transition:.4s;
}

.nav-links a:hover::after{
    width:100%;
}

.nav-links a:hover{
    color:var(--accent);
}

.quote-btn{
    padding:12px 24px;
    border-radius:999px;
    background:linear-gradient(135deg,var(--accent-strong),var(--accent));
    color:#ffffff;
    font-weight:600;
    white-space:nowrap;
    text-decoration:none;
    transition:.4s;
}

.quote-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,191,255,.25);
}

.hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:6px;
}

.hamburger span{
    width:28px;
    height:3px;
    background:#fff;
    border-radius:20px;
}

.navbar.scrolled{
    background:#07101d;
    box-shadow:0 8px 25px rgba(0,0,0,.4);
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid var(--accent);
    box-shadow:0 0 15px rgba(0,191,255,.35);
    transition:0.3s ease;
}

.logo img:hover{
    transform:scale(1.08);
    box-shadow:0 0 25px rgba(0,191,255,.6);
}

.logo span{
    font-size:1.7rem;
    font-weight:800;
    color:#fff;
    letter-spacing:.16em;
    text-transform:uppercase;
}

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

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
    overflow:hidden;
    background:linear-gradient(rgba(5,12,22,.88),rgba(5,12,22,.92)),url("../images/hero-bg.jpg");
    background-size:cover;
    background-position:center;
    padding-top:140px;
}

.hero::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    background:var(--accent-strong);
    filter:blur(180px);
    opacity:.22;
    top:-200px;
    left:-150px;
}

.hero::after{
    content:"";
    position:absolute;
    width:650px;
    height:650px;
    background:var(--accent);
    filter:blur(180px);
    opacity:.18;
    right:-200px;
    bottom:-180px;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right,rgba(5,12,22,.92),rgba(5,12,22,.58));
}

.hero-content{
    position:relative;
    z-index:5;
    max-width:980px;
    padding:0 20px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    padding:8px 16px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:999px;
    background:rgba(255,255,255,.07);
    color:#cdeeff;
    font-size:.9rem;
    letter-spacing:.16em;
    text-transform:uppercase;
    margin-bottom:20px;
    font-weight:600;
}

.hero h1{
    font-size:clamp(2.4rem,4.5vw,4.5rem);
    line-height:1.15;
    margin-bottom:20px;
    font-weight:800;
    max-width:900px;
    margin-inline:auto;
}

.hero p{
    font-size:clamp(1rem,1.3vw,1.25rem);
    color:var(--text-muted);
    margin-bottom:35px;
    max-width:760px;
    margin-inline:auto;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:22px;
    flex-wrap:wrap;
}

.btn-primary{
    padding:16px 36px;
    background:linear-gradient(135deg,var(--accent-strong),var(--accent));
    border-radius:50px;
    font-weight:600;
    transition:.4s;
    display:inline-block;
}

.btn-primary:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(0,191,255,.25);
}

.btn-secondary{
    padding:12px 32px;
    border:2px solid var(--accent);
    border-radius:50px;
    font-weight:600;
    transition:.4s;
    display:inline-block;
}

.btn-secondary:hover{
    background:var(--accent);
    color:#08111f;
}

/*======================
SECTION TITLES
======================*/

section h2{
    text-align:center;
    font-size:clamp(1.8rem,2.8vw,2.6rem);
    margin-bottom:18px;
    font-weight:700;
}

.section-description{
    text-align:center;
    max-width:720px;
    margin:0 auto 42px;
    color:var(--text-muted);
    font-size:1rem;
}

/*======================
STATS
======================*/

.stats{
    background:var(--bg-surface);
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.stat{
    padding:40px 20px;
    border-radius:20px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    transition:.4s;
}

.stat:hover{
    transform:translateY(-10px);
    background:linear-gradient(135deg,var(--accent-strong),var(--accent));
    box-shadow:0 20px 40px rgba(0,102,255,.25);
}

.stat h2{
    font-size:55px;
    color:var(--accent);
    margin-bottom:10px;
}

.stat:hover h2{
    color:#fff;
}

.stat p{
    font-size:18px;
    color:#ddd;
}

/*======================
SERVICES
======================*/

.services{
    background:#08111f;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.card{
    background:var(--bg-card);
    border:1px solid var(--border);
    border-radius:25px;
    padding:45px 35px;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.card::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:220px;
    height:220px;
    background:#0066ff;
    opacity:.08;
    border-radius:50%;
    transition:.5s;
}

.card:hover::before{
    transform:scale(1.5);
}

.card:hover{
    transform:translateY(-12px);
    border-color:#00bfff;
    box-shadow:0 25px 50px rgba(0,191,255,.18);
}

.card i{
    font-size:55px;
    color:#00bfff;
    margin-bottom:25px;
}

.card h3{
    font-size:28px;
    margin-bottom:15px;
}

.card p{
    color:#d6d6d6;
    font-size:16px;
}

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

.why-us{
    background:#0b1728;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:35px;
}

.why-grid div{
    background:rgba(255,255,255,.03);
    padding:40px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.05);
    transition:.4s;
}

.why-grid div:hover{
    transform:translateY(-10px);
    border-color:#00bfff;
}

.why-grid h3{
    margin-bottom:15px;
    color:#00bfff;
    font-size:25px;
}

.why-grid p{
    color:#d7d7d7;
}

/*======================
CALL TO ACTION
======================*/

.cta{
    text-align:center;
    background:linear-gradient(135deg,#0055ff,#00bfff);
}

.cta h2{
    color:#fff;
    font-size:48px;
    margin-bottom:20px;
}

.cta p{
    color:#fff;
    font-size:20px;
    margin-bottom:40px;
}

.cta a{
    display:inline-block;
    background:#fff;
    color:#0066ff;
    padding:18px 40px;
    border-radius:50px;
    font-weight:700;
    transition:.4s;
}

.cta a:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(255,255,255,.25);
}

/*======================
CONTACT PREVIEW
======================*/

.contact-preview{
    background:#08111f;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

.contact-grid div{
    text-align:center;
    padding:45px 30px;
    border-radius:25px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.06);
    transition:.4s;
}

.contact-grid div:hover{
    transform:translateY(-10px);
    border-color:#00bfff;
}

.contact-grid i{
    font-size:50px;
    color:#00bfff;
    margin-bottom:20px;
}

.contact-grid h3{
    margin-bottom:10px;
    font-size:24px;
}

.contact-grid p{
    color:#d8d8d8;
}

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

footer{
    background:#050b15;
    padding:70px 8% 30px;
}

.footer-content{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
    margin-bottom:40px;
}

.footer-content h3{
    margin-bottom:20px;
    color:#00bfff;
}

.footer-content p{
    color:#cfcfcf;
}

.footer-content a{
    display:block;
    margin-bottom:12px;
    color:#d7d7d7;
    transition:.3s;
}

.footer-content a:hover{
    color:#00bfff;
    padding-left:8px;
}

.footer-content .fab{
    font-size:24px;
    margin-right:15px;
}

.copyright{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:25px;
    color:#999;
}

/*======================
WHATSAPP BUTTON
======================*/

.whatsapp{
    position:fixed;
    right:30px;
    bottom:30px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    box-shadow:0 15px 35px rgba(0,0,0,.3);
    z-index:999;
    transition:.4s;
}

.whatsapp:hover{
    transform:scale(1.1);
}

/*======================
UTILITY
======================*/

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
}

.text-center{
    text-align:center;
}

.mt-1{margin-top:20px;}
.mt-2{margin-top:40px;}
.mt-3{margin-top:60px;}
.mb-1{margin-bottom:20px;}
.mb-2{margin-bottom:40px;}
.mb-3{margin-bottom:60px;}

/*==================================
JAVASCRIPT ANIMATIONS
==================================*/

.card,
.stat,
.why-grid div,
.contact-grid div{

    opacity:0;

    transform:translateY(60px);

    transition:.8s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}

.active-link{

    color:#00bfff !important;

}

.pulse{

    animation:pulse 1s;

}

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.15);

}

100%{

transform:scale(1);

}

}

#topButton{

position:fixed;

bottom:110px;

right:35px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#0066ff;

color:#fff;

font-size:22px;

cursor:pointer;

display:none;

z-index:999;

transition:.3s;

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

}

#topButton:hover{

background:#00bfff;

transform:translateY(-5px);

}
@media(max-width:1100px){


.navbar{

    padding:18px 5%;

}


.nav-links{

    position:absolute;

    top:96px;

    left:0;

    width:100%;

    z-index:9999;
}


.nav-links.active{

    transform:translateY(0);

}


.quote-btn{

    display:none;

}


.hamburger{

    display:flex;

}



.logo span{

    font-size:22px;

}



}
@media(max-width:768px){


.nav-links{

    position:absolute;

    top:80px;

    left:0;

    width:100%;

    background:#08111f;

    flex-direction:column;

    text-align:center;

    padding:30px 0;

    transform:translateY(-150%);

    transition:.4s ease;

}


.nav-links.active{

    transform:translateY(0);

}



.hamburger{

    display:flex;

    flex-direction:column;

    gap:6px;

    cursor:pointer;

}



.hamburger span{

    width:28px;

    height:3px;

    background:white;

    border-radius:10px;

}



}