    html {
        scroll-behavior: smooth;
    }

    /* * {
        outline: 3px solid red;
    } */

    body {
        margin: 0;
        font-family: 'Segoe UI', sans-serif;
        /* background-color: #1e1e2f; */
        color: #050505;
        /* display: flex; */
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Sidebar */
    .sidebar {
        width: 30px;
        margin-left: 30px;
        /* background-color: #f2f3f5; */
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 20px;
        gap: 10px;
        z-index: 1000;
    }

    .sidebar-item {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 54px;
        height: 54px;
        overflow: hidden;
        background-color: #f2f3f5;
        border-radius: 50%;
        transition: width 0.4s ease, background-color 0.4s ease, transform 0.4s ease;
        cursor: pointer;
    }

    .sidebar-item.active {
        /* width: 160px; */
        background-color: #0563bb;
        color: #1e1e2f;
    }

    .sidebar-item.activeBu {

        border: 4px solid #b7d9fb;
    }

    .sidebar-item:hover {
        width: 140px;
        border-radius: 30px;
        background-color: #0563bb;
        color: #1e1e2f;
        transform: translateX(40px);
    }

    .sidebar-item:not(:hover) {
        transition: width 0s;
        /* instant out */
    }

    .sidebar a {
        text-decoration: none;
    }

    .sidebar-item i {
        font-size: 1.1rem;
        padding: 19px;
        color: #4b4a4a;
        transition: color 0.3s ease;

    }

    .sidebar-item.active i,
    .sidebar-item:hover i {
        color: #fff;
    }

    .sidebar-item span {
        white-space: nowrap;
        font-size: 1rem;
        opacity: 0;
        color: #4b4a4a;
        transition: opacity 0.3s ease, margin-left 0.3s ease;
    }

    .sidebar-item.active span,
    .sidebar-item:hover span {
        opacity: 1;
        margin-left: -5px;
        color: #fff;
    }

    .content {
        /* margin-left: 80px; */
        /* padding: 40px 20px; */
        width: 100vw;
    }

    section {
        padding: 80px 0;
        max-width: 1200px;
        margin: 0 auto;
        /* border-bottom: 1px solid #333; */
    }

    .sec {
        font-family: "Montserrat", sans-serif;
        font-size: 16px;
    }

    h2 {
        margin-top: 0;
        color: #ffcb6b;
    }

    .backgr {
        height: 100vh;
        width: 100vw;
    }

    .image-container {
        position: relative;
        height: 100vh;
        width: 100vw;
        overflow: hidden;
        border-radius: 10px;
    }

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        margin-left: 0px;
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.7);
        /* Medium transparency */
        /* pointer-events: none; */
        /* Allows clicking through */
    }

    .overlay-detail {
        margin-top: 250px;
        margin-left: 220px;
        font-family: "Raleway", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
        color: #45505b;
    }

    .name {
        font-weight: 700;
        font-size: 60px;
    }

    .detail {
        margin-top: 20px;
        font-weight: 500;
        font-size: 28px;
    }

    .fa-download {
        margin-top: 80px;
        font-size: 36px;
    }

    .cv {
        font-size: 22px;
        text-decoration: none;
    }

    .heading {
        font-family: "Raleway", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
        color: #45505b;
        text-align: center;
        font-size: 32px;
        text-transform: uppercase;
    }

    hr {
        width: 100px;
    }

    .intro {
        display: flex;
    }

    .intro-left {
        width: 650px;
    }

    .intro-right {
        width: 550px;
    }

    .intro-right img {
        height: 430px;
        width: 430px;
        /* position: absolute;
  z-index: 1; */
    }

    .card-info-intro {
        /* opacity: 0.9; */
        font-size: 17px;
        line-height: 27px;
        color: #050505;
    }

    .about-info {
        line-height: 25px;
        list-style: none;
        padding: 0;
    }

    .about-info li {
        margin-bottom: 10px;
        font-size: 16px;

    }

    .about-info li i {
        color: #0563bb;
        margin-right: 10px;
    }


    .education-card {
        background: #fff;
        border-left: 5px solid #0563bb;
        margin-top: 40px;
        padding: 20px;
        transition: transform 0.3s ease;
        cursor: pointer;
    }

    .education-card:hover {
        transform: translateY(-5px);
    }

    .edu-degree {
        font-size: 18px;
        font-weight: bold;
    }

    .edu-institute {
        font-size: 18px;
        margin-top: 5px;
    }

    .edu-duration {
        font-size: 16px;
        margin-top: 5px;
    }

    .edu-description {
        font-size: 16px;
        margin-top: 15px;
        line-height: 1.6;
    }


    .exp-card {
        background: #fff;
        border-left: 5px solid #d4d4d5;
        /* margin-top: 40px; */
        padding: 20px;
        transition: transform 0.3s ease;
        cursor: pointer;
    }


    .exp-title {
        font-size: 18px;
        font-weight: bold;
    }

    .exp-duration {
        font-size: 15px;
        margin-top: 5px;
    }


    .exp-description {
        font-size: 16px;
        margin-top: 15px;
        line-height: 25px;
    }

    .v-circle {
        width: 8px;
        height: 8px;
        border: 4px solid #0563bb;
        border-radius: 50%;
        margin-left: -5px;
    }

    .exp-duration a {
        opacity: 0.6;
        font-size: 21px;
        color: #050505;
        margin-left: 30px;
    }

    .exp-duration a:hover {
        opacity: 1;
    }

    .education-card a {
        color: #050505;
        text-decoration: none;
        opacity: 0.7;
        margin-left: 20px;
    }

    .education-card a:hover {
        opacity: 1;
    }

    .blog-div {
        margin-top: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .blog-button {
        cursor: pointer;
        height: 50px;
        width: 300px;
        background-color: #0571d5;
        color: white;
        border: none;
        font-size: 20px;
        align-self: center;
        border-radius: 5px;
    }

    .cards-cont {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-left: 10px;
    }

    .card-contact {
        background-color: #fafafa;
        color: #121212;
        width: 590px;
        height: 440px;
        border-radius: 0.5rem;
        /* padding: 1rem; */
        /* margin-left: 10rem; */
        display: flex;
        justify-content: center;
        align-items: center;
        /* margin-top: 0.7rem; */
    }

    .mail {
        color: #444;
        text-decoration: none;
    }

    .contact-item {
        margin: 20px 0;
        display: flex;
        /* align-items: center; */
        /* justify-content: center; */
        gap: 15px;
        font-size: 18px;
        color: #444;
    }

    .contact-item a {
        color: #444;
        text-decoration: none;
    }

    .icon {
        height: 40px;
        width: 40px;
        border-radius: 50%;
        background-color: #d2e7fc;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #0563bb;
    }

    .contact-item span,
    a {
        margin-top: 10px;
    }

    .contact-item:hover .icon {
        background-color: #0563bb;
        /* blue */
    }

    .contact-item:hover i {
        color: white;
        /* blue */
    }


    footer {
        background-color: #ffffff;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
        padding: 15px 20px;
        text-align: center;
        font-size: 14px;
        color: #333;
        /* position: fixed;
        bottom: 0; */
        width: 100%;
        z-index: 100;
    }

    footer a {
        color: #007bff;
        text-decoration: none;
        margin: 0 8px;
        transition: color 0.3s ease;
    }

    footer a:hover {
        color: #0056b3;
    }

    .social-icons {
        margin-top: 8px;
    }

    .social-icons a {
        margin: 0 6px;
        font-size: 16px;
        color: #555;
        transition: color 0.3s ease;
    }

    .social-icons a:hover {
        color: #007bff;
    }

    .skills-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
        justify-items: center;
        max-width: 900px;
        margin: 0 auto;
    }

    .skill-card {
        background: #ffffff;
        border-radius: 10px;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
        width: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .skill-card:hover {
        transform: translateY(-5px);
    }

    .skill-card img {
        width: 80px;
        height: 80px;
        object-fit: contain;
        margin-bottom: 0.5rem;
    }

    .skill-card p {
        font-size: 0.9rem;
        font-weight: 600;
        color: #333;
        margin: 0;
        text-transform: capitalize;
    }

    .animated-title {
        font-size: 2rem;
        font-weight: 600;
        /* color: #333; */
        /* position: relative; */
        /* height: 2.5rem; Ensure height to show the text */
        overflow: hidden;
    }

    .animated-title span {
        position: absolute;
        width: 100%;
        /* left: 0;
      top: 0;
      text-align: center; */
        opacity: 0;
        transform: translateY(100%);
        animation: slideUp 9s infinite;
    }

    .animated-title span:nth-child(1) {
        animation-delay: 0s;
    }

    .animated-title span:nth-child(2) {
        animation-delay: 3s;
    }

    .animated-title span:nth-child(3) {
        animation-delay: 6s;
    }

    @keyframes slideUp {
        0% {
            opacity: 0;
            transform: translateY(100%);
        }

        10% {
            opacity: 1;
            transform: translateY(0);
        }

        30% {
            opacity: 1;
            transform: translateY(0);
        }

        40% {
            opacity: 0;
            transform: translateY(-100%);
        }

        100% {
            opacity: 0;
            transform: translateY(-100%);
        }
    }


    .hamburger {
        display: none;
        position: fixed;
        top: 45px;
        /* left: 15px; */
        align-items: end;
        font-size: 26px;
        background: none;
        border: none;
        z-index: 1001;
        cursor: pointer;
    }

    .gohome {
        display: flex;
        justify-content: end;
    }

    .gohome-item {
        font-size: 30px;
        margin-right: 20px;
        margin-bottom: 20px;
    }

    .gohome-item a {
        color: #0563bb;
    }

    .gohome-item a:hover {
        color: grey;
    }

    .goabout {
        display: flex;
        justify-content: end;
    }

    .goabout-item {
        font-size: 30px;
        margin-right: 50px;
        margin-bottom: 20px;
    }

    .goabout-item a {
        color: #0563bb;
        text-decoration: none;
    }
     /* .godown-item i {
        color: #0563bb;
        text-decoration: none;
    } */

    .goabout-item a:hover {
        color: grey;
    }


    @media (max-width: 1000px) {
        /* body {
        flex-direction: column;
      } */

        .sidebar {
            position: fixed;
            top: 0;
            left: -460px;
            height: 100%;
            z-index: 999;
            width: 50%;
            background-color: white;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
            margin-left: 0px;
        }

        .sidebar-item {
            width: 160px;
            border-radius: 30px;
            background-color: #f2f3f5;

            transition: none;
            cursor: pointer;
        }

        .sidebar-item span {
            opacity: 1;
            margin-left: -5px;
        }

        .sidebar-item:hover {

            transform: none;
        }

        .sidebar.open {
            left: 0;
        }

        .hamburger {
            display: block;
        }

        .image-container {
            height: 55vh;
        }


        .content {
            width: 100%;
        }

        .overlay {
            width: 100%;
        }

        .overlay-detail {
            margin-top: 150px;
            margin-left: 40px;
            font-family: "Raleway", sans-serif;
            font-optical-sizing: auto;
            font-style: normal;
            color: #45505b;
        }

        .name {
            font-weight: 600;
            font-size: 48px;
        }

        .fa-download {
            margin-top: 40px;

        }

        .intro {
            margin-left: 20px;
            flex-wrap: wrap;
        }

        .intro-left {
            width: 750px;
            /* text-align: center; */
            margin-left: 20px;
            margin-right: 20px;
        }

        .intro-right {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .intro-right img {
            height: 300px;
            width: 300px;
        }

        footer {

            width: 90%;

        }

        /* body{
             display: flex;
            justify-content: center;
            align-items: center;
        } */

        /* .sec{
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        } */

        .sec {
            margin-left: 20px;
            margin-right: 20px;
        }

        .content {
            width: 100%;
        }
    }


    @media (max-width: 400px) {
        .name {
            font-weight: 600;
            font-size: 48px;
        }

        .detail {
            font-weight: 400;
            font-size: 22px;
        }

        .heading {
            font-size: 28px;
        }
          .animated-title {
        font-size: 24px;
        font-weight: 600;
      
    }

    
    .contact-item {
        margin: 20px 0;
        gap: 15px;
        font-size: 14px;
    }
    }