/* Home Page Specific Styles */
.heading-h6, .bk_pra {
    color: #000 !important;
}

.video-btn a.video-icon, 
.video-btn a .video-icon {
    background: #000 !important;
}

.bk-list--2 .list-header .title-wrap h6.heading {
    color: inherit;
    font-weight: 500;
    text-transform: none;
    color: black;
}

.bk-list--2 .list-header.with-ckeck .marker::before {
    color: #7a7a7a;
}

/* Hero Section */
.hero-area {
    position: relative;
    overflow: hidden;
}

.hero-area .inner h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-area .inner h1 {
        font-size: 2.5rem;
    }
}

/* About Section */
.about-features .single-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.about-features .feature-icon {
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.about-features .feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.about-features .feature-content h6 {
    margin-bottom: 0.5rem;
    color: #333;
}

/* Services Section */
.single-service {
    background: white;
    padding: 3rem 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.single-service .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.single-service .service-icon i {
    color: white;
    font-size: 2rem;
}

.single-service .title {
    color: #333;
    margin-bottom: 1rem;
}

.single-service p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-btn {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-btn:hover {
    color: #0056b3;
}

/* Blog Section */
.single-blog {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-blog:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.single-blog .blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.single-blog .blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.blog-meta .category {
    background: #007bff;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
}

.blog-meta .date {
    color: #666;
    font-size: 0.875rem;
}

.single-blog .title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-blog .title a:hover {
    color: #007bff;
}

.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
}

/* CTA Section */
.cta-area {
    position: relative;
}

.cta-content .title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .cta-content .title {
        font-size: 2rem;
    }
}

/* Button Improvements */
.btn-default {
    transition: all 0.3s ease;
}

.btn-default:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 991px) {
    .ptb--120 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .about-features .single-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .about-features .feature-icon {
        margin: 0 auto 1rem;
    }
}

@media (max-width: 767px) {
    .button-group .btn-default {
        display: block;
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .button-group .ml--20 {
        margin-left: 0;
    }
}
