/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    margin-bottom: 60px;
}

.profile-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.name-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.profile-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.name {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #64ffda 0%, #00bcd4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title {
    font-size: 1.4rem;
    color: #b0b0b0;
    margin-bottom: 30px;
    font-weight: 400;
}

.contact-info {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.contact-item i {
    color: #64ffda;
    width: 16px;
}

.contact-link {
    text-decoration: none;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #64ffda;
    text-decoration: none;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    color: #ffffff;
}

section {
    margin-bottom: 80px;
    padding: 0 20px;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.about-content p {
    margin-bottom: 30px;
}

.about-content h3 {
    color: #64ffda;
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.what-i-do, .ventures {
    list-style: none;
    margin-left: 20px;
}

.what-i-do li, .ventures li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.what-i-do li::before, .ventures li::before {
    content: "▶";
    color: #64ffda;
    position: absolute;
    left: 0;
    top: 0;
}

.bot-list {
    margin-top: 10px;
    margin-left: 20px;
}

.bot-list li {
    font-size: 0.95rem;
    color: #b0b0b0;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.skill-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.1);
    border-color: #64ffda;
}

.skill-icon {
    margin-bottom: 20px;
}

.skill-icon img {
    width: 60px;
    height: 60px;
    filter: brightness(0) saturate(100%) invert(85%) sepia(6%) saturate(1000%) hue-rotate(120deg) brightness(97%) contrast(92%);
}

.skill-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
}

.years {
    font-size: 1.1rem;
    color: #64ffda;
    font-weight: 500;
}

/* Experience Section */
.experience-grid {
    display: grid;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.experience-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.experience-card:hover {
    border-color: #64ffda;
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.1);
}

.experience-card h3 {
    color: #64ffda;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.duration {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: block;
}

.company-note {
    color: #888;
    font-style: italic;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.experience-card ul {
    list-style: none;
    margin-left: 0;
}

.experience-card li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: #e0e0e0;
}

.experience-card li::before {
    content: "•";
    color: #64ffda;
    position: absolute;
    left: 0;
    top: 0;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #64ffda;
    box-shadow: 0 15px 30px rgba(100, 255, 218, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.review-card h4 {
    color: #64ffda;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.date {
    color: #888;
    font-size: 0.85rem;
}

.review-card p {
    color: #e0e0e0;
    font-style: italic;
    line-height: 1.6;
}

/* Portfolio Actions */
.portfolio-actions {
    text-align: center;
    margin: 30px 0 50px 0;
}

.gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #64ffda 0%, #00bcd4 100%);
    color: #000;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
}

.gallery-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(100, 255, 218, 0.4);
    text-decoration: none;
    color: #000;
}

.gallery-btn i {
    font-size: 1.2rem;
}

/* Business Section */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.business-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.business-card:hover {
    transform: translateY(-10px);
    border-color: #64ffda;
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.1);
}

.business-logo {
    margin-bottom: 20px;
}

.business-logo i {
    font-size: 3rem;
    color: #64ffda;
}

.portfolio-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #64ffda;
}

.portfolio-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    text-decoration: none;
    color: inherit;
}

.business-card:hover .portfolio-link {
    color: inherit;
}

.business-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 600;
}

.business-card p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #64ffda 0%, #00bcd4 100%);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(100, 255, 218, 0.4);
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #333;
    margin-top: 60px;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .name-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .profile-logo {
        width: 50px;
        height: 50px;
    }
    
    .name {
        font-size: 2.5rem;
    }
    
    .title {
        font-size: 1.2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .skills-grid,
    .reviews-grid,
    .business-grid {
        grid-template-columns: 1fr;
    }
    
    .skill-card,
    .experience-card,
    .review-card,
    .business-card {
        padding: 25px 20px;
    }
    
    section {
        margin-bottom: 60px;
        padding: 0 10px;
    }
    
    .gallery-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .profile-logo {
        width: 45px;
        height: 45px;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 40px 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for elements coming into view */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.skill-card,
.experience-card,
.review-card,
.business-card {
    animation: fadeInUp 0.6s ease-out;
}
