.imagesInSection img {
    height: 400px !important;
    width: 100%;
    object-fit: cover;
}

.footer-bg {
    background-color: #f8f9fa;
    padding-top: 4rem;
    padding-bottom: 2rem;
    color: #343a40;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer-brand {
    text-align: center;
}

.brand-name {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #212529;
}

.brand-tagline {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-social-icons .social-icon {
    color: #6c757d;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-social-icons .social-icon:hover {
    color: #000;
    transform: scale(1.1);
}

.footer-section-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #212529;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #444444;
}

.contact-details,
.hours-details {
    text-align: center;
}

.contact-item,
.hours-item {
    margin-bottom: 1rem;
}

.contact-item h6,
.footer-hours h6 {
    color: #495057;
    margin-bottom: 0.5rem;
}

.hours-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hours-item .day {
    font-weight: 500;
    color: #343a40;
}

.hours-item .time {
    color: #6c757d;
}

.footer-bottom {
    margin-top: 2rem;
}

.copyright {
    color: #6c757d;
    font-size: 0.9rem;
}

.mainImage {
    height: 750px;
}

@media (max-width: 991px) {
    .mainImage {
        height: 600px;
    }

    .footer-brand,
    .footer-contact,
    .footer-hours {
        text-align: center;
        margin-bottom: 2rem;
        margin-top: 2rem;
    }

    .footer-social-icons {
        justify-content: center;
    }
}

@media (max-width: 470px) {
    .mainImage {
        height: 470px;
    }
}

.fontText {
    font-size: 17px;
}

.form-control {
    padding: 0.5rem 0.5rem;
}

/* Additional styles for About Us page */
.about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 76px;
}

.about-section {
    padding: 2rem 0;
}

.about-heading {
    position: relative;
    margin-bottom: 2rem;
    font-weight: 600;
}

.about-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #e25252;
}

.product-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.product-content {
    /* padding: 1.5rem; */
}

.product-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #212529;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.why-choose-icon {
    margin-right: 1rem;
    color: #444444;
    font-size: 1.5rem;
}

.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.btn-primary {
    background-color: #444444;
    border-color: #333333;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #212121;
    border-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.unique-hero {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 76px;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    padding: 40px;
}

.hero-title {
    color: #212529;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e25252;
}

.hero-text {
    color: #6c757d;
    margin-bottom: 0;
}

.hero-brand {
    margin-bottom: 20px;
}

.hero-brand img {
    height: 60px;
    margin-bottom: 10px;
}

/* Additional CSS for product cards without images */
.product-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
    background-color: white;
    height: 100%;
    padding: 2rem;
    padding-bottom: 0rem;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #212529;
    position: relative;
    padding-bottom: 0.5rem;
}

.product-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #444444;
}

.product-types {
    display: flex;
    flex-wrap: wrap;
}

.badge {
    font-weight: 500;
    padding: 0.5rem 0.75rem;
}

.our-clients {
    padding: 5rem 0;
    background-color: #ffffff;
    position: relative;
}

.clients-title {
    position: relative;
    margin-bottom: 3rem;
}

.clients-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #6f7c89;
}

.client-subtitle {
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.client-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 1rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
}

.client-logo:hover {
    transform: scale(1.05);
    opacity: 1;
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

.trusted-by {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    background-color: #f8f9fa;
    border-radius: 30px;
    font-weight: 500;
    color: #6c757d;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.client-count {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #6f7c89;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    margin-left: 0.5rem;
}

.view-all-link {
    display: inline-block;
    margin-top: 2rem;
    color: #6f7c89;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: #0056b3;
}

.view-all-link svg {
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
}

.view-all-link:hover svg {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .client-logo {
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .client-logo img {
        max-height: 60px;
    }
}

.client-reviews {
    padding: 5rem 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.client-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/img/gallery/pattern-light.png');
    background-repeat: repeat;
    opacity: 0.1;
    z-index: 0;
}

.client-reviews .container {
    position: relative;
    z-index: 1;
}

.review-title {
    position: relative;
    margin-bottom: 3rem;
}

.review-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #6f7c89;
}

.review-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.review-card::before {
    content: '"';
    font-family: Georgia, serif;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 6rem;
    line-height: 1;
    color: rgba(0, 0, 0, 0.05);
}

.review-content {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details {
    flex: 1;
}

.client-name {
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.2rem;
}

.client-position {
    color: #6c757d;
    font-size: 0.9rem;
}

.client-company {
    color: #6f7c89;
    font-weight: 500;
}

.review-stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.carousel-indicators {
    bottom: -50px;
    justify-content: center;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: #6f7c89;
    opacity: 0.4;
}

.carousel-indicators .active {
    opacity: 1;
}

@media (max-width: 768px) {
    .client-reviews {
        padding: 4rem 0 5rem;
    }

    .review-card {
        padding: 1.5rem;
    }
}

/* carousel end */
.imagesInSection img {
    height: 400px !important;
    width: 100%;
    object-fit: cover;
}

.footer-bg {
    background-color: #f8f9fa;
    padding-top: 4rem;
    padding-bottom: 2rem;
    color: #343a40;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer-brand {
    text-align: center;
}

.brand-name {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #212529;
}

.brand-tagline {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-social-icons .social-icon {
    color: #6c757d;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-social-icons .social-icon:hover {
    color: #000;
    transform: scale(1.1);
}

.footer-section-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #212529;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #6f7c89;
}

.contact-details,
.hours-details {
    text-align: center;
}

.contact-item,
.hours-item {
    margin-bottom: 1rem;
}

.contact-item h6,
.footer-hours h6 {
    color: #495057;
    margin-bottom: 0.5rem;
}

.hours-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hours-item .day {
    font-weight: 500;
    color: #343a40;
}

.hours-item .time {
    color: #6c757d;
}

.footer-bottom {
    margin-top: 2rem;
}

.copyright {
    color: #6c757d;
    font-size: 0.9rem;
}

.mainImage {
    height: 750px;
}

@media (max-width: 991px) {
    .mainImage {
        height: 600px;
    }

    .footer-brand,
    .footer-contact,
    .footer-hours {
        text-align: center;
        margin-bottom: 2rem;
        margin-top: 2rem;
    }

    .footer-social-icons {
        justify-content: center;
    }
}

@media (max-width: 470px) {
    .mainImage {
        height: 470px;
    }
}

.fontText {
    font-size: 17px;
}

.form-control {
    padding: 0.5rem 0.5rem;
}

/* Client section styling */
.our-clients {
    padding: 5rem 0;
    background-color: #ffffff;
    position: relative;
}

.clients-title {
    position: relative;
    margin-bottom: 3rem;
}

.clients-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #6f7c89;
}

.client-subtitle {
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.trusted-by {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    background-color: #f8f9fa;
    border-radius: 30px;
    font-weight: 500;
    color: #6c757d;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.client-count {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #6f7c89;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Client logo carousel styling */
.client-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
}

.client-logo:hover {
    transform: scale(1.05);
    opacity: 1;
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* Carousel styling to match the review section */
#clientsCarousel .carousel-indicators {
    position: relative;
    bottom: 0;
    margin-top: 30px;
    margin-bottom: 0;
}

#clientsCarousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #aaaaaa;
    opacity: 0.5;
    margin: 0 5px;
    border: none;
}

#clientsCarousel .carousel-indicators .active {
    background-color: #6f7c89;
    opacity: 1;
}

#clientsCarousel .carousel-inner {
    padding-bottom: 20px;
}

#clientsCarousel .carousel-item {
    padding: 10px;
}

/* For mobile responsive */
@media (max-width: 768px) {
    .client-logo {
        height: 80px;
        margin-bottom: 1rem;
    }

    .client-logo img {
        max-height: 60px;
    }

    .product-hero {
        margin-top: 130px !important;
    }
}


.navbar-nav .dropdown-menu {
    position: absolute;
    background-color: white;
    z-index: 1000;
    display: none;
}

.navbar-nav .dropdown-menu.show {
    display: block;
}

.navbar .container {
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

/* Fix contact section in navbar */
.navbar .contact {
    display: flex;
    align-items: center;
}

/* Fix phone icon orientation */
.navbar .contact .fa-phone {
    transform: scaleX(1);
}

/* Fix phone icon orientation - specific correction */
.navbar .contact .fa-phone {
    transform: rotate(90deg);
}

/* Better responsive handling */
@media (max-width: 991px) {

    /* On mobile */
    .navbar .contact {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    /* Move contact info inside collapsed navbar */
    .navbar-collapse {
        order: 3;
    }

    /* Ensure contact is shown when navbar is collapsed */
    .navbar .container {
        flex-wrap: wrap;
    }
}


.our-clients {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.trusted-by {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.client-count {
    color: #ffffff;
    font-weight: bold;
}

.clients-title {
    margin-bottom: 15px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-indicators {
    bottom: -40px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #dee2e6;
}

.carousel-indicators .active {
    background-color: #aaaaaa;
}


/* Base Card Styling Enhancement */
.transition-card,
.hover-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backface-visibility: hidden;
    background: #ffffff;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Modern Hover Effect for Sustainability Cards */
.transition-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
}

.transition-card::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.transition-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Modern Hover Effect for Phoenix Difference Cards */
.hover-card {
    border-radius: 12px;
    border-bottom: 5px solid transparent;
    transition: all 0.35s ease-out;
}

.hover-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 5px solid var(--bs-primary, #0d6efd);
}

.hover-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.7) 38%, rgba(255, 255, 255, 0) 48%);
    background-size: 200% 100%;
    background-position: 100% 0;
    opacity: 0;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    pointer-events: none;
    z-index: 2;
}

.hover-card:hover::after {
    opacity: 1;
    transform: translateX(100%);
    transition: transform 0.8s ease-out;
}

/* Enhanced Icon Animation */
.icon-bounce {
    transition: transform 0.3s ease;
}

.hover-card:hover .icon-bounce {
    transform: scale(1.2);
    animation: iconPulse 1.5s ease infinite;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Feature Item Hover Animation */
.feature-item {
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.feature-item:hover {
    background-color: rgba(76, 175, 80, 0.1);
    transform: translateX(5px);
}

/* Pulse Button Animation Enhancement */
.pulse-button {
    position: relative;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Image Zoom Enhancement */
.image-zoom {
    transition: transform 0.5s ease;
    overflow: hidden;
}

.image-zoom:hover {
    transform: scale(1.03);
}

.imagesInSection img {
    height: 400px !important;
    width: 100%;
    object-fit: cover;
}

.footer-bg {
    background-color: #f8f9fa;
    padding-top: 4rem;
    padding-bottom: 2rem;
    color: #343a40;
}

.footer-logo {
    max-width: 100%;
    margin-bottom: 1rem;
}

.footer-brand {
    text-align: center;
}

.brand-name {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #212529;
}

.brand-tagline {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-social-icons .social-icon {
    color: #6c757d;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-social-icons .social-icon:hover {
    color: #000;
    transform: scale(1.1);
}

.footer-section-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #cf2b1f;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #cf2b1f;
}

.contact-details,
.hours-details {
    text-align: center;
}

.contact-item,
.hours-item {
    margin-bottom: 1rem;
}

.contact-item h6,
.footer-hours h6 {
    color: #495057;
    margin-bottom: 0.5rem;
}

.hours-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hours-item .day {
    font-weight: 500;
    color: #343a40;
}

.hours-item .time {
    color: #6c757d;
}

.footer-bottom {
    margin-top: 2rem;
}

.copyright {
    color: #6c757d;
    font-size: 0.9rem;
}

.mainImage {
    height: 750px;
}

@media (max-width: 991px) {
    .mainImage {
        height: 600px;
    }

    .footer-brand,
    .footer-contact,
    .footer-hours {
        text-align: center;
        margin-bottom: 2rem;
        margin-top: 2rem;
    }

    .footer-social-icons {
        justify-content: center;
    }
}

@media (max-width: 470px) {
    .mainImage {
        height: 470px;
    }
}

.fontText {
    font-size: 17px;
}

.form-control {
    padding: 0.5rem 0.5rem;
}

.card-body {
    text-align: center;
}

/* Our Work Section Styles */
.our-work-section {
    /* padding: 5rem 0; */
    background-color: #f8f9fa;
}

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.work-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.work-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.work-item:hover .work-image img {
    transform: scale(1.05);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            transparent 0%,
            transparent 50%,
            rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-content {
    text-align: center;
    color: white;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.work-item:hover .work-content {
    transform: translateY(0);
}

.work-content h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.work-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Button Styles */
.btn-primary {
    background-color: #444444;
    border-color: #444444;
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #333333;
    border-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(68, 68, 68, 0.3);
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(68, 68, 68, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .our-work-section {
        /* padding: 3rem 0; */
    }

    .work-image {
        height: 250px;
    }

    .work-content {
        padding: 1.5rem;
    }

    .work-content h5 {
        font-size: 1.1rem;
    }

    .work-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .work-image {
        height: 220px;
    }

    .work-content {
        padding: 1rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1rem;
    }
}