.about-arrowhead {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: 100% 50%;
    transition: opacity 0.3s, transform 0.3s;
}
.about-heading-group:hover .about-arrowhead {
    opacity: 1;
    transform: scaleX(1);
}

/* About heading line animation */
.about-line-arrow {
    color: var(--accent);
}
.about-arrowhead {
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}
.about-heading-group:hover .about-arrowhead {
    opacity: 1;
    transform: scale(1);
}
.about-heading-line svg line {
    transition: all 0.3s ease;
}
.about-heading-group:hover .about-heading-line svg line {
    transform: scaleX(0.94);
    transform-origin: left;
}

/* Projects Section Styles */
.projects-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: var(--dark-bg);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.light .project-card {
    background: var(--light-bg);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.project-card:hover {
    transform: scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(156, 20, 236, 0.15);
}

.project-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.light .project-image {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.project-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent);
    transition: color 0.3s ease;
}

.project-card:hover .project-title {
    color: var(--accent);
}

.project-description {
    color: var(--grey);
    line-height: 1.6;
    font-size: 1.1rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
}

.project-tag {
    background: rgba(156, 20, 236, 0.1);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-card:hover .project-tag {
    background: rgba(156, 20, 236, 0.15);
    transform: translateY(-2px);
}

.project-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.light .project-links {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.project-link {
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.project-link:hover {
    transform: translateX(5px);
    opacity: 0.8;
}

.project-link i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

/* Experience Section Styles */
.experience-arrowhead {
    opacity: 1;
    transform: scaleX(1);
}
.experience-heading-line svg line {
    transition: none;
}
.experience-heading-group:hover .experience-heading-line svg line {
    transform: none;
}

.experience-heading-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.experience-heading-line {
    min-width: 40px;
    height: 3px;
    position: relative;
    overflow: visible;
}

.experience-heading-line.left {
    transform: scaleX(-1);
}

.experience-heading-line.left .experience-arrowhead {
    transform-origin: 0% 50%;
}

.experience-item {
    transform: translateX(-20px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.experience-item.animate {
    transform: translateX(0);
    opacity: 1;
}

/* Timeline Styles */
.timeline {
    position: relative;
    min-height: 400px;
    z-index: 1;
}
.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: var(--timeline-line-height, 100%);
    background: var(--accent, #9C14EC);
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

.timeline > li {
    position: relative;
    min-height: 120px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.timeline > li:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline > li .timeline-icon {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    width: 64px;
    height: 64px;
    background: var(--accent, #9C14EC);
    border: 4px solid #fff;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.timeline > li .timeline-panel {
    position: relative;
    width: 46%;
    background: none;
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 0;
    z-index: 1;
    color: inherit;
}

.timeline > li:nth-child(odd) .timeline-panel {
    margin-left: 56%;
    text-align: left;
}

.timeline > li:nth-child(even) .timeline-panel {
    margin-right: 56%;
    text-align: right;
}

.timeline .timeline-heading h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent, #9C14EC);
}
.light .timeline .timeline-heading .company {
    color: #131515 !important;
}
.timeline .timeline-heading .subheading {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--accent, #9C14EC);
}
.timeline .timeline-heading .company {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}
.timeline .timeline-body p {
    margin: 0 0 0.5rem 0;
    text-wrap: balance;
    color: #bdbdbd;
}
.light .timeline .timeline-body p {
    color: #232323;
}
.timeline .skills {
    margin-top: 0.5rem;
}
.timeline .skills span {
    display: inline-block;
    background: #232323;
    color: #fff;
    border-radius: 999px;
    padding: 0.3em 1em;
    font-size: 0.95em;
    margin: 0 0.2em 0.2em 0;
    font-weight: 500;
}
.light .timeline .skills span {
    background: #e5e5e5;
    color: #131515;
}

/* Responsive: Mobile */
@media (max-width: 900px) {
    .timeline:before {
        left: 32px;
        transform: none;
    }
    .timeline > li {
        flex-direction: column;
        min-height: 100px;
        margin-bottom: 40px;
    }
    .timeline > li .timeline-icon {
        left: 32px;
        top: 0;
        transform: translate(-50%, 0);
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    .timeline > li .timeline-panel,
    .timeline > li.timeline-inverted .timeline-panel {
        width: 100%;
        margin: 0 0 0 56px !important;
        text-align: left !important;
        padding: 1.2rem 1rem;
    }
}

.timeline-icon.see-more-link {
    background: transparent;
    border: 4px solid var(--accent, #9C14EC);
    color: var(--accent, #9C14EC);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    animation: seeMoreBounce 1.2s infinite alternate;
}
.timeline-icon.see-more-link:hover,
.timeline-icon.see-more-link:focus {
    background: var(--accent, #9C14EC);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 0 0 6px rgba(156,20,236,0.15);
    transform: scale(1.08) translateY(2px);
}

@keyframes seeMoreBounce {
    0% { transform: translate(-50%, 0) scale(1); }
    100% { transform: translate(-50%, 10px) scale(1.08); }
}

/* Make the timeline line end at the see more icon */
.timeline > li.timeline-inverted.see-more {
    z-index: 3;
}
.timeline > li.timeline-inverted.see-more .timeline-icon {
    z-index: 4;
}

/* Skills Section Styles */
.skills-section {
    position: relative;
    padding: 4rem 0 4rem 0rem;
    overflow: hidden;
    min-height: 400px;
}

.skills-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    --animation-duration: 30s;
    padding: 2rem 0;
}

.skills-wrapper {
    position: relative;
    width: 100%;
}

.skills-line {
    display: flex;
    gap: 2.5rem;
    padding: 1.5rem 0;
    position: relative;
    width: max-content;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.skills-line:nth-child(2) {
    margin: 0 -2.5rem;
}

.skills-line:nth-child(3) {
    margin: 0 -5rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: var(--accent);
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.light .skill-item {
    background: var(--light-bg);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.skill-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(156, 20, 236, 0.1);
}

.skill-item i {
    font-size: 1.2rem;
}

/* Animation classes */
.skills-line-1 {
    animation: slideLeft var(--animation-duration) linear infinite;
    transform: translate3d(0, 0, 0);
}

.skills-line-2 {
    animation: slideRight calc(var(--animation-duration) + 5s) linear infinite;
    transform: translate3d(-50%, 0, 0);
}

.skills-line-3 {
    animation: slideLeft calc(var(--animation-duration) + 10s) linear infinite;
    transform: translate3d(0, 0, 0);
}

@keyframes slideLeft {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes slideRight {
    from {
        transform: translate3d(-50%, 0, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

.skills-line:hover {
    animation-play-state: paused;
}

/* JavaScript will handle the distribution of skills */
.skill-item[data-line="1"] { order: 1; }
.skill-item[data-line="2"] { order: 2; }
.skill-item[data-line="3"] { order: 3; }

/* Contact Section Styles */
.contact-section {
    position: relative;
    padding: 8rem 0;
    background: var(--dark-bg);
    overflow: hidden;
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.light .contact-section {
    background: var(--light-bg);
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    position: sticky;
    top: 120px;
    background: rgba(156, 20, 236, 0.03);
    border-radius: 2rem;
    padding: 3rem;
    border: 1px solid rgba(156, 20, 236, 0.1);
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 2rem;
}

.contact-info-description {
    color: var(--grey);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(156, 20, 236, 0.05);
    border-radius: 1rem;
    transition: all 0.3s ease,
                background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-method:hover {
    transform: translateX(10px);
    background: rgba(156, 20, 236, 0.1);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: white;
    border-radius: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-method-content {
    flex: 1;
}

.contact-method-label {
    font-size: 0.9rem;
    color: var(--grey);
    margin-bottom: 0.25rem;
}

.contact-method-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-text);
}

.light .contact-method-value {
    color: var(--light-text);
}

.contact-form-wrapper {
    background: rgba(156, 20, 236, 0.03);
    border-radius: 2rem;
    padding: 3rem;
    border: 1px solid rgba(156, 20, 236, 0.1);
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-label {
    font-size: 0.9rem;
    color: var(--grey);
}

.form-input,
.form-textarea {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--dark-text);
    font-size: 1rem;
    transition: all 0.3s ease,
                background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.light .form-input,
.light .form-textarea {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.02);
    color: var(--light-text);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(156, 20, 236, 0.05);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    grid-column: 1 / -1;
    padding: 1rem 2rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: fit-content;
    margin: 0 auto;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(156, 20, 236, 0.2);
}

.submit-button i {
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        position: relative;
        top: 0;
    }
}

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

    .contact-info,
    .contact-form-wrapper {
        padding: 2rem;
    }
}

/* Add this CSS rule in the style section */
.light input[type="email"] {
    color: var(--light-text) !important;
}

/* Theme transition properties */
.project-card,
.education-card,
.contact-info,
.contact-form-wrapper,
.contact-method,
.form-input,
.form-textarea,
.skill-item,
.timeline .skills span,
.contact-title-bg,
.contact-title,
.contact-subtitle,
.contact-method-value,
.contact-method-label,
.form-label,
.about-intro,
.about-detail,
.project-description,
.education-description,
.education-school,
.timeline .timeline-body p,
.hero-name,
.hero-text,
.hero-crafting{
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-name{
    display: inline-block;
    transform: scaleY(1.3);
    transform-origin: center;
}

.profile-oval {
    width: 88px;
    height: 117px;
    border-radius: 50% / 40%;
    object-fit: cover;
    object-position: center;
    border: none;
    box-shadow: none;
    background: none;
    display: block;
    transition: width 0.3s, height 0.3s;
}
@media (min-width: 1024px) {
    .profile-oval {
        width: 176px !important;
        height: 235px !important;
    }
}

/* Remove all animation-related CSS */
/* Initial states for animated elements */
.hero-img,
.hero-name-top,
.hero-name-bottom,
.craft-word,
.hero-diamond,
.hero-text,
.hero-scroll {
    opacity: 0;
}

/* Profile image initial state */
.hero-img {
    transform: scale(0.7);
}

/* Name initial states */
.hero-name-top,
.hero-name-bottom {
    transform: translateY(60px);
}

/* Diamond initial state */
.hero-diamond {
    transform: scale(0.8);
}

/* Text and scroll initial states */
.hero-text,
.hero-scroll {
    transform: translateY(20px);
}

/* Animation classes will be added by GSAP */
.hero-img.animate,
.hero-name-top.animate,
.hero-name-bottom.animate,
.craft-word.animate,
.hero-diamond.animate,
.hero-text.animate,
.hero-scroll.animate {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

/* Education Section Styles */
.education-section {
    position: relative;
    padding: 6rem 0;
}

.education-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    justify-content: center;
    justify-items: center;
}

.education-card {
    background: var(--dark-bg);
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    min-width: 320px;
    max-width: 320px;
    flex: 1 1 calc(33.333% - 1rem);
}

.light .education-card {
    background: var(--light-bg);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.education-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(156, 20, 236, 0.15);
}

.education-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.education-card:hover::before {
    transform: scaleX(1);
}

.education-icon-wrapper {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(156, 20, 236, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.education-card:hover .education-icon-wrapper {
    background: var(--accent);
    color: white;
    transform: rotate(10deg);
}

.education-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.education-date {
    color: var(--accent);
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(156, 20, 236, 0.1);
    border-radius: 999px;
    width: fit-content;
}

.education-degree {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.3;
}

.light .education-degree {
    color: var(--light-text);
}

.education-school {
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: 0.5rem;
}

.education-description {
    color: var(--grey);
    line-height: 1.6;
    font-size: 0.95rem;
}

.education-certificate {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(156, 20, 236, 0.1);
    color: var(--accent);
    border-radius: 999px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.education-certificate:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.education-certificate i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.education-certificate:hover i {
    transform: translateY(-2px);
}

/* Contact Section Title Styles */
.contact-title-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.contact-title-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.1;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    text-shadow: 0 0 30px rgba(156, 20, 236, 0.1);
}

.contact-title-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 20px rgba(156, 20, 236, 0.2);
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(156, 20, 236, 0.3);
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--grey);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(156, 20, 236, 0.1);
}

.light .contact-title-bg {
    opacity: 0.05;
}

.light .contact-title {
    text-shadow: none;
}

.light .contact-title::after {
    box-shadow: none;
}

.light .contact-subtitle {
    text-shadow: none;
}

@media (max-width: 768px) {    
    .contact-title-bg {
        font-size: 8rem;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

/* About Section Styles */
.about-section {
    position: relative;
    padding: 8rem 0;
    background: var(--dark-bg);
    overflow: hidden;
    transition: background-color var(--transition-smooth);
}

.light .about-section {
    background: var(--light-bg);
}

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

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

.about-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 2rem;
    overflow: hidden;
    background: rgba(156, 20, 236, 0.1);
    transition: all var(--transition-smooth);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

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

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

.about-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
    margin: 0;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--grey);
    line-height: 1.6;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-text);
}

.light .about-description {
    color: var(--light-text);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.stat-card {
    background: rgba(156, 20, 236, 0.05);
    border: 1px solid rgba(156, 20, 236, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all var(--transition-smooth);
}

.light .stat-card {
    background: rgba(156, 20, 236, 0.02);
    border: 1px solid rgba(156, 20, 236, 0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(156, 20, 236, 0.1);
    border-color: var(--accent);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--grey);
    font-weight: 500;
}

.about-cta {
    margin-top: 2rem;
}

.about-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.about-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(156, 20, 236, 0.2);
}

.about-cta-button i {
    font-size: 1.2rem;
    transition: transform var(--transition-smooth);
}

.about-cta-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }

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

    .about-container {
        padding: 0 1.5rem;
    }
}

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

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

    .about-container {
        padding: 0 1rem;
    }
}

/* Projects Section Styles */
.projects-section {
    position: relative;
    padding: 8rem 0;
    background: var(--dark-bg);
    overflow: hidden;
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.light .projects-section {
    background: var(--light-bg);
}

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

/* Education Section Styles */
.education-section {
    position: relative;
    padding: 8rem 0;
    background: var(--dark-bg);
    overflow: hidden;
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.light .education-section {
    background: var(--light-bg);
}

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

/* Experience Section Styles */
.experience-section {
    position: relative;
    padding: 8rem 0;
    background: var(--dark-bg);
    overflow: hidden;
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.light .experience-section {
    background: var(--light-bg);
}

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

/* Common Section Title Styles */
.section-title-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.section-title-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.1;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    text-shadow: 0 0 30px rgba(156, 20, 236, 0.1);
}

.section-title-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 20px rgba(156, 20, 236, 0.2);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--grey);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(156, 20, 236, 0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-info,
    .contact-info {
        position: relative;
        top: 0;
    }

    .section-title-bg {
        font-size: 8rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .about-info,
    .contact-info,
    .contact-form-wrapper {
        padding: 2rem;
    }

    .projects-grid,
    .education-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-title-bg {
        font-size: 6rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-container,
    .projects-container,
    .education-container,
    .experience-container,
    .contact-container {
        padding: 0 1rem;
    }
}