/*******************************/
/********* General CSS *********/
/*******************************/
:root {
    --primary: #1a3e6f;        /* Deep navy blue from De Simone */
    --secondary: #9F9393;       /* Gold accent */
    --dark: #0a1a2f;            /* Darker navy */
    --light: #f5f7fa;           /* Light gray background */
    --gray: #5a6a7a;            /* Medium gray */
    --white: #ffffff;
    --border: #e0e4e9;          /* Light border */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: var(--gray);
    background: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

a {
    color: var(--primary);
    transition: var(--transition);
    text-decoration: none;
}

a:hover {
    color: var(--secondary);
    text-decoration: none;
}

.btn {
    padding: 12px 30px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-gold {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-gold:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--white);
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
}

.back-to-top {
    position: fixed;
    display: none;
    background: var(--primary);
    color: var(--white);
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    font-size: 20px;
    right: 20px;
    bottom: 20px;
    transition: var(--transition);
    z-index: 9;
    opacity: 0.9;
}

.back-to-top:hover {
    background: var(--secondary);
    color: var(--white);
    opacity: 1;
}

/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    background: var(--primary);
    border-bottom: 1px solid var(--border);
    color: var(--white);
    padding: 15px 0;
}

.top-bar .logo h1 {
    color: var(--primary);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin: 0;
}

.top-bar .logo span {
    color: var(--secondary);
    font-weight: 300;
    font-size: 24px;
}

.top-bar .top-bar-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .top-bar-icon {
    width: 40px;
    color: var(--secondary);
    font-size: 20px;
}

.top-bar .top-bar-text {
    padding-left: 10px;
}

.top-bar .top-bar-text h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 3px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-bar .top-bar-text p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    font-weight: 400;
}


/*******************************/
/******* Hero Slider CSS *******/
/*******************************/
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.slide-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.slide-content {
    max-width: 800px;
    color: var(--white);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-radius: 3px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.slide-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.slide-title {
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.slide-description {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.slide-buttons .btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.slide-buttons .btn-primary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.slide-buttons .btn-primary:hover {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.slide-buttons .btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.slide-buttons .btn-outline-light:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-next {
    right: 30px;
}

.swiper-button-prev {
    left: 30px;
}

/* Pagination */
.swiper-pagination {
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.5;
    margin: 0 5px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary);
    transform: scale(1.2);
}

/* Thumbnail Slider */
.thumbnail-slider-wrapper {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 400px;
    z-index: 10;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    border-radius: 5px;
    padding: 10px;
}

.thumbnail-swiper {
    width: 100%;
    height: 80px;
}

.thumbnail-item {
    width: 100%;
    height: 100%;
    background: rgba(26, 62, 111, 0.8);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    text-align: center;
    border-radius: 3px;
}

.thumbnail-item:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.thumbnail-item.active {
    border-color: var(--secondary);
    background: var(--secondary);
    box-shadow: 0 5px 15px rgba(196, 154, 43, 0.3);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    z-index: 20;
}

.progress-bar {
    height: 100%;
    background: var(--secondary);
    width: 0%;
    transition: width linear;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .slide-title {
        font-size: 48px;
    }
    
    .thumbnail-slider-wrapper {
        width: 350px;
    }
}

@media (max-width: 992px) {
    .hero-slider {
        min-height: 600px;
    }
    
    .slide-title {
        font-size: 42px;
    }
    
    .slide-subtitle {
        font-size: 16px;
    }
    
    .thumbnail-slider-wrapper {
        width: 300px;
        bottom: 20px;
        right: 20px;
    }
    
    .thumbnail-item {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 500px;
    }
    
    .slide-title {
        font-size: 32px;
    }
    
    .slide-subtitle {
        font-size: 14px;
    }
    
    .slide-description {
        font-size: 16px;
    }
    
    .slide-buttons .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    
    .thumbnail-slider-wrapper {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        min-height: 450px;
    }
    
    .slide-title {
        font-size: 26px;
    }
    
    .project-badge {
        font-size: 12px;
        padding: 5px 12px;
        margin-bottom: 15px;
    }
    
    .slide-subtitle {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .slide-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .slide-buttons .btn {
        width: 100%;
        text-align: center;
    }
}
/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
    background: var(--white);
    border-bottom: 3px solid var(--secondary);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-bar .navbar {
    padding: 0;
}

.navbar-nav .nav-link {
    color: var(--primary) !important;
    padding: 20px 18px !important;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary) !important;
    border-bottom-color: var(--secondary);
}

.nav-bar .btn-gold {
    padding: 12px 25px;
    margin-left: 15px;
    font-size: 13px;
    font-weight: 700;
}

/*******************************/
/******** Hero Carousel ********/
/*******************************/
.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(rgba(26, 62, 111, 0.8), rgba(10, 26, 47, 0.9)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    color: var(--white);
    max-width: 700px;
}

.hero-content h6 {
    color: var(--secondary);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    margin-bottom: 50px;
}

.section-header .subtitle {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: block;
}

.section-header h2 {
    font-size: 38px;
    color: var(--primary);
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
}

.section-header.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--gray);
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
}

/*******************************/
/******** About Section ********/
/*******************************/
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-content h5 {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.stat-item h3 {
    font-size: 42px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.about-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/*******************************/
/******* Stats Section *********/
/*******************************/
.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    padding: 60px 0;
    color: var(--white);
}

.stats-section .stat-item {
    text-align: center;
}

.stats-section .stat-item h3 {
    color: var(--secondary);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stats-section .stat-item p {
    color: var(--white);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/*******************************/
/****** Companies Section ******/
/*******************************/
.companies-section {
    padding: 80px 0;
    background: var(--light);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.company-card {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 62, 111, 0.1);
    border-color: var(--secondary);
}

.company-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 32px;
    transition: var(--transition);
}

.company-card:hover .company-icon {
    background: var(--secondary);
    color: var(--white);
}

.company-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary);
}

.company-card p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

/*******************************/
/******* Projects Section ******/
/*******************************/
.projects-section {
    padding: 80px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.project-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.project-img {
    position: relative;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--primary), transparent);
    padding: 25px;
    color: var(--white);
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    bottom: 0;
}

.project-overlay h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 10px;
}

.project-overlay p {
    font-size: 13px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.project-overlay .btn-link {
    color: var(--secondary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0;
}

/*******************************/
/****** Map/Footprint Section **/
/*******************************/
.footprint-section {
    padding: 80px 0;
    background: linear-gradient(rgba(26, 62, 111, 0.95), rgba(10, 26, 47, 0.95)), url('../img/map-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: var(--white);
}

.footprint-section .section-header h2,
.footprint-section .section-header p {
    color: var(--white);
}

.footprint-section .section-header h2:after {
    background: var(--secondary);
}

.footprint-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.footprint-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.footprint-item:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--secondary);
}

.footprint-item h4 {
    color: var(--secondary);
    font-size: 20px;
    margin-bottom: 15px;
}

.footprint-item p {
    color: var(--white);
    opacity: 0.9;
    font-size: 14px;
    margin: 0;
}

.country-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.country-list li {
    color: var(--white);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.country-list li:before {
    content: "•";
    color: var(--secondary);
    font-size: 18px;
    margin-right: 8px;
}

/*******************************/
/****** Filter/Search Bar ******/
/*******************************/
.filter-section {
    background: var(--light);
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.filter-form {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 1.5fr auto;
    gap: 15px;
    align-items: end;
}

.filter-group label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 5px;
    display: block;
    letter-spacing: 0.5px;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 14px;
    color: var(--gray);
    border-radius: 0;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: var(--secondary);
}

.filter-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    height: 46px;
}

.filter-btn:hover {
    background: var(--secondary);
}

/*******************************/
/******* Projects List *********/
/*******************************/
.projects-list-section {
    padding: 60px 0;
}

.project-list-item {
    display: flex;
    align-items: center;
    padding: 25px;
    border: 1px solid var(--border);
    margin-bottom: 15px;
    transition: var(--transition);
    background: var(--white);
}

.project-list-item:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 25px rgba(26, 62, 111, 0.08);
}

.project-list-img {
    width: 120px;
    height: 80px;
    margin-right: 25px;
}

.project-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-list-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary);
}

.project-list-info a {
    color: var(--secondary);
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
}

.project-list-info a:hover {
    color: var(--primary);
}

/*******************************/
/********** Footer CSS *********/
/*******************************/
.footer {
    background: var(--dark);
    color: #a0b0c0;
    padding: 60px 0 0;
    border-top: 5px solid var(--secondary);
}

.footer h2 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0b0c0;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-contact {
    margin-bottom: 25px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-contact i {
    color: var(--secondary);
    margin-right: 15px;
    font-size: 16px;
    margin-top: 3px;
    min-width: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    color: var(--white);
    border-radius: 0;
    transition: var(--transition);
    font-size: 16px;
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 50px;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #7a8a9a;
}

.footer-bottom a {
    color: var(--secondary);
    font-weight: 600;
}

/*******************************/
/******* Responsive CSS ********/
/*******************************/
@media (max-width: 1200px) {
    .companies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filter-form {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 42px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .navbar-nav .nav-link {
        padding: 15px !important;
    }
    
    .footprint-grid {
        grid-template-columns: 1fr;
    }
    
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .about-buttons {
        flex-direction: column;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .projects-grid,
    .companies-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-form {
        grid-template-columns: 1fr;
    }
    
    .project-list-item {
        flex-direction: column;
        text-align: center;
    }
    
    .project-list-img {
        margin: 0 0 15px 0;
    }
}