@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #64ffda;
    --secondary-color: #7c3aed;
    --accent-color: #f472b6;
    --primary-color-rgb: 100, 255, 218;
    --secondary-color-rgb: 124, 58, 237;
    --accent-color-rgb: 244, 114, 182;
    --background: #0a1128;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-lighter: rgba(255, 255, 255, 0.7);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--background);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-xl);
}

/* Profile Card Styles */
.profile-card {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 30px;
    padding: var(--spacing-xl);
    width: 100%;
    max-width: 800px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.profile-img-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto var(--spacing-lg);
    position: relative;
}

.profile-img-container {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    position: relative;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--background);
    transition: transform 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05);
}

/* Name and Title Styles */
.name-title-container {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.profile-name {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--spacing-sm);
}

.profile-title {
    font-size: 1.2rem;
    color: var(--text-lighter);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Tools Section Styles */
.tools-wrapper {
    position: fixed;
    right: 40px;
    bottom: 20px;
    z-index: 100;
    width: auto;
}

.tools-section {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(var(--primary-color-rgb), 0.1);
}

.tools-section h4 {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-xl);
    position: relative;
    font-weight: 600;
}

.tools-section h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent,
        var(--primary-color),
        var(--accent-color),
        transparent
    );
    border-radius: 3px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin: 0 auto;
    max-width: 1000px;
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.tool-item {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-lg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tool-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(var(--primary-color-rgb), 0.1),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(var(--primary-color-rgb), 0.2);
}

.tool-item:hover::before {
    opacity: 1;
}

.tool-item i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 5px rgba(var(--primary-color-rgb), 0.3));
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.tool-item:hover i {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 3px 8px rgba(var(--primary-color-rgb), 0.4));
}

.tool-item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.tool-item:hover span {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .tools-section {
        padding: var(--spacing-lg);
    }

    .tools-grid {
        gap: var(--spacing-md);
    }

    .tool-item {
        padding: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .tools-section h4 {
        font-size: 1.8rem;
        margin-bottom: var(--spacing-lg);
    }

    .tool-item {
        padding: var(--spacing-md);
    }

    .tool-item i {
        font-size: 1.8rem;
    }

    .tool-item span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .tools-wrapper {
        padding: 0 var(--spacing-sm);
    }

    .tools-section {
        padding: var(--spacing-md);
        border-radius: 15px;
    }

    .tools-section h4 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .tools-grid {
        gap: var(--spacing-sm);
    }

    .tool-item {
        padding: var(--spacing-sm);
        gap: var(--spacing-sm);
    }

    .tool-item i {
        font-size: 1.6rem;
        width: 32px;
    }
}

/* Touch Device Optimization */
@media (hover: none) {
    .tool-item:hover {
        transform: none;
    }

    .tool-item:active {
        transform: scale(0.98);
        background: rgba(255, 255, 255, 0.05);
    }
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.social-link {
    color: var(--text-lighter);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-lg: 1.5rem;
        --spacing-md: 1rem;
    }

    .profile-card {
        padding: var(--spacing-lg);
    }

    .profile-img-wrapper {
        width: 150px;
        height: 150px;
    }

    .profile-name {
        font-size: 2.5rem;
    }

    .profile-title {
        font-size: 1.1rem;
    }

    .tools-section h4 {
        font-size: 1.8rem;
    }

    .tool-item {
        padding: var(--spacing-md);
    }

    .tool-item i {
        font-size: 1.6rem;
    }

    .tool-item span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 1.5rem;
        --spacing-lg: 1.2rem;
    }

    .profile-card {
        padding: var(--spacing-md);
    }

    .profile-name {
        font-size: 2rem;
    }

    .tools-section h4 {
        font-size: 1.5rem;
    }

    .tool-item {
        padding: var(--spacing-sm);
    }

    .social-icons {
        gap: var(--spacing-sm);
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.profile-card {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Profile Header */
.profile-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.name-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.name-badge h2 {
    margin: 0;
    font-size: 2.2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.name-badge i {
    color: #3498db;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

.title {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0.5rem 0;
}

/* Tags */
.tags {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
}

.tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Enhanced Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 0;
}

.stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.stat-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover .stat-icon::after {
    opacity: 1;
}

.stat-info {
    flex: 1;
}

.stat-info h3 {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.stat-value {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.stat-value .number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-value .unit {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.stat-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(0px);
    opacity: 0;
    transition: all 0.5s ease;
}

.stat-card:hover .stat-glow {
    opacity: 0.1;
    transform: scale(2);
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .stat-value .number {
        font-size: 2rem;
    }
}

/* Contact Container */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.contact-info {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-value {
    display: block;
    font-size: 1rem;
    color: white;
}

.tooltip {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Enhanced Social Media Section */
.social-links-container {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.social-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-color),
        var(--secondary-color),
        transparent
    );
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.social-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    text-decoration: none;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, 
        rgba(var(--primary-color-rgb), 0.2),
        transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    border-radius: 50%;
    z-index: 1;
}

.social-link:hover::before {
    width: 200%;
    height: 200%;
}

.social-icon-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
    width: 100%;
    justify-content: flex-start;
}

.social-link i {
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.social-name {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    transform: translateX(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(var(--primary-color-rgb), 0.2);
}

.social-link:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
}

.social-link:hover .social-name {
    opacity: 1;
    transform: translateX(5px);
}

/* Specific social media colors */
.facebook:hover { --primary-color-rgb: 66, 103, 178; }
.whatsapp:hover { --primary-color-rgb: 37, 211, 102; }
.x-twitter:hover { --primary-color-rgb: 29, 161, 242; }
.instagram:hover { --primary-color-rgb: 225, 48, 108; }
.linkedin:hover { --primary-color-rgb: 0, 119, 181; }
.github:hover { --primary-color-rgb: 110, 84, 148; }

/* Contact section improvements */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 1px;
    background: linear-gradient(45deg,
        transparent,
        rgba(var(--primary-color-rgb), 0.3),
        transparent);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-value {
    font-size: 0.95rem;
    color: white;
}

/* Expertise tags improvements */
.expertise-tags {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.tag {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
        rgba(var(--primary-color-rgb), 0.2),
        rgba(var(--secondary-color-rgb), 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tag:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(var(--primary-color-rgb), 0.3);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(var(--primary-color-rgb), 0.2);
}

.tag:hover::before {
    opacity: 1;
}

.tag i {
    font-size: 1.1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.tag:hover i {
    transform: scale(1.2);
    color: var(--accent-color);
}

/* Bio and Skills Section */
.bio {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 1.5rem 0;
    font-size: 1rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.skills-container {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skill-item {
    margin-bottom: 1.5rem;
}

.skill-item:last-child {
    margin-bottom: 0;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.skill-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.skill-percentage {
    color: var(--primary-color);
    font-weight: 600;
}

.skill-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    position: relative;
    transform: translateX(-100%);
    animation: fillSkill 1.5s ease forwards;
}

@keyframes fillSkill {
    to {
        transform: translateX(0);
    }
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.tag i {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .profile-card {
        padding: 2rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .profile-img-container {
        width: 150px;
        height: 150px;
    }

    .name-badge h2 {
        font-size: 1.8rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .social-links {
        grid-template-columns: 1fr;
    }
}

/* About Section */
.about-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar-container {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    position: relative;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

.about-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--background);
}

.intro-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.intro-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.bio-content {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bio-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.services-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.service-header-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.services-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-content h4 {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.8rem;
}

.service-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.2rem;
}

.service-features {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.service-features li i {
    color: var(--primary-color);
}

.tools-section {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tools-section h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.tool-item span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1200px) {
    .about-section {
        margin: 4rem 2rem;
        padding: 3rem;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-section {
        margin: 3rem 1rem;
        padding: 2rem;
    }
    
    .service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .service-features li {
        justify-content: center;
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    margin: 3rem 0;
    padding: 2rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-color),
        var(--secondary-color),
        transparent
    );
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.contact-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
        rgba(var(--primary-color-rgb), 0.1),
        rgba(var(--secondary-color-rgb), 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--primary-color-rgb), 0.3);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(var(--primary-color-rgb), 0.2);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    background: rgba(var(--primary-color-rgb), 0.2);
}

.contact-card:hover .contact-icon i {
    transform: scale(1.1);
}

.contact-details {
    text-align: center;
    z-index: 1;
}

.contact-details h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0.5rem 0;
    word-break: break-all;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.copy-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.copy-btn:hover {
    background: rgba(var(--primary-color-rgb), 0.2);
    border-color: rgba(var(--primary-color-rgb), 0.3);
    transform: translateY(-2px);
}

.copy-btn:hover i {
    transform: scale(1.1);
}

.card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right,
        rgba(var(--primary-color-rgb), 0.2),
        transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover .card-decoration {
    opacity: 1;
}

/* Specific card colors */
.email-card .contact-icon { background: rgba(var(--primary-color-rgb), 0.1); }
.phone-card .contact-icon { background: rgba(var(--secondary-color-rgb), 0.1); }
.location-card .contact-icon { background: rgba(var(--accent-color-rgb), 0.1); }

.email-card:hover .contact-icon { background: rgba(var(--primary-color-rgb), 0.2); }
.phone-card:hover .contact-icon { background: rgba(var(--secondary-color-rgb), 0.2); }
.location-card:hover .contact-icon { background: rgba(var(--accent-color-rgb), 0.2); }

.email-card .contact-icon i { color: var(--primary-color); }
.phone-card .contact-icon i { color: var(--secondary-color); }
.location-card .contact-icon i { color: var(--accent-color); }

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
}

.about-section {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    margin: 3rem auto;
    max-width: 1200px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.intro-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
}

.avatar-decoration {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg,
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color));
    animation: rotate 4s linear infinite;
}

.about-avatar {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.intro-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.intro-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.bio-content {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bio-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.services-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.services-header i {
    font-size: 2rem;
    color: var(--primary-color);
    animation: glow 2s ease-in-out infinite;
}

.services-grid {
    display: grid;
    gap: 1.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(var(--primary-color-rgb), 0.3);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-content h4 {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.service-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.tools-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tool-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.tool-item:hover {
    transform: translateY(-5px);
    background: rgba(var(--primary-color-rgb), 0.1);
}

.tool-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.design-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    animation: rotateIcon 3s ease-in-out infinite alternate;
}

.design-icon:last-child {
    animation-delay: 1.5s;
}

@keyframes rotateIcon {
    0% {
        transform: rotate(-15deg);
    }
    100% {
        transform: rotate(15deg);
    }
}

.tools-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}

.tools-section {
    max-width: 800px;
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.tools-section h4 {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    position: relative;
}

.tools-section h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 350px;
}

.tool-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.8rem 1rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tool-item i {
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

.tool-item:hover i {
    transform: scale(1.1);
}

.tool-item span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-weight: 500;
}

.fab.fa-facebook { color: #1877f2; }
.fab.fa-instagram { color: #e4405f; }
.fab.fa-twitter { color: #1da1f2; }

@media (max-width: 768px) {
    .about-content {
        padding: 1rem;
    }
    
    .profile-img-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .tools-section {
        padding: 1.5rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tool-item {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .profile-img-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .tool-item {
        padding: 1.2rem 1rem;
    }
}
