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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #4a4a4a;
    --text-color: #333;
    --bg-color: #ffffff;
    --accent-color: #3A8DFF;
    --cta-color: #00E6A7;
    --border-color: #e0e0e0;
    --section-bg: #f8f9fa;
}

/* Geeky Playful Elements */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(0,123,255,0.5); }
    50% { box-shadow: 0 0 20px rgba(0,123,255,0.8); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: #E6F0FF;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Subtle background decorative elements */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(58, 141, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 230, 167, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(58, 141, 255, 0.03) 0%, transparent 50%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 49px,
            rgba(58, 141, 255, 0.01) 50px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 49px,
            rgba(58, 141, 255, 0.01) 50px
        );
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '{ } </> [ ]';
    position: fixed;
    top: 10%;
    right: 5%;
    font-family: 'Courier New', monospace;
    font-size: 120px;
    color: rgba(58, 141, 255, 0.02);
    font-weight: 700;
    transform: rotate(-15deg);
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    animation: float 20s ease-in-out infinite;
}

/* Additional floating decorative elements */
@keyframes drift {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Courier New', monospace;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.geeky-brackets {
    color: var(--accent-color);
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.code-tag {
    color: var(--accent-color);
    font-family: 'Courier New', monospace;
    font-weight: 600;
    opacity: 0.7;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--accent-color);
}

.btn-quick-chat {
    background: linear-gradient(to right, #004d5a 0%, #006d7a 30%, #00a8c5 60%, #00d9ff 100%);
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
}

.btn-quick-chat:hover {
    opacity: 0.9;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(to right, #004d5a 0%, #006d7a 30%, #00a8c5 60%, #00d9ff 100%);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
}

.btn-download:hover {
    opacity: 0.9;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: url('assets/Background_3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-profile-circle {
    width: 150px;
    height: 150px;
    margin: 0 auto 40px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border: 5px solid white;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-placeholder-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3A8DFF 0%, #00E6A7 100%);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.image-placeholder-circle .placeholder-icon {
    font-size: 60px;
    animation: float 3s ease-in-out infinite;
}

.hero-image img[style*="display: none"] ~ .image-placeholder-circle {
    display: flex;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 10px;
    color: white;
    position: relative;
    z-index: 1;
}

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

.hero-tagline {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
}

.hero-subtitle {
    font-size: 21px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    font-weight: 400;
    margin-top: 0;
    line-height: 1.5;
}

.hero-description {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-contact {
    font-size: 16px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-contact a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.hero-contact a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s, opacity 0.3s;
    width: 32px;
    height: 32px;
}

.social-links a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.social-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
    max-width: 32px;
    max-height: 32px;
    min-width: 32px;
    min-height: 32px;
    filter: brightness(0) invert(1);
}

/* About Me Section */
.about-section {
    background-color: #E6F0FF;
    padding: 80px 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.about-profile-circle {
    width: 200px;
    height: 200px;
    min-width: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border: 5px solid white;
    position: relative;
    flex-shrink: 0;
    margin-right: auto;
    margin-left: 0;
}

.about-profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

.about-content .image-placeholder-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3A8DFF 0%, #00E6A7 100%);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.about-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
    text-align: left;
    flex: 1;
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-divider {
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

/* Personal Info Section */
.personal-info {
    background-color: var(--section-bg);
}

.personal-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.personal-info-text {
    font-size: 16px;
    line-height: 1.8;
}

.personal-info-text p {
    margin-bottom: 20px;
}

.about-story p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.skills-list {
    list-style: none;
    font-size: 16px;
    line-height: 2;
}

.skills-list li {
    margin-bottom: 8px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.stat-divider {
    width: 40px;
    height: 2px;
    background-color: var(--border-color);
    margin: 20px auto;
}

/* Skills Section */
.skills-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.skills-section .container {
    position: relative;
    z-index: 2;
}

.skills-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.3) 0%, transparent 50%),
        linear-gradient(to right, #004d5a 0%, #006d7a 30%, #00a8c5 60%, #00d9ff 100%);
    height: 168px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.skills-banner h2 {
    color: white;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.skills-section .section-header {
    display: none;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
    transform: translateY(-20px);
}

.skill-card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.skill-icon {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.skill-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.skill-card > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
}

.skill-category {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.skill-tools {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 15px;
}

.tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.tool-tags span {
    padding: 6px 14px;
    background-color: var(--section-bg);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.software-item::before {
    content: '{ }';
    position: absolute;
    top: 10px;
    right: 15px;
    font-family: 'Courier New', monospace;
    font-size: 24px;
    color: rgba(0,123,255,0.1);
    font-weight: 700;
}

.software-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.carousel-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dots .dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.software-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
    line-height: 1.3;
}

.proficiency {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--section-bg);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.software-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    flex-grow: 1;
    margin-top: 8px;
}

/* Experience Section - Timeline Style */
.experience-section {
    background-color: #E6F0FF;
    padding: 80px 0;
}

.experience-section .section-header h2 {
    color: var(--primary-color);
}

.experience-section .section-header {
    text-align: center;
}

.experience-section .section-divider {
    background-color: var(--accent-color);
    margin-left: auto;
    margin-right: auto;
}

.experience-section .timeline-content h3 {
    color: var(--primary-color);
}

.experience-section .timeline-content p {
    color: var(--text-color);
}

.experience-timeline-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.timeline-left-column,
.timeline-right-column {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-left-column li,
.timeline-right-column li {
    margin-bottom: 50px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.timeline-year {
    min-width: 80px;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
    padding-top: 5px;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
}

/* Education Section - Timeline Style */
.education-section {
    background-color: var(--section-bg);
    padding: 80px 0;
}

.education-section .section-header {
    text-align: center;
}

.education-section .section-description {
    text-align: center;
}

.education-section .section-divider {
    margin: 0 auto 20px;
}

.education-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #004d5a 0%, #006d7a 30%, #00a8c5 60%, #00d9ff 100%);
    transform: translateX(-50%);
    z-index: 0;
}

.education-item {
    position: relative;
    display: flex;
    margin-bottom: 60px;
    z-index: 1;
}

.education-item.timeline-left {
    flex-direction: row;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    padding-left: 0;
}

.education-item.timeline-right {
    flex-direction: row-reverse;
    justify-content: flex-start;
    padding-left: calc(50% + 40px);
    padding-right: 0;
}

.education-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: white;
    padding: 10px;
}

.education-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.education-item.timeline-left .education-icon {
    margin-left: 0;
}

.education-item.timeline-right .education-icon {
    margin-right: 0;
}

.education-item.timeline-left:nth-child(3) .education-icon {
    background: linear-gradient(135deg, #3A8DFF, #00E6A7);
}

.education-icon img {
    background: white;
}

.icon-placeholder {
    color: white;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
}

.education-icon:hover {
    transform: translateX(-50%) scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.education-content {
    flex: 1;
    max-width: 400px;
    padding: 25px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.education-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.education-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.degree {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.education-item p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: var(--text-color);
}

.gpa {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 10px;
}


/* Projects Section */
.projects-section {
    background-color: #E6F0FF;
    padding: 80px 0;
}

.projects-section .section-header {
    text-align: center;
}

.projects-section .section-header h2 {
    color: var(--primary-color);
}

.projects-section .section-description {
    color: var(--text-color);
    text-align: center;
}

.projects-section .section-divider {
    background-color: var(--accent-color);
    margin: 0 auto 20px;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.project-wrapper {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.project-image-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    width: 280px;
    height: 200px;
    flex-shrink: 0;
}

.project-image-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-img-zoom {
    transform: scale(1.3);
    object-position: center;
}

.project-placeholder {
    font-size: 60px;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3A8DFF 0%, #00E6A7 100%);
}

.project-info-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.project-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.project-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.project-info-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

.project-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    align-self: flex-start;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

.project-link:hover {
    transform: translateX(5px);
    border-bottom-color: currentColor;
}

.project-item ul {
    list-style: none;
    margin-top: 15px;
}

.project-item li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
}

/* Quick Chat Section */
.quick-chat-section {
    background-color: #f8f9fa;
    padding: 0;
    position: relative;
}

.quick-chat-banner {
    position: relative;
    width: 100%;
    background: url('assets/Background_3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-chat-banner .container {
    text-align: center;
    max-width: 600px;
}

.quick-chat-banner h2 {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-align: center;
}

.quick-chat-description {
    color: white;
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.quick-chat-content {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.btn-quick-chat-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(to right, #004d5a 0%, #006d7a 30%, #00a8c5 60%, #00d9ff 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    margin-bottom: 20px;
    border: none;
}

.btn-quick-chat-large:hover {
    opacity: 0.9;
}

.btn-quick-chat-large span:first-child {
    font-size: 18px;
}

.quick-chat-note {
    color: white;
    font-size: 14px;
    font-style: italic;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    text-align: center;
}

.contact-section .section-header {
    text-align: center;
}

.contact-section .section-divider {
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.services-list {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background-color: var(--section-bg);
    padding: 30px;
    border-radius: 8px;
}

.services-list p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.services-list ul {
    list-style: none;
}

.services-list li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: url('assets/Background_3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 40px 0 20px;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 600;
    color: white;
    text-decoration: none;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
}

.footer-social a:hover {
    opacity: 1;
    transform: scale(1.1);
}

.footer-social-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    display: block;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-profile-circle {
        width: 120px;
        height: 120px;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-tagline {
        font-size: 18px;
    }

    .hero-description {
        font-size: 15px;
    }
    
    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .about-profile-circle {
        width: 150px;
        height: 150px;
        min-width: 150px;
    }
    
    .about-description {
        text-align: left;
    }

    .personal-info-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .experience-timeline-list {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .timeline-left-column li,
    .timeline-right-column li {
        flex-direction: column;
        gap: 15px;
    }

    .timeline-year {
        min-width: auto;
    }

    .timeline-line {
        left: 30px;
    }

    .education-item {
        flex-direction: row !important;
        padding-left: 80px !important;
        padding-right: 0 !important;
    }

    .education-item.timeline-right {
        flex-direction: row !important;
    }

    .education-icon {
        position: absolute;
        left: 30px;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        min-width: 60px;
        margin: 0 !important;
    }
    
    .education-icon:hover {
        transform: translateX(-50%) scale(1.1) rotate(5deg);
    }

    .education-content {
        max-width: 100%;
    }

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

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .project-card {
        flex-direction: column;
    }

    .project-image {
        width: 100%;
        min-width: 100%;
        padding: 30px;
    }

    .project-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .project-image-card {
        width: 100%;
        height: 200px;
    }

    .project-info-card {
        padding: 20px;
    }

    .project-info-card h3 {
        font-size: 18px;
    }

    .project-info-card p {
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

