/* ==========================================================
   SIGMAKOMPUTER V2
   Main Stylesheet
   Version : 1.0
   ========================================================== */

/* ==========================================================
   RESET
   ========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Segoe UI,Tahoma,Arial,sans-serif;
    font-size:16px;
    line-height:1.6;
    color:#4B5563;
    background:#FFFFFF;
}

/* ==========================================================
   LINKS
   ========================================================== */

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

/* ==========================================================
   CONTAINER
   ========================================================== */

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* ==========================================================
   TYPOGRAPHY
   ========================================================== */

h1,h2,h3,h4,h5,h6{
    color:#1F2937;
    font-weight:700;
    line-height:1.3;
}

h1{
    font-size:48px;
}

h2{
    font-size:36px;
}

h3{
    font-size:28px;
}

p{
    margin-bottom:15px;
}

/* ==========================================================
   BUTTON
   ========================================================== */

.btn{
    display:inline-block;
    padding:12px 28px;
    border-radius:8px;
    transition:.25s;
    font-weight:600;
    cursor:pointer;
}

.btn-primary{
    background:#0A4D8C;
    color:#FFFFFF;
}

.btn-primary:hover{
    background:#083C6D;
}

.btn-outline{
    border:2px solid #0A4D8C;
    color:#0A4D8C;
}

.btn-outline:hover{
    background:#0A4D8C;
    color:#FFFFFF;
}

/* ==========================================================
   HEADER
   ========================================================== */

header{
    background:#FFFFFF;
    border-bottom:1px solid #E5E7EB;
}


.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:80px;

}

.logo a{

    font-size:30px;

    font-weight:700;

    color:#1F2937;

}

.logo span{

    color:#0A4D8C;

}

.menu{

    display:flex;

    list-style:none;

    gap:35px;

}

.menu a{

    font-weight:600;

    transition:.25s;

}

.menu a:hover{

    color:#0A4D8C;

}

/* ==========================================================
   HERO
   ========================================================== */

.hero{
    padding:100px 0;
    background:#F5F7FA;
}

.hero h1{
    margin-bottom:20px;
}

.hero p{
    max-width:700px;
    font-size:18px;
    margin-bottom:35px;
}

.hero-button{
    display:flex;
    gap:15px;
}


/* ==========================================================
   SECTION
   ========================================================== */

section{
    padding:80px 0;
}

/* ==========================================================
   CARD
   ========================================================== */

.card{
    background:#FFFFFF;
    border:1px solid #E5E7EB;
    border-radius:8px;
    transition:.25s;
}

.card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* ==========================================================
   FOOTER
   ========================================================== */

footer{

    background:#1F2937;
    color:#FFFFFF;
    text-align:center;
    padding:30px 0;

}


/* ==========================================================
   UTILITIES
   ========================================================== */

.text-center{
    text-align:center;
}

.text-left{
    text-align:left;
}

.text-right{
    text-align:right;
}

.mt-20{
    margin-top:20px;
}

.mt-40{
    margin-top:40px;
}

.mb-20{
    margin-bottom:20px;
}

.mb-40{
    margin-bottom:40px;
}