/* ==================================================
   LKM WEB ENGINE V1
   Client : Bandar Multi Teknik
   Author : Arief Ihsan, S.A.P
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Segoe UI',sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;

}

/* ==========================================
NAVBAR
========================================== */

.navbar{

    background:#1b1b1b !important;
    height:70px;
    transition:.35s;
    box-shadow:0 5px 20px rgba(0,0,0,.15);

}

.navbar-brand{

    color:#fff;
    font-size:28px;
    font-weight:700;

}

.navbar-brand:hover{

    color:#ff7300;

}

.nav-link{

    color:#fff !important;
    margin-left:18px;
    transition:.3s;
    font-size:15px;

}

.nav-link:hover{

    color:#ff7300 !important;

}

/* ==========================================
HERO
========================================== */

.hero{

    min-height:calc(100vh - 70px);

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    padding-top:70px;

}

.hero-circle{

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:#ff7300;

    opacity:.08;

    right:-250px;

    top:-150px;

}

/* ==========================================
TEXT
========================================== */

.hero-subtitle{

    color:#ff7300;

    letter-spacing:6px;

    font-size:14px;

    font-weight:700;

    margin-bottom:18px;

}

.hero-title{

    font-size:72px;

    font-weight:800;

    line-height:1;

}

.hero-description{

    margin-top:25px;

    color:#666;

    font-size:18px;

    line-height:1.8;

    max-width:520px;

}

/* ==========================================
BUTTON
========================================== */

.hero-buttons{

    margin-top:35px;

    display:flex;

    align-items:center;

    gap:15px;

    flex-wrap:wrap;

}

.hero-buttons a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    min-width:190px;

    height:52px;

    font-weight:600;

    border-radius:50px;

}

.btn-orange{

    background:#ff7300;

    color:#fff;

    padding:14px 35px;

    border-radius:40px;

    text-decoration:none;

    transition:.3s;

    font-weight:600;

}

.btn-orange:hover{

    background:#e46200;

    color:#fff;

}

.btn-dark-custom{

    background:#1b1b1b;

    color:#fff;

    padding:14px 35px;

    border-radius:40px;

    text-decoration:none;

}

.btn-outline-custom{

    border:2px solid #1b1b1b;

    color:#1b1b1b;

    padding:14px 35px;

    border-radius:40px;

    text-decoration:none;

}

/* ==========================================
IMAGE
========================================== */

.hero-image{

    text-align:center;

}

.hero-image img{

    width:100%;

    max-width:560px;

    border-radius:20px;

    box-shadow:0 20px 60px rgba(0,0,0,.25);

}

/* ==========================================
FOOTER
========================================== */

footer{

    padding:18px;

    background:#1b1b1b;

    color:#bbb;

    text-align:center;

    font-size:14px;

}

footer a{

    color:#ff7300;

    text-decoration:none;

}

/* ==========================================
RESPONSIVE TABLET
========================================== */

@media(max-width:992px){

.hero{

padding-top:110px;

text-align:center;

}

.hero-title{

font-size:52px;

}

.hero-description{

margin:auto;
margin-top:25px;

}

.hero-buttons{

justify-content:center;

margin-bottom:40px;

}

.hero-image{

margin-top:40px;

}

}

/* ==========================================
RESPONSIVE MOBILE
========================================== */

@media(max-width:768px){

.hero{

min-height:auto;

padding-top:100px;

padding-bottom:40px;

}

.hero-title{

font-size:42px;

}

.hero-subtitle{

letter-spacing:4px;

font-size:12px;

}

.hero-description{

font-size:16px;

}

.hero-buttons{

display:flex;

flex-direction:column;

gap:12px;

width:100%;

}

.hero-buttons a{

width:100%;

}

.hero-buttons a{

width:100%;

text-align:center;

}

.hero-image img{

max-width:100%;

margin-top:30px;

}

.navbar-brand{

font-size:22px;

}

}
/* ==========================================
FOOTER
========================================== */

.footer{

    background:#1b1b1b;

    color:#ddd;

    padding:18px 0;

    margin-top:50px;

}

.footer-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:15px;

}

.footer a{

    color:#ff7300;

    text-decoration:none;

    font-weight:600;

}

.footer a:hover{

    color:#fff;

}