/* Custom styles for home page */

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

/* Section Title Decoration */
.section-title-container {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.section-title-decoration {
    position: relative;
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    margin: 0 auto;
    border-radius: 2px;
}

/* Feature Items */
.feature-item {
    transition: all 0.3s ease;
}

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

.features-list-icon i.fa-check-circle {
    font-size: 1.2rem;
}

/* Feature Boxes */
.feature-box {
    padding: 30px 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

.feature-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(52, 152, 219, 0.1);
    margin-bottom: 20px;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-text {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.bg-light-1 {
    background-color: #f8f9fa;
}

/* Specialist Buttons */
.btn-mod.btn-w.btn-with-icon.btn-circle {
    transition: all 0.3s ease;
}

.btn-mod.btn-w.btn-with-icon.btn-circle:hover {
    transform: translateX(5px);
    background-color: rgba(255, 255, 255, 0.9);
}

/* Main Image */
.composition-8-image {
    transition: all 0.5s ease;
    border: 5px solid #fff;
}

.composition-8-image:hover {
    transform: scale(1.02);
}

/* Get Started Button */
.btn-hover-anim {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-hover-anim:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

/* Media Queries */
@media (max-width: 768px) {
    .feature-box {
        margin-bottom: 30px;
    }
    
    .composition-8-image {
        margin-bottom: 40px;
    }
}
