/* Modern UI Enhancements */

/* Sticky Navigation */
.navbar-fixed-top {
    transition: all 0.3s ease;
}

/* Service Box Styling */
.service-box {
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-box .img-wrapper {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-box .img-wrapper img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-box:hover .img-wrapper img {
    transform: scale(1.1);
}

/* Feature Box Styling */
.feature-box {
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    margin-bottom: 20px;
}

.feature-box h4 {
    margin: 20px 0 10px;
    font-weight: 600;
}

/* Blog Post Box */
.blog-post-box {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.blog-post-box .img-wrapper {
    overflow: hidden;
}

.blog-post-box .img-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-box:hover .img-wrapper img {
    transform: scale(1.05);
}

.blog-post-box .post-content {
    padding: 20px;
}

.blog-post-box .post-date {
    color: #999;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.blog-post-box h4 {
    margin: 10px 0 15px;
    font-size: 18px;
}

.blog-post-box h4 a {
    color: #333;
    transition: color 0.3s ease;
}

.blog-post-box h4 a:hover {
    color: #007bff;
}

/* Footer Enhancements */
.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links li a {
    color: rgb(121, 123, 123);
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 5px;
}

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

.footer-contact li {
    margin-bottom: 15px;
    color: rgb(121, 123, 123);
}

.footer-contact li i {
    margin-right: 10px;
    width: 20px;
}

.footer-contact li a {
    color: rgb(121, 123, 123);
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: #fff;
}

/* Carousel Enhancements */
.carousel-caption {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-indicators li {
    border: 2px solid #fff;
}

/* Button Spacing */
.cta-bar .btn {
    margin: 0 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-box .img-wrapper img {
        height: 200px;
    }
    
    .blog-post-box .img-wrapper img {
        height: 180px;
    }
    
    .feature-box {
        margin-bottom: 30px;
    }
    
    .cta-bar .btn {
        margin: 10px 5px;
        display: inline-block;
    }
}
