.profile-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Column 1 - Profile Photo */
.profile-photo {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.photo-container {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid #f39c12;
    overflow: hidden;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #555, #777);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #f39c12;
}

.nav-arrows {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: #f39c12;
    transform: scale(1.1);
}

.profile-name {
    text-align: center;
    margin: 0 15px;
}

.profile-name h2 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.profile-title {
    color: #f39c12;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Column 2 - Details (Bigger) */
.profile-details {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #f39c12;
}

.detail-section h3 {
    color: #f39c12;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.tech-stack {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
}

.tech-icon {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background: #f39c12;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

.domain-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.domain-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
}

.experience-info {
    font-size: 1.1rem;
    color: #ccc;
}

.experience-years {
    color: #f39c12;
    font-weight: bold;
}

.cv-button {
    background: #f39c12;
    color: #1a1a1a;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cv-button:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

/* Column 3 - Certifications */
.certifications {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cert-header {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.cert-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.cert-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cert-icon {
    width: 30px;
    height: 30px;
    background: #f39c12;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1a1a1a;
}

@media (max-width: 1024px) {
    .profile-container {
        gap: 30px;
        padding: 30px;
    }
    
    .photo-container {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
        gap: 25px;
        padding: 20px;
        margin: 10px;
    }
    
    .photo-container {
        width: 150px;
        height: 150px;
    }
    
    .profile-name h2 {
        font-size: 1.5rem;
    }
    
    .nav-arrows {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
    }
    
    .tech-stack, .domain-list {
        justify-content: center;
    }
    
    .tech-item, .domain-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .detail-section {
        padding: 15px;
    }
    
    .cert-header {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .cv-button {
        align-self: center;
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {

    .profile-container {
        padding: 15px;
        gap: 20px;
    }
    
    .photo-container {
        width: 120px;
        height: 120px;
    }
    
    .profile-name h2 {
        font-size: 1.3rem;
    }
    
    .profile-title {
        font-size: 1rem;
    }
    
    .nav-arrows {
        gap: 10px;
    }
    
    .nav-arrow {
        width: 35px;
        height: 35px;
    }
    
    .tech-stack, .domain-list {
        flex-direction: column;
        align-items: center;
    }
    
    .tech-item, .domain-item {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .detail-section h3 {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .cert-item {
        padding: 12px;
    }
    
    .cert-header {
        font-size: 1.2rem;
    }
    
    .cv-button {
        padding: 15px 25px;
        font-size: 0.9rem;
    }
}
