/* About Us Page - Responsive Styles with Mobile-First Approach */

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    /* Responsive: Allow cards to adapt to container */
    width: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 137, 206, 0.15);
}

.service-card-image {
    /* Responsive height with aspect ratio */
    height: clamp(180px, 40vw, 200px);
    background: linear-gradient(135deg, #05c0e8, #00d4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(32px, 8vw, 50px);
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-content {
    padding: clamp(15px, 4vw, 25px);
}

.service-card-content h3 {
    color: #0689ce;
    font-size: clamp(16px, 4vw, 20px);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card-content p {
    color: #666;
    line-height: 1.6;
    font-size: clamp(13px, 3vw, 15px);
}

.value-card {
    background: white;
    padding: clamp(12px, 3vw, 15px);
    border-radius: 10px;
    border-left: 4px solid #0689ce;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.value-icon {
    font-size: clamp(28px, 6vw, 40px);
    color: #0689ce;
    margin-bottom: 15px;
    height: auto;
}

.value-card h3 {
    color: #000;
    font-size: clamp(16px, 4vw, 20px);
    margin-bottom: 10px;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    font-size: clamp(13px, 3vw, 15px);
}

.philosophy-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(6, 137, 206, 0.2);
}

.philosophy-card-image {
    /* Responsive image height */
    height: clamp(180px, 40vw, 220px);
    overflow: hidden;
    background: linear-gradient(135deg, #0689ce, #05c0e8);
}

.philosophy-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.philosophy-card-content {
    padding: clamp(15px, 4vw, 25px);
}

.philosophy-card-content h3 {
    color: #000;
    font-size: clamp(18px, 5vw, 24px);
    margin-bottom: 8px;
    font-weight: 700;
}

.philosophy-card-content p {
    color: #666;
    line-height: 1.8;
    font-size: clamp(14px, 3vw, 16px);
}

.philosophy-card:nth-child(2) .philosophy-card-image {
    background: linear-gradient(135deg, #05c0e8, #00d4ff);
}

.philosophy-card:nth-child(3) .philosophy-card-image {
    background: linear-gradient(135deg, #0689ce, #05c0e8);
}
