/* ==========================================
   CV. Cakra Bismaka Maheswara
   Version 1.0
========================================== */

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

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    background:#f7f9fc;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#ffffff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    z-index:999;
}

.navbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:700;
    color:#0077cc;
}

.logo img{
    height:48px;
}

nav{
    display:flex;
    gap:25px;
}

nav a{
    color:#333;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#0096db;
}

.btn-nav{
    background:#0096db;
    color:white;
    padding:12px 20px;
    border-radius:8px;
    transition:.3s;
}

.btn-nav:hover{
    background:#0072b1;
}

/* HERO */

.hero{
    padding:150px 0 90px;
    background:linear-gradient(135deg,#0096db,#00c4b3);
    color:white;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:48px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-text p{
    font-size:18px;
    margin-bottom:30px;
}

.hero-button{
    display:flex;
    gap:15px;
}

.btn-primary{
    background:white;
    color:#0096db;
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
}

.btn-secondary{
    border:2px solid white;
    color:white;
    padding:14px 28px;
    border-radius:8px;
}

.hero-image{
    flex:1;
}
/* ===========================
   SECTION
=========================== */

section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:36px;
    color:#0f172a;
    margin-bottom:10px;
}

.section-title p{
    color:#64748b;
    font-size:17px;
}

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

.about{
    background:#ffffff;
}

.about-content{
    display:flex;
    gap:50px;
    align-items:center;
}

.about-text{
    flex:1;
}

.about-text h2{
    font-size:36px;
    margin-bottom:20px;
}

.about-text p{
    color:#555;
    margin-bottom:15px;
}

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

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

.card{
    background:#fff;
    border-radius:15px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    text-align:center;
}

.card:hover{
    transform:translateY(-8px);
}

.card i{
    font-size:45px;
    color:#0096db;
    margin-bottom:20px;
}

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

.card p{
    color:#666;
}

/* ===========================
   BRANDS
=========================== */

.brands{
    background:#f8fafc;
}

.brand-list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
    gap:20px;
}

.brand-item{
    background:#fff;
    padding:20px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
    font-weight:600;
}

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

.cta{
    background:linear-gradient(135deg,#0096db,#00b894);
    color:#fff;
    text-align:center;
    border-radius:20px;
    padding:70px 30px;
}

.cta h2{
    font-size:38px;
    margin-bottom:15px;
}

.cta p{
    font-size:18px;
    margin-bottom:30px;
}

.cta .btn-primary{
    background:#fff;
    color:#0096db;
}
/* ===========================
   FOOTER
=========================== */

footer{
    background:#0f172a;
    color:#ffffff;
    padding:60px 0 30px;
}

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

.footer-grid h3,
.footer-grid h4{
    margin-bottom:20px;
}

.footer-grid p,
.footer-grid li{
    color:#cbd5e1;
    line-height:1.8;
}

.footer-grid ul{
    list-style:none;
}

.footer-grid a{
    color:#cbd5e1;
    transition:.3s;
}

.footer-grid a:hover{
    color:#38bdf8;
}

.footer-bottom{
    margin-top:40px;
    border-top:1px solid rgba(255,255,255,.15);
    padding-top:20px;
    text-align:center;
    color:#94a3b8;
    font-size:14px;
}

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

.btn-primary,
.btn-secondary,
.btn-nav{
    transition:all .3s ease;
}

.btn-primary:hover,
.btn-nav:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,150,219,.35);
}

.btn-secondary:hover{
    background:#ffffff;
    color:#0096db;
}

/* ===========================
   ANIMATION
=========================== */

.card,
.brand-item{
    transition:all .35s ease;
}

.brand-item:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,0,0,.12);
}

.card:hover{
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

/* ===========================
   WHATSAPP FLOAT
=========================== */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    z-index:9999;
    transition:.3s;
}

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

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

@media(max-width:992px){

.hero-content,
.about-content{
    flex-direction:column;
    text-align:center;
}

.hero-text h1{
    font-size:38px;
}

.footer-grid{
    grid-template-columns:1fr;
}
