/* ================================
   About Me Section 
================================ */
#about-me .bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
    margin-top: 0;
}

#about-me .bento-card {
    background: var(--white-color);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

#about-me .bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--theme-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

#about-me .bento-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
}

#about-me .bento-card:hover::before {
    transform: scaleX(1);
}

/* Grid Sizes */
#about-me .bento-large {
    grid-column: span 8;
}

#about-me .bento-medium {
    grid-column: span 4;
}

#about-me .bento-small {
    grid-column: span 6;
}

#about-me .bento-full {
    grid-column: span 12;
}

/* Profile Card */
#about-me .profile-image-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
}

#about-me .profile-image {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 5px solid var(--white-color);
    box-shadow: var(--shadow-sm);
}

#about-me .profile-status {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: #10B981;
    border-radius: var(--radius-full);
    border: 4px solid var(--white-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

#about-me .profile-info {
    text-align: center;
}

#about-me .profile-name {
    font: var(--small-heading-font);
    color: var(--theme-color);
    margin-bottom: 8px;
}

#about-me .profile-role {
    font: var(--body-font);
    color: var(--theme-color);
    margin-bottom: 20px;
}

#about-me .profile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 90%;
    margin: auto;
}

#about-me .social-icon {
    width: 44px;
    height: 44px;
    background: var(--theme-color);
    border: 2px solid var(--theme-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.45s ease;
    font-size: var(--fs-md);
}

#about-me .social-icon:hover {
    background: var(--body-color);
    border-color: var(--theme-color);
    transform: translateY(-3px);
}

/* Content Card */
#about-me .content-heading {
    font: var(--small-heading-font);
    color: var(--heading-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

#about-me .content-heading i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

#about-me .content-text p {
    font: var(--para-font);
    color: var(--para-color);
    margin-bottom: 15px;
}

.content-wrapper {
    max-width: 700px;
}

.content-text {
    overflow: hidden;
}

.content-text p {
    margin-bottom: 12px;
}

.read-toggle {
    background: none;
    border: none;
    color: var(--theme-color);
    cursor: pointer;
    font-weight: 600;
    padding: 0;
}

#core-values .value-card {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all 0.45s ease;
    border: 1px solid var(--border-color);
}

#core-values .value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

#core-values .value-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(11, 102, 106, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--theme-color);
    font-size: 1.8rem;
}

#core-values .value-card h4 {
    font: var(--small-heading-font);
    margin-bottom: 1rem;
}

#work-with-me {
    padding: var(--section-spacing) 0;
}

#work-with-me .section-title-center p {
    margin: 2rem auto 0;
    max-width: 50%;
}

#work-with-me .bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

#work-with-me .bento-box {
    background-color: var(--white-color);
    border-radius: var(--radius-xl);
    padding: 35px;
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.bento-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 0;
}

.bento-box:hover::before {
    transform: translateY(0);
}

#work-with-me .bento-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

#work-with-me .bento-box>* {
    position: relative;
    z-index: 1;
}

#work-with-me .bento-box:hover .bento-icon {
    background: rgb(18 245 255 / 10%);
}

#work-with-me .bento-box:hover img {
    filter: brightness(0) invert(1);
}

#work-with-me .bento-box:hover li::marker {
    color: var(--white-color);
}

#work-with-me .bento-box:hover .bento-title,
#work-with-me .bento-box:hover .bento-description {
    color: var(--white-color);
}

#work-with-me .bento-large {
    grid-column: span 8;
}

#work-with-me .bento-small {
    grid-column: span 4;
}

#work-with-me .bento-medium {
    grid-column: span 6;
}

#work-with-me .bento-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(11, 102, 106, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-2xl);
    color: var(--theme-color);
    margin-bottom: 20px;
    transition: all 0.45s ease;
}

#work-with-me .bento-title {
    font: var(--small-heading-font);
    color: var(--heading-color);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

#work-with-me .bento-description {
    font: var(--body-font);
    color: var(--para-color);
    line-height: 1.7;
    transition: color 0.3s ease;
}

#work-with-me .bento-list {
    margin-top: 20px;
    padding-left: 20px;
}

#work-with-me .bento-list li {
    padding: 12px 0;
    font: var(--body-font);
    color: var(--para-color);
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s ease;
}

#work-with-me .bento-list li::marker {
    color: var(--primary-color);
    font-size: 20px;
}

#work-with-me .bento-list li:last-child {
    border-bottom: none;
}

#work-with-me .bento-list li i {
    color: var(--theme-color);
    font-size: var(--fs-sm);
}

#work-with-me .bento-box:hover .bento-list li {
    color: var(--white-color);
    border-color: rgba(255, 255, 255, 0.2);
}

#work-with-me .bento-box:hover .bento-list li i {
    color: var(--primary-color);
}

#work-with-me .work-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

#modern-cta-section {
    position: relative;
}

.cta-modern-container {
    border: 3px solid var(--theme-color);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.cta-modern-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 6px;
    background: var(--theme-color);
}

#cta-pattern-left,
#cta-pattern-right {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-full);
    border: 2px dashed var(--border-color);
}

#cta-pattern-left {
    top: -100px;
    left: -100px;
}

#cta-pattern-right {
    bottom: -100px;
    right: -100px;
}

#cta-modern-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

#cta-icon-modern {
    width: 100px;
    height: 100px;
    background: var(--theme-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
}

#cta-icon-modern::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 3px solid var(--theme-color);
    border-radius: var(--radius-full);
    opacity: 0.2;
}

#cta-icon-modern::after {
    content: '';
    position: absolute;
    inset: -16px;
    border: 2px solid var(--theme-color);
    border-radius: var(--radius-full);
    opacity: 0.1;
}

#cta-icon-modern i {
    font-size: var(--fs-3xl);
    color: var(--white-color);
}

#cta-modern-heading {
    font: var(--heading-font);
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: 1.4;
}

#cta-modern-text {
    font: var(--para-font);
    color: var(--para-color);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#cta-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

#cta-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--theme-color);
    color: var(--white-color);
    padding: 18px 48px;
    border-radius: var(--radius-md);
    font: var(--btn-font);
    text-decoration: none;
    border: 3px solid var(--theme-color);
    transition: all 0.45s ease;
    font-weight: 600;
}

#cta-primary-btn:hover {
    background: var(--white-color);
    color: var(--theme-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

#cta-primary-btn i {
    transition: transform 0.3s ease;
}

#cta-primary-btn:hover i {
    transform: translateX(5px);
}

#cta-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--theme-color);
    padding: 18px 48px;
    border-radius: var(--radius-md);
    font: var(--btn-font);
    text-decoration: none;
    border: 3px solid var(--theme-color);
    transition: all 0.45s ease;
    font-weight: 600;
}

#cta-secondary-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);

}

/* Decorative Elements */
#decorative-square-1,
#decorative-square-2 {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-color);
    border-radius: var(--radius-lg);
    opacity: 0.1;
    transform: rotate(15deg);
}

#decorative-square-1 {
    top: 40px;
    right: 60px;
}

#decorative-square-2 {
    bottom: 40px;
    left: 60px;
    transform: rotate(-15deg);
}

/* Responsive */
@media (max-width: 992px) {

    #bento-frontend,
    #bento-backend,
    #bento-seo,
    #bento-content {
        grid-column: span 12;
    }

    .cta-modern-container {
        padding: 60px 40px;
    }

    #decorative-square-1,
    #decorative-square-2 {
        display: none;
    }
}

@media (max-width: 768px) {
    #skills-cta-wrapper {
        padding: 60px 0;
    }

    #modern-skills-section {
        margin-bottom: 60px;
    }

    .bento-skill-card {
        padding: 30px 24px;
    }

    .cta-modern-container {
        padding: 40px 24px;
        border-radius: var(--radius-xl);
    }

    #cta-button-wrapper {
        flex-direction: column;
        width: 100%;
    }

    #cta-primary-btn,
    #cta-secondary-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Animations */
@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

#cta-pattern-left {
    animation: float-slow 8s ease-in-out infinite;
}

#cta-pattern-right {
    animation: float-slow 10s ease-in-out infinite reverse;
}

#cta-button-wrapper .secondary-btn {
    margin: 0;
}

#skills-section {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
}

#skills-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(11, 102, 106, 0.03);
    border-radius: 50%;
    top: 0;
    left: -150px;
    pointer-events: none;
}

#skills-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(245, 135, 37, 0.03);
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
    pointer-events: none;
}

#skills-section .section-header {
    text-align: center;
    margin-bottom: var(--section-spacing);
    position: relative;
    z-index: 2;
}

#skills-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--theme-color);
    color: var(--white-color);
    padding: 12px 28px;
    border-radius: var(--radius-2xl);
    font: var(--badge-font);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);

}

#skills-section .section-badge i {
    font-size: var(--fs-sm);
}

#skills-section h2 {
    font: var(--heading-font);
    color: var(--heading-color);
    margin-bottom: 15px;
}

#skills-section h2 span {
    color: var(--primary-color);
    position: relative;
}

#skills-section h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

#skills-section .section-subtitle {
    font: var(--para-font);
    color: var(--para-color);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Skills Cards Container */
#skills-section .skills-wrapper {
    position: relative;
    z-index: 2;
}

#skills-section .skills-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

/* Individual Skill Card */
#skills-section .skill-card {
    background: var(--white-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

#skills-section .skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(245, 135, 37, 0.05);
    transition: left 0.5s ease;
}

#skills-section .skill-card:hover::before {
    left: 0;
}

#skills-section .skill-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

#skills-section .skill-card>* {
    position: relative;
    z-index: 1;
}

/* Card Header */
#skills-section .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

#skills-section .card-title-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

#skills-section .card-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--theme-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

#skills-section .skill-card:hover .card-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
    background: var(--primary-color);
}

#skills-section .card-icon-wrapper i {
    font-size: 28px;
    color: var(--white-color);
}

#skills-section .card-title {
    font: var(--sub-heading-font);
    color: var(--heading-color);
    margin: 0;
    max-width: 80%;
}

#skills-section .card-count {
    background: rgba(11, 102, 106, 0.1);
    color: var(--theme-color);
    padding: 6px 16px;
    border-radius: var(--radius-lg);
    font: var(--badge-font);
    font-weight: 700;
    flex: 0 0 auto;
}

/* Tech Stack Grid */
#skills-section .tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

#skills-section .tech-item {
    background: rgba(11, 102, 106, 0.04);
    border: 1px solid rgba(11, 102, 106, 0.1);
    border-radius: var(--radius-md);
    padding: 18px 12px;
    text-align: center;
    transition: all 0.45s ease;
    cursor: pointer;
}

#skills-section .tech-item:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);

}

#skills-section .tech-icon {
    font-size: var(--fs-2xl);
    margin-bottom: 10px;
    transition: all 0.45s ease;
}

#skills-section .tech-item:hover .tech-icon {
    transform: scale(1.2);
}

#skills-section .tech-name {
    font: var(--body-font);
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

#skills-section .tech-item:hover .tech-name {
    color: var(--white-color);
}

#skills-section .tech-level {
    font: var(--badge-font);
    color: var(--para-color);
    transition: color 0.3s ease;
}

#skills-section .tech-item:hover .tech-level {
    color: rgba(255, 255, 255, 0.8);
}

/* Specialized Skills Grid - Horizontal Bars */
#skills-section .skills-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

#skills-section .skill-item {
    background: rgba(245, 135, 37, 0.05);
    border-radius: var(--radius-md);
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.45s ease;
}

#skills-section .skill-item:hover {
    background: rgba(245, 135, 37, 0.1);
    transform: translateX(10px);
    border-left-width: 6px;
}

#skills-section .skill-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

#skills-section .skill-item-name {
    display: flex;
    align-items: center;
    gap: 12px;
    font: var(--body-font);
    color: var(--heading-color);
    font-weight: 600;
}

#skills-section .skill-item-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

#skills-section .skill-percentage {
    font: var(--body-font);
    color: var(--primary-color);
    font-weight: 700;
}

#skills-section .skill-progress {
    height: 8px;
    background: rgba(11, 102, 106, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

#skills-section .skill-progress-bar {
    height: 100%;
    background: var(--primary-color);
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

#skills-section .skill-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Stats Section */
#skills-section .skills-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: var(--section-spacing);
    padding-top: var(--section-spacing);
    border-top: 2px solid var(--border-color);
}

#skills-section .stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(11, 102, 106, 0.04);
    border-radius: var(--radius-md);
    transition: all 0.45s ease;
    border: 2px solid transparent;
}

#skills-section .stat-card:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
    transform: scale(1.05);
}

#skills-section .stat-number {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

#skills-section .stat-card:hover .stat-number {
    color: var(--white-color);
}

#skills-section .stat-label {
    font: var(--body-font);
    color: var(--para-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

#skills-section .stat-card:hover .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

#cert-section {

    position: relative;
}


/* Bento Grid Layout */
.cert-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cert-item {
    background: var(--white-color);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.cert-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);

}

.cert-item-large {
    grid-column: span 6;
}

.cert-item-medium {
    grid-column: span 4;
}

.cert-item-small {
    grid-column: span 3;
}

.cert-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--body-color);
    border-radius: 0 24px 0 100%;
    transition: all 0.5s ease;
}

.cert-item:hover::before {
    width: 150px;
    height: 150px;
    background: var(--theme-color);
    opacity: 0.05;
}

.cert-icon-modern {
    width: 60px;
    height: 60px;
    background: var(--theme-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.cert-item:hover .cert-icon-modern {
    background: var(--primary-color);
    transform: rotate(-10deg);
}

.cert-icon-modern i {
    font-size: 28px;
    color: var(--white-color);
}

.cert-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cert-provider-tag {
    font: var(--badge-font);
    color: var(--white-color);
    background: var(--theme-color);
    padding: 6px 14px;
    border-radius: var(--radius-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cert-year-tag {
    font: var(--badge-font);
    color: var(--primary-color);
    background: var(--body-color);
    padding: 6px 14px;
    border-radius: var(--radius-lg);
    font-weight: 600;
}

.cert-item h3 {
    font: var(--small-heading-font);
    color: var(--heading-color);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.cert-item p {
    font: var(--body-font);
    color: var(--para-color);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}


#career-section {
    padding: var(--section-spacing) 0;
    background: var(--body-color);
    position: relative;
}

.career-header {
    max-width: 700px;
    margin: 0 auto 80px;
    text-align: center;
}

.career-title {
    font: var(--heading-font);
    color: var(--heading-color);
    margin-bottom: 20px;
}

.career-title-wave {
    position: relative;
    display: inline-block;
    color: var(--theme-color);
}

.career-title-wave::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.spacer {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--para-color);
    text-align: center;
    padding: 20px;
}

.stack-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    padding-bottom: 80vh;
}

.card-container {
    display: flex;
    flex-direction: column;
    gap: var(--section-spacing);
}

.stack-item {
    background: var(--white-color);
    border: 3px solid var(--border-color);
    border-radius: 30px;
    padding: 40px 50px 50px 50px;
    /* Reduced top padding */
    margin-bottom: 0;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    will-change: transform, padding-top;
}

.stack-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.stack-year {
    position: absolute;
    top: -20px;
    left: 50px;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: var(--fs-sm);
    font-weight: 700;
    padding: 10px 24px;
    border-radius: var(--radius-2xl);
    letter-spacing: 1px;
    z-index: 20;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stack-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.stack-icon {
    width: 100px;
    height: 100px;
    min-width: 100px;
    background: var(--body-color);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    margin-top: 10px;
}

.stack-item:hover .stack-icon {
    background: var(--theme-color);
    transform: rotate(-10deg);
}

.stack-icon i {
    font-size: 40px;
    color: var(--theme-color);
    transition: all 0.4s ease;
}

.stack-item:hover .stack-icon i {
    color: var(--white-color);
}

.stack-text h3 {
    font: var(--small-heading-font);
    color: var(--heading-color);
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.stack-company {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--body-color);
    color: var(--theme-color);
    font: var(--body-font);
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
}

.stack-text p {
    font: var(--body-font);
    color: var(--para-color);
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {

    .cert-item-large,
    .cert-item-medium,
    .cert-item-small {
        grid-column: span 6;
    }
}

@media (max-width: 991px) {

    #about-me .bento-large,
    #about-me .bento-medium,
    #about-me .bento-small,
    #about-me .bento-full {
        grid-column: span 12;
    }

    #about-me .bento-grid {
        gap: 20px;
    }

    #work-with-me .bento-large,
    #work-with-me .bento-small,
    #work-with-me .bento-medium {
        grid-column: span 12;
    }

    #skills-section .skills-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    #skills-section .tech-stack {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

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

    #work-with-me {
        padding: var(--section-spacing) 0 32px;
    }

    #work-with-me .section-title-center p {
        max-width: 70%;
    }

    #modern-cta-section {
        margin: 0 1rem;
    }
}

@media (max-width: 768px) {
    #skills-section {
        padding: 60px 0;
    }

    #skills-section .skill-card {
        padding: 30px 20px;
    }

    #skills-section .skills-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    #skills-section .tech-stack {
        grid-template-columns: repeat(2, 1fr);
    }

    .cert-bento-grid {
        grid-template-columns: 1fr;
    }

    .cert-item-large,
    .cert-item-medium,
    .cert-item-small {
        grid-column: span 1;
    }

    .stack-content {
        flex-direction: column;
    }

    .stack-container {
        padding-bottom: 100vh;
    }
}

@media (max-width: 576px) {
    #about-me .bento-card {
        padding: 25px;
    }
}