/********** Template CSS **********/
:root {
    --primary: #6244C5;
    --secondary: #FFC448;
    --light: #FAFAFB;
    --dark: #12141D;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.fixed-top {
    display: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        padding: 10px 0;
    }
}


/*** Header ***/
.hero-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 6rem;
    background:
        radial-gradient(circle at 8% 18%, rgba(98, 68, 197, 0.10), transparent 28%),
        radial-gradient(circle at 88% 15%, rgba(255, 196, 72, 0.22), transparent 30%),
        linear-gradient(135deg, #FAFAFB 0%, #FFFFFF 48%, #F5F2FF 100%);
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -180px;
    top: -120px;
    border-radius: 50%;
    background: rgba(98, 68, 197, 0.08);
    z-index: 0;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    left: -90px;
    bottom: 80px;
    border-radius: 50%;
    background: rgba(255, 196, 72, 0.25);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(98, 68, 197, 0.22);
    border-radius: 999px;
    color: var(--primary);
    background: #FFFFFF;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-name {
    color: var(--dark);
    line-height: 1.08;
    letter-spacing: 0.02em;
}

.hero-role {
    max-width: 620px;
    color: #050816;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.35;
}

.hero-copy {
    max-width: 610px;
    color: #4B5563;
    font-size: 17px;
    line-height: 1.7;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span {
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    border-radius: 999px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    color: #1F2937;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(18, 20, 29, 0.05);
}

.hero-system-card {
    position: relative;
    padding: 30px;
    border-radius: 28px;
    background: #FFFFFF;
    border: 1px solid rgba(98, 68, 197, 0.16);
    box-shadow: 0 28px 80px rgba(18, 20, 29, 0.12);
}

.hero-system-card::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 22px;
    border: 1px dashed rgba(98, 68, 197, 0.22);
    pointer-events: none;
}

.hero-card-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.hero-card-label {
    display: block;
    margin-bottom: 6px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-card-header h4 {
    margin: 0;
    color: var(--dark);
    font-size: 24px;
    font-weight: 800;
}

.hero-status {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: #15803D;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.system-flow {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 42px 1fr 42px 1fr;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
}

.system-node {
    min-height: 92px;
    padding: 16px;
    border-radius: 18px;
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
}

.system-node strong {
    display: block;
    margin-bottom: 6px;
    color: var(--dark);
    font-size: 16px;
}

.system-node small {
    display: block;
    color: #6B7280;
    line-height: 1.4;
}

.flow-arrow {
    height: 2px;
    background: var(--primary);
    position: relative;
}

.flow-arrow::after {
    content: "";
    position: absolute;
    right: -1px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    transform: translateY(-50%) rotate(45deg);
}

.hero-metrics {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
}

.hero-metrics div {
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #FFFFFF, #F8FAFC);
    border: 1px solid #E5E7EB;
}

.hero-metrics span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.hero-metrics strong {
    display: block;
    margin-bottom: 5px;
    color: var(--dark);
    font-size: 16px;
}

.hero-metrics p {
    margin: 0;
    color: #6B7280;
    font-size: 14px;
    line-height: 1.5;
}

.hero-card-footer {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
}

.hero-card-footer span {
    padding: 6px 10px;
    border-radius: 8px;
    background: #F3F4F6;
    color: #374151;
    font-size: 12px;
    font-weight: 700;
}

.typed-cursor {
    display: none;
}

@media (max-width: 991.98px) {
    .hero-section .min-vh-100 {
        min-height: auto !important;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .system-flow {
        grid-template-columns: 1fr;
    }

    .flow-arrow {
        width: 2px;
        height: 28px;
        margin: 0 auto;
    }

    .flow-arrow::after {
        right: 50%;
        top: auto;
        bottom: -1px;
        transform: translateX(50%) rotate(135deg);
    }
}

.typed-cursor {
    font-size: 30px;
    color: var(--dark);
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** About ***/
#about .years .display-1 {
    font-size: 10rem;
    line-height: 9rem;
}

#about .years h5 {
    letter-spacing: 30px;
    margin-right: -30px;
}


/*** Skills ***/
#skill .progress {
    height: 5px;
    border-radius: 5px;
}

#skill .progress .progress-bar {
    width: 0px;
    border-radius: 5px;
    transition: 3s;
}

#skill .nav-pills .nav-link {
    color: var(--dark);
}

#skill .nav-pills .nav-link.active {
    color: #FFFFFF;
}

#skill .tab-content hr {
    width: 30px;
}


/*** Service ***/
.service-item .bg-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/bg-icon.png) center center no-repeat;
    background-size: cover;
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-img {
    position: relative;
}

.portfolio-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(98, 68, 197, .9);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 30px;
    padding-bottom: 100px !important;
    opacity: 0;
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    padding-bottom: 30px !important;
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    opacity: .7;
}

.team-item .team-text {
    position: absolute;
    left: 0;
    right: 60px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    right: 30px;
    opacity: 1;
}

.team-item .team-text div {
    transition: .5s;
}

.team-item:hover .team-text div {
    margin-left: 30px;
}


/*** Testimonial ***/
.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    padding: 5px;
    border: 1px solid var(--secondary);
    border-radius: 70px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
}

.testimonial-carousel .testimonial-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid var(--secondary);
    border-radius: 60px;
}

.testimonial-carousel .owl-dots {
    height: 40px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    border: 2px solid var(--secondary);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 5px;
    left: 5px;
    border-radius: 16px;
    background: var(--secondary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active::after {
    background: var(--primary);
}

/*** Robert B Portfolio Custom Updates ***/
.navbar-brand.bg-secondary {
    min-width: 210px;
    text-align: center;
}

.navbar-brand h1 {
    font-size: 2.25rem;
    letter-spacing: .5px;
}

.about-system-img {
    width: 100%;
    height: 215px;
    object-fit: cover;
    object-position: left top;
    background: #f5f7fb;
}

#about h2.text-primary {
    font-size: 1.65rem;
    white-space: nowrap;
}

#portfolio-flters {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: flex-end;
}

#portfolio-flters li {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.portfolio-img img {
    width: 100%;
    aspect-ratio: 1.42 / 1;
    object-fit: cover;
    object-position: left top;
}

@media (max-width: 991.98px) {
    #portfolio-flters {
        justify-content: flex-start;
    }

    .navbar-brand.bg-secondary {
        min-width: auto;
    }
}

@media (max-width: 575.98px) {
    .about-system-img {
        height: 180px;
    }

    .navbar-brand h1 {
        font-size: 1.8rem;
    }
}

/*** Contact ***/
.contact-section {
    position: relative;
    background:
        radial-gradient(circle at 8% 10%, rgba(98, 68, 197, 0.08), transparent 28%),
        radial-gradient(circle at 92% 92%, rgba(255, 196, 72, 0.20), transparent 32%),
        #FFFFFF;
}

.contact-intro {
    padding: 42px;
    border-radius: 28px;
    background: #12141D;
    color: #FFFFFF;
    box-shadow: 0 28px 70px rgba(18, 20, 29, 0.16);
}

.contact-kicker {
    display: inline-block;
    margin-bottom: 22px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #FFC448;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-intro h1 {
    color: #FFFFFF;
    line-height: 1.15;
}

.contact-copy {
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 34px;
}

.contact-info-list {
    display: grid;
    gap: 14px;
}

.contact-info-item {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.contact-info-item span {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-info-item strong {
    display: block;
    color: #FFFFFF;
    font-size: 17px;
    line-height: 1.45;
}

.contact-work-card {
    padding: 42px;
    border-radius: 28px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    box-shadow: 0 24px 70px rgba(18, 20, 29, 0.08);
}

.contact-card-head {
    margin-bottom: 26px;
}

.contact-card-head span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}

.contact-card-head h3 {
    margin-bottom: 12px;
    color: var(--dark);
    font-size: 30px;
    font-weight: 800;
}

.contact-card-head p {
    max-width: 680px;
    color: #5B6472;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

.contact-capability-grid {
    margin-top: 4px;
}

.contact-capability {
    height: 100%;
    padding: 22px;
    border-radius: 20px;
    background: #FAFAFB;
    border: 1px solid #E5E7EB;
    transition: 0.3s;
}

.contact-capability:hover {
    transform: translateY(-4px);
    border-color: rgba(98, 68, 197, 0.35);
    box-shadow: 0 16px 40px rgba(18, 20, 29, 0.08);
}

.contact-capability i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: rgba(98, 68, 197, 0.10);
    color: var(--primary);
    font-size: 21px;
}

.contact-capability h5 {
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 800;
}

.contact-capability p {
    margin-bottom: 0;
    color: #6B7280;
    font-size: 14px;
    line-height: 1.55;
}

.contact-action {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid #E5E7EB;
}

.contact-action span {
    color: #6B7280;
    font-size: 14px;
}

@media (max-width: 767.98px) {
    .contact-intro,
    .contact-work-card {
        padding: 28px;
        border-radius: 22px;
    }

    .contact-card-head h3 {
        font-size: 25px;
    }
}

/*** About Right Platform Panel ***/
.about-platform-panel {
    height: 100%;
    padding: 34px;
    border-radius: 28px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    box-shadow: 0 24px 70px rgba(18, 20, 29, 0.08);
}

.about-panel-head {
    margin-bottom: 24px;
}

.about-panel-kicker {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(98, 68, 197, 0.10);
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-panel-head h3 {
    margin-bottom: 12px;
    color: var(--dark);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
}

.about-panel-head p {
    margin-bottom: 0;
    color: #5B6472;
    font-size: 16px;
    line-height: 1.7;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 22px;
}

.platform-focus-card {
    padding: 24px;
    border-radius: 22px;
    border: 1px solid #E5E7EB;
    background: #FAFAFB;
    transition: 0.3s;
    height: 100%;
}

.platform-focus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(18, 20, 29, 0.08);
}

.netsuite-card {
    background: linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 100%);
    border-color: rgba(59, 130, 246, 0.20);
}

.salesforce-card {
    background: linear-gradient(180deg, #FBF8FF 0%, #FFFFFF 100%);
    border-color: rgba(98, 68, 197, 0.20);
}

.platform-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #12141D;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.platform-focus-card h4 {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
}

.platform-focus-card p {
    margin-bottom: 14px;
    color: #616B79;
    font-size: 14px;
    line-height: 1.65;
}

.platform-list {
    margin: 0;
    padding-left: 18px;
}

.platform-list li {
    margin-bottom: 8px;
    color: #1F2937;
    font-size: 14px;
    line-height: 1.5;
}

.about-outcome-strip {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 14px;
}

.outcome-item {
    padding: 18px 20px;
    border-radius: 18px;
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
}

.outcome-item span {
    display: block;
    margin-bottom: 6px;
    color: #6B7280;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.outcome-item strong {
    display: block;
    color: var(--dark);
    font-size: 17px;
    line-height: 1.45;
}

@media (max-width: 991.98px) {
    .platform-grid,
    .about-outcome-strip {
        grid-template-columns: 1fr;
    }

    .about-platform-panel {
        padding: 26px;
    }

    .about-panel-head h3 {
        font-size: 25px;
    }

    .platform-focus-card h4 {
        font-size: 24px;
    }
}

/*** About Left Experience Panel ***/
.about-experience-panel {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 28px;
    background: #12141D;
    color: #FFFFFF;
    box-shadow: 0 24px 70px rgba(18, 20, 29, 0.14);
}

.about-experience-panel::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: rgba(98, 68, 197, 0.28);
}

.about-experience-panel::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    left: -70px;
    bottom: -70px;
    border-radius: 50%;
    background: rgba(255, 196, 72, 0.20);
}

.about-exp-top,
.about-exp-copy,
.about-exp-points,
.about-exp-mini-timeline {
    position: relative;
    z-index: 1;
}

.about-exp-top {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-bottom: 28px;
}

.about-exp-number {
    flex: 0 0 132px;
    height: 132px;
    border-radius: 28px;
    background: #FFFFFF;
    color: #12141D;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.about-exp-number strong {
    display: block;
    font-size: 76px;
    line-height: 0.9;
    font-weight: 900;
}

.about-exp-number span {
    display: block;
    margin-top: 10px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.about-exp-title span {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #FFC448;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-exp-title h2 {
    margin: 0;
    color: #FFFFFF;
    font-size: 32px;
    line-height: 1.22;
    font-weight: 800;
}

.about-exp-copy {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.75;
}

.about-exp-points {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.about-exp-point {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.about-exp-point span {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about-exp-point strong {
    display: block;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.45;
}

.about-exp-mini-timeline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.about-exp-mini-timeline div {
    padding: 18px;
    border-radius: 18px;
    background: #FFFFFF;
    color: #12141D;
}

.about-exp-mini-timeline span {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.about-exp-mini-timeline strong {
    display: block;
    margin-bottom: 8px;
    color: #12141D;
    font-size: 16px;
    line-height: 1.35;
}

.about-exp-mini-timeline p {
    margin: 0;
    color: #5B6472;
    font-size: 13px;
    line-height: 1.55;
}

@media (max-width: 991.98px) {
    .about-exp-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-exp-mini-timeline {
        grid-template-columns: 1fr;
    }

    .about-exp-title h2 {
        font-size: 26px;
    }
}

@media (max-width: 575.98px) {
    .about-experience-panel {
        padding: 26px;
    }

    .about-exp-number {
        width: 120px;
        height: 120px;
        flex-basis: 120px;
    }

    .about-exp-number strong {
        font-size: 66px;
    }
}

/*** Navbar Brand Cleanup ***/
.navbar {
    min-height: 78px;
}

.navbar-brand {
    gap: 12px;
    padding: 0;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #12141D;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.04em;
    box-shadow: 0 10px 24px rgba(18, 20, 29, 0.14);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    color: #12141D;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.01em;
}

.brand-text span {
    margin-top: 4px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.navbar .navbar-nav .nav-link {
    margin-left: 28px;
    padding: 28px 0;
    color: #12141D;
    font-size: 17px;
    font-weight: 700;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar {
        min-height: auto;
    }

    .navbar .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .brand-text strong {
        font-size: 20px;
    }

    .brand-text span {
        font-size: 11px;
    }
}

/*** Premium Skills & Experience ***/
.skill-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(91, 63, 214, 0.08), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(214, 169, 54, 0.16), transparent 30%),
        linear-gradient(180deg, #FFFFFF 0%, #FAFAFD 100%);
}

.skill-section::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    left: -260px;
    top: 120px;
    border-radius: 50%;
    background: rgba(91, 63, 214, 0.045);
    pointer-events: none;
}

.skill-section .container {
    position: relative;
    z-index: 1;
}

.skill-command-card {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 92% 6%, rgba(91, 63, 214, 0.34), transparent 28%),
        linear-gradient(145deg, #10131D 0%, #171A26 100%);
    color: #FFFFFF;
    box-shadow: 0 30px 80px rgba(15, 17, 26, 0.22);
}

.skill-command-card::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.section-kicker {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-bottom: 22px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #F6C84E;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.skill-command-card h1 {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin-bottom: 18px;
    color: #FFFFFF;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 900;
}

.skill-command-card > p {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.75;
}

.skill-system-map {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
}

.skill-map-item {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(8px);
}

.skill-map-item span {
    display: inline-block;
    margin-bottom: 8px;
    color: #F6C84E;
    font-size: 13px;
    font-weight: 900;
}

.skill-map-item strong {
    display: block;
    margin-bottom: 6px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 900;
}

.skill-map-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.55;
}

.experience-board {
    padding: 34px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(230, 232, 239, 0.92);
    box-shadow: 0 26px 80px rgba(15, 17, 26, 0.10);
    backdrop-filter: blur(16px);
}

.experience-tabs {
    padding: 6px;
    border: 1px solid rgba(91, 63, 214, 0.18);
    border-radius: 20px;
    background: #F7F5FF;
}

.experience-tabs .nav-link {
    padding: 16px 20px;
    border-radius: 15px;
    color: #111827 !important;
    font-size: 17px;
    font-weight: 850;
}

.experience-tabs .nav-link.active {
    background: linear-gradient(135deg, #6B4DE6 0%, #4B32B8 100%);
    color: #FFFFFF !important;
    box-shadow: 0 14px 34px rgba(91, 63, 214, 0.25);
}

.timeline-card {
    position: relative;
    display: flex;
    gap: 18px;
    padding: 26px;
    border-radius: 24px;
    background: #FFFFFF;
    border: 1px solid #E6E8EF;
    box-shadow: 0 14px 36px rgba(15, 17, 26, 0.045);
    margin-bottom: 18px;
}

.timeline-marker {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin-top: 6px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 6px solid var(--primary);
    box-shadow: 0 0 0 7px rgba(91, 63, 214, 0.10);
}

.timeline-date {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 7px 13px;
    border-radius: 999px;
    background: #F3F0FF;
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
}

.timeline-content h4 {
    margin-bottom: 6px;
    color: #111827;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.25;
}

.timeline-content strong {
    display: block;
    margin-bottom: 10px;
    color: #111827;
    font-size: 16px;
    font-weight: 850;
}

.timeline-content p {
    margin-bottom: 16px;
    color: #667085;
    font-size: 15px;
    line-height: 1.65;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-tags span {
    padding: 7px 11px;
    border-radius: 999px;
    background: #F8FAFC;
    border: 1px solid #E6E8EF;
    color: #344054;
    font-size: 12px;
    font-weight: 850;
}

.education-card {
    padding: 28px;
    border-radius: 26px;
    background: #FFFFFF;
    border: 1px solid #E6E8EF;
    box-shadow: 0 14px 36px rgba(15, 17, 26, 0.045);
}

.education-date {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 13px;
    border-radius: 999px;
    background: #F3F0FF;
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
}

.education-card h4 {
    margin-bottom: 8px;
    color: #111827;
    font-size: 27px;
    font-weight: 900;
}

.education-card > strong {
    display: block;
    margin-bottom: 14px;
    color: #111827;
    font-size: 17px;
}

.education-card p {
    margin-bottom: 22px;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}

.education-focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.education-focus-grid div {
    padding: 16px;
    border-radius: 18px;
    background: #F8FAFC;
    border: 1px solid #E6E8EF;
}

.education-focus-grid span {
    display: block;
    margin-bottom: 7px;
    color: #667085;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.education-focus-grid strong {
    display: block;
    color: #111827;
    font-size: 14px;
    line-height: 1.4;
}

.cert-card {
    margin-top: 18px;
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(145deg, #10131D 0%, #191C29 100%);
    color: #FFFFFF;
}

.cert-card > span {
    display: block;
    margin-bottom: 12px;
    color: #F6C84E;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cert-list {
    display: grid;
    gap: 10px;
}

.cert-list strong {
    display: block;
    padding: 14px 16px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    font-size: 15px;
    line-height: 1.45;
}

.stack-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #E6E8EF;
    box-shadow: 0 18px 50px rgba(15, 17, 26, 0.06);
}

.stack-strip span {
    padding: 9px 13px;
    border-radius: 999px;
    background: #F8FAFC;
    border: 1px solid #E6E8EF;
    color: #344054;
    font-size: 13px;
    font-weight: 850;
}

@media (max-width: 991.98px) {
    .skill-command-card,
    .experience-board {
        padding: 28px;
    }

    .skill-command-card h1 {
        font-size: 32px;
    }

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

/*** Premium Project Cards ***/
#project {
    background: #FFFFFF;
}

#project .display-5 {
    font-weight: 900;
    letter-spacing: -0.04em;
}

#portfolio-flters {
    padding: 8px;
    border-radius: 18px;
    background: #F8FAFC;
    border: 1px solid #E6E8EF;
}

#portfolio-flters li {
    padding: 9px 12px;
    border-radius: 12px;
    border-bottom: 0 !important;
    font-weight: 800;
}

#portfolio-flters li.active,
#portfolio-flters li:hover {
    background: #F3F0FF;
    color: var(--primary);
}

.portfolio-img {
    border-radius: 22px !important;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid #E6E8EF;
    box-shadow: 0 18px 46px rgba(15, 17, 26, 0.08);
    transition: 0.35s ease;
}

.portfolio-item:hover .portfolio-img {
    transform: translateY(-6px);
    box-shadow: 0 26px 70px rgba(15, 17, 26, 0.14);
}

.portfolio-img img {
    display: block;
    border-radius: 18px;
}

/*** Premium Stack Strip Grouped ***/
.premium-stack-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px;
}

.stack-group {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 18px;
    align-items: flex-start;
}

.stack-group strong {
    color: #111827;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding-top: 9px;
}

.stack-group div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stack-group span {
    padding: 9px 13px;
    border-radius: 999px;
    background: #F8FAFC;
    border: 1px solid #E6E8EF;
    color: #344054;
    font-size: 13px;
    font-weight: 850;
    box-shadow: 0 8px 20px rgba(15, 17, 26, 0.035);
}

@media (max-width: 767.98px) {
    .stack-group {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}