/* Goals Section Styles */
.section-goals {
    position: relative;
    background-color: #2c3e50;
    color: white;
}

.section-goals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.section-goals .container {
    position: relative;
    z-index: 2;
}

.goals-row {
    margin-top: 40px;
}

.goal-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.goal-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.goal-icon {
    margin-bottom: 20px;
    color: #3498db;
    transition: all 0.3s ease;
}

.goal-item:hover .goal-icon {
    transform: scale(1.1);
}

.goal-content {
    flex: 1;
}

.goal-content h3 {
    color: #3498db;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.goal-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Custom column width for 5 items */
.col-lg-2-4 {
    width: 20%;
}

@media (max-width: 991px) {
    .col-lg-2-4 {
        width: 33.333333%;
    }
}

@media (max-width: 767px) {
    .col-lg-2-4 {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .col-lg-2-4 {
        width: 100%;
    }
}

/* Values Section Styles */
.section-values {
    background-color: #f5f5f5;
    position: relative;
}

.section-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #fff, transparent);
    z-index: 1;
}

.value-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.value-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2980b9); /* Blue gradient that matches the site */
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.value-box:hover::after {
    transform: scaleX(1);
}

.value-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    margin-bottom: 25px;
    color: #3498db; /* Blue that matches the site */
    transition: all 0.3s ease;
    position: relative;
}

.value-icon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #3498db; /* Blue that matches the site */
    opacity: 0;
    transition: all 0.3s ease;
}

.value-box:hover .value-icon::after {
    opacity: 1;
    bottom: -15px;
}

.value-box:hover .value-icon {
    transform: scale(1.1);
}

.value-box h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 24px;
    position: relative;
}

.value-box p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Section Title Styles */
.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #3498db; /* Blue that matches the site */
}

.section-goals .section-title h2::after {
    background: #3498db; /* Blue that matches the site */
}

.section-values .section-title h2::after {
    background: #3498db; /* Blue that matches the site */
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-goals .section-title p {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .goal-box, .value-box {
        margin-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 26px;
    }
    
    .goal-box, .value-box {
        padding: 25px 20px;
    }
} 