* {
    margin: 0;
    padding: 0;
    font-family: 'Arial', 'Hiragino Sans', sans-serif;
}

body {
    overflow-x: hidden;
    background: #e8f4f8;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    color: #2c3e50;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 22px;
    word-wrap: break-word;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    height: 70px;
    background: #2c3e50;
}

.navbar {
    margin: 0;
    border: none;
}

.navbar-inverse {
    background: transparent;
    border: none;
}

.navbar-brand {
    display: none;
}

.navbar-toggle {
    margin-top: 18px;
    border-color: #fff;
}

.navbar-toggle .icon-bar {
    background: #fff;
}

.navbar-collapse {
    text-align: center;
}

.navbar-nav {
    float: none;
    display: inline-block;
}

.navbar-nav>li {
    float: left;
}

.navbar-nav>li>a {
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    line-height: 70px;
    height: 70px;
    padding: 0 22px;
    transition: all 0.3s;
}

.navbar-nav>li>a:hover {
    background: rgba(255,255,255,0.1);
}

.baner-content {
    width: 100%;
    padding: 110px 40px 60px;
    margin-top: 70px;
}

.image-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.image-mosaic .img-item {
    width: 100%;
    height: 300px;
    background: url(../img/banner_bg.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.image-mosaic .img-item:nth-child(1) {
    grid-column: span 20;
}

.image-mosaic .img-item:nth-child(4) {
    grid-column: span 2;
}

.baner-content .text-content {
    text-align: center;
}

.baner-content .text-content h2 {
    font-size: 44px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

#portfolio {
    padding: 60px 40px 100px;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.content-wrapper .container {
    max-width: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

.inner-container {
    max-width: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

.inner-container .row {
    display: flex;
    gap: 35px;
    margin: 0;
}

.inner-container .col-md-4 {
    width: 280px;
    flex-shrink: 0;
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.inner-container .col-md-8 {
    flex: 1;
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.section-heading h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.line-dec {
    width: 40px;
    height: 3px;
    background: #3498db;
    margin-bottom: 20px;
}

.filter-categories ul li {
    margin-bottom: 10px;
}

.filter-categories ul li a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: block;
    padding: 10px 15px;
    background: #e8f4f8;
    border-radius: 8px;
    transition: all 0.3s;
}

.filter-categories ul li a:hover {
    background: #3498db;
    color: #fff;
}

.projects-holder-3 h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.projects-holder-3 p {
    font-size: 16px;
    line-height: 30px;
    color: #2c3e50;
}

.projects-holder-3 img {
    display: none;
}

footer {
    background: #2c3e50;
    padding: 60px 40px;
}

footer .logo a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    display: block;
    text-align: center;
    margin-bottom: 15px;
}

footer p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    text-align: center;
    margin: 0;
}

@media (max-width: 991px) {
    .image-mosaic {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .inner-container .row {
        flex-direction: column;
    }
    
    .inner-container .col-md-4 {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .navbar-nav>li>a {
        line-height: normal;
        height: auto;
        padding: 15px 20px;
    }
    
    .navbar-collapse {
        background: #2c3e50;
    }
    
    .baner-content {
        padding: 100px 30px 50px;
    }
    
    .image-mosaic {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .image-mosaic .img-item,
    .image-mosaic .img-item:nth-child(1),
    .image-mosaic .img-item:nth-child(4) {
        grid-column: span 1;
        height: 120px;
    }
    
    .baner-content .text-content h2 {
        font-size: 32px;
    }
}
