
/* 
    -- Table of Content --

    * # Preloader
    * # Margin
    * # InfoBox
    * # Breadcrumb
    * # Header
    * # About
    * # Project
    * # Project Details
    * # Credentials
    * # Service
    * # Blog
    * # Contact
    * # Footer
    * Responsive

*/
:root {
    --primary_color: #5B78F6;
    --dark: #323232;
}
*,*::before,*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    scroll-behavior: smooth;
    color: #9f9f9f;
    background: radial-gradient(circle at 15% 20%, rgba(91,120,246,0.08), transparent 35%),
                radial-gradient(circle at 85% 15%, rgba(142,105,255,0.08), transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(74,214,198,0.08), transparent 35%),
                #0b0c10;
    line-height: 19.2px;
    position: relative;
    overflow-x: hidden;
    background-attachment: fixed;
}
body::before {
    content: '';
    position: fixed;
    inset: -20%;
    background:
        radial-gradient(circle at 10% 10%, rgba(255,255,255,0.08), transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(91,120,246,0.12), transparent 45%),
        radial-gradient(circle at 40% 80%, rgba(74,214,198,0.1), transparent 45%);
    opacity: 0.35;
    filter: blur(60px);
    transform: translate3d(0,0,0) scale(1);
    transform-origin: center;
    animation: gradientHue 60s linear infinite, gradientDrift 38s ease-in-out infinite;
    will-change: transform, filter;
    pointer-events: none;
    z-index: -1;
}
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02), rgba(255,255,255,0));
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}
@keyframes bgDrift {
    0% { transform: translate3d(0,0,0) scale(1); }
    100% { transform: translate3d(-12px, 8px, 0) scale(1.05); }
}
@keyframes gradientHue {
    0% { filter: blur(60px) hue-rotate(0deg); }
    33% { filter: blur(60px) hue-rotate(80deg); }
    66% { filter: blur(60px) hue-rotate(160deg); }
    100% { filter: blur(60px) hue-rotate(240deg); }
}
@keyframes gradientDrift {
    0% { transform: translate3d(0,0,0) scale(1); }
    25% { transform: translate3d(-10px,-12px,0) scale(1.04); }
    50% { transform: translate3d(12px,10px,0) scale(1.06); }
    75% { transform: translate3d(-6px,8px,0) scale(1.03); }
    100% { transform: translate3d(0,0,0) scale(1.05); }
}
img {
    max-width: 100%;
}
a {
    text-decoration: none;
}
.container {
    max-width: 1170px;
}

.gap-24 {
    gap: 24px;
}
.h-full {
    height: 100%;
}

/* # Preloader */
.preloader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #111;
    transform-origin: bottom;
    z-index: 111111
}

.preloader .black_wall {
    height: 100%;
    background-color: #222;
    transform-origin: top;
    animation: preloader_slide 0.5s ease-in-out 0s 1 normal both
}

.preloader .loader {
    width: 100%;
    height: 3px;
    position: absolute;
    border-radius: 2px;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    background-color: var(--primary_color);
    transform-origin: left;
    animation: loader_running 3s ease-in-out 1s infinite normal both
}

.preloader.off {
    animation: preloader_slide 0.5s ease-in-out 0s 1 reverse both
}



/* # Margin */
.mt-24 {
    margin-top: 24px;
}
.mb-24 {
    margin-bottom: 24px;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
.flex-1 {
    flex: 1;
}
.theme-btn {
    background: var(--dark);
    color: #fff;
    display: inline-block;
    transition: .3s;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 30px;
}
.theme-btn:hover {
    background: #fff;
    color: var(--dark);
}
.shadow-box {
    position: relative;
    border-radius: 30px;
    background: linear-gradient(155deg, rgba(19,19,19,0.95) 0%, rgba(10,10,10,0.92) 45%, rgba(12,12,12,0.98) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    transition: transform 0.6s ease, box-shadow 0.6s ease, border-color 0.6s ease;
    will-change: transform, box-shadow;
}
.shadow-box::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background:
        radial-gradient(circle at 18% 18%, rgba(91,120,246,0.35), transparent 55%),
        linear-gradient(120deg, rgba(255,255,255,0.26) 0%, rgba(255,255,255,0.05) 60%, rgba(91,120,246,0.08) 100%);
    opacity: 0.28;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.6s ease;
}
.service-area .service-content-wrap .service-content-inner .service-item::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 18% 18%, rgba(91,120,246,0.35), transparent 55%),
        linear-gradient(120deg, rgba(255,255,255,0.26) 0%, rgba(255,255,255,0.05) 60%, rgba(91,120,246,0.08) 100%);
    opacity: 0.28;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.6s ease;
}
.shadow-box::after {
    content: '';
    position: absolute;
    inset: -60% -20%;
    border-radius: 30%;
    background: linear-gradient(120deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.12) 45%, rgba(255,255,255,0));
    opacity: 0;
    transform: translateX(-70%) rotate(12deg);
    pointer-events: none;
    z-index: 4;
}
.shadow-box * {
    z-index: 3;
    position: relative;
}
.shadow-box:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 26px 64px rgba(11,11,11,0.8), 0 18px 46px rgba(91,120,246,0.32);
    border-color: rgba(91,120,246,0.45);
}
.shadow-box:hover::before {
    opacity: 0.5;
}
.shadow-box:hover::after {
    animation: glassySweep 1.1s ease forwards;
}
.shadow-box:hover .bg-img {
    opacity: 0.18;
}

@keyframes glassySweep {
    0% {
        transform: translateX(-120%) rotate(12deg);
        opacity: 0;
    }
    45% {
        opacity: 0.8;
    }
    100% {
        transform: translateX(110%) rotate(12deg);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .shadow-box {
        transition: border-color 0.3s ease;
    }
    .shadow-box,
    .shadow-box:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    .shadow-box::after {
        animation: none !important;
    }
}
.section-heading {
    color: #ffffff;
    font-size: 74px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -01px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
    justify-content: center;
}

.section-heading img {
    display: block;
}


/* # InfoBox */
.info-box {
    padding: 24px;
}
.credential-area .credential-sidebar .overlay-link,
.contact-area .contact-form .overlay-link,
.project-details-wrap .project-about-2 .overlay-link,
.project-details-wrap .project-infos-wrap .overlay-link,
.projects-area .project-item .overlay-link,
.about-area .about-edc-exp .overlay-link,
.about-area .about-image-box .overlay-link,
.about-area .about-me-box .overlay-link,
.info-box .overlay-link {
    left: 0;
    top: 0;
    border-radius: 30px;
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    z-index: 9;
    
}
.credential-area .credential-sidebar .bg-img,
.contact-area .contact-form .bg-img,
.project-details-wrap .project-about-2 .bg-img,
.project-details-wrap .project-infos-wrap .bg-img,
.projects-area .project-item .bg-img,
.about-area .about-edc-exp .bg-img,
.about-area .about-image-box .bg-img,
.about-area .about-me-box .bg-img,
.info-box .bg-img {
    opacity: 0.1;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 30px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: opacity 0.6s ease;
}
.info-box > img {
    display: block;
    margin: auto auto 16px auto;
}
.info-box .infos h4 {
    color: #BCBCBC;
    font-size: 12px;
    opacity: 0.5;
    margin-bottom: 6px;
    text-transform: uppercase;
    margin-top: 8px;
}
.info-box .infos h1 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
}
.info-box .about-btn {
    opacity: 0.2;
    transition: opacity 0.3s ease, transform 0.6s ease, filter 0.6s ease;
    display: inline-block;
}
.info-box:hover .about-btn {
    opacity: 1;
    transform: translateY(-4px) scale(1.05);
    filter: drop-shadow(0 12px 25px rgba(91,120,246,0.35));
}
.info-box .inner-profile-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 22px;
    margin-bottom: 16px;
}
.info-box .inner-profile-icons.shadow-box:before {
    opacity: 0.18;
}
.info-box .inner-profile-icons.shadow-box:after {
    opacity: 0;
}
.info-box .inner-profile-icons a {
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 24px -1px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    transition: .3s;
}
.info-box .inner-profile-icons a:hover {
    background: #ffffff;
    color: #0F0F0F;
}
.info-box .inner-profile-icons a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
    background: linear-gradient(120deg, rgba(255,255,255,0.5), rgba(255,255,255,0.1));
    backdrop-filter: blur(40px);
}
.info-box .inner-profile-icons a i {
    font-size: 32px;
}
.info-box.about-services-box .service-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 30px 0 32px 0;
    padding: 18px;
}
.info-box.about-services-box .service-icons a {
    width: 68px;
    height: 68px;
    line-height: 1;
}
.info-box.about-services-box .service-icons i {
    font-size: 30px;
    color: #ffffff;
}
.info-box.about-client-box .clients .client-item {
    position: relative;
    border-radius: 30px;
    text-align: center;
    flex: 1;
    padding: 38px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.info-box.about-client-box .clients .client-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    background: linear-gradient(120deg, rgba(255,255,255,0.3), rgba(255,255,255,0.05));
    border-radius: 30px;
}
.info-box.about-client-box .clients .client-item h1 {
    color: #ffffff;
    font-size: 34px;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -1px;
}
.info-box.about-client-box .clients .client-item p {
    font-size: 12px;
    color: #BCBCBC;
    opacity: 0.5;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.4;
}
.about-area .about-client-box {
    height: 100%;
}
.info-box.about-contact-box {
    padding-bottom: 42px;
    padding-top: 83px;
}
.info-box.about-contact-box h1 {
    font-size: 44px;
    line-height: 52px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}
.info-box.about-contact-box h1 span {
    color: var(--primary_color);
}
.info-box.about-contact-box .about-btn {
    position: absolute;
    display: block;
    right: 30px;
    bottom: 35px;
    opacity: 0.2;
    transition: .3s;
}
.info-box.about-contact-box:hover .about-btn {
    opacity: 1;
}
.info-box.about-contact-box .star-icon {
    position: absolute;
    left: 30px;
    top: 0;
    opacity: 0.5;
    margin: 0;
}
.info-box.about-profile-box,
.info-box.about-blog-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}



/* # Breadcrumb */
.breadcrumb-area  {
    padding-top: 32px;
}
.breadcrumb-area .breadcrumb-content p {
    color: #BCBCBC;
    opacity: 0.7;
    margin-bottom: 24px;
}
.breadcrumb-area .breadcrumb-content .section-heading {
    font-size: 56px;
    position: relative;
    display: block;
    margin-bottom: 30px;
}
.breadcrumb-area .breadcrumb-content .section-heading img {
    display: initial;
}



/* # Header */
.header-area{
    margin-top: 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(15, 15, 15, 0.72);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: none;
    padding: 6px 0;
}

.header-area .logo {
    display: inline-block;
    z-index: 16;
}
.header-area .logo img {
    display: block;
    height: 38px;
    width: auto;
}
.header-area .top-contact-btn {
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 14px;
    backdrop-filter: blur(12px);
}
.header-area .navbar {
    margin: 0;
    padding: 6px 18px;
    border-radius: 24px;
}
.header-area .navbar .theme-btn {
    display: none;
}
.header-area .navbar .menu {
    display: flex;
    align-items: center;
    gap: 49px;
    margin: 0;
    padding: 0;
}
.header-area .navbar .menu li a {
    font-size: 16px;
    color: #676767;
    transition: .3s;
    display: block;
    padding: 18px 0px;
}
.header-area .navbar .menu li.active a,
.header-area .navbar .menu li a:hover {
    color: #ffffff;
}
.header-area .show-menu {
    display: none;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    width: 25px;
    height: 18px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 16;
}
.header-area .show-menu span {
    width: 100%;
    height: 1px;
    background: #fff;
    display: block;
    transition: .4s;
}
.header-area .show-menu.active span:first-child {
    transform: translate3d(0px, 6px, 0px) scale(1, 1) rotate(45deg) scale(1, 1);
}
.header-area .show-menu span:last-child {
    transform-origin: left;
}
.header-area .show-menu.active span:last-child {
    transform: translate3d(4px, -2px, 0px) scale(1, 1) rotate(-45deg) scale(1, 1);
}
.header-area .show-menu.active span:nth-child(2) {
    transform: scale(0);
}

@media (min-width: 901px) {
    .header-area {
        padding: 4px 0;
    }
    .header-area .logo img {
        height: 34px;
    }
    .header-area .navbar {
        padding: 4px 14px;
    }
    .header-area .navbar .menu li a {
        padding: 14px 0px;
    }
    .header-area .top-contact-btn {
        padding: 7px 12px;
    }
}

/* Mobile header theming */
@media (max-width: 900px) {
    .header-area {
        background: linear-gradient(155deg, rgba(19,19,19,0.52) 0%, rgba(10,10,10,0.46) 45%, rgba(12,12,12,0.58) 100%);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 16px 32px rgba(0,0,0,0.24), 0 10px 22px rgba(91,120,246,0.08);
        padding: 6px 0;
        overflow: hidden;
    }
    .header-area::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 16% 18%, rgba(91,120,246,0.24), transparent 55%),
            radial-gradient(circle at 82% 12%, rgba(142,105,255,0.18), transparent 55%),
            linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.05) 60%, rgba(91,120,246,0.06) 100%);
        opacity: 0.55;
        pointer-events: none;
        z-index: 0;
    }
    .header-area .container {
        position: relative;
        z-index: 1;
    }
}

.mobile-bottom-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    max-width: 560px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 10px 12px;
    min-height: 64px;
    margin: 0 auto;
    border-radius: 999px;
    background: linear-gradient(155deg, rgba(19,19,19,0.48) 0%, rgba(10,10,10,0.45) 45%, rgba(12,12,12,0.6) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.32), 0 14px 34px rgba(91,120,246,0.16), 0 10px 26px rgba(142,105,255,0.1);
    z-index: 10000;
}
.mobile-bottom-nav::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background:
        radial-gradient(circle at 18% 18%, rgba(91,120,246,0.28), transparent 55%),
        radial-gradient(circle at 82% 12%, rgba(142,105,255,0.22), transparent 55%),
        linear-gradient(120deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.06) 60%, rgba(91,120,246,0.08) 100%);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}
.mobile-bottom-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    color: #bfbfbf;
    font-size: 0;
    text-decoration: none;
    position: relative;
    z-index: 1;
}
.mobile-bottom-nav a i {
    font-size: 20px;
    line-height: 1;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 6px 18px rgba(91,120,246,0.35));
}
.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
    color: #ffffff;
}



/* # About */
.about-area {
    padding-top: 32px;
}
.about-area .about-me-box {
    position: relative;
    padding: 50px 46px 55px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.about-area .about-me-box .img-box {
    width: 224px;
    height: 224px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #3C58E3 -15%, #C2EBFF 58%, #5AB5E2 97%);
    border-radius: 30px 0 30px 0;
    flex: none;
}
.about-area .about-me-box .img-box img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.about-area .about-me-box .infos {
    padding-top: 30px;
    position: initial;
}
.about-area .about-me-box .infos h4 {
    color: #BCBCBC;
    opacity: 0.7;
    font-size: 14px;
    letter-spacing: 0.3px;
    margin-bottom: 3px;
}
.about-area .about-me-box .infos h1 {
    font-size: 36px;
    line-height: 40px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 12px;
}
.about-area .about-me-box .infos p {
    letter-spacing: 0.3px;
    margin: 0;
}
.about-area .about-me-box .infos .about-btn {
    display: block;
    position: absolute;
    right: 30px;
    bottom: 30px;
    opacity: 0.2;
    transition: .3s;
}
.about-area .about-me-box:hover .infos .about-btn {
    opacity: 1;
}
.about-area .about-credentials-wrap .banner {
    padding: 12px 22px;
    margin-bottom: 20px;
}
.marquee {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.marquee div {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
    will-change: transform;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    -webkit-text-fill-color: currentColor;
    animation: marquee 50s linear infinite;
}

.marquee .spacer {
    display: inline-block;
    font-size: 18px;
    opacity: 0.6;
    background: none;
    -webkit-text-fill-color: rgba(255,255,255,0.45);
    color: rgba(255,255,255,0.45);
}

.about-area .about-credentials-wrap .banner .marquee b {
    color: #fff;
    font-weight: 400;
}
.about-area .about-credentials-wrap .banner .marquee img {
    display: inline-block;
    margin: 0 5px;
}
.about-area .about-credentials-wrap > .gx-row > * {
    flex: 1;
    width: 50%;
}

.about-area .about-image-box {
    width: 370px;
    flex: none;
    padding: 24px;
    border-radius: 30px;
}
.about-area .about-image-box .image-inner {
    background: linear-gradient(90deg, #3C58E3 -15%, #C2EBFF 58%, #5AB5E2 97%);
    border-radius: 30px;
}
.about-area .about-image-box img {
    display: block;
    border-radius: 30px;
}
.about-area .about-details {
    flex: 1;
}
.about-area .about-details .about-details-inner {
    padding: 115px 60px 30px 30px;
    position: relative;
}
.about-area .about-details .about-details-inner img {
    position: absolute;
    left: 30px;
    top: 0;
}
.about-area .about-details .about-details-inner h1 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 500;
}
.about-area .about-details .about-details-inner p {
    color: #FFFFFF;
    opacity: 0.8;
    line-height: 25px;
    margin: 0;
    font-size: 16px;
}
.about-area .about-edc-exp {
    padding: 30px;
}
.about-area .about-edc-exp h3 {
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 23px;
}
.about-area .about-edc-exp ul li + li {
    margin-top: 32px;
}
.about-area .about-edc-exp ul li .date {
    color: #BCBCBC;
    opacity: 0.6;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}
.about-area .about-edc-exp ul li h2 {
    font-size: 18px;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 7px;
}
.about-area .about-edc-exp ul li .type {
    color: #BCBCBC;
    font-size: 14px;
    opacity: 0.6;
    font-weight: 400;
    margin: 0;
}

.about-consultation-cta {
    margin-top: 32px;
    padding: 32px 36px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    width: 100%;
    background: linear-gradient(135deg, rgba(91,120,246,0.85), rgba(74,214,198,0.75), rgba(240,148,255,0.85));
    background-size: 240% 240%;
    animation: consultationGlow 12s ease infinite;
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.about-consultation-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.35), transparent 60%);
    opacity: 0.25;
    pointer-events: none;
}

.about-consultation-cta .quote {
    margin: 0;
    font-size: 26px;
    line-height: 1.4;
    color: #ffffff;
    font-weight: 600;
    flex: 1 1 320px;
    text-shadow: 0 6px 18px rgba(15, 15, 15, 0.35);
}

.about-consultation-cta .cta-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-consultation-cta .theme-btn {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 12px 30px;
}

.about-consultation-cta .theme-btn:hover {
    background: #ffffff;
    color: #0F0F0F;
}

.about-area .about-consultation-cta {
    background: linear-gradient(135deg, rgba(91,120,246,0.85), rgba(74,214,198,0.75), rgba(240,148,255,0.85));
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.about-area .about-consultation-cta::before {
    inset: -1px;
    border-radius: inherit;
    background:
        radial-gradient(circle at 18% 18%, rgba(91,120,246,0.35), transparent 55%),
        linear-gradient(120deg, rgba(255,255,255,0.26) 0%, rgba(255,255,255,0.05) 60%, rgba(91,120,246,0.08) 100%);
    opacity: 0.28;
}

.about-area .about-consultation-cta:hover {
    background: linear-gradient(135deg, rgba(91,120,246,0.85), rgba(74,214,198,0.75), rgba(240,148,255,0.85));
}

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

/* # Project */
.projects-area {
    padding-top: 32px;
}
.projects-area .container > .section-heading {
    display: none;
}
.projects-area .section-heading {
    justify-content: center;
    margin-bottom: 15px;
}
.projects-area .project-item {
    margin-bottom: 24px;
    padding: 16px 16px 26px 16px;
}
.projects-area .project-item .project-img {
    border-radius: 30px;
    margin-bottom: 13px;
}
.projects-area .project-item .project-img img {
    display: block;
    border-radius: 30px;
}
.projects-area .project-item .project-info p {
    color: #BCBCBC;
    opacity: 0.5;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 2px;
    margin-top: 5px;
}
.projects-area .project-item .project-info h1 {
    font-size: 22px;
    color: #ffffff;
    opacity: 0.9;
    font-weight: 500;
    margin: 0;
}
.projects-area .project-item .project-btn {
    opacity: 0.2;
    transition: .3s;
    display: inline-block;
}
.projects-area .project-item:hover .project-btn {
    opacity: 1;
}



/* # Project Details */
.project-details-wrap .project-details-img {
    height: 550px;
    position: relative;
    margin-bottom: 50px;
}
.project-details-wrap .project-details-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.project-details-wrap .project-infos-wrap {
    position: relative;
    gap: 100px;
    padding: 36px;
}
.project-details-wrap .project-infos-wrap img {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
.project-details-wrap .project-infos-wrap .bg-img {
    transform: translateX(0);
}
.project-details-wrap .project-infos-wrap .project-details-info {
    position: relative;
    padding: 24px;
}

.project-details-wrap .project-about-2 .left-details:before,
.project-details-wrap .project-infos-wrap .project-details-info::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    background: linear-gradient(120deg, rgba(255,255,255,0.3), rgba(255,255,255,0.05));
    border-radius: 30px;
}
.project-details-wrap .project-infos-wrap .project-details-info p {
    color: #FFFFFF;
    opacity: 0.8;
    font-size: 16px;
    line-height: 1.56;
    margin-bottom: 20px;
}
.project-details-wrap .project-infos-wrap .project-details-info p:last-child {
    margin-bottom: 0;
}
.project-details-wrap .project-infos-wrap .project-details-info h3 {
    color: #BCBCBC;
    opacity: 0.5;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: -0.1px;
    margin-bottom: 13px;
}
.project-details-wrap .project-details-2-img {
    height: 400px;
    border-radius: 30px;
}
.project-details-wrap .project-details-3-img img,
.project-details-wrap .project-details-2-img img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}
.project-details-wrap .project-details-3-img {
    height: 480px;
    position: relative;
    border-radius: 30px;
}
.project-details-wrap .project-about-2 {
    padding: 36px;
    gap: 80px;
}
.project-details-wrap .project-about-2 .left-details {
    position: relative;
    flex: none;
    padding: 30px 54px;
    width: 290px;
}
.project-details-wrap .project-about-2 .left-details img {
    position: absolute;
    right: 40px;
    top: 0;
}
.project-details-wrap .project-about-2 .left-details ul li + li {
    margin-top: 27px;
}
.project-details-wrap .project-about-2 .left-details ul li p {
    color: #BCBCBC;
    font-size: 18px;
    opacity: 0.6;
    margin-bottom: 10px;
}
.project-details-wrap .project-about-2 .left-details ul li h4 {
    color: #FFFFFF;
    opacity: 0.9;
    font-size: 18px;
    margin: 0;
}
.project-details-wrap .project-about-2 .right-details h3 {
    font-size: 18px;
    color: #BCBCBC;
    opacity: 0.5;
    margin-bottom: 17px;
}
.project-details-wrap .project-about-2 .right-details p {
    font-size: 16px;
    color: #fff;
    opacity: 0.8;
    line-height: 1.56;
    margin-bottom: 26px;
}
.project-details-wrap .project-about-2 .right-details p:last-child {
    margin-bottom: 0;
}
.project-details-wrap .big-btn {
    margin-top: 100px;
    color: #fff;
    font-size: 44px;
    opacity: 0.9;
    display: block;
    line-height: 1.2;
    padding: 38px 57px;
    transition: .3s;
}
.project-details-wrap .big-btn:hover {
    background: #ffffff;
    color: #0F0F0F;
}



/* # Credentials */
.credential-area {
    padding-top: 32px;
}
.credential-area .gx-row {
    gap: 60px;
}
.credential-area .credential-sidebar {
    width: 320px;
    flex: none;
    position: sticky;
    top: 15%;
}
.credential-area .credential-sidebar .shadow-box {
    padding: 24px 24px 34px 24px;
}
.credential-area .credential-sidebar .shadow-box.profile-info-card {
    padding: 28px 28px 34px 28px;
    text-align: center;
}
.credential-area .credential-sidebar .shadow-box.profile-info-card::before {
    background:
        radial-gradient(circle at 18% 18%, rgba(91,120,246,0.45), transparent 60%),
        linear-gradient(155deg, rgba(19,19,19,0.96) 0%, rgba(10,10,10,0.92) 45%, rgba(12,12,12,0.98) 100%);
    opacity: 0.42;
}
.credential-area .credential-sidebar .shadow-box.profile-info-card:hover::before {
    opacity: 0.68;
}
.credential-area .credential-sidebar .shadow-box.profile-info-card .bg-img {
    opacity: 0.18;
    filter: saturate(1.1);
}
.credential-area .credential-sidebar .shadow-box.profile-info-card .img-box {
    position: relative;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 24px 48px rgba(91,120,246,0.28);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    max-width: 210px;
    margin: 0 auto 20px auto;
    border-radius: 26px;
}
.credential-area .credential-sidebar .shadow-box.profile-info-card .img-box img {
    display: block;
    width: 100%;
    transition: transform 0.4s ease;
}
.credential-area .credential-sidebar .shadow-box.profile-info-card .img-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 25%, rgba(91,120,246,0.45), transparent 70%);
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.credential-area .credential-sidebar .shadow-box.profile-info-card:hover .img-box {
    transform: translateY(-6px);
    box-shadow: 0 32px 60px rgba(91,120,246,0.34);
}
.credential-area .credential-sidebar .shadow-box.profile-info-card:hover .img-box img {
    transform: scale(1.04);
}
.credential-area .credential-sidebar .shadow-box.profile-info-card:hover .img-box::after {
    opacity: 0.68;
}
.credential-area .credential-sidebar .shadow-box.profile-info-card .designation-tag {
    background: rgba(91,120,246,0.12);
    border-color: rgba(91,120,246,0.25);
    color: rgba(255,255,255,0.9);
}
.credential-area .credential-sidebar .shadow-box.profile-info-card .designation-divider {
    background: linear-gradient(90deg, rgba(91,120,246,0), rgba(91,120,246,0.35), rgba(91,120,246,0));
}
.credential-area .credential-sidebar .shadow-box.profile-info-card .credential-location {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 10px 16px;
    gap: 12px;
}
.credential-area .credential-sidebar .shadow-box.profile-info-card .social-links {
    gap: 12px;
}
.credential-area .credential-sidebar .shadow-box.profile-info-card .social-links li a {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.credential-area .credential-sidebar .shadow-box.profile-info-card .social-links li a:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(91,120,246,0.95) 0%, rgba(74,214,198,0.75) 100%);
    border-color: rgba(91,120,246,0.6);
    color: #fff;
}
.credential-area .credential-sidebar .shadow-box.profile-info-card .theme-btn {
    background: linear-gradient(135deg, rgba(91,120,246,0.92) 0%, rgba(74,214,198,0.78) 100%);
    border: none;
    box-shadow: 0 20px 40px rgba(91,120,246,0.32);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.credential-area .credential-sidebar .shadow-box.profile-info-card .theme-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 52px rgba(74,214,198,0.38);
}
.credential-area .credential-sidebar::after {
    opacity: 0.25;
}
.credential-area .credential-sidebar .img-box {
    background: linear-gradient(90deg, #3C58E3 -15%, #C2EBFF 58%, #5AB5E2 97%);
    border-radius: 30px;
    margin-bottom: 28px;
}
.credential-area .credential-sidebar .img-box img {
    display: block;
    margin: auto;
    border-radius: 30px;
}
.credential-area .credential-sidebar p {
    color: #BCBCBC;
    opacity: 0.5;
    font-size: 16px;
    margin-bottom: 24px;
}
.credential-area .credential-sidebar .designation-tag {
    display: inline-block;
    color: #8D8D8D;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 8px;
    letter-spacing: 0.4px;
}
.credential-area .credential-sidebar .designation-divider {
    width: 100%;
    max-width: 220px;
    margin: 14px auto 18px auto;
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.25), rgba(255,255,255,0));
}
.credential-area .credential-sidebar .credential-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #BCBCBC;
    font-size: 13px;
    margin-bottom: 18px;
    opacity: 0.8;
}
.credential-area .credential-sidebar .credential-location i {
    font-size: 18px;
    line-height: 1;
    color: inherit;
}
.credential-area .credential-sidebar h2 {
    font-weight: 600;
    font-size: 30px;
    letter-spacing: 0.6px;
    margin-bottom: 12px;
    background: linear-gradient(120deg, rgba(255,255,255,0.95) 0%, rgba(210,210,210,0.9) 40%, rgba(165,165,165,0.85) 50%, rgba(240,240,240,0.95) 60%, rgba(255,255,255,0.98) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: credentialNameSheen 5s ease-in-out infinite;
}

@keyframes credentialNameSheen {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.credential-area .credential-sidebar .social-links {
    gap: 10px;
    margin-bottom: 18px;
}
.credential-area .credential-sidebar .social-links li a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: block;
    line-height: 55px;
    color: #fff;
    font-size: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(120deg, rgba(255,255,255,0.1), rgba(255,255,255,0.01));
    transition: .3s;
}
.credential-area .credential-sidebar .social-links li a:hover {
    background: #ffffff;
    color: #0F0F0F;
}
.credential-area .credential-sidebar .theme-btn {
    width: 100%;
}


.credential-area .credential-content .credential-about {
    padding-bottom: 110px;
}
.credential-area .credential-edc-exp h2,
.credential-area .credential-content .credential-about h2 {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
}
.credential-area .credential-content .credential-about h2 {
    margin-bottom: 37px;
}
.credential-area .credential-content .credential-about p {
    font-size: 16px;
    color: #fff;
    opacity: 0.8;
    line-height: 1.56;
    margin-bottom: 30px;
}
.credential-area .credential-content .credential-about p:last-child {
    margin-bottom: 0;
}
.credential-area .credential-experience,
.credential-area .credential-education {
    margin-bottom: 85px;
}
.credential-area .credential-edc-exp h2 {
    margin-bottom: 22px;
}
.credential-area .credential-edc-exp .credential-edc-exp-item + .credential-edc-exp-item {
    margin-top: 58px;
}
.credential-area .credential-edc-exp .credential-edc-exp-item h4 {
    color: #BCBCBC;
    opacity: 0.6;
    font-size: 16px;
    font-weight: 500;
}
.credential-area .credential-edc-exp .credential-edc-exp-item h3 {
    font-size: 18px;
    color: var(--primary_color);
}
.credential-area .credential-edc-exp .credential-edc-exp-item h5 {
    font-size: 14px;
    color: #BCBCBC;
    opacity: 0.6;
    font-weight: 400;
}
.credential-area .credential-edc-exp .credential-edc-exp-item p {
    margin: 0;
    font-size: 16px;
    color: #FFFFFF;
    opacity: 0.8;
    line-height: 1.56;
}
.credential-area .skills-wrap h2 {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 19px;
}
.credential-area .skills-wrap .skill-items {
    grid-template-columns: 1fr 1fr;
}
.credential-area .skills-wrap .skill-item {
    width: 50%;
}
.credential-area .skills-wrap .skill-item .percent {
    color: #BCBCBC;
    opacity: 0.6;
    display: block;
    font-weight: 500;
    margin-bottom: 9px;
}
.credential-area .skills-wrap .skill-item .name {
    color: #FFFFFF;
    opacity: 0.9;
    font-size: 18px;
    margin-bottom: 4px;
}
.credential-area .skills-wrap .skill-item p {
    color: #BCBCBC;
    opacity: 0.6;
    font-size: 14px;
    margin: 0;
}
.credential-area .awards-wrap {
    padding-top: 100px;
}
.credential-area .awards-wrap.skills-wrap .skill-items {
    grid-template-columns: 1fr;
}
.credential-area .awards-wrap.skills-wrap .skill-item {
    width: 100%;
}



/* # Service */
.service-area {
    padding-top: 40px;
}
.service-area .container > .section-heading {
    display: none;
}
.service-area .service-sidebar {
    height: 100%;
}
.service-area .service-sidebar .service-sidebar-inner {
    height: 100%;
    padding: 91px 24px 90px 60px;
}
.service-area .service-sidebar .service-sidebar-inner ul {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
.service-area .service-sidebar .service-sidebar-inner ul li {
    font-size: 16px;
    line-height: 16.8px;
    letter-spacing: -1%;
    font-weight: 400;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 50px;
}
.service-area .service-sidebar .service-sidebar-inner ul li i {
    color: #ffffff;
    font-size: 30px;
    display: block;
}
.service-area .service-content-wrap .service-content-inner {
    padding: 27px 30px;
}
.service-area .service-content-wrap .service-content-inner .service-items {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}
.service-area .service-content-wrap .service-content-inner .service-item {
    width: calc(50% - 12px);
    padding: 24px 47px 59px 30px;
}
.service-area .service-content-wrap .service-content-inner .service-item h3 {
    color: #BCBCBC;
    font-size: 15px;
    font-weight: 500;
    opacity: 0.56;
    text-transform: uppercase;
    letter-spacing: -1%;
}
.service-area .service-content-wrap .service-content-inner .service-item p {
    color: #ffffff;
    opacity: 0.8;
    line-height: 25px;
    font-size: 14px;
    margin: 0;
}
.service-area .profile-contact-credentials-wrap .about-contact-box {
    height: 100%;
    padding-top: 102px;
}



/* # Blog */
.blog-area {
    padding-top: 56px;
}
.blog-sidebar .blog-sidebar-inner .blog-sidebar-widget {
    margin-bottom: 40px;
}
.blog-sidebar .blog-sidebar-inner .blog-sidebar-widget .blog-sidebar-widget-inner {
    padding: 46px 30px 62px 30px;
}
.blog-sidebar .blog-sidebar-inner .search-widget .blog-sidebar-widget-inner {
    padding: 0;
}
.blog-sidebar .blog-sidebar-inner .search-widget form {
    position: relative;
    border-radius: 30px;
}
.blog-sidebar .blog-sidebar-inner .search-widget form::before,
.blog-sidebar .blog-sidebar-inner .search-widget form::after {
    border-radius: 30px;
}
.blog-sidebar .blog-sidebar-inner .search-widget form input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 19px 20px;
    border-radius: 30px;
    color: #ffffff;
}
.blog-sidebar .blog-sidebar-inner .search-widget form input:focus {
    outline: none;
    box-shadow: none;
}
.blog-sidebar .blog-sidebar-inner .search-widget form .theme-btn {
    border: none;
    border-radius: 30px;
    position: absolute;
    right: 6px;
    top: 6px;
}
.blog-sidebar .blog-sidebar-inner .categories-widget ul li,
.blog-sidebar .blog-sidebar-inner .recent-post-widget ul li {
    display: block;
    margin-bottom: 24px;
}
.blog-sidebar .blog-sidebar-inner .categories-widget ul li:last-child,
.blog-sidebar .blog-sidebar-inner .recent-post-widget ul li:last-child {
    margin-bottom: 0;
}
.blog-sidebar .blog-sidebar-inner .categories-widget ul li a,
.blog-sidebar .blog-sidebar-inner .recent-post-widget ul li a {
    display: block;
    line-height: 25px;
    font-size: 16px;
    color: #ffffff;
    opacity: 0.8;
}
.blog-sidebar .blog-sidebar-inner .blog-sidebar-widget h3 {
    color: #BCBCBC;
    opacity: 0.5;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.blog-details-area .blog-details-content .tags,
.blog-sidebar .blog-sidebar-inner .tags-widget ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.blog-details-area .blog-details-content .tags a,
.blog-sidebar .blog-sidebar-inner .tags-widget ul li a {
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 400;
}


.blog-area .blog-items {
    padding-right: 85px;
}
.blog-area .blog-items .blog-item + .blog-item {
    margin-top: 70px;
}
.blog-area .blog-items .blog-item .img-box {
    height: 400px;
    position: relative;
    margin-bottom: 70px;
}
.blog-area .blog-items .blog-item .img-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-details-area .blog-details-content .meta,
.blog-area .blog-items .blog-item .content .meta {
    display: block;
    color: var(--primary_color);
    font-size: 16px;
    letter-spacing: -1%;
    font-weight: 400;
    line-height: 16.8px;
    margin-bottom: 10px;
}
.blog-details-area .blog-details-content h1,
.blog-area .blog-items .blog-item .content h1 {
    font-size: 24px;
    line-height: 26.8px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.blog-area .blog-items .blog-item .content h1 a {
    color: #ffffff;
}
.blog-details-area .blog-details-content p,
.blog-area .blog-items .blog-item .content p {
    font-size: 16px;
    line-height: 25px;
    color: #ffffff;
    opacity: 0.8;
    font-weight: 400;
    margin-bottom: 30px;
}


.blog-details-area {
    padding-top: 56px;
}
.blog-details-area .blog-details-content {
    padding-right: 85px;
}
.blog-details-area .blog-details-content .img-box {
    margin-bottom: 70px;
}
.blog-details-area .blog-details-content .img-box img {
    display: block;
    width: 100%;
}
.blog-details-area .blog-details-content h1 {
    color: #ffffff;
}
.blog-details-area .blog-details-content .list {
    margin-bottom: 30px;
}
.blog-details-area .blog-details-content .list li {
    color: #898989;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 24px;
}
.blog-details-area .blog-details-content .list li:last-child {
    margin-bottom: 0;
}
.blog-details-area .blog-details-content .comments-and-form-wrap {
    margin-top: 70px;
}
.blog-details-area .blog-details-content .comments-and-form-wrap .comments-and-form-wrap-inner {
    padding: 40px 30px 40px 30px;
}
.blog-details-area .blog-details-content .comments-and-form-wrap h2 {
    font-size: 24px;
    line-height: 26.8px;
    color: #ffffff;
    letter-spacing: -1%;
    margin-bottom: 40px;
}
.blog-details-area .blog-details-content .comments-and-form-wrap .comments .comment-list {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #323232;
}
.blog-details-area .blog-details-content .comments-and-form-wrap .comments .children {
    padding-left: 80px;
}
.blog-details-area .blog-details-content .comments-and-form-wrap .comments .comment-list .comment-avatar {
    width: 100px;
    height: 100px;
    position: relative;
    flex: none;
}
.blog-details-area .blog-details-content .comments-and-form-wrap .comments .comment-list .comment-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}
.blog-details-area .blog-details-content .comments-and-form-wrap .comments .comment-list .comment-body .date {
    line-height: 16.8px;
    color: var(--primary_color);
    letter-spacing: -1%;
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}
.blog-details-area .blog-details-content .comments-and-form-wrap .comments .comment-list .comment-body h3 {
    font-size: 24px;
    line-height: 26.8px;
    color: #ffffff;
    letter-spacing: -1%;
}
.blog-details-area .blog-details-content .comments-and-form-wrap .comments .comment-list .comment-body p {
    color: #898989;
    font-size: 16px;
    line-height: 25px;
}
.blog-details-area .blog-details-content .comments-and-form-wrap .comments .comment-list .comment-body .reply-btn {
    padding: 10px 22px;
    font-size: 14px;
}
.blog-details-area .blog-details-content .comments-and-form-wrap .comment-form form .input-group textarea,
.blog-details-area .blog-details-content .comments-and-form-wrap .comment-form form .input-group input {
    width: 100%;
    border: none;
    background: linear-gradient(120deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border-radius: 10px;
    padding: 17px 20px;
    font-size: 14px;
    display: block;
    color: #fff;
}
.blog-details-area .blog-details-content .comments-and-form-wrap .comment-form form .input-group {
    margin-bottom: 16px;
}
.blog-details-area .blog-details-content .comments-and-form-wrap .comment-form form .input-group:last-child {
    margin-bottom: 0;
}
.blog-details-area .blog-details-content .comments-and-form-wrap .comment-form form .input-group textarea {
    resize: none;
    height: 145px;
}
.blog-details-area .blog-details-content .comments-and-form-wrap .comment-form form button {
    border: none;
    width: 100%;
    padding: 18px 30px;
}
.blog-details-area .blog-details-content .comments-and-form-wrap .comment-form form .input-group textarea:focus,
.blog-details-area .blog-details-content .comments-and-form-wrap .comment-form form .input-group input:focus {
    box-shadow: none;
    outline: none;
}



/* # Contact */
.contact-area {
    padding-top: 36px;
}
.contact-area .contact-form {
    position: relative;
    max-width: 765px;
    width: 100%;
}
.contact-area .contact-form .shadow-box {
    padding: 40px 40px 40px 40px;
}
.contact-area .contact-form img {
    position: absolute;
    top: 0;
    right: 50px;
}
.contact-area .contact-form h1 {
    font-size: 44px;
    color: #ffffff;
    margin-bottom: 30px;
}
.contact-area .contact-form h1 span {
    color: var(--primary_color);
}
.contact-area .contact-form form .input-group + .input-group {
    margin-top: 16px;
}
.contact-area .contact-form form .input-group textarea,
.contact-area .contact-form form .input-group input {
    width: 100%;
    border: none;

    background: linear-gradient(120deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border-radius: 10px;
    padding: 17px 20px;
    font-size: 14px;
    display: block;
    color: #fff;
}
.contact-area .contact-form form .input-group textarea {
    height: 145px;
    resize: none;
}
.contact-area .contact-form form .input-group textarea:focus,
.contact-area .contact-form form .input-group input:focus {
    outline: none;
    box-shadow: none;
}
.contact-area .contact-form form .input-group button {
    width: 100%;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    padding: 16px 30px;
}
.contact-area .contact-infos {
    width: 290px;
    flex: none;
}
.contact-area .contact-infos h3 {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 29px;

}
.contact-area .contact-infos .contact-details {
    margin-bottom: 55px;
}
.contact-area .contact-infos .contact-details li {
    gap: 24px;
}
.contact-area .contact-infos .contact-details li + li {
    margin-top: 70px;
}
.contact-area .contact-infos .contact-details li .icon-box {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    flex: none;
    text-align: center;
    line-height: 75px;
    font-size: 30px;
    color: #ffffff;
}
.contact-area .contact-infos .contact-details li .icon-box::after,
.contact-area .contact-infos .contact-details li .icon-box::before {
    border-radius: 10px;
}
.contact-area .contact-infos .contact-details li .right span {
    display: block;
    color: #BCBCBC;
    font-size: 14px;
    opacity: 0.5;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 7px;
}
.contact-area .contact-infos .contact-details li .right h4 {
    color: #ffffff;
    font-size: 16px;
    opacity: 0.8;
    font-weight: 500;
    margin-bottom: 7px;
}
.contact-area .contact-infos .contact-details li .right h4:last-child {
    margin-bottom: 0;
}
.contact-area .social-links {
    gap: 20px;
}
.contact-area .social-links li a {
    width: 82px;
    height: 82px;
    display: block;
    text-align: center;
    line-height: 92px;
    color: #ffffff;
    border-radius: 50%;
    font-size: 32px;
    transition: .3s;
}
.contact-area .social-links li a:hover {
    background: #ffffff;
    color: #0F0F0F;
}
.contact-area .social-links li a:before,
.contact-area .social-links li a:after {
    border-radius: 50%;
}

/* # Footer */
.footer-area {
    padding-top: 128px;
    padding-bottom: 78px;
}
.footer-area .footer-content .logo {
    display: inline-block;
}
.footer-area .footer-content .logo img {
    display: block;
}
.footer-area .footer-content .footer-menu {
    margin: 33px 0 37px 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
    flex-wrap: wrap;
}
.footer-area .footer-content .footer-menu li a {
    color: #676767;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    font-weight: 600;
    transition: .3s;
}
.footer-area .footer-content .footer-menu li a:hover {
    color: #fff;
}
.footer-area .footer-content .copyright {
    margin: 0;
    color: #727272;
    font-size: 14px;
    font-weight: 500;
}
.footer-area .footer-content .copyright span {
    color: var(--primary_color);
}


@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes loader_running {
    0% {
        transform: scaleX(0);
        transform-origin: left
    }

    49% {
        transform: scaleX(1);
        transform-origin: left
    }

    50% {
        transform: scaleX(1);
        transform-origin: right
    }

    100% {
        transform-origin: right;
        transform: scaleX(0)
    }
}

@keyframes preloader_slide {
    from {
        transform: scaleY(0)
    }

    to {
        transform: scaleY(1)
    }
}




/* Responsive */
@media (max-width: 1090px) {
    .container {
        padding: 0 20px;
    }
    .about-area .about-me-box {
        padding: 40px 30px 20px;
    }
    .about-area .about-me-box .img-box {
        width: 190px;
        height: 190px;
    }
    .about-area .about-me-box .infos {
        padding-top: 10px;
    }
    .about-area .about-me-box .infos h1 {
        font-size: 30px;
        line-height: 1.2;
    }
    .about-area .about-me-box .infos .about-btn {
        bottom: 25px;
    }
    .info-box {
        padding: 20px;
    }
    .info-box > img {
        width: 75%;
    }
    .info-box.about-services-box .service-icons {
        margin-bottom: 28px;
        margin-top: 22px;
    }
    .info-box .inner-profile-icons {
        padding: 16px;
    }
    .info-box .inner-profile-icons a {
        width: 62px;
        height: 62px;
    }
    .info-box .inner-profile-icons a i {
        font-size: 25px;
    }
    .info-box.about-contact-box .star-icon {
        width: auto;
    }
    .info-box.about-contact-box {
        padding-top: 74px;
    }

    .section-heading {
        font-size: 54px;
    }
    .section-heading img {
        width: 25px;
    }

    .service-area .service-sidebar .service-sidebar-inner {
        padding: 50px 24px;
        height: auto;
    }
    .service-area .service-sidebar .service-sidebar-inner ul {
        justify-content: center;
        gap: 114px;
    }
    .service-area .service-content-wrap .service-content-inner .service-item {
        width: 100%;
        padding-bottom: 30px;
    }
}

@media (max-width: 920px) {
    .about-area .container .row:first-child .col-md-6 {
        flex: 0 0 auto;
        width: 100%;
    }
    .about-area .about-me-box {
        margin-bottom: 24px;
    }
    .about-area .about-me-box .img-box {
        width: 224px;
        height: 224px;
    }
    .about-area .about-me-box .infos h1 {
        font-size: 36px;
        line-height: 1.2;
    }
    .info-box.about-client-box .clients .client-item {
        padding: 42px 10px 42px 10px;
    }
    .info-box.about-client-box .clients .client-item h1 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .about-area .container > .row:nth-child(2) .blog-service-profile-wrap {
        /* display: grid !important; */
        /* grid-template-columns: 1fr 1fr; */
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .about-area .container > .row:nth-child(2) .blog-service-profile-wrap > div {
        width: calc(50% - 12px);
    }
    .about-area .container > .row:nth-child(2) .blog-service-profile-wrap > div:nth-child(2) {
        order: 3;

    }
    .info-box.about-services-box .service-icons {
        gap: 22px;
    }
    .about-area .container > .row:nth-child(3) .col-md-6 {
        width: 100%;
    }
    .info-box.about-client-box {
        margin-bottom: 24px;
    }
    .section-heading {
        font-size: 36px;
        justify-content: center;
    }
    .profile-contact-credentials-wrap {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
    }
    .project-details-wrap .project-about-2,
    .project-details-wrap .project-infos-wrap {
        gap: 24px;
    }
    .breadcrumb-area .breadcrumb-content .section-heading br {
        display: none;
    }
}

@media (max-width: 810px) {
    .credential-area .credential-sidebar {
        width: 280px;
    }
    .credential-area .container .gx-row {
        gap: 40px;
    }
    .about-area .about-me-wrap {
        flex-direction: column;
        gap: 40px;
        align-items: center !important;
    }
    .project-details-wrap .project-infos-wrap {
        flex-direction: column;
        padding: 50px 24px 24px 24px;
    }
    .about-area .about-details .section-heading {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .header-area {
        padding: 20px 0;
    }

    .header-area .navbar {
        position: fixed;
        width: 100%;
        background: #0F0F0F;
        z-index: 15;
        overflow-x: hidden;
        /* height: 80px; */
        transform-origin: 50% 50% 0px;
        top: 0;
        left: 0;
        padding-top: 100px;
        padding-bottom: 24px;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        /* max-height: 0; */
        will-change: transform;

        /* transform: translate3d(0px, -11.4272px, 0px) scale(1, 1) scale(1, 0.945615); */
        transform: translate3d(0px, -300px, 0px) scale(1, 1) scale(1, 0.945615);
        transform: translate3d(0px, -300px, 0px) scale(1, 0.5) scale(1, 0.5);
        transition: .5s
    }
    .header-area .navbar.active {
        opacity: 1;
        visibility: visible;
        /* height: min-content; */
        transform: translate3d(0px, 0, 0px) scale(1, 1) scale(1, 1);
        /* max-height: 90vh; */
    }
    .header-area .navbar .menu {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        align-items: center;
        width: 100%;
        gap: 30px;
    }
    .header-area .navbar .menu li a {
        padding: 0;
    }
    .header-area .navbar .theme-btn {
        display: inline-block;
        margin-top: 48px;
    }
    .header-area .gx-row > .theme-btn {
        display: inline-flex;
    }


    .header-area .show-menu {
        display: none;
    }

    .header-area .navbar {
        display: none;
    }

    .main-homepage {
        padding-bottom: 120px;
    }

    .mobile-bottom-nav {
        display: flex;
    }
    .contact-area .gx-row,
    .credential-area .container .gx-row  {
        flex-direction: column;
    }
    .contact-area .contact-form {
        margin-top: 50px;
    }
    .project-details-wrap .project-about-2 .left-details,
    .contact-area .contact-form,
    .credential-area .credential-sidebar {
        width: 100%;
    }
    .about-area .about-experience {
        margin-bottom: 24px;
    }
    .projects-area .container > .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .project-details-wrap .project-about-2,
    .projects-area .container > .row .col-md-8 > .d-flex {
        flex-direction: column;
    }
    .project-details-wrap .project-details-img {
        height: 300px;
    }
    .breadcrumb-area .breadcrumb-content .section-heading {
        font-size: 36px;
    }

    .service-area .service-sidebar .service-sidebar-inner {
        padding: 50px 24px;
        width: 100%;
        margin: auto auto 30px auto;
    }
    .service-area .service-sidebar .service-sidebar-inner ul {
        gap: 50px;
        max-width: 220px;
        margin: auto;
    }
    .service-area .col-md-8 > .section-heading {
        display: none;
    }
    .service-area .container > .section-heading {
        display: flex;
        margin-bottom: 30px;
    }

    .blog-details-area,
    .blog-area {
        padding-top: 40px;
    }
    .blog-details-area .blog-details-content,
    .blog-area .blog-items {
        padding-right: 0;
    }
    .blog-area .blog-items .blog-item .img-box {
        margin-bottom: 50px;
    }
    .blog-sidebar {
        margin-top: 50px;
    }

}
@media (max-width: 585px) {
    .about-area .about-me-box {
        flex-direction: column;
    }
    .about-area .about-me-box .img-box {
        margin: auto;
    }
    .about-area .container > .row:nth-child(2) .blog-service-profile-wrap {
        grid-template-columns: 1fr;
    }
    .about-area .about-credentials-wrap > .gx-row {
        flex-wrap: wrap;
    }
    .about-area .about-credentials-wrap > .gx-row > * {
        width: 100%;
        flex: none;
    }
    .info-box > img {
        width: auto;
    }
    .info-box.about-client-box .clients {
        /* display: grid !important;
        grid-template-columns: 1fr 1fr; */
        flex-wrap: wrap;
        justify-content: center !important;
    }
    .info-box.about-client-box .clients .client-item {
        width: calc(50% - 12px);
        flex: none;
    }
    .info-box.about-contact-box h1 {
        font-size: 30px;
        line-height: 1.2;
    }
    .contact-area .contact-form h1 {
        font-size: 34px;
    }
    .contact-area .contact-form .shadow-box {
        padding: 55px 20px 30px 20px;
    }
    .contact-area .social-links li a {
        width: 50px;
        height: 50px;
        line-height: 58px;
        font-size: 20px;
    }
    .contact-area .contact-infos .contact-details li .icon-box {
        width: 58px;
        height: 58px;
        line-height: 63px;
        font-size: 25px;
    }
    .contact-area .contact-infos .contact-details li + li {
        margin-top: 40px;
    }

    .projects-area .container > .row,
    .profile-contact-credentials-wrap {
        grid-template-columns: 1fr;
    }
    .about-area .about-image-box {
        max-width: 370px;
        width: 100%;
    }
    .about-area .about-image-box {
        padding: 15px;
    }
    .about-area .about-details .about-details-inner h1,
    .section-heading {
        font-size: 26px;
    }
    .about-area .about-details .about-details-inner {
        padding-top: 80px;
    }
    .projects-area .container > .section-heading {
        display: flex;
        margin-bottom: 40px;
    }
    .projects-area .col-md-8 .section-heading {
        display: none;
    }
    .breadcrumb-area .breadcrumb-content .section-heading {
        font-size: 24px;
    }
    .project-details-wrap .project-details-3-img,
    .project-details-wrap .project-details-2-img {
        height: 250px;
    }
    .project-details-wrap .row .col-md-6:first-child .project-details-3-img {
        margin-bottom: 24px;
    }
    .project-details-wrap .project-about-2,
    .project-details-wrap .project-about-2 .left-details {
        padding: 30px;
    }
    .project-details-wrap .big-btn {
        margin-top: 50px;
        font-size: 25px;
        padding: 30px 46px;
    }

    .about-area .container > .row:nth-child(2) .blog-service-profile-wrap > div,
    .projects-area .project-item .project-img img {
        width: 100%;
    }
    .blog-area .blog-items .blog-item .img-box {
        height: 300px;
    }
    .blog-details-area .blog-details-content .comments-and-form-wrap .comments .children {
        padding-left: 40px;
    }
    .blog-details-area .blog-details-content .comments-and-form-wrap .comments .comment-list {
        gap: 20px;
    }
    .blog-details-area .blog-details-content .comments-and-form-wrap .comments .comment-list .comment-avatar {
        width: 70px;
        height: 70px;
    }
    
}
@media (max-width: 425px) {
    .about-area .about-me-box .infos h1 {
        font-size: 30px;
    }
    .about-area .about-me-box .infos {
        padding-right: 20px;
    }
    .info-box.about-services-box .service-icons {
        gap: 18px;
    }
    .info-box.about-services-box .service-icons a {
        width: 60px;
        height: 60px;
    }
    .info-box.about-services-box .service-icons i {
        font-size: 26px;
    }
    .credential-area .skills-wrap .skill-items,
    .info-box.about-client-box .clients {
        grid-template-columns: 1fr;
    }
    .footer-area .footer-content .footer-menu {
        gap: 24px;
    }
    .credential-area .credential-content .credential-about {
        padding-bottom: 70px;
    }
    .contact-area .contact-form h1 {
        font-size: 30px;
    }
    .info-box.about-client-box .clients .client-item {
        width: 100%;
    }
    .blog-details-area .blog-details-content .comments-and-form-wrap .comments .comment-list {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .blog-details-area .blog-details-content .comments-and-form-wrap .comments .children {
        padding-left: 0;
    }

    /* Unify hero heading sizing across About/Expertise/Experience */
    .credential-area .section-headings {
        font-size: clamp(30px, 8vw, 44px);
        line-height: 1.1;
        gap: 6px;
    }
    .credential-area .section-headings .type-wrap {
        display: inline-block;
        white-space: nowrap;
    }
}

@media (max-width: 767px) {
    .credential-area .credential-sidebar {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .credential-area .credential-sidebar .shadow-box.profile-info-card {
        padding: 18px 18px 24px;
        border-radius: 24px;
    }
    .credential-area .credential-sidebar .shadow-box.profile-info-card .img-box {
        max-width: 150px;
        margin-bottom: 12px;
        border-radius: 20px;
    }
    .credential-area .credential-sidebar h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .credential-area .credential-sidebar .designation-tag {
        font-size: 11px;
        padding: 4px 12px;
        margin-bottom: 6px;
    }
    .credential-area .credential-sidebar .credential-location {
        font-size: 12px;
        padding: 8px 12px;
        gap: 8px;
    }
    .credential-area .credential-sidebar .credential-location i {
        font-size: 16px;
    }
    .credential-area .credential-sidebar .designation-divider {
        margin: 12px auto 14px auto;
    }
    .credential-area .credential-sidebar .social-links {
        margin-bottom: 14px;
        gap: 8px;
    }
    .credential-area .credential-sidebar .social-links li a {
        width: 42px;
        height: 42px;
        line-height: 46px;
        font-size: 18px;
    }
    .credential-area .credential-sidebar .shadow-box.profile-info-card .theme-btn {
        padding: 10px 14px;
        font-size: 14px;
    }
}


/* Futuristic enhancements for home layout */
.home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.home-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 28px;
    background: rgba(15,15,15,0.82);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 42px rgba(8,8,8,0.45);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    backdrop-filter: blur(16px);
}

.home-card::before {
    content: '';
    position: absolute;
    inset: -60% 45% 40% -30%;
    background: radial-gradient(circle at top left, var(--card-accent, rgba(91,120,246,0.45)) 0%, transparent 70%);
    opacity: 0.55;
    pointer-events: none;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.home-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.16);
    background: rgba(18,18,18,0.9);
}

.home-card:hover::before {
    transform: translate(16px,-16px);
    opacity: 0.85;
}

.home-card h1,
.home-card h3,
.home-card h4 {
    color: #ffffff;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.home-card p {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.home-metric-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.72);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-card .home-targets {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.home-card .hero-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.82);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-card .inner-profile-icons {
    margin-bottom: 18px;
}

@media (max-width: 820px) {
    .home-grid {
        gap: 18px;
    }
    .home-card {
        padding: 22px;
    }
}


/* Home page futuristic accents */
.about-area .shadow-box {
    background: rgba(15,15,15,0.82);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(8,8,8,0.5);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    backdrop-filter: blur(16px);
}

.about-area .shadow-box::before {
    content: '';
    position: absolute;
    inset: -65% 45% 45% -40%;
    background: radial-gradient(circle at top left, rgba(91,120,246,0.45) 0%, transparent 70%);
    opacity: 0.55;
    pointer-events: none;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.about-area .shadow-box:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.18);
    background: rgba(15,15,15,0.9);
}

.about-area .shadow-box:hover::before {
    transform: translate(16px,-16px);
    opacity: 0.85;
}

.about-area .infos h1,
.about-area .infos h4 {
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-area .infos p {
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
}

.about-area .about-btn img {
    filter: drop-shadow(0 6px 18px rgba(91,120,246,0.4));
    transition: transform 0.3s ease;
}

.about-area .about-btn:hover img {
    transform: translateX(4px);
}

.about-area .inner-profile-icons a {
    border-radius: 18px;
    width: 68px;
    height: 68px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.08);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.about-area .inner-profile-icons a:hover {
    background: #ffffff;
    color: #0f0f0f;
    transform: translateY(-4px);
}

.about-area .slider-container,
.about-area .custom-slider-container {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.about-area .slider-container.slider-large {
    max-height: 320px;
}

@media (min-width: 992px) {
    .about-area .blog-service-profile-wrap .profiles-card {
        flex: 0 0 calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }
}


.about-area .about-client-box .clients .client-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 30px 22px;
    box-shadow: 0 18px 32px rgba(10,10,10,0.45);
}

.about-area .about-contact-box h1 {
    font-size: 32px;
    letter-spacing: 0.05em;
}

.about-area .about-contact-box span {
    color: rgba(91,120,246,0.9);
}

/* Projects page scrollytelling layout */
.projects-page {
    position: relative;
    overflow: hidden;
    --projects-header-height: 120px;
    --projects-section-max-width: 1200px;
}

.projects-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.08);
    z-index: 1200;
}

.projects-progress__bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(91,120,246,0.85), rgba(91,120,246,0.3));
    transform-origin: left center;
}

.projects-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 100vh;
    padding: clamp(120px, 16vh, 180px) 0 clamp(64px, 10vh, 120px);
}

.projects-hero__panel {
    padding: clamp(32px, 5vw, 72px);
    max-width: 720px;
}

.projects-hero__title {
    font-size: clamp(48px, 10vw, 88px);
    line-height: 1;
    letter-spacing: -0.02em;
}

.projects-hero__subtitle {
    font-size: clamp(18px, 2vw, 22px);
    max-width: 520px;
}

.projects-filmstrip {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.projects-filmstrip__inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
    padding: clamp(28px, 4vw, 44px);
}

.projects-filmstrip__viewport {
    overflow: hidden;
}

.projects-filmstrip__track {
    display: flex;
    gap: clamp(24px, 4vw, 48px);
}

.projects-filmstrip__item {
    flex: 0 0 clamp(320px, 48vw, 520px);
}

.projects-filmstrip__card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0;
    background: transparent;
    border: 0;
    text-align: left;
    color: inherit;
    cursor: pointer;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.projects-filmstrip__card:focus-visible {
    outline: 2px solid rgba(91,120,246,0.8);
    outline-offset: 6px;
}

.projects-filmstrip__item.is-active .projects-filmstrip__card {
    transform: translateY(-6px);
    transition: transform 0.3s ease;
}

.projects-filmstrip__media {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 26px 48px rgba(10,10,10,0.45);
}

.projects-filmstrip__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projects-filmstrip__copy h2 {
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.1;
    margin-bottom: 12px;
}

.projects-filmstrip__copy p {
    font-size: 16px;
    line-height: 1.6;
}

.projects-filmstrip__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.04);
    color: #ffffff;
    font-size: 22px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.projects-filmstrip__nav:hover,
.projects-filmstrip__nav:focus-visible {
    background: rgba(91,120,246,0.12);
    border-color: rgba(91,120,246,0.6);
    transform: translateY(-2px);
}

.projects-filmstrip__nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.projects-storyline {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(40px, 6vw, 96px);
    align-items: flex-start;
    padding: clamp(72px, 14vh, 140px) 0 clamp(96px, 20vh, 220px);
    max-width: calc(var(--projects-section-max-width, 1200px) + 240px);
    margin-left: auto;
    margin-right: auto;
}

.projects-dock {
    position: sticky;
    top: calc(var(--projects-header-height, 120px) + clamp(40px, 6vh, 80px));
    order: 2;
    align-self: flex-start;
}

.projects-dock ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-end;
}

.projects-dock__button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: 0;
    color: #ffffff;
    opacity: 0.45;
    cursor: pointer;
    padding: 6px 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.projects-dock__button:focus-visible {
    outline: 2px solid rgba(91,120,246,0.8);
    outline-offset: 6px;
}

.projects-dock__button:hover,
.projects-dock__button.is-active {
    opacity: 1;
    transform: translateX(-6px);
}

.projects-dock__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.12);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.projects-dock__button.is-active .projects-dock__dot {
    background: rgba(91,120,246,0.9);
    border-color: rgba(91,120,246,0.9);
}

.projects-dock__label {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.projects-dock__button:hover .projects-dock__label,
.projects-dock__button.is-active .projects-dock__label {
    opacity: 0.8;
    transform: translateX(0);
}

.projects-stories {
    order: 1;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 0; /* This remains 0 to keep the transition tight */
}

.project-story {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-story__inner {
    width: 100%;
    max-width: min(var(--projects-section-max-width, 1200px), 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.project-story.is-reversed .project-story__inner {
    flex-direction: row-reverse;
}

.project-story__media {
    flex: 1 1 55%;
    position: relative;
    display: flex;
    align-items: center;
}

.project-story__media-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: min(60vh, 520px);
    min-height: 260px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 34px 68px rgba(10,10,10,0.56);
    background: rgba(10,10,10,0.6);
}
.project-story.is-reversed .project-story__media-inner {
    margin-left: auto;
}


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

.project-story__content {
    flex: 1 1 45%;
    max-width: 480px;
}

.project-story__meta {
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.project-story__title {
    font-size: clamp(38px, 5vw, 54px);
    letter-spacing: -0.01em;
}

.project-story__excerpt {
    font-size: 18px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-story__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: center;
}

.project-story__details-btn {
    border: 1px solid rgba(255,255,255,0.28);
    background: transparent;
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 999px;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.project-story__details-btn:hover,
.project-story__details-btn:focus-visible {
    border-color: rgba(91,120,246,0.9);
    background: rgba(91,120,246,0.12);
    color: #ffffff;
}

.project-story__tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.project-story__chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
    background: rgba(255,255,255,0.04);
}

.projects-callout {
    padding: clamp(64px, 12vh, 120px) 0 0;
}

.projects-callout__panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(32px, 6vw, 56px);
}

.project-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    z-index: 2200;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-modal.is-open {
    pointer-events: auto;
    opacity: 1;
}

.project-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(5,5,5,0.78);
    backdrop-filter: blur(6px);
}

.project-modal__dialog {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 0;
    width: min(960px, 92vw);
    max-height: min(86vh, 720px);
    overflow: hidden;
}

.project-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    background: rgba(0,0,0,0.55);
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    z-index: 5;
}

.project-modal__media {
    position: relative;
    overflow: hidden;
}

.project-modal__media .project-story__media-inner {
    width: 100%;
    max-height: none;
    min-height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
}

.project-modal__media .project-story__media-inner img {
    object-fit: cover;
}

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

.project-modal__body {
    padding: clamp(28px, 4vw, 48px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-modal__title {
    font-size: clamp(32px, 3.6vw, 46px);
    letter-spacing: -0.01em;
}

.project-modal__meta {
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.project-modal__section-title {
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.project-modal__content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
}

.project-modal__actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
}

.project-modal__visit {
    min-width: 160px;
    text-align: center;
}

.project-modal__visit.is-disabled {
    pointer-events: none;
    opacity: 0.4;
}

.project-modal__dismiss {
    border: 1px solid rgba(255,255,255,0.28);
    background: transparent;
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 999px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.project-modal__dismiss:hover,
.project-modal__dismiss:focus-visible {
    border-color: rgba(91,120,246,0.9);
    background: rgba(91,120,246,0.12);
}

@media (max-width: 1200px) {
    .project-story__inner {
        max-width: min(1024px, var(--projects-section-max-width, 1200px));
        gap: 28px;
    }

    .project-story__media {
        flex-basis: 55%;
        max-width: 55%;
    }

    .project-story__content {
        flex-basis: 45%;
        max-width: 45%;
    }

    .project-story__media-inner {
        max-height: min(56vh, 460px);
    }
}

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

    .projects-filmstrip__nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
    }

    .projects-filmstrip__nav--prev {
        left: 24px;
    }

    .projects-filmstrip__nav--next {
        right: 24px;
    }
}

@media (max-width: 991px) {
    .projects-hero {
        padding-top: clamp(160px, 22vh, 200px);
    }

    .projects-filmstrip__viewport {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .projects-filmstrip__track {
        width: max-content;
    }

    .projects-filmstrip__track {
        gap: 24px;
    }

    .projects-filmstrip__item {
        flex-basis: clamp(280px, 68vw, 420px);
        scroll-snap-align: start;
    }

    .projects-storyline {
        flex-direction: column;
    }

    .projects-dock {
        position: relative;
        order: 1;
        top: auto;
        width: 100%;
    }

    .projects-dock ul {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }

    .projects-dock__button {
        flex-direction: column;
        gap: 8px;
        padding: 4px 10px;
    }

    .projects-dock__label {
        transform: translateY(4px);
    }

    .projects-stories {
        order: 2;
        gap: clamp(96px, 12vh, 140px);
    }

    .project-story {
        padding: var(--projects-header-height, 120px) 20px 0;
    }

    .project-story__inner {
        max-width: min(720px, 100%);
        gap: 32px;
        overflow: visible;
        padding-right: 0;
    }

    .project-story__inner,
    .project-story.is-reversed .project-story__inner {
        flex-direction: column;
    }

    .project-story__media,
    .project-story__content,
    .project-story.is-reversed .project-story__content {
        flex-basis: 100%;
        max-width: 100%;
    }

    .project-story__media-inner {
        width: 100%;
        max-height: min(48vh, 360px);
        min-height: 220px;
    }
}

@media (max-width: 767px) {
    .projects-progress {
        height: 2px;
    }

    .projects-filmstrip {
        padding: 48px 0;
    }

    .projects-filmstrip__inner {
        padding: 24px;
    }

    .projects-filmstrip__track {
        gap: 16px;
    }

    .projects-filmstrip__item {
        flex-basis: 78vw;
    }

    .projects-dock {
        display: none;
    }

    .project-story__title {
        font-size: clamp(32px, 8vw, 44px);
    }

    .project-story__excerpt {
        font-size: 17px;
    }

    .project-story__actions {
        gap: 10px 14px;
    }

    .project-modal__dialog {
        grid-template-columns: 1fr;
        max-height: 90vh;
    }

    .project-modal__media {
        height: 260px;
    }
}

/* Hide the right-side dots (dock) only in crossfade mode on desktop */
@media (min-width: 992px) {
    .projects-storyline.is-crossfade .projects-dock {
        display: none;
    }
}

/* True fullscreen centering for crossfade layout (desktop) */
@media (min-width: 992px) {
    .projects-storyline.is-crossfade {
        display: block;
        max-width: none;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .projects-stories.is-crossfade {
        position: relative;
        width: 100vw;
        height: 100vh;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        --stories-y-offset: clamp(150px, 14vh, 280px);
    }

    /* Each story is a centered overlay */
    .projects-stories.is-crossfade .project-story {
        position: absolute;
        inset: 0;
        display: grid !important;
        place-items: center !important;
        opacity: 0;
        pointer-events: none;
        will-change: opacity, transform;
    }

    .projects-stories.is-crossfade .project-story.is-active {
        opacity: 1;
        pointer-events: auto;
    }

    .projects-stories.is-crossfade .project-story__inner {
        width: min(1100px, 92vw);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: clamp(32px, 4vw, 64px);
        transform: translateY(var(--stories-y-offset));
    }

    .projects-stories.is-crossfade .project-story__media,
    .projects-stories.is-crossfade .project-story__content {
        flex: 0 0 auto;
    }

    .projects-stories.is-crossfade .project-story.is-reversed .project-story__media-inner {
        margin-left: 0;
    }

    .projects-stories.is-crossfade .project-story__media-inner {
        max-height: min(60vh, 520px);
    }
}

/* Mobile bottom nav hardening */
@media (max-width: 900px) {
    body {
        padding-bottom: 10px;
    }
    .footer-area {
        padding-bottom: 10px;
    }
    .mobile-bottom-nav {
        position: fixed;
        left: 16px;
        right: 16px;
        bottom: 16px;
        display: flex !important;
        padding: 10px 12px;
        min-height: 58px;
        border-radius: 999px;
        background: linear-gradient(155deg, rgba(19,19,19,0.4) 0%, rgba(10,10,10,0.36) 45%, rgba(12,12,12,0.52) 100%);
        border: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 18px 38px rgba(0,0,0,0.24), 0 14px 34px rgba(91,120,246,0.14), 0 10px 26px rgba(142,105,255,0.08);
        z-index: 10000;
    }
    .mobile-bottom-nav a {
        color: #bfbfbf;
        font-size: 0;
    }
    .mobile-bottom-nav a i {
        color: currentColor;
        font-size: 22px;
    }
    .mobile-bottom-nav a.active,
    .mobile-bottom-nav a:hover {
        color: #ffffff;
    }
    .header-area .show-menu,
    .header-area .navbar {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .projects-progress__bar,
    .projects-filmstrip__nav,
    .projects-dock__button,
    .project-story__details-btn,
    .project-modal,
    .project-modal__dismiss {
        transition: none;
    }
}

/* Page: About Me */
.section-headings {
    color: #ffffff;
    font-size: 74px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -01px;
    display: flex;
    align-items: left;
    gap: 5px;
    margin-top: 2px;
    justify-content: left;
}

.about-story {
    color: rgba(255, 255, 255, 0.72);
    max-width: 760px;
    line-height: 1.7;
    font-size: 16px;
    margin: 22px 0 36px 0;
}

.about-body {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.about-body.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.about-bio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 36px;
    grid-auto-rows: 1fr;
}

.bio-card {
    position: relative;
    padding: 28px 26px;
    border-radius: 26px;
    background: rgba(15, 15, 15, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(8, 8, 8, 0.55);
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 100%;
    height: 100%;
}

.bio-card::before {
    content: '';
    position: absolute;
    inset: -65% 45% 45% -50%;
    background: radial-gradient(circle at top left, var(--accent, rgba(91,120,246,0.45)) 0%, transparent 70%);
    opacity: 0.55;
    transition: transform 0.6s ease, opacity 0.6s ease;
    pointer-events: none;
}

.bio-card::after {
    content: '';
    position: absolute;
    inset: -40% -10% 60% -60%;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.25) 0%, transparent 70%);
    opacity: 0;
    transform: translate3d(-20%, -10%, 0) scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.bio-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(15, 15, 15, 0.86);
    box-shadow: 0 30px 60px rgba(8, 8, 8, 0.65), 0 18px 38px rgba(91,120,246,0.12);
}

.bio-card:hover::before {
    transform: translate(14px, -12px);
    opacity: 0.85;
}

.bio-card:hover::after {
    opacity: 0.55;
    transform: translate3d(0, 0, 0) scale(1);
}

.bio-card h3 {
    margin: 0 0 14px 0;
    font-size: 22px;
    color: #ffffff;
    font-weight: 600;
}

.bio-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.68);
}

.bio-card .meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bio-card .meta i {
    font-size: 20px;
    transition: transform 0.4s ease;
}

.bio-card:hover .meta i {
    transform: translateY(-4px);
}

@keyframes bioCardSheen {
    0% {
        transform: translate(-18px, 18px);
        opacity: 0.45;
    }
    100% {
        transform: translate(18px, -18px);
        opacity: 0.85;
    }
}

.bio-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 36px 0 40px 0;
    align-items: stretch;
}

.metric-tile {
    padding: 20px 18px;
    border-radius: 24px;
    background: rgba(15, 15, 15, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    min-height: 150px;
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 36px rgba(8, 8, 8, 0.45);
}

.metric-tile h4 {
    margin: 0;
    font-size: 28px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1;
}

.metric-tile h5 {
    margin: 0;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.metric-tile span {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
}

.metric-tile span + span {
    margin-top: 4px;
}

@media (max-width: 992px) {
    .bio-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .metric-tile {
        min-height: 140px;
    }
}

.experience-stream {
    position: relative;
    padding-left: 32px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.experience-entry {
    position: relative;
    padding: 18px 24px 18px 30px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.experience-entry::before {
    content: '';
    position: absolute;
    left: -42px;
    top: 24px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5B78F6, #C2EBFF);
    box-shadow: 0 0 0 6px rgba(91,120,246,0.18);
}

.experience-entry h4 {
    margin: 0;
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
}

.experience-entry span {
    display: block;
    margin: 6px 0 12px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.experience-entry p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.7;
}

.experience-entry:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.about-playbook {
    margin-top: 40px;
    padding: 26px 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-playbook p {
    margin: 0 0 16px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
}

.about-playbook p:last-child {
    margin-bottom: 0;
}

/* Skeleton for About while typing */
.about-skeleton {
    display: grid;
    gap: 14px;
    margin: 22px 0 36px 0;
}
.about-skeleton .skeleton-line {
    position: relative;
    height: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}
.about-skeleton .skeleton-line.is-30 { width: 30%; }
.about-skeleton .skeleton-line.is-50 { width: 50%; }
.about-skeleton .skeleton-line.is-60 { width: 60%; }
.about-skeleton .skeleton-line.is-80 { width: 80%; }
.about-skeleton .skeleton-line::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.22) 20%, rgba(255,255,255,0.08) 40%);
    transform: translateX(-100%);
    animation: skeletonShimmer 1.4s ease-in-out infinite;
}
.about-skeleton .skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}
.about-skeleton .skeleton-card {
    height: 120px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}
.about-skeleton .skeleton-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.22) 20%, rgba(255,255,255,0.08) 40%);
    transform: translateX(-100%);
    animation: skeletonShimmer 1.4s ease-in-out infinite;
}
.about-skeleton.is-hidden {
    display: none;
}

@keyframes skeletonShimmer {
    0% { transform: translateX(-100%); }
    60% { transform: translateX(120%); }
    100% { transform: translateX(120%); }
}

@media (max-width: 820px) {
    .section-headings {
        font-size: 52px;
    }
}

.type-wrap {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #000;
    animation: typing 2.2s steps(30, end), blink-caret .5s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: #000;
    }
}

/* Page: Expertise */
.skills-summary {
    color: rgba(255, 255, 255, 0.72);
    max-width: 720px;
    line-height: 1.7;
    margin: 20px 0 32px 0;
    font-size: 16px;
}

.expertise-body {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.expertise-body.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.skills-showcase {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.skill-category {
    position: relative;
    padding: 32px 28px;
    border-radius: 28px;
    background: rgba(15, 15, 15, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 45px rgba(10, 10, 10, 0.55);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    backdrop-filter: blur(16px);
}

.skill-category::before {
    content: '';
    position: absolute;
    inset: -65% 45% 45% -50%;
    background: radial-gradient(circle at top left, var(--accent, rgba(91,120,246,0.45)) 0%, transparent 70%);
    opacity: 0.55;
    transition: transform 0.6s ease, opacity 0.6s ease;
    pointer-events: none;
}

.skill-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(8, 8, 8, 0.65);
    border-color: rgba(255, 255, 255, 0.16);
}

.skill-category:hover::before {
    transform: translate(14px, -12px);
    opacity: 0.85;
}

.category-head {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 10px;
}

.category-title p {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}

.category-title h3 {
    margin: 6px 0 0 0;
    font-size: 22px;
    color: #ffffff;
    font-weight: 600;
}
.category-title {
    flex: 1 1 200px;
}

.category-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent, #5B78F6), rgba(255, 255, 255, 0.14));
    color: #fff;
    box-shadow: 0 16px 36px rgba(var(--accent-rgb, 91,120,246), 0.35);
    flex-shrink: 0;
}

.category-icon i {
    font-size: 26px;
}

.category-tag {
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(var(--accent-rgb, 91,120,246), 0.35);
    background: rgba(var(--accent-rgb, 91,120,246), 0.16);
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    letter-spacing: 0.03em;
    white-space: nowrap;
    flex-basis: 100%;
    width: auto;
    order: 3;
    margin-top: 0;
}

.category-lede {
    margin: 0 0 24px 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.68);
}

.skill-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    flex-direction: column;
}

.skill-chip {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 16px;
    min-width: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 0.01em;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    overflow: hidden;
}

.skill-chip strong {
    font-weight: 600;
    font-size: 14px;
}

.skill-chip small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.skill-chip::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: var(--level, 80%);
    max-width: 100%;
    background: linear-gradient(90deg, rgba(var(--accent-rgb, 91,120,246), 0.9), rgba(var(--accent-rgb, 91,120,246), 0.15));
}

.skill-chip:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--accent-rgb, 91,120,246), 0.45);
    background: rgba(255, 255, 255, 0.07);
}

.category-highlights {
    margin: 26px 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.62);
}

.category-highlights i {
    color: var(--accent, #5B78F6);
    font-size: 18px;
}

@media (max-width: 820px) {
    .skills-showcase {
        gap: 20px;
    }
    .skill-chip {
        min-width: unset;
        width: 100%;
    }
    .category-head {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 6px 10px;
        margin-bottom: 4px;
    }
    .category-tag {
        flex-basis: auto;
        order: 0;
        margin-left: auto;
        margin-top: 0;
    }
}

@media (max-width: 600px) {
    .category-head {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "icon title"
            "tag tag";
        align-items: center;
        gap: 8px 10px;
        margin-bottom: 0;
    }
    .category-title p {
        margin: 0;
    }
    .category-title h3 {
        margin: 0;
        line-height: 1.12;
    }
    .category-title {
        grid-area: title;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 4px;
        flex: 1 1 auto;
        min-width: 0;
        width: auto;
        align-items: flex-start;
    }
    .category-tag {
        grid-area: tag;
        white-space: nowrap;
        width: 100%;
        max-width: 100%;
        flex-basis: 100%;
        align-self: flex-start;
        font-size: 11px;
        padding: 6px 12px;
        margin-top: 2px;
    }
    .category-icon {
        grid-area: icon;
    }
}

/* Page: Experience */
.experience-summary {
    color: rgba(255, 255, 255, 0.72);
    max-width: 780px;
    line-height: 1.7;
    font-size: 16px;
    margin: 24px 0 38px 0;
}

.experience-body {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.experience-body.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.experience-glance {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 36px;
}

.glance-card {
    padding: 22px 20px;
    border-radius: 24px;
    background: rgba(15, 15, 15, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 36px rgba(8, 8, 8, 0.45);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.glance-card h4 {
    margin: 0;
    font-size: 28px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1;
}

.glance-card span {
    display: block;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
}

.glance-card span + span {
    margin-top: 4px;
}

.experience-panels {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-left: 24px;
    --timeline-progress: 0px;
}

.experience-panels::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 16px;
    bottom: 16px;
    width: 2px;
    background: rgba(91,120,246,0.18);
}

.experience-panels::after {
    content: '';
    position: absolute;
    left: -24px;
    top: 16px;
    width: 2px;
    background: linear-gradient(180deg, rgba(91,120,246,0.8), rgba(74,214,198,0.6));
    transform-origin: top;
    height: var(--timeline-progress);
    transition: height 0.2s ease-out;
}

.experience-card {
    position: relative;
    padding: 32px 30px;
    border-radius: 28px;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 48px rgba(9, 9, 9, 0.5);
    overflow: hidden;
    backdrop-filter: blur(18px);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    margin-left: 0;
    --accent: rgba(91,120,246,0.45);
    --accent-tenure-bg: rgba(91,120,246,0.14);
    --accent-tenure-border: rgba(91,120,246,0.35);
    --accent-dot: rgba(91,120,246,0.35);
    --accent-dot-shadow: rgba(91,120,246,0.12);
    --accent-dot-active: linear-gradient(135deg, #5B78F6, #7DA8FF);
}

.experience-card::before {
    content: '';
    position: absolute;
    inset: -65% 45% 45% -50%;
    background: radial-gradient(circle at top left, var(--accent) 0%, transparent 70%);
    opacity: 0.55;
    pointer-events: none;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.experience-card::after {
    content: '';
    position: absolute;
    left: -39px;
    top: 32px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-dot);
    box-shadow: 0 0 0 6px var(--accent-dot-shadow);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

@media (max-width: 767px) {
    .experience-card {
        padding: 24px 20px;
    }
    .experience-card h3 {
        font-size: 20px;
    }
    .experience-card .experience-role {
        font-size: 12px;
        padding: 7px 12px;
    }
    .experience-card .tenure {
        font-size: 11px;
        padding: 6px 12px;
    }
    .bullet-grid {
        gap: 10px;
    }
    .bullet-grid i {
        font-size: 17px;
        margin-top: 2px;
    }
}

.experience-card.is-active::after {
    background: var(--accent-dot-active);
    box-shadow: 0 0 0 8px rgba(91,120,246,0.22);
}

.experience-card[data-accent="teal"] {
    --accent: rgba(74,214,198,0.45);
    --accent-tenure-bg: rgba(74,214,198,0.14);
    --accent-tenure-border: rgba(74,214,198,0.35);
    --accent-dot: rgba(74,214,198,0.35);
    --accent-dot-shadow: rgba(74,214,198,0.12);
    --accent-dot-active: linear-gradient(135deg, #4AD6C6, #6CF0E2);
}

.experience-card[data-accent="rose"] {
    --accent: rgba(240,148,255,0.45);
    --accent-tenure-bg: rgba(240,148,255,0.14);
    --accent-tenure-border: rgba(240,148,255,0.35);
    --accent-dot: rgba(240,148,255,0.35);
    --accent-dot-shadow: rgba(240,148,255,0.12);
    --accent-dot-active: linear-gradient(135deg, #F094FF, #FFB7FF);
}

.experience-card[data-accent="amber"] {
    --accent: rgba(255,193,104,0.45);
    --accent-tenure-bg: rgba(255,193,104,0.16);
    --accent-tenure-border: rgba(255,193,104,0.4);
    --accent-dot: rgba(255,193,104,0.38);
    --accent-dot-shadow: rgba(255,193,104,0.14);
    --accent-dot-active: linear-gradient(135deg, #FFC168, #FFD48F);
}

.experience-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 30px 60px rgba(8, 8, 8, 0.65), 0 18px 38px rgba(91,120,246,0.12);
}

.experience-card:hover::before {
    transform: translate(14px, -12px);
    opacity: 0.85;
}

.experience-card h3 {
    margin: 0 0 10px 0;
    font-size: 22px;
    color: #ffffff;
}

.experience-card .tenure {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 0.02em;
    font-weight: 500;
    margin: 0 0 14px 0;
}

.experience-card .tenure i {
    font-size: 18px;
}

.experience-card .experience-role {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 14px;
    background: var(--accent-tenure-bg);
    border: 1px solid var(--accent-tenure-border);
    color: #d5e1ff;
    font-size: 13px;
    letter-spacing: 0.02em;
    font-weight: 500;
    margin: 0 0 12px 0;
}

.experience-card .experience-role i {
    font-size: 18px;
}

.bullet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px 14px;
    padding: 0;
    margin: 16px 0 0 0;
    list-style: none;
}

.bullet-grid li {
    display: grid;
    grid-template-columns: 18px 1fr;
    grid-template-areas:
        "icon title"
        ". desc";
    column-gap: 10px;
    row-gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.bullet-grid li i {
    grid-area: icon;
    color: var(--accent, #5B78F6);
    font-size: 18px;
    margin-top: 2px;
}

.bullet-grid li strong {
    grid-area: title;
    display: block;
    color: #ffffff;
    font-size: 13px;
    margin: 0;
}

.bullet-grid .bullet-desc {
    grid-area: desc;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    display: block;
}

.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 0 0;
    align-items: center;
}

.experience-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #e6eaf5;
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 1.2;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28), 0 6px 18px var(--accent-dot-shadow, rgba(91,120,246,0.12));
    backdrop-filter: blur(10px);
}

.experience-tags .tag-label {
    background: var(--accent-tenure-bg);
    border-color: var(--accent-tenure-border);
    color: #f7f9ff;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 14px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.portfolio-card {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.16);
}

.portfolio-card h4 {
    margin: 12px 0 6px 0;
    font-size: 18px;
    color: #ffffff;
}

.portfolio-card span {
    display: block;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.portfolio-card p {
    margin: 12px 0 0 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.68);
}

.capability-matrix {
    margin: 24px 0 32px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}
.capability-chip {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #fff;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.capability-chip strong {
    font-size: 15px;
    letter-spacing: 0.03em;
}
.capability-chip span {
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    line-height: 1.6;
}
.capability-chip:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.16);
    background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 820px) {
    .experience-glance {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .experience-panels {
        margin-left: 16px;
    }
    .experience-panels::before,
    .experience-panels::after {
        left: -16px;
    }
    .experience-card::after {
        left: -23px;
    }
}
