/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #334155;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.header-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3b82f6;
}

/* 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.2s ease;
    font-size: 0.875rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    box-shadow: 0 8px 15px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.25);
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
    box-shadow: 0 8px 15px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 1px solid #3b82f6;
}

.btn-outline:hover {
    background: #3b82f6;
    color: white;
}

.btn-footer-outline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-footer-outline:hover {
    background: white;
    color: #1e293b;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 5rem 2rem;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 50%, #f3e8ff 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1), transparent 50%);
    animation: pulse 3s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.profile-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.profile-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.75;
    animation: pulse 3s ease-in-out infinite;
}

.profile-image {
position: relative;
width: 155px;
height: 175px;
border-radius: 50%;
border: 4px solid white;
box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
object-fit: cover;
transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e293b 0%, #64748b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skills-highlight {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    margin-bottom: 2rem;
    font-weight: 500;
}

.skill-tag {
    font-weight: 600;
}

.skill-data-analyst {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skill-sql {
    background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skill-powerbi {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skill-gcp {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider {
    color: #64748b;
    margin: 0 0.5rem;
}

.mobile-break {
    display: none;
}

.hero-description {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.highlight-blue {
    font-weight: 600;
    color: #3b82f6;
}

.highlight-green {
    font-weight: 600;
    color: #059669;
}

.highlight-purple {
    font-weight: 600;
    color: #8b5cf6;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: #64748b;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.contact-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    width: 20px;
    height: 20px;
    color: #3b82f6;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #3b82f6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* About Section */
                                /* Social Media Icons */
ul.social-network {
    position: relative;
    left: 280px;
    bottom: 30px;
}

@media (max-width: 768px) {
    ul.social-network {
        left: 0;
        bottom: 0;
        margin-top: 20px;
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }

    .social-circle li a {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .social-circle li i {
        line-height: 40px;
    }
}



ul.social-network li {
    display: inline;
    margin: 0 5px;
}

.social-network a.icoRss:hover {
    background-color: #F56505;
}

.social-network a.icoFacebook:hover {
    background-color: #3B5998;
}

.social-network a.icoTwitter:hover {
    background-color: #33ccff;
}

.social-network a.icoGoogle:hover {
    background-color: #1ef328;
}

.social-network a.icoVimeo:hover {
    background-color: #0590B8;
}

.social-network a.icoLinkedin:hover {
    background-color: #007bb7;
}

.social-network a.icogithub:hover {
    background-color: #000000;
}

.social-network a.icoinstagram:hover {
    background-color: rgb(255, 0, 162);
}

.social-network a.icoRss:hover i,
.social-network a.icogithub:hover i,
.social-network a.icoinstagram:hover i,
.social-network a.icoFacebook:hover i,
.social-network a.icoTwitter:hover i,
.social-network a.icoGoogle:hover i,
.social-network a.icoVimeo:hover i,
.social-network a.icoLinkedin:hover i {
    color: #fff;
}

a.socialIcon:hover,
.socialHoverClass {
    color: #44BCDD;
}

.social-circle li a {
    display: inline-block;
    position: relative;
    margin: 0 auto 0 auto;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    width: 50px;
    height: 50px;
    font-size: 30px;
}

.social-circle li i {
    margin: 0;
    line-height: 50px;
    text-align: center;
}

.social-circle li a:hover i,
.triggeredHover {
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -ms--transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

.social-circle i {
    color: rgb(27, 0, 40);
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
}

/* //////////////////////////////////////          /* Social Media Icons */

.about {
    padding: 4rem 2rem;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-icon {
    width: 48px;
    height: 48px;
    color: #3b82f6;
    margin: 0 auto 1rem;
}

.section-icon-large {
    width: 64px;
    height: 64px;
    color: #3b82f6;
    margin: 0 auto 1rem;
    filter: drop-shadow(0 4px 6px rgba(59, 130, 246, 0.25));
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-title-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: #3b82f6;
    margin: 0 auto;
}

.section-divider-gradient {
    width: 96px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    margin: 0 auto 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #64748b;
}

/* Skills Section */
.skills {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 100%);
    position: relative;
    overflow: hidden;
}

.skills-background {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.bg-pattern-1 {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.3), transparent 50%);
}

.bg-pattern-2 {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.3), transparent 50%);
}

.primary-skills {
    margin-bottom: 3rem;
    position: relative;
    top: 15px;
}

.primary-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: #374151;
    margin-bottom: 2rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.skill-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.skill-glow {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    filter: blur(4px);
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.skill-card:hover .skill-glow {
    opacity: 1;
}

.sql-glow {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
}

.powerbi-glow {
    background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
}

.gcp-glow {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
}

.skill-content {
    position: relative;
    z-index: 10;
}

.skill-header {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 100%);
}

.sql-header {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
}

.powerbi-header {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.gcp-header {
    background: linear-gradient(135deg, #fed7aa 0%, #fde68a 100%);
}

.skill-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.sql-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    color: white;
}

.powerbi-icon {
    background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
    color: white;
}

.gcp-icon {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    color: white;
}

.skill-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.skill-metrics {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
}

.skill-tags {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tag:hover {
    transform: scale(1.05);
}

.tag-blue {
    background: #dbeafe;
    color: #1e40af;
}

.tag-indigo {
    background: #e0e7ff;
    color: #3730a3;
}

.tag-purple {
    background: #f3e8ff;
    color: #7c2d12;
}

.tag-green {
    background: #d1fae5;
    color: #065f46;
}

.tag-teal {
    background: #ccfbf1;
    color: #0f766e;
}

.tag-emerald {
    background: #d1fae5;
    color: #064e3b;
}

.tag-orange {
    background: #fed7aa;
    color: #9a3412;
}

.tag-red {
    background: #fecaca;
    color: #b91c1c;
}

.tag-yellow {
    background: #fef3c7;
    color: #92400e;
}

.tag-gray {
    background: #f3f4f6;
    color: #374151;
}

/* Supporting Skills */
.supporting-skills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.support-skill-group h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.support-title i {
    width: 24px;
    height: 24px;
    color: #3b82f6;
}

.support-skills-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.support-skill-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.support-skill-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.support-skill-item span:first-child {
    font-weight: 500;
    color: #374151;
}

.support-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Projects Section */
.projects {
    padding: 4rem 2rem;
    background: white;
    position: relative;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    position: relative;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.project-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #6366f1 100%);
    border-radius: 1rem;
    filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-glow {
    opacity: 0.75;
}

.project-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 100%);
}

.project-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.project-title-row h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    flex: 1;
}

.external-link {
    width: 16px;
    height: 16px;
    color: #3b82f6;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .external-link {
    opacity: 1;
}

.project-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-healthcare {
    background: #d1fae5;
    color: #065f46;
}

.badge-cloud {
    background: #fed7aa;
    color: #9a3412;
}

.badge-performance {
    background: #dbeafe;
    color: #1e40af;
}

.project-metrics {
    display: flex;
    gap: 1rem;
}

.metric {
    text-align: center;
}

.metric-value {
    font-weight: 700;
    font-size: 0.875rem;
}

.metric-value.green {
    color: #059669;
}

.metric-value.blue {
    color: #3b82f6;
}

.metric-value.orange {
    color: #ea580c;
}

.metric-value.purple {
    color: #8b5cf6;
}

.metric-label {
    font-size: 0.75rem;
    color: #64748b;
}

.project-description {
    padding: 0 1.5rem;
    color: #64748b;
    margin-bottom: 1rem;
    display: -webkit-box;
    /* -webkit-line-clamp: 3; */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-highlights {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.highlight-dot {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.highlight-item span {
    font-size: 0.875rem;
    color: #64748b;
}

.project-technologies {
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-top: auto;
}

.tech-tag {
    padding: 0.25rem 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    color: #374151;
    transition: all 0.2s ease;
}

.tech-tag:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.tech-tag-more {
    padding: 0.25rem 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    color: #6b7280;
}

/* Experience Section */
.experience {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 100%);
}

.experience-card {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.experience-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.experience-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.experience-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
}

.company {
    color: #3b82f6;
    font-weight: 500;
}

.duration-badge {
    background: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.experience-responsibilities {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.responsibility-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.responsibility-dot {
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.responsibility-item span {
    color: #64748b;
    line-height: 1.6;
}

/* Education & Awards Section */
.education-awards {
    padding: 4rem 2rem;
    background: white;
}

.education-awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.education-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.education-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.education-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.institution {
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 1rem;
}

.education-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.year {
    color: #6b7280;
}

.percentage-badge {
    background: #d1fae5;
    color: #065f46;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.award-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.award-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.award-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.award-icon {
    width: 48px;
    height: 48px;
    background: #fef3c7;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.award-icon i {
    color: #d97706;
}

.award-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.award-organization {
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.award-description {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 2rem;
}

.footer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-content p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: 2rem;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.75;
    }
    50% {
        opacity: 1;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav {
        display: none;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .skills-highlight {
        font-size: 1.25rem;
    }
    
    .mobile-break {
        display: block;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .supporting-skills {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .education-awards-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-title-large {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .profile-image {
        width: 170px;
        height: 170px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .skills-highlight {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-title-large {
        font-size: 1.75rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}













/* =========== CSS Services Tags =============== */

.section-services {
    font-family: "Poppins", sans-serif;
    color: #202020;
    padding-top: 115px;
    padding-bottom: 120px;
}

.section-services .header-section {
    margin-bottom: 34px;
}

.section-services .header-section .title {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 32px;
}

.section-services .header-section .title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    border-radius: 3px;
}

.section-services .header-section .title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(30px);
    width: 10px;
    height: 3px;
    background-color: #504f93;
    border-radius: 3px;
}

.section-services .header-section .description {
    font-size: 14px;
    color: #282828;
}

.section-services .single-service {
    position: relative;
    margin-top: 30px;
    background-color: rgb(250, 240, 255);
    border-radius: 10px;
    padding: 40px 30px;
    overflow: hidden;
    box-shadow: 1px 1px 8px rgba(40, 0, 35, 0.089);
}

.section-services .single-service .content {
    position: relative;
    z-index: 20;
}

.section-services .single-service .circle-before {
    position: absolute;
    top: 0;
    right: 0px;
    transform: translate(40%, -40%);
    width: 150px;
    height: 150px;
    background-color: #c300ff;
    border: 6px solid #504f93;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 10;
    transition: all .6s;
}

.section-services .single-service:hover .circle-before {
    width: 100%;
    height: 100%;
    transform: none;
    border: 0;
    border-radius: 0;
    opacity: 1;
}

.section-services .single-service .icon {
    display: inline-block;
    margin-bottom: 26px;
    width: 70px;
    height: 70px;
    background-color: #c300ff;
    border-radius: 5px;
    line-height: 70px;
    text-align: center;
    color: rgb(250, 240, 255);
    font-size: 30px;
    transition: all .3s;
}

.section-services .single-service:hover .icon {
    background-color: rgb(250, 240, 255);
    color: #c300ff;
}

.section-services .single-service .title {
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 23px;
    transition: color .3s;
}

.section-services .single-service:hover .title {
    color: rgb(250, 240, 255);
}

.section-services .single-service .description {
    margin-bottom: 20px;
    font-size: 14px;
    transition: color .3s;
}

.section-services .single-service:hover .description {
    color: rgb(250, 240, 255);
}

.section-services .single-service a {
    position: relative;
    font-size: 18px;
    color: #202020;
    text-decoration: none;
    font-weight: 500;
    transition: color .3s;
}

.section-services .single-service:hover a {
    color: rgb(250, 240, 255);
}

.section-services .single-service a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgb(250, 240, 255);
    transition: background-color .3s;
}

.section-services .single-service:hover a:after {
    background-color: rgb(250, 240, 255);
}

/* =========== End CSS Services Tags =============== */



.nav__link a {
    position: relative;
}


.nav__link a::after {
    content: '';
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    transition: width .5s;
}

.nav__link a:hover {
    color: rgb(140, 0, 135);
    text-shadow: 4px 4px 30px rgb(200, 0, 255);
}

.nav__link a:hover::after {
    width: 100%;
    background-color: rgb(156, 0, 183);
}


@media screen and (min-width: 600px) {
    .nav__link {
        display: block;
        position: static;
        width: auto;
        margin-right: 20px;
        background: none;
    }

}
 




 








/* Sidebar Base Style */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background-color: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: left 0.3s ease;
    z-index: 999;
}

/* Active sidebar */
.mobile-sidebar.active {
    left: 0;
}

/* Dark background overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    z-index: 998;
    display: none;
}

/* Show overlay when active */
.mobile-overlay.active {
    display: block;
}

/* Only show hamburger on small screens */
.mobile-nav-toggle {
    display: none;
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
        color: #1e293b;
        cursor: pointer;
    }

    .nav {
        display: none !important;
    }
}

html {
  scroll-behavior: smooth;
}

.mobile-theme-toggle {
    margin: 20px;
    text-align: center;
}

#themeToggleMobile {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #3b82f6;
    color: #3b82f6;
    background: transparent;
    transition: 0.3s ease;
}

#themeToggleMobile:hover {
    background-color: #3b82f6;
    color: white;
}
