.gallery-item {
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item.hidden {
    display: none;
}

.item-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .item-image img {
    transform: scale(1.1);
}


.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(102, 126, 234, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

.overlay-content {
    color: #fff;
    text-align: center;
}

.view-project {
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 2px solid #fff;
    border-radius: 30px;
    transition: all 0.3s ease;
    background: rgba(118, 75, 162, 0.8);
    color: #fff;
}

.view-project:hover {
    background-color: #fff;
    color: #667eea;
}

.item-details {
    padding: 1.5rem;
    background-color: #fff;
}

.item-category {
    display: inline-block;
    background-color: #667eea;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.load-more {
    text-align: center;
    margin-top: 3rem;
}

.project-showcase {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.showcase-slider {
    max-width: 1000px;
    margin: 0 auto;
}

.showcase-slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: none;
}

.showcase-slide.active {
    display: grid;
}

.showcase-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.showcase-content h3 {
    margin-bottom: 0.5rem;
}

.showcase-category {
    display: inline-block;
    background-color: #667eea;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.showcase-description {
    margin-bottom: 2rem;
}

.showcase-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.result-item {
    text-align: center;
}

.result-number {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    display: block;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.9rem;
    color: #888;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-details h2 {
    margin-bottom: 1.5rem;
}

.footer-contact-items {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.25rem;
    color: #fff;
}

.info-content h3 {
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #444;
    margin-bottom: 0;
}

.business-hours {
    margin-bottom: 2rem;
}

.social-connect h3 {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #667eea;
    color: #fff;
    margin-right: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    background-color: #764ba2;
    color: #fff;
}

.contact-form-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.form-success {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon i {
    font-size: 2rem;
    color: #fff;
}

.form-errors {
    background-color: #ffeaea;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.form-errors ul {
    padding-left: 1.5rem;
}

.form-errors ul li {
    color: #c0392b;
    margin-bottom: 0.5rem;
}

.map-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    height: 450px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-faq {
    padding: 5rem 0;
}

.contact-faq h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.site-footer {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 5rem 0 2rem;
}

.site-footer h3, .site-footer h4 {
    color: white;
}

.site-footer a {
    color: #d9d9d9;
    font-weight: bold;
}

.footer-section a,
.footer-section li,
.footer-section p {
    color: #d9d9d9;
}

.footer-section a {
    font-weight: bold;
}

.site-footer a:hover {
    color: #667eea;
    transition: color 0.3s ease;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.footer-about {
    grid-column: span 2;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    max-height: 50px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-nav h4::after,
.footer-contact h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #667eea;
}

.footer-nav ul li {
    margin-bottom: 0.75rem;
}

.footer-nav ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #667eea;
}

.footer-contact address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact address p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact address p i {
    margin-right: 0.75rem;
    color: #667eea;
}

.footer-social .social-icons {
    margin-top: 1rem;
}

.footer-social .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.footer-social .social-icons a:hover {
    background-color: #667eea;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.p-0 {
    padding: 0;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

.p-3 {
    padding: 3rem;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-dark {
    background-color: #222;
    color: #fff;
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #eafaf1;
    color: #27ae60;
}

.alert-error {
    background-color: #ffeaea;
    color: #c0392b;
}

.alert-info {
    background-color: #eaf6fb;
    color: #2980b9;
}

.alert-warning {
    background-color: #fff8e1;
    color: #f39c12;
}

@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }

    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 14px;
    }

    .container {
        max-width: 720px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 13px;
    }

    .container {
        max-width: 540px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .filter-controls {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 12px;
    }

    .container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}
