*{
    padding: 0px;
    margin: 0px;
    font-family: arial;
    color: white;
    box-sizing: border-box;
    /* overflow-x: hidden; */
}
body,html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-x: clip;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: #5b8cff;
    box-shadow: 0 0 12px rgba(124, 58, 237, .9);
}
.cursor-ring {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(168, 136, 255, 0.127);
    background: rgba(124, 58, 237, .07);
    transition: width .22s ease, height .22s ease, border-color .22s ease, background .22s ease, opacity .2s ease;
}

.cursor-dot, .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 200;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
    opacity: 0;
}

.cursor-dot.is-visible,
.cursor-ring.is-visible { opacity: 1; }

.cursor-ring.is-hovering {
    width: 48px;
    height: 48px;
    border-color: #7c3aed;
    background: rgba(124, 58, 237, .18);
}

@media (pointer: coarse) {
    .cursor-dot, .cursor-ring { display: none; }
}
/* navigation bar */

header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
}

.nav-bar {
    height: 80px;
    background-color: transparent;
    /* display: flex;
    justify-content: center;
    align-items: center; */
}
.inner-nav-bar {
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: fixed;
    z-index: 100;
    
}
.action-button {
    position: fixed;
    right: 70px;
    display: flex;
    align-items: center;
    gap: 10px;

}

.hero-location {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 13.5px;
    color: #9a9cac;
    white-space: nowrap;
}

.hero-location svg {
    width: 14px;
    height: 14px;
}


.nav-ops {
    height: 50px;
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:12px;
    background-color: #ffffff0f;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px -14px rgba(0, 0, 0, .35);
    border-radius: 30px;
    position: fixed;
    z-index: 10;
    backdrop-filter : blur(10px);
}
.nav-ops a {
    padding: 9px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    text-decoration: none;
    color: #9a9cac;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 0 10px 40px -14px rgba(0, 0, 0, .35);
    /* 
    height: 39px;
    width: 250px; */
}
.nav-button {
    padding: 16px 22px 15px 22px;
    background: linear-gradient(135deg, #7C3AED, #4F46E5);
    box-shadow: 0 8px 20px rgb(0, 0, 0);
    height:48px;
    width: auto;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.nav-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(124, 47, 247, 0.471);
}

/* .action-button i {
    height:50px;
    width: 50px;
    padding: 17px 20px 20px 20px;
} */

.nav-ops a:hover {
    /* border: 1px solid white; */
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 9px 16px;
    border-radius: 100px;
}

.Mode {
    background: transparent;
    box-shadow: 0 8px 20px rgb(0, 0, 0);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* hero section */

.hero-section {
    background-color: #08080D;
    height: 720px;
    width: 100%;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding:100px;
    
    display: flex;
    /* justify-content: center;
    align-items: center; */
    padding-left: 50px;
}

/* Soft purple-blue ambient patches inspired by the home-section reference. */
.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    z-index: 0;
    width: 620px;
    aspect-ratio: 1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(18px);
    opacity: 0.9;
}

.hero-section::before {
    left: -315px;
    top: -245px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.56) 0%, rgba(79, 70, 229, 0.28) 43%, transparent 73%);
}

.hero-section::after {
    right: -290px;
    top: -100px;
    background: radial-gradient(circle, rgba(75, 119, 255, 0.48) 0%, rgba(70, 91, 229, 0.24) 45%, transparent 73%);
}

.hero-section-left,
.hero-section-right {
    position: relative;
    z-index: 1;
}

.hero-section-left {
    /* text-align: center; */
    /* padding-top: 20px; */
    display: flex;
    justify-content: center;
    align-items: left;
    padding-left: 100px;

    flex-direction: column;
    width: 80%;
    /* padding-left: 50px; */
}

.hero-status {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-availability {
    width: fit-content;
    font-size: 0.85rem;
    background-color: hsla(0, 0%, 100%, 0.043);
    box-shadow: 0 10px 40px -14px rgba(0, 0, 0, .35);
    color: #9a9cac;
    padding: 10px 16px;
    /* margin-left: 208px; */
    display: inline;
    border-radius: 100px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: green;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .18);
    animation: pulse 2.2s ease-in-out infinite;
}

.hero-title {
    font-size: 4rem;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: left;
    line-height: 1;
}

.text-gradient {
    background: linear-gradient(100deg, #7C3AED, #4F46E5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-section-left-desc {
    color: #9a9cac;
    font-size: .90rem;
    line-height: 1.2rem;
    padding-bottom: 40px;
}
.view-Portfolio {
    /* border: border: 1.5px solid rgba(255, 255, 255, 0.2); */
    border: linear-gradient(135deg, #7C3AED, #4F46E5);
    background: linear-gradient(135deg, #7C3AED, #4F46E5);
    box-shadow: 0 8px 20px rgb(0, 0, 0);
    color: white;
    padding: 16px 36px;
    margin-right: 7px;
    border-radius: 50px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-Portfolio:hover {
    transform: translateY(-6px) ;
    box-shadow: 0 18px 40px rgba(124, 47, 247, 0.471);

}
.download-resume {
    border: 1.5px solid rgba(255, 255, 255, 0.045);
    /* background: linear-gradient(135deg, #7C3AED, #4F46E5); */
    color: #9544e6;
    box-shadow: 0 8px 20px rgb(0, 0, 0);
    padding: 16px 26px;
    border-radius: 50px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.download-resume i {
    color: #9544e6;
    font-size: 0.85rem;
}   
.download-resume:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(124, 47, 247, 0.2);
}

.hero-section-right {
    /* padding-top: 20px;
    margin-right: 40px;
    margin-bottom: 20px; */
    /* padding-right: 100px; */
    display: flex;
    justify-content: center;
    align-items: right;
    /* flex-direction: column; */
    /* width: 40%; */
}

.hero-image {
    height: 135%;
    /* margin-top: -25px; */
    /* box-shadow: 0 8px 20px rgb(0, 0, 0); */
}

/* work section */

.work-section {
    height: 970px;
    padding: 100px;
    /* padding-bottom: 100px; */
    width: 100%;
    background-color: #08080D;
    box-shadow: 0 -18px 40px rgba(47, 247, 160, 0.073);
}
.work-text {
    padding-top: 48px;
    display: block;
    padding-left: 50px;
}
.work-caption {
    padding-bottom: 15px;
    font-size: 1rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: #5b8cff;
}
.work-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 3.6rem;
    width: 70%;
    padding-bottom: 14px;
}
/* .work-title-row {
    /* display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px; */

.view-all-work {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #b8b9c2;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s ease, gap .2s ease;
}
.view-all-work:hover {
    color: #fff;
    gap: 13px;
}
.work-desc {
    font-size: 0.90rem;
    width: 70%;
    line-height: 1.2rem;
    color: #9a9cac;
}

.Work-block {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    gap: 35px;
    /* justify-content: space-evenly ; */
    /* justify-content: space-around; */
    flex-wrap: wrap;


}
.vault-platform{
    background-image: url(Vault-app-ss.png);
    background-size: cover;
    height: 300px;
    width: 53%;
    background-color: rgba(255, 255, 255, 0.043);
    /* border: 1.5px solid rgba(255, 255, 255, 0.2); */
    border-radius: 35px;
    box-shadow: 0 8px 20px rgb(0, 0, 0);
}
.vault-platform:hover {
    transform: translateY(-3px);
    border: 1.5px solid #B093E2;
    box-shadow: 0 18px 40px rgba(84, 47, 247, 0.203);
}

.daily-planner {
    background-image: url(Daily-planner.png);
    background-size: cover;
    height: 300px;
    width: 40%;
    background-color: hsla(0, 0%, 100%, 0.043);
    /* border: 1.5px solid rgba(255, 255, 255, 0.2); */
    border-radius: 35px;
    box-shadow: 0 8px 20px rgb(0, 0, 0);
    /* margin-bottom: 30px; */

}
.daily-planner:hover {
    transform: translateY(-3px);
    border: 1.5px solid #B093E2;
    box-shadow: 0 18px 40px rgba(84, 47, 247, 0.203);
}
.tax-solution {
    background-image: url(Tax-solution.png);
    background-size: cover;
    height: 300px;
    height: 300px;
    width: 30%;
    background-color: hsla(0, 0%, 100%, 0.043);
    /* border: 1.5px solid rgba(255, 255, 255, 0.2); */
    border-radius: 35px;
    box-shadow: 0 8px 20px rgb(0, 0, 0);
    margin-bottom: 30px;
}
.tax-solution:hover {
    transform: translateY(-3px);
    border: 1.5px solid #B093E2;
    box-shadow: 0 18px 40px rgba(84, 47, 247, 0.203);
}
.wallet-app {
    background-image: url(wallet-app.png);
    background-size: cover;
    height: 300px;
    width: 30%;
    background-color: hsla(0, 0%, 100%, 0.043);
    /* border: 1.5px solid rgba(255, 255, 255, 0.2); */
    border-radius: 35px;
    box-shadow: 0 8px 20px rgb(0, 0, 0);
}

.wallet-app:hover {
    transform: translateY(-3px);
    border: 1.5px solid #B093E2;
    box-shadow: 0 18px 40px rgba(84, 47, 247, 0.203);
}
.journey-app {
    background-image: url(journeymate.png);
    background-size: cover;
    height: 300px;
    width: 30%;
    background-color: hsla(0, 0%, 100%, 0.043);
    /* border: 1.5px solid rgba(255, 255, 255, 0.2); */
    border-radius: 35px;
    box-shadow: 0 8px 20px rgb(0, 0, 0);
}
.journey-app:hover {
    transform: translateY(-3px);
    border: 1.5px solid #B093E2;
    box-shadow: 0 18px 40px rgba(84, 47, 247, 0.203);
}

.work-detail {
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 35px;
    /* height: 30%; */
    background: linear-gradient(123deg, rgb(8 19 34 / 98%), rgb(136, 106, 8));
}
    
.work-detail span {
    font-size: 0.80rem;
    background-color: hsla(0, 0%, 100%, 0.008);
    backdrop-filter: blur(6px);
    /* box-shadow: 0 10px 40px -14px rgba(0, 4, 10, .0.86); */
    color: #d1d2d7;
    padding: 8px 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.085);
    display: inline-flex;
    align-items: center;
    border-radius: 100px;
    /* margin-right: 5px; */
    margin-left: 35px;
    position: relative;
    top: 100px;
    gap: 5px;
}

.work-detail h3 {
    font-size: 1.3rem;
    font-weight: 400;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-left: 35px;
    position: relative;
    top: 100px;
}
.work-detail p {
    font-size: 0.90rem;
    width: 80%;
    line-height: 1.4rem;
    color: #9a9cac;
    padding-bottom: 10px;
    margin-left: 35px;
    margin-right: 20px;
    position: relative;
    top: 100px;
}
.work-detail a {
    position: relative;
    left: 290px;
    bottom: 121px;
    padding: 20px;
    background-color: transparent;
    border: 1.5px solid rgba(255, 255, 255,);
    box-shadow: 0 10px 40px -14px rgba(0, 0, 0, .35);
    border-radius: 50px;
    font-size: 0.85rem;
    font-size: 600;
    color: #b8b9c2;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    gap: 4px;
    margin-left: 35px;
    position: relative;
    top: 105px;
}
.work-detail a:hover {
    transform: translateX(5px);
    gap: 12px;
    font-weight: 600;
    color: #ffffff;
    /* border: 1.5px solid #9a9cac; */
    box-shadow: 0 18px 40px rgba(84, 47, 247, 0.203);
}

/* Project links: hidden until the card is hovered, then anchored top-right. */
.card-hover-arrow {
    position: absolute !important;
    top: 24px !important;
    right: 24px !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 2;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    margin: 0 !important;
    padding: 0 !important;
    /* border: 1px solid rgba(255, 255, 255, .35) !important; */
    border-radius: 50% !important;
    background: transparent;
    box-shadow: none !important;
    color: #fff !important;
    opacity: 0;
    pointer-events: none;
    transform: translate(-8px, 8px);
    transition: opacity .2s ease, transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.project-card:hover .card-hover-arrow,
.project-card:focus-within .card-hover-arrow {
    opacity: 1;
    pointer-events: auto;
    transform: translate(0, 0);
}
.card-hover-arrow:hover {
    background: #7c3aed00 !important;
    border-color: #a888ff0d !important;
    transform: translate(3px, -3px) !important;
}
.card-hover-arrow i {
    transform: rotate(-45deg);
    transition: transform .2s ease;
}
.card-hover-arrow:hover i { transform: rotate(-45deg) translate(2px, -2px); }

/* Approach  Section */

.approach-section {
    height: auto;
    width: 100%;
    background-color: #08080D;
    padding: 100px;
    /* padding-bottom: 100px; */
}
.approach-text {
    padding-top: 60px;
    display: inline-block;
    padding-left: 50px;
}

.approach-caption {
    padding-bottom: 15px;
    font-size: 1rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: #5b8cff;

}
.approach-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 3.6rem;
    width: 70%;
    padding-bottom: 50px;

}
.approach-detail {
    display: flex;
        gap: 24px;
    /* justify-content: center;
    justify-content: space-evenly ; */


}
.approach-box {
    height: 330px;
    width: 23%;
    background-color: hsla(0, 0%, 100%, 0.043);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgb(0, 0, 0);
    border-radius: 35px;
    margin: 0;
    padding: 40px;
}
.approach-box:hover {
    transform: translateY(-3px);
   background-color: hsla(0, 0%, 100%, 0.105);
   cursor: pointer;
    /* box-shadow: 0 18px 40px rgba(84, 47, 247, 0.203); */
}
.approach-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;   
    background: #5b8cff3f;
    box-shadow: 0 8px 20px rgb(0, 0, 0);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;       
}
.approach-icon i {
    color: #5b8cff;
}

.approach-box-title {
    font-size: 1.2rem;
    font-weight: 500;
    padding-top: 15px;
    padding-bottom: 10px;
}
.approach-box-desc p {
    padding-top: 10px;
    font-size: 0.90rem;
    /* width: 70%; */
    line-height: 1.4rem;
    color: #9a9cac;
    padding-bottom: 10px;
}

/* Career Section */

.Career-section {
    height: auto;
    min-height: 700px;
    width: 100%;
    background-color: #08080D;
    padding: 100px;
    box-shadow: 0 -18px 40px rgba(47, 247, 160, 0.073);
    /* padding-bottom: 100px; */
}

.career-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding-top: 8px;
}

.timeline-line {
    position: absolute;
    top: 32px;
    bottom: 32px;
    left: 20px;
    width: 2px;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 2px;
    overflow: hidden;
}

.timeline-progress {
    width: 100%;
    height: 0;
    background: linear-gradient(#9d75ff, #5b8cff);
    box-shadow: 0 0 18px rgba(124, 58, 237, 0.8);
    transition: height 120ms linear;
}
.Career-caption {
    padding-bottom: 15px;
    font-size: 1rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: #5b8cff;
}

.Career-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 3.6rem;
    width: 100%;
    padding-bottom: 30px;
}

.career-entry {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 26px;
}

.timeline-marker {
    z-index: 1;
    width: 16px;
    height: 16px;
    margin: 13px;
    border-radius: 50%;
    background: #a788ff;
    box-shadow: 0 0 0 6px #08080d, 0 0 18px rgba(124, 58, 237, 0.85);
}

.career-box {
    height: auto;
    width: 95%;
    /* position:absolute;
    right: 50px; */
    background-color: hsla(0, 0%, 100%, 0.043);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgb(0, 0, 0);
    border-radius: 35px;
    margin-right: 0;
    padding: 40px;
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}
.career-box:hover {
    transform: translateY(-4px);
    background-color: hsla(0, 0%, 100%, 0.08);
    border-color: rgba(157, 117, 255, .58);
}

.career-box-heading {
    display: flex;
    justify-content: space-between;
}
.career-role-divider {
    height: 1px;
    margin: 32px 0;
    background: rgba(255, 255, 255, .14);
}
 .duration {
    /* right: 38px;
    position: absolute; */
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 50px;
    font-size: 0.80rem;
    height: 48px;
}
.duration span {
 color: #9a9cac;
}
 .Job-role h3 {
    font-size: 1.3rem;
    font-weight: 500;
    padding-bottom: 10px;
 }
  .Domain {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 8px;
 }
  .Job-role a {
    color:#5b8cff;
    padding-bottom: 30px;
    text-decoration: none;
  }
  .Job-role a:hover {
    /* font-weight: 600; */
    transform: translateX(-3);
    letter-spacing: 0.10rem ;
    transition: transform 0.3s ease-in-out;
  }
 
  .Domain span {
    /* border: 1.5px solid rgba(255, 255, 255, 0.2); */
    border-radius: 50px;
    font-size: 0.80rem;
    padding: 12px;
    color: #707092;
    background-color: #161623;
    margin-right: 0;
  }
  .career-box-list {
    padding-top: 20px;
    font-size: 0.90rem;
    line-height: 1.7rem;
    padding-left: 30px;
    
  }
  .career-box-list li {
color: #9898c4;
  }
  .career-box-list li::marker {
    color: #5b8cff;
    text-shadow: 9px 4px 8px #08080d;
    font-size: 1.2rem;
  }

@media (max-width: 720px) {
    .Career-section { padding: 64px 24px; }
    .Career-title { font-size: 2.2rem; line-height: 1.1; }
    .career-entry { grid-template-columns: 32px minmax(0, 1fr); gap: 16px; }
    .timeline-line { left: 15px; top: 26px; bottom: 26px; }
    .timeline-marker { width: 14px; height: 14px; margin: 9px; box-shadow: 0 0 0 4px #08080d; }
    .career-box { padding: 24px 20px; border-radius: 24px; }
    .career-box-heading { gap: 18px; flex-direction: column-reverse; align-items: flex-start; }
    .duration { height: auto; padding: 9px 12px; font-size: .72rem; }
    .Job-role h3 { font-size: 1.15rem; }
    .Domain { margin-top: 22px; }
    .Domain span { font-size: .72rem; padding: 8px 10px; }
    .career-box-list { padding-left: 20px; font-size: .84rem; line-height: 1.55rem; }
}


/* Process */
.process-section {
    height: auto;
    width: 100%;
    background-color: #11111b;
    padding: 100px;
    /* padding-bottom: 100px; */
}

.process-text {
    padding-top: 50px;
    display: inline-block;
    padding-left: 50px;
}
.process-caption {
     padding-bottom: 15px;
    font-size: 1rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: #5b8cff;
}

.process-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 3.6rem;
    width: 100%;
    padding-bottom: 15px;
}
.process-desc {
    font-size: 0.90rem;
    width: 70%;
    line-height: 1.2rem;
    color: #9a9cac;
    padding-bottom: 50px;
}
.process-detail{
 display: flex;
 justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.process-box{
    height: auto;
    width: 18%;
    background-color: hsla(0, 0%, 100%, 0);
    border: 1.5px solid rgba(255, 255, 255, 0.099);
    /* box-shadow: 0 8px 20px rgb(0, 0, 0); */
    border-radius: 25px;
    margin: 0;
    padding: 30px;
}
.process-box:hover {
    border: 1.5px solid #7C3AED;
    background-color: #7c3aed0d;
    cursor: pointer;
}

.process-box:active {
    border: 1.5px solid #7C3AED;
    background-color: #7c3aed0d;
    cursor: pointer;
    .process-box-desc {
       color:  #ffffffd3;
    }
}

.Snum {
    color:#7c3aed;
    font-size: 1rem;
    font-weight: 300;
    padding-bottom: 20px;

}

.process-box-title {
    font-size: 1.1rem;
    font-weight: 500;
    padding-bottom: 10px;
}

.process-box-desc {
    font-size: 0.90rem;
    line-height: 1.4rem;
    color: #9a9cac;
}

/* Back to top
.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 150;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 18px;
    border: 1px solid #ffffff23;
    border-radius: 999px;
    background: rgba(22, 22, 35, 0.88);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
    color: #ffffff80;
    font-size: .82rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity .25s ease, transform .25s ease, background-color .25s ease, box-shadow .25s ease;
    backdrop-filter: blur(12px);
}

.back-to-top i { color: #ffffff51; }
.back-to-top span {color:#ffffff51;}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #7c3aed;
    box-shadow: 0 14px 34px rgba(124, 58, 237, 0.4);
    transform: translateY(-3px);
}

.back-to-top:hover i { color: #fff; }
.back-to-top:hover span { color: #fff; }

.back-to-top:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

@media (max-width: 720px) {
    .back-to-top { right: 16px; bottom: 16px; padding: 12px 15px; }
} */

/* Keep the Work-section shadow above the hero background while only the image overlaps it. */
.hero-section {
    isolation: auto;
    overflow: visible;
    z-index: auto;
}

.hero-section-right {
    position: relative;
    z-index: 2;
}

.work-section {
    position: relative;
    z-index: 1;
    box-shadow: 0 -18px 40px rgba(47, 247, 160, 0.073);
}


/* Toolkit */
.toolkit-section {
    height: auto;
    width: 100%;
    background-color: #08080D;
    padding: 100px;
    /* padding-bottom: 100px; */
}

.toolkit-caption {
    padding-bottom: 15px;
    font-size: 1rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: rgb(91, 140, 255);
}
.toolkit-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 3.6rem;
    width: 70%;
    /* width: 100%; */
    padding-bottom: 30px;
}
.toolkit-box-title span {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
    color:hsl(240, 13%, 51%)
}
.toolkit-box-desc {
    margin-top: 5px;
    margin-bottom: 20px;
}
.toolkit-box-desc span {
    font-size: 0.85rem;
    margin-top: 10px;
    margin-bottom: 10px;
    display: inline-block;
    margin-right: 5px;
    /* line-height: 1.4rem; */
    color: #fff;
    background-color: hsla(0, 0%, 100%, 0.043);
    border-radius: 50px;
    padding: 15px 25px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.toolkit-box-desc span:hover {
    background-color: hsla(0, 0%, 100%, 0.105);
    border: 1.5px solid #7C3AED;
    color: #fff;
    transition: all 0.3s ease;
    transform: translateY(-3px);
    cursor: pointer;
}

.toolkit-desc {
    font-size: 0.9rem;
    width: 70%;
    line-height: 1.2rem;
    color: rgb(154, 156, 172);
    padding-bottom: 25px;
}

.toolkit-detail-box {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.AI-Assisted-detail  {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.AI-box {
height: auto;
    width: 18%;
    background-color: hsla(0, 0%, 100%, 0.038);
    border: 1.5px solid rgba(255, 255, 255, 0.099);
    /* box-shadow: 0 8px 20px rgb(0, 0, 0); */
    border-radius: 25px;
    margin: 0;
    padding: 30px;
}
.AI-box:hover {
    border: 1.5px solid #7c3aed0e;
    background-color: hsla(0, 0%, 100%, 0.063);
    cursor: pointer;
}



.AI-box-name {
    font-size: 0.75rem;
    font-weight: normal;
    padding-bottom: 10px;
    color: rgb(255, 255, 255);
    padding: 8px 15px;
    border-radius: 6px;
    background: linear-gradient(135deg, #7C3AED, #4F46E5);
    align-self: flex-start;
}


.AI-box-title {
    margin-top: 20px;
font-size: 1.1rem;
    font-weight: 500;
    padding-bottom: 10px;
}
.AI-box-desc{
    font-size: 0.90rem;
    line-height: 1.4rem;
    color: #9a9cac;
}


/* Education & Certifications */
.background-section {
    height: auto;
    width: 100%;
    background-color: #08080D;
    padding:100px;
    box-shadow: 0 -18px 40px rgba(47, 247, 160, 0.073);
    padding-bottom : 100px;
}
.background-caption {
    padding-bottom: 15px;
    font-size: 1rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: #5b8cff;
}
.background-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 3.6rem;
    width: 70%;
    padding-bottom: 30px;
}
.background-detail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
}
.edu-item{
    margin-bottom: 30px;
}
.edu-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.edu-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #7C3AED;
    box-shadow: 0 0 0 3px #7c3aed1d;
    animation: pulse 2.2s ease-in-out infinite;
}

.edu-item h3 {
    font-size: 1.10rem;
    margin-bottom: 4px;
}
.edu-item p {
    font-size: 0.90rem;
    color: #9a9cac;
    margin-left: 18px;
}
.certifications span{
    padding-bottom: 15px;
    font-size: 0.90rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: #9a9cac;
}
.certifications h3 {
    font-size: 1.10rem;
    margin-bottom: 4px;
}
.certifications p {
    font-size: 0.90rem;
    color: #9a9cac;
}
.cert-detail{
    margin-top: 15px;
}

/* Contact */
.contact-section {
    height: auto;
    width: 100%;
    background-color: #08080D;
    padding: 100px; 
    position: relative;
    overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: #7C3AED;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  top: -100px;
  right: -100px;
}
.contact-section::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: #4F46E5;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  left: -137px;
  top: 200px;
}

.contact-caption {
    padding-bottom: 15px;
    font-size: 1rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: #5b8cff;             
}
.contact-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 3.6rem;
    width: 70%;
    padding-bottom: 30px;
} 
.contact-detail {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: start;
}
.contact-box {
    width: auto;
    height: auto;
    background-color: hsla(0, 0%, 100%, 0.02);
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    /* box-shadow: 0 8px 20px rgb(0, 0, 0); */
    border-radius: 25px;
    margin: 0;
    padding: 40px;
}
label {
    font-size: 0.90rem;
    color: #9a9cac;
    padding-bottom: 10px;
    display: block;
}
.textbox {
    width: 100%;
    height: 50px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background-color: #4e46e50f;
    color: #fff;
}

.textarea {
    width: 100%;
    height: 120px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background-color: #4e46e50f;
    color: #fff;
    resize: vertical;
}
.contact-button {
    background: linear-gradient(135deg, #7C3AED, #4F46E5);
    box-shadow: 0 8px 20px rgb(0, 0, 0);
    display:flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 16px 36px;
    margin-right: 7px;
    border-radius: 50px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(124, 47, 247, 0.2);
    cursor: pointer
}
.social-links {
    display:block;
    
    
}
   
.social-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 50px 0px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    font-size: 1.25rem;
    font-weight: 500;
}
.social-items a {
    text-decoration: none;
}
.social-items:hover {
    transform: translateX(10px);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.social-items a:hover {
    color: #5b8cff;
    
}

/* Footer */
.footer-section {
    height: auto;
    width: 100%;
    background-color: #08080D;
    padding: 40px 100px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1.5px solid rgba(255, 255, 255, 0.053);
    position: relative;
    bottom: 0;
}

    .footer-text p {
        font-size: 0.90rem;
        color: #9a9cac;
    }

    .Back-to-top a {
        text-decoration: none;
        color: #5b8cff;
        font-size: 0.90rem;
        /* background-color: hsla(0, 0%, 100%, 0);
        padding: 10px 20px;
        border-radius: 50px;
        border: 1.5px solid rgba(255, 255, 255, 0.053); */
    
    }
    
    .Back-to-top a:hover {
        color: #ffffff;
        transform: translateY(-3px);
        transition: all 0.3s ease-in-out;
    }







