/* =========================
   GLOBAL
========================= */

body{
    font-family:'Open Sans', sans-serif;
    background:linear-gradient(to bottom,#f8fafc,#eef2f7);
    color:#1f2937;
    line-height:1.7;
    font-size:16px;
    margin:0;
    padding:0;
}

/* =========================
   LAYOUT
========================= */

.container{
    width:95%;
    max-width:1400px;
}

/* =========================
   HEADER
========================= */

.header{
    background:#ffffff;
    box-shadow:0 2px 12px rgba(0,0,0,0.06);
    position:sticky;
    top:0;
    z-index:999;
}

.navbar{
    margin-bottom:0;
    border:none;
    background:white;
}

.header_inner{
    padding:10px 0;
}

/* =========================
   LOGO
========================= */

#logo img{
    max-height:72px;
    width:auto;
}

/* =========================
   MENU
========================= */

.navbar-default .navbar-nav > li > a{
    color:#1f2937 !important;
    font-weight:600;
    font-size:15px;
    padding:20px 16px;
    transition:0.25s ease;
}

.navbar-default .navbar-nav > li > a:hover{
    color:#2563eb !important;
}

/* ACTIVE MENU */

.navbar-default .navbar-nav > .active > a{
    background:none !important;
    color:#2563eb !important;
}

/* =========================
   DROPDOWN
========================= */

.dropdown-menu{
    border:none;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,0.10);
    padding:10px 0;
}

.dropdown-menu li a{
    padding:12px 22px;
    font-size:14px;
}

/* =========================
   TOPBAR
========================= */

.topbar{
    background:#111827;
    color:white;
    padding:8px 0;
}

.topbar a{
    color:white;
}

/* =========================
   CONTENT
========================= */

.content,
.main-content,
.page-content{
    background:white;
    border-radius:18px;
    padding:50px;
    box-shadow:0 4px 18px rgba(0,0,0,0.06);
    margin-top:30px;
    margin-bottom:30px;
}

/* =========================
   MAIN TEXT
========================= */

.main-content p,
.content p,
.page-content p{
    text-align:left;
    color:#374151;
}

/* =========================
   IMAGES
========================= */

img{
    max-width:100%;
    height:auto;
    border-radius:18px;
}

.main-content img:first-child,
.content img:first-child{
    box-shadow:0 8px 30px rgba(0,0,0,0.08);
}

/* =========================
   SIDEBAR
========================= */

.sidebar_item{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:24px;
    margin-bottom:28px;
    box-shadow:0 4px 14px rgba(0,0,0,0.05);
    transition:0.25s ease;
}

.sidebar_item:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 24px rgba(0,0,0,0.08);
}

/* SIDEBAR CONTENT */

.item_inner{
    line-height:1.7;
}

.item_inner h3{
    font-size:20px;
    margin-bottom:18px;
    border-bottom:1px solid #eee;
    padding-bottom:12px;
    color:#111827;
    font-weight:700;
}

.item_inner p{
    margin-bottom:12px;
}

.item_inner ul{
    padding-left:18px;
}

.item_inner li{
    margin-bottom:8px;
}

.item_inner a{
    color:#2563eb;
    text-decoration:none;
    transition:0.2s ease;
}

.item_inner a:hover{
    color:#0f172a;
}

/* =========================
   SIDEBAR COLUMN SPACING
========================= */

.col-md-4,
.col-lg-4{
    padding-left:30px;
}

/* =========================
   TYPOGRAPHY
========================= */

h1,h2,h3,h4{
    font-family:'Roboto Slab', serif;
    color:#111827;
    line-height:1.3;
}

h1{
    font-size:42px;
    margin-top:30px;
    margin-bottom:35px;
    text-align:center;
}

h2{
    font-size:32px;
    margin-bottom:24px;
}

h3{
    font-size:24px;
    margin-bottom:18px;
}

p{
    margin-bottom:18px;
}

/* =========================
   LINKS
========================= */

a{
    transition:0.2s ease;
}

a:hover{
    text-decoration:none;
}

/* =========================
   BUTTONS
========================= */

.btn,
.commonBtn{
    border-radius:10px;
    padding:10px 18px;
    font-weight:600;
    border:none;
    transition:0.2s ease;
}

.btn:hover,
.commonBtn:hover{
    transform:translateY(-1px);
}

/* =========================
   TABLES
========================= */

table{
    width:100%;
    border-collapse:collapse;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .col-md-4,
    .col-lg-4{
        padding-left:15px;
    }

}

@media(max-width:768px){

    .navbar-default .navbar-nav > li > a{
        padding:12px 16px;
    }

    h1{
        font-size:30px;
    }

    h2{
        font-size:26px;
    }

    h3{
        font-size:22px;
    }

    .content,
    .main-content,
    .page-content{
        padding:24px;
    }

    #logo img{
        max-height:55px;
    }

    .sidebar_item{
        padding:18px;
    }

}

.sidebar_item{
    background:#ffffff !important;
}

.item_inner{
    background:#ffffff !important;
}

.item_inner div{
    background:#ffffff !important;
}