/* Success Stories Section */
.success-stories-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.story-block {
    margin-bottom: 30px;
}

.story-block .inner-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.story-block .inner-box:hover {
    transform: translateY(-5px);
}

.story-block .image-box {
    position: relative;
    overflow: hidden;
}

.story-block .image-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.story-block .overlay-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: all 0.3s ease;
}

.story-block:hover .overlay-box {
    opacity: 1;
}

.story-block .content-box {
    padding: 20px;
}

.story-block .title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.story-block .text {
    color: #666;
    margin-bottom: 15px;
}

.story-block .info {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 14px;
}

/* Social Proof Box */
.social-proof-box {
    margin-top: 50px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 50%;
    margin-right: 10px;
    color: #333;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #007bff;
    color: #fff;
}

/* Events Section */
.events-section {
    padding: 100px 0;
}

.event-block {
    margin-bottom: 30px;
}

.event-block .inner-box {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.event-block .inner-box:hover {
    transform: translateY(-5px);
}

.event-block .date-box {
    text-align: center;
    margin-bottom: 20px;
}

.event-block .date-box .day {
    font-size: 36px;
    font-weight: bold;
    color: #007bff;
    display: block;
}

.event-block .date-box .month {
    font-size: 18px;
    color: #666;
}

/* Resource Center Section */
.resource-center-section {
    padding: 120px 0 90px;
    background-color: #f8f9fa;
}

.resource-block {
    margin-bottom: 30px;
}

.resource-block .inner-box {
    background: #fff;
    border-radius: 15px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.resource-block .inner-box:hover {
    transform: translateY(-10px);
    border-color: #007bff;
    box-shadow: 0 20px 40px rgba(0,123,255,0.2);
}

.resource-block .icon-box {
    margin-bottom: 30px;
}

.resource-block .icon-box i {
    font-size: 60px;
    color: #007bff;
}

.resource-block .title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.resource-block .text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.resource-block .download-btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: #fff;
    border-radius: 25px;
    margin-top: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
    text-decoration: none;
}

.resource-block .download-btn:hover {
    background: linear-gradient(45deg, #0056b3, #004085);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,123,255,0.4);
}

.resource-block .download-btn i {
    margin-right: 8px;
}

/* Interactive Support Section */
.support-section {
    padding: 100px 0;
}

.support-buttons {
    margin-top: 30px;
}

.support-buttons a {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    margin-right: 15px;
    color: #fff;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background: #25d366;
}

.book-consultation-btn {
    background: #007bff;
}

.support-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Instagram Feed Container */
.instagram-feed-container {
    height: 300px;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .support-buttons a {
        display: block;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .story-block .image-box img {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .success-stories-section,
    .events-section,
    .resource-center-section,
    .support-section {
        padding: 50px 0;
    }
    
    .story-block .content-box {
        padding: 15px;
    }
    
    .event-block .inner-box {
        padding: 20px;
    }
} 