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

/* CSS Variables */
:root {
    /* Light theme colors */
    --bg-dark: hsl(220, 20%, 97%);
    --bg-secondary: hsl(220, 15%, 93%);
    --text-primary: hsl(220, 20%, 15%);
    --text-secondary: hsl(220, 15%, 35%);
    --accent-cyan: hsl(195, 100%, 45%);
    --accent-purple: hsl(260, 85%, 55%);
    --accent-gradient: linear-gradient(135deg, hsl(195, 100%, 45%) 0%, hsl(260, 85%, 55%) 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.1);
    --nav-bg: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] {
    /* Dark theme colors */
    --bg-dark: hsl(11, 15%, 6%);
    --bg-secondary: hsl(11, 15%, 10%);
    --text-primary: hsl(0, 0%, 95%);
    --text-secondary: hsl(0, 0%, 70%);
    --accent-cyan: hsl(180, 100%, 50%);
    --accent-purple: hsl(270, 100%, 70%);
    --accent-gradient: linear-gradient(135deg, hsl(180, 100%, 50%) 0%, hsl(270, 100%, 70%) 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --nav-bg: rgba(0, 0, 0, 0.9);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

[data-theme="light"] body {
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 25%);
}

[data-theme="dark"] body {
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(120, 80, 255, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 25%);
}

/* Utility classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.highlight {
    color: var(--accent-cyan);
    font-weight: 600;
}

.highlight.cyan {
    color: var(--accent-cyan);
}

.highlight.purple {
    color: var(--accent-purple);
}

/* Button styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-gradient {
    background: var(--accent-gradient);
    color: white;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(0, 255, 255, 0.1);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--text-primary);
}

.btn-outline-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    background: transparent;
}

.btn-outline-sm:hover {
    background: rgba(0, 255, 255, 0.1);
}

.btn-primary-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    background: var(--accent-gradient);
    color: white;
}

.btn-primary-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-disabled {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    background: rgba(168, 85, 247, 0.2);
    color: var(--accent-purple);
    cursor: not-allowed;
    opacity: 0.6;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: var(--nav-bg);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: scale(1.1);
}

.theme-toggle svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: none;
    stroke: var(--text-primary);
    stroke-width: 2;
    transition: all 0.3s ease;
}

.sun-icon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

.moon-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg) scale(0);
}

[data-theme="dark"] .sun-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scale(0);
}

[data-theme="dark"] .moon-icon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

.mobile-menu-button {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle svg {
    fill: none;
    stroke: var(--text-primary);
    stroke-width: 2;
}

.menu-icon {
    display: block;
}

.close-icon {
    display: none;
}

.menu-toggle.active .menu-icon {
    display: none;
}

.menu-toggle.active .close-icon {
    display: block;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 0 0 1rem 1rem;
    margin-top: 0.5rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--text-primary);
}

.mobile-cta {
    margin-top: 1rem;
    text-align: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 1rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-dot {
    position: absolute;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.dot-1 {
    top: 5rem;
    left: 2.5rem;
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
}

.dot-2 {
    top: 10rem;
    right: 5rem;
    width: 4px;
    height: 4px;
    background: var(--accent-purple);
    animation-delay: 1s;
}

.dot-3 {
    bottom: 10rem;
    left: 25%;
    width: 6px;
    height: 6px;
    background: rgba(255, 192, 203, 0.8);
    animation-delay: 2s;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-text {
    margin-bottom: 2rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, rgba(0, 255, 255, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 2rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--accent-cyan);
    font-weight: 500;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    min-height: 4rem;
    display: flex;
    align-items: center;
}

.cursor {
    animation: blink 1s infinite;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.btn-gradient:hover .arrow-icon {
    transform: translateX(4px);
}

.hero-info {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-photo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.photo-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 1.5rem;
    max-width: 320px;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.photo-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.photo-container {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(168, 85, 247, 0.2));
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.photo-container img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.photo-info {
    text-align: center;
}

.photo-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.photo-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.status-indicator {
    display: flex;
    justify-content: center;
}

.status-indicator span {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.75rem;
}

.photo-glow {
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    border-radius: 50%;
    filter: blur(3rem);
    opacity: 0.2;
    z-index: -1;
    transform: scale(1.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(0, 255, 255, 0.5);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-wheel {
    width: 4px;
    height: 12px;
    background: var(--accent-cyan);
    border-radius: 2px;
    animation: pulse 2s infinite;
}

/* Section common styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.story-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-section .glass-card {
    padding: 2rem;
}

.story-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}


/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    group: hover;
}

.project-card:hover {
    transform: scale(1.05);
}


.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.project-status {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.project-status.completed {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.project-status.in-progress {
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
}

.project-content {
    padding: 1.2rem;
}

.project-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.project-card:hover .project-content h3 {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background: rgba(0, 255, 255, 0.1);
    color: var(--accent-cyan);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.project-actions {
    display: flex;
    gap: 0.75rem;
}

.project-actions .btn {
    flex: 1;
    justify-content: center;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

.projects-cta {
    margin-top: 3rem;
    text-align: center;
}

.projects-cta .glass-card {
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.projects-cta h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.projects-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}


/* Skills Section */
.skills {
padding-top:0rem;
}

.skill-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.skill-category-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.skill-category-btn:hover {
    color: var(--text-primary);
}

.skill-category-btn.active {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.skills-display .glass-card {
    padding: 2rem;
}

.skills-display h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

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

.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.75rem;
}

.skill-name {
    font-weight: 500;
}

.skill-level {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: rgba(128, 128, 128, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease-out;
}

.learning-section {
    margin-top: 4rem;
    text-align: center;
}

.learning-section .glass-card {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.learning-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.learning-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.learning-tag {
    background: linear-gradient(to right, rgba(0, 255, 255, 0.2), rgba(168, 85, 247, 0.2));
    color: var(--accent-cyan);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

.learning-section p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Hire Me Section */
.hire .section-header {
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05);
    border-color: rgba(0, 255, 255, 0.4);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature svg {
    color: #22c55e;
    fill: none;
    stroke: #22c55e;
    stroke-width: 2;
    flex-shrink: 0;
}

.feature span {
    font-size: 0.9rem;
}

.why-work-section {
    margin-bottom: 4rem;
}

.why-work-section .glass-card {
    padding: 2rem;
}

.why-work-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefit {
    text-align: center;
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.benefit h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.hire-cta {
    text-align: center;
}

.hire-cta .glass-card {
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.hire-cta h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hire-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.response-time {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
}
/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-container .glass-card {
    padding: 2rem;
    border-color: rgba(0, 255, 255, 0.2);
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid rgba(128, 128, 128, 0.3);
    border-radius: 0.5rem;
    background: rgba(128, 128, 128, 0.1);
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

.form-group textarea {
    resize: none;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
}

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

.contact-info .glass-card {
    padding: 2rem;
    border-color: rgba(0, 255, 255, 0.2);
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon.email {
    background: var(--accent-gradient);
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.contact-icon svg {
    fill: none;
    stroke: white;
    stroke-width: 2;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.05);
    color: var(--accent-cyan);
}

.social-link svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.social-link span {
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(128, 128, 128, 0.2);
}

.footer-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}


.signature-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    flex-wrap: wrap;
}

.icon-lightbulb {
    fill: none;
    stroke: #facc15;
    stroke-width: 2;
    animation: pulse 2s infinite;
}

.icon-coffee {
    fill: none;
    stroke: #d97706;
    stroke-width: 2;
}

.icon-heart {
    fill: none;
    stroke: #ef4444;
    stroke-width: 2;
    animation: pulse 2s infinite;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.copyright p {
    margin-bottom: 0.5rem;
}

.footer-quote .glass-card {
    padding: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.quote-text {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.quote-author {
    color: var(--accent-cyan);
    font-size: 0.75rem;
}


/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) translateX(-50%); }
    50% { transform: translateY(-10px) translateX(-50%); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(-5deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .signature-line {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .skill-categories {
        flex-direction: column;
        align-items: center;
    }

    .skill-category-btn {
        width: 100%;
        max-width: 280px;
    }
}
#hire.hire{
    padding-top: 0px;
    
}

/* Hide mouse on screens smaller than a tablet */
@media (max-width: 767px) {
    .scroll-indicator {
        display: none; 
    }
}
