/* App icons styling */
.app-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    transform: perspective(200px) rotateX(10deg);
}

.app-icon {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.app-icon:nth-child(1) {
    transform: rotate(-20deg);
}

.app-icon:nth-child(2) {
    transform: rotate(-10deg);
}

.app-icon:nth-child(3) {
    transform: rotate(0deg);
}

.app-icon:nth-child(4) {
    transform: rotate(10deg);
}

.app-icon:nth-child(5) {
    transform: rotate(20deg);
}

.app-icon:hover {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(102, 128, 216, 0.2);
    border-color: var(--primary-color);
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.app-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.app-tag {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--background-color);
    color: var(--text-color);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.app-tag::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: var(--background-color);
}

.app-icon:hover .app-tag {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Value cards styling */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #4a5bc7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.8rem;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    box-shadow: 0 6px 16px rgba(102, 128, 216, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.value-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.value-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Idea section styling */
.idea-section {
    text-align: center;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    max-width: 1000px;
    width: 100%;
}

.idea-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.idea-button:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 128, 216, 0.3);
}

.idea-button i {
    font-size: 1.1rem;
}

/* Team section styling */
.team-section {
    margin: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.team-member-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.team-member p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Fix contact section centering */
.contact-section,
.contact-section .section-content {
    text-align: center !important;
}

.contact-section .contact-links {
    align-items: center;
}

/* Keep form fields left-aligned if needed */
.contact-section .form-group,
.contact-section .form-group label,
.contact-section .form-group input,
.contact-section .form-group textarea {
    text-align: left !important;
}
