/*------------------------------------------------------------------
Project: Amalnath Portfolio - Inspired by "Gray" NuxtJS Template
Aesthetics: Minimalist, Premium, Sleek, Outlined Fonts, Clean Cards
------------------------------------------------------------------ */

:root {
    --bg-color: #F3F4F6;
    --card-bg: #FFFFFF;
    --text-color: #111827;
    --text-muted: #6B7280;
    --border-color: #E5E7EB;
    --accent-color: #000000;
    --accent-opposite: #FFFFFF;
    --grid-line-color: rgba(0, 0, 0, 0.04);
    --badge-bg: #F9FAFB;
    --timeline-line: #D1D5DB;
    
    /* Fonts */
    --font-body: 'Outfit', sans-serif;
    --font-heading: 'Syne', sans-serif;
    --font-mono: 'Fira Mono', monospace;
}



/*-----------------------[ General CSS ]------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.4s ease, color 0.4s ease;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Infinite Background Grid Scrolling - Preserving signature workspace feature but making it extremely subtle */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    background: url("../images/home/extracted_image.png") repeat 0 0;
    opacity: 0.15;
    animation: bg-scrolling-reverse 40s linear infinite;
}



@keyframes bg-scrolling-reverse {
    100% {
        background-position: 100px 100px;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
a:hover {
    color: var(--accent-color);
}

ul {
    padding-left: 0;
    list-style: none;
}

button {
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

/*-----------------------[ Background Grid Lines ]------------------------*/
.bg-grid-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: -1;
    padding: 0 10%;
}
.grid-line {
    width: 1px;
    height: 100%;
    background-color: var(--grid-line-color);
}

/*-----------------------[ Header Style ]------------------------*/
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 100;
    display: flex;
    align-items: center;
    background-color: rgba(243, 244, 246, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.4s ease, border-color 0.4s ease;
}



.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-color);
}
.logo span {
    font-weight: 500;
    -webkit-text-stroke: 1px var(--text-color);
    color: transparent;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
}
.social-links a {
    color: var(--text-muted);
}
.social-links a:hover {
    color: var(--text-color);
}

.drawer-toggle-btn {
    width: 48px;
    height: 48px;
    background-color: var(--accent-color);
    color: var(--accent-opposite);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px;
}
.drawer-toggle-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--accent-opposite);
    transition: all 0.3s ease;
}

/*-----------------------[ Off-Canvas Drawer ]------------------------*/
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.offcanvas-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 360px;
    max-width: 100%;
    height: 100%;
    background-color: var(--card-bg);
    border-left: 1px solid var(--border-color);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.offcanvas-drawer.active {
    transform: translateX(0);
}

.drawer-header {
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.drawer-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
}
.drawer-close-btn {
    font-size: 32px;
    color: var(--text-muted);
}
.drawer-close-btn:hover {
    color: var(--text-color);
}

.drawer-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.drawer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.drawer-nav-link {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-muted);
}
.drawer-nav-link:hover {
    color: var(--text-color);
    padding-left: 10px;
}

.theme-switcher-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.theme-label {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
}
.theme-switch-btn {
    padding: 8px 16px;
    border: 1px dashed var(--border-color);
    border-radius: 30px;
    font-size: 13px;
    font-family: var(--font-mono);
    font-weight: 500;
    color: var(--text-color);
}
.theme-switch-btn:hover {
    background-color: var(--accent-color);
    color: var(--accent-opposite);
    border-style: solid;
}

.drawer-section h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--text-muted);
}
.drawer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}
.drawer-contact-list i {
    margin-right: 8px;
    color: var(--text-muted);
}
.drawer-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}
.drawer-socials a i {
    margin-right: 8px;
}

.drawer-footer {
    margin-top: auto;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/*-----------------------[ Layout Container ]------------------------*/
.main-content-wrap {
    margin-top: 120px;
    margin-bottom: 60px;
    max-width: 1200px !important;
    background: transparent !important;
    padding: 0 15px;
}

/*-----------------------[ Sticky Sidebar Navigation ]------------------------*/
.sidebar-column {
    position: relative;
}
.sticky-sidebar {
    position: sticky;
    top: 120px;
    height: auto;
}
.sidebar-nav {
    background-color: #000000;
    border-radius: 20px;
    padding: 35px 30px;
    color: #FFFFFF;
}

.sidebar-nav ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.sidebar-nav ul li {
    position: relative;
}
.sidebar-nav ul li a {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #9CA3AF;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sidebar-nav ul li a:hover,
.sidebar-nav ul li.active a {
    color: #FFFFFF;
}

.nav-dot {
    width: 6px;
    height: 6px;
    background-color: #9CA3AF;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}
.sidebar-nav ul li a:hover .nav-dot,
.sidebar-nav ul li.active a .nav-dot {
    background-color: #FFFFFF;
}
.sidebar-nav ul li.active a .nav-dot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border: 1px dashed #FFFFFF;
    border-radius: 50%;
    animation: dot-rotate 8s linear infinite;
}
@keyframes dot-rotate {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/*-----------------------[ Main Content Column - Cards System ]------------------------*/
.content-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px;
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

/* Double Header Visual Layer */
.card-double-header {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.card-section-prefix {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    z-index: 2;
    background-color: var(--card-bg);
    padding-right: 15px;
}
.card-background-title {
    position: absolute;
    left: 0;
    font-family: var(--font-heading);
    font-size: 75px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    z-index: 1;
    -webkit-text-stroke: 1px rgba(0,0,0,0.06);
    color: transparent;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
}


.section-heading-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 15px;
}
.section-desc-para {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

/*-----------------------[ About Card Specifics ]------------------------*/
.about-hero-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.about-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}
.about-avatar-img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}
.about-avatar-badge {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--accent-opposite);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 30px;
    white-space: nowrap;
    border: 1px solid var(--border-color);
}
.about-heading-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.skill-pills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.skill-pill-badge {
    padding: 6px 14px;
    border: 1px dashed var(--border-color);
    border-radius: 30px;
    font-size: 12px;
    font-family: var(--font-mono);
    font-weight: 500;
    background-color: var(--badge-bg);
    display: flex;
    align-items: center;
    gap: 6px;
}

.about-desc-para {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

.about-details-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}
.about-details-list li span {
    font-weight: 600;
    color: var(--text-color);
    margin-right: 8px;
}

/* Statistics metrics grid with outline styling */
.stats-grid-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed var(--border-color);
}
.stat-box-col {
    text-align: left;
}
.stat-big-number {
    font-family: var(--font-heading);
    font-size: 55px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    -webkit-text-stroke: 1.5px var(--text-color);
    color: transparent;
}
.stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/*-----------------------[ Portfolio Card Specifics ]------------------------*/
.portfolio-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}
.filter-btn {
    padding: 8px 18px;
    border: 1px dashed var(--border-color);
    border-radius: 30px;
    font-size: 13px;
    font-family: var(--font-mono);
    font-weight: 500;
    color: var(--text-muted);
}
.filter-btn.active,
.filter-btn:hover {
    color: var(--accent-opposite);
    background-color: var(--accent-color);
    border-style: solid;
}

.portfolio-grid {
    margin-bottom: -30px;
}
.portfolio-item-col {
    margin-bottom: 30px;
}

.portfolio-project-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background-color: var(--badge-bg);
    overflow: hidden;
    height: 100%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}
.portfolio-project-card:hover {
    color: inherit;
    text-decoration: none;
}
.project-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}
.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-project-card:hover .project-img-wrapper img {
    transform: scale(1.06);
}
.project-tag-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--accent-opposite);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
}

.project-content-meta {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.project-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.project-card-excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex: 1;
}
.view-detail-btn {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 6px;
}
.view-detail-btn i {
    transition: transform 0.3s ease;
}
.portfolio-project-card:hover .view-detail-btn i {
    transform: translateX(4px);
}

/*-----------------------[ Services Card Specifics ]------------------------*/
.services-list-wrapper {
    display: flex;
    flex-direction: column;
}
.service-list-item {
    display: grid;
    grid-template-columns: 80px 250px 1fr;
    align-items: start;
    padding: 30px 0;
    border-bottom: 1px dashed var(--border-color);
}
.service-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.service-list-item:first-child {
    padding-top: 0;
}

.service-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    -webkit-text-stroke: 1px var(--text-color);
    color: transparent;
}
.service-heading-box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.service-icon {
    font-size: 18px;
    color: var(--text-muted);
}
.service-item-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}
.service-desc-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

/*-----------------------[ Testimonials Card Specifics ]------------------------*/
.testimonial-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.testimonial-arrows {
    display: flex;
    gap: 10px;
}
.test-arrow-btn {
    width: 44px;
    height: 44px;
    border: 1px dashed var(--border-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: var(--text-color);
}
.test-arrow-btn:hover {
    background-color: var(--accent-color);
    color: var(--accent-opposite);
    border-style: solid;
}

.testimonial-slider-container {
    overflow: hidden;
    position: relative;
    background-color: var(--badge-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}
.testimonial-track {
    position: relative;
    height: auto;
}
.testimonial-slide {
    display: none;
}
.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.quote-icon {
    font-size: 40px;
    color: var(--border-color);
    line-height: 1;
    margin-bottom: 10px;
}
.rating-stars {
    display: flex;
    gap: 4px;
    color: #F59E0B;
    font-size: 14px;
    margin-bottom: 15px;
}
.testimonial-comment {
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 25px;
}
.testimonial-author-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}
.author-role {
    font-size: 12px;
    color: var(--text-muted);
}

/*-----------------------[ Resume Card Specifics ]------------------------*/
.timeline-title-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}
.timeline-icon-header {
    font-size: 22px;
    color: var(--text-muted);
}
.timeline-title-box h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
}

.timeline-wrapper {
    position: relative;
    padding-left: 20px;
    border-left: 1px dashed var(--timeline-line);
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.timeline-item {
    position: relative;
}
.timeline-dot {
    position: absolute;
    left: -23.5px;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--text-color);
    border-radius: 50%;
}
.timeline-date-badge {
    display: inline-block;
    padding: 4px 10px;
    border: 1px dashed var(--border-color);
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 12px;
    background-color: var(--badge-bg);
}
.timeline-item-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}
.timeline-item-sub {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 10px;
}
.timeline-item-desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Progress bar skills */
.skills-ranking-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.skill-bar-item {
    width: 100%;
}
.skill-bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 500;
}
.skill-percentage {
    font-family: var(--font-mono);
    color: var(--text-muted);
}
.skill-progress-bg {
    width: 100%;
    height: 4px;
    background-color: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}
.skill-progress-bar {
    height: 100%;
    background-color: var(--text-color);
    border-radius: 10px;
}

/* Languages dots */
.languages-dots-section {
    border-top: 1px dashed var(--border-color);
    padding-top: 25px;
}
.mini-sec-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
}
.lang-dot-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
}
.lang-name {
    color: var(--text-muted);
}
.lang-dots {
    display: flex;
    gap: 6px;
}
.lang-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--border-color);
}
.lang-dot.filled {
    background-color: var(--text-color);
}



/*-----------------------[ Blog Card Specifics ]------------------------*/
.blog-rows-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.blog-row-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background-color: var(--badge-bg);
    overflow: hidden;
    padding: 15px;
    cursor: pointer;
}
.blog-img-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}
.blog-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--accent-color);
    color: var(--accent-opposite);
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 20px;
}
.blog-info-box {
    padding: 10px 15px;
}
.blog-publish-date {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
}
.blog-row-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}
.blog-read-more-btn {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    padding: 6px 14px;
    border: 1px dashed var(--border-color);
    border-radius: 20px;
    color: var(--text-color);
}
.blog-row-card:hover .blog-read-more-btn {
    background-color: var(--accent-color);
    color: var(--accent-opposite);
    border-style: solid;
}

/*-----------------------[ Contact Card Specifics ]------------------------*/
.contact-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.contact-pill-item {
    padding: 8px 18px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-size: 13px;
    font-family: var(--font-mono);
    font-weight: 500;
    background-color: var(--badge-bg);
}
.contact-pill-item i {
    margin-right: 6px;
    color: var(--text-muted);
}

.contact-form-minimal {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group-min {
    width: 100%;
}
.form-input-min {
    width: 100%;
    border: none;
    border-bottom: 1px dashed var(--border-color);
    background: transparent;
    padding: 15px 0;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-color);
    transition: border-bottom-color 0.3s ease;
}
.form-input-min::placeholder {
    color: var(--text-muted);
}
.form-input-min:focus {
    outline: none;
    border-bottom-color: var(--text-color);
}
.textarea-min {
    resize: none;
}

.form-submit-box {
    margin-top: 15px;
}
.form-submit-btn {
    padding: 14px 35px;
    background-color: var(--accent-color);
    color: var(--accent-opposite);
    border-radius: 30px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.form-submit-btn:hover {
    opacity: 0.9;
}

/*-----------------------[ Modal Overlay Style ]------------------------*/
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card-box {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 680px;
    max-height: 80vh;
    border-radius: 20px;
    position: relative;
    padding: 40px;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.active .modal-card-box {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: var(--text-muted);
}
.modal-close-btn:hover {
    color: var(--text-color);
}

.modal-inner-content h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
}
.modal-project-meta-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}
.modal-project-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
}
.modal-project-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 25px;
}
.modal-links-box {
    border-top: 1px dashed var(--border-color);
    padding-top: 20px;
    display: flex;
    gap: 15px;
}
.modal-link-btn {
    padding: 10px 24px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
}
.modal-link-btn.primary-btn {
    background-color: var(--accent-color);
    color: var(--accent-opposite);
}

/* Contact social connect cards styling */
.contact-social-grid {
    margin-bottom: -15px;
}
.contact-social-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background-color: var(--badge-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
}
.contact-social-card:hover {
    border-color: var(--text-color);
    background-color: var(--card-bg);
}
.csc-icon {
    font-size: 20px;
    color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px dashed var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--csc-icon-bg, var(--card-bg));
    transition: all 0.3s ease;
}
.contact-social-card:hover .csc-icon {
    border-style: solid;
    background-color: var(--accent-color);
    color: var(--accent-opposite);
}
.csc-meta {
    display: flex;
    flex-direction: column;
}
.csc-label {
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 500;
    color: var(--text-muted);
}
.csc-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 2px;
    word-break: break-all;
}