/* =========================================================
   SOLIDFRAME ENTERPRISE STYLESHEET
   ========================================================= */

/* RESET */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 15px;
    color: #222;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

section {
    padding: 60px 0;
}

/* GRID */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.col-md-6 { width: 50%; }
.col-md-4 { width: 33.33%; }

@media(max-width: 768px){
    .col-md-6,
    .col-md-4 {
        width: 100%;
    }
}

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */
.container-menu-top {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.port-menu {
    padding: 15px 0;
}

.logo-container img {
    height: 50px;
}

.menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-menu,
.main-menu-right {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-menu li {
    position: relative;
}

.main-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 10px;
    display: block;
    transition: 0.3s;
}

.main-menu li a:hover,
.main-menu li.current-menu-item a {
    color: #0073aa;
}

/* UNDERLINE EFFECT */
.main-menu li a::after {
    content: '';
    display: block;
    height: 2px;
    background: #0073aa;
    width: 0;
    transition: width 0.3s;
}

.main-menu li a:hover::after {
    width: 100%;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-banner {
    position: relative;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    display: block;
}

.hero-slider {
    position: absolute;
    top: 30%;
    left: 10%;
    color: #fff;
    animation: fadeUp 1s ease;
}

.txt-title {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.txt-west {
    font-size: 48px;
    font-weight: bold;
    line-height: 55px;
}

/* HERO ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.button {
    display: inline-block;
    padding: 12px 25px;
    margin-top: 15px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: #000;
}

.btn-white:hover {
    background: #000;
    color: #fff;
}

.btn-blue {
    background: #0073aa;
    color: #fff;
}

.btn-blue:hover {
    background: #005f8d;
}

/* BUTTON EFFECT */
.button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    background: rgba(0,0,0,0.1);
    left: 0;
    top: 0;
    transition: height 0.3s;
}

.button:hover::after {
    height: 100%;
}

/* =========================================================
   CONTENT
   ========================================================= */
.container-block {
    padding: 80px 0;
}

.block-content1,
.block-content2 {
    margin-bottom: 50px;
}

.left-block {
    padding: 20px;
}

.txt-block p {
    margin-bottom: 15px;
}

/* IMAGE EFFECT */
.img-block img {
    width: 100%;
    border-radius: 5px;
    transition: transform 0.5s ease;
}

.img-block:hover img {
    transform: scale(1.05);
}

/* =========================================================
   WORDPRESS CONTENT
   ========================================================= */
.wp-content {
    margin-top: 40px;
}

.wp-content h2 {
    margin-bottom: 15px;
}

/* =========================================================
   SCROLL BUTTON
   ========================================================= */
.btn-scroll-up {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.btn-top {
    background: #0073aa;
    color: #fff;
    padding: 12px;
    border-radius: 50%;
}

.btn-top:hover {
    background: #000;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: #111;
    color: #fff;
}

.footer-top {
    padding: 50px 0;
}

.footer .column {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer .colum-element {
    min-width: 200px;
}

.footer .colum-element ul {
    list-style: none;
}

.footer .title {
    font-weight: bold;
    margin-bottom: 10px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 15px;
    text-align: center;
}

/* =========================================================
   SOCIAL ICONS
   ========================================================= */
.link-social a {
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
}

/* =========================================================
   MOBILE
   ========================================================= */
.show-menu {
    display: none;
}

@media(max-width: 768px){

    .show-menu {
        display: block;
    }

    .menu-container {
        display: none;
        flex-direction: column;
        background: #fff;
        padding: 15px;
        border-top: 1px solid #eee;
    }

    .main-menu {
        flex-direction: column;
        gap: 10px;
    }

    .hero-slider {
        top: 20%;
        left: 5%;
    }

    .txt-west {
        font-size: 28px;
        line-height: 36px;
    }

    .hidden-xs {
        display: none;
    }
}

/* =========================================================
   UTILITIES
   ========================================================= */
.text-center {
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
}