/* ==========================================
   PT OPTIMA MITRA ANDALAN
   Company Profile Theme
========================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    --primary:#1E5FA8;
    --primary-dark:#15467A;
    --primary-light:#EEF6FF;

    --secondary:#F58220;
    --secondary-dark:#E86B00;

    --text:#374151;
    --heading:#1F2937;

    --bg:#FAFBFC;
    --white:#FFFFFF;

}

/* ========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.7;

}

a{

    text-decoration:none;
    transition:.3s;

}

img{

    max-width:100%;

}

/* ==========================================
   NAVBAR
========================================== */

.navbar{

    background:#fff !important;

    box-shadow:
    0 2px 12px rgba(0,0,0,.05);

    padding:15px 0;

}

.navbar-brand{

    font-weight:700;
    color:var(--primary)!important;

}

.nav-link{

    color:var(--text)!important;
    font-weight:500;
    margin-left:15px;

}

.nav-link:hover{

    color:var(--secondary)!important;

}

/* ==========================================
   HERO
========================================== */

.hero{

    background:linear-gradient(
    135deg,
    #F8FBFF,
    #EAF4FF);

    padding:80px 20px;

}

.hero h1{

    color:var(--heading);

    font-size:44px;

    font-weight:700;

    margin-bottom:20px;

}

.hero p{

    font-size:18px;

    color:#556070;

    max-width:650px;

    margin-bottom:30px;

}

/* ==========================================
   BUTTON
========================================== */

.btn-primary{

    background:var(--secondary);

    border:none;

    border-radius:40px;

    padding:12px 30px;

    font-weight:600;

}

.btn-primary:hover{

    background:var(--secondary-dark);

    transform:translateY(-2px);

}

.btn-outline-primary{

    border:2px solid var(--primary);

    color:var(--primary);

    border-radius:40px;

    padding:12px 30px;

    font-weight:600;

}

.btn-outline-primary:hover{

    background:var(--primary);

    color:white;

}

/* ==========================================
   SECTION
========================================== */

section{

    padding:80px 0;

}

.section-title{

    font-size:34px;

    color:var(--heading);

    font-weight:700;

    margin-bottom:15px;

}

.section-subtitle{

    color:#64748B;

    margin-bottom:50px;

}

/* ==========================================
   CARD
========================================== */

.card{

    border:none;

    border-radius:18px;

    overflow:hidden;

    background:white;

    transition:.35s;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 45px rgba(30,95,168,.15);

}

.card-body{

    padding:30px;

}

.card h5{

    color:var(--primary);

    font-weight:600;

    margin-bottom:15px;

}

.card p{

    color:#64748B;

}

/* ==========================================
   ICON
========================================== */

.icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#EEF6FF;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    color:var(--primary);

    margin-bottom:20px;

}

/* ==========================================
   ABOUT
========================================== */

.about img{

    border-radius:20px;

}

/* ==========================================
   STATS
========================================== */

.stat{

    text-align:center;

    padding:25px;

}

.stat h2{

    color:var(--primary);

    font-size:42px;

    font-weight:700;

}

.stat p{

    color:#64748B;

}

/* ==========================================
   FOOTER
========================================== */

footer{

    background:var(--primary-dark);

    color:white;

    margin-top:80px;

    padding:60px 0 30px;

}

footer h4{

    margin-bottom:20px;

}

footer a{

    color:#DDEBFF;

}

footer a:hover{

    color:white;

}

footer hr{

    border-color:rgba(255,255,255,.2);

}

/* ==========================================
   IMAGE
========================================== */

.rounded-img{

    border-radius:20px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

.hero{

    text-align:center;
    padding:60px 20px;

}

.hero h1{

    font-size:34px;

}

.hero p{

    font-size:16px;

}

.section-title{

    font-size:28px;

}

}

@media(max-width:768px){

.nav-link{

    margin-left:0;

}

.hero{

    padding:50px 15px;

}

.hero h1{

    font-size:30px;

}

.hero p{

    font-size:15px;

}

.card{

    margin-bottom:20px;

}

}