    * {

        margin: 0;
        padding: 0;
        box-sizing: border-box;
        list-style: none;
        text-decoration: none;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }

    html {
        scroll-behavior: smooth;
    }


    #scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        height: 3px;
        background: #ff6a00;
        width: 0%;
        z-index: 1000;
        transition: width 0.2s ease-out;
    }




    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: black;
        border-bottom: 2px solid #212121;
        padding: 10px 20px;
        position: relative;
    }

    .logo {
        flex: 0 0 auto;
    }

    .logo img {
        height: 40px;
        width: 40px;
        border-radius: 50%;
    }

    nav {
        flex: 1 1 auto;
        display: flex;
        justify-content: center;
    }

    nav ul {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    nav ul li {


        height: 40px;
        width: 80px;
        display: grid;
        place-items: center;

    }

    nav ul li a {
        font-size: 15px;

        height: 40px;
        width: 80px;
        display: grid;
        place-items: center;

        font-family: 'Poppins', sans-serif;
        border-bottom: 2px solid transparent;
        transition: all 0.3s ease;
        text-align: center;
    }

    nav ul li a {
        color: #6b6464;
    }

    nav ul li a:hover {
        color: white;
        cursor: pointer;
    }



    nav ul li:hover {
        color: white;
        cursor: pointer;
        border-bottom: 2px solid rgb(18, 248, 18);
        border-radius: 15px;
    }

    #nav-btn {
        height: 30px;
        width: 100px;
        font-weight: 800;
    }

    .animated-btn {
        height: 30px;
        width: 100px;
        font-weight: bold;
        border: none;
        position: relative;
        overflow: hidden;
        padding: 10px 20px;
        color: white;
        background: transparent;
        z-index: 1;
        cursor: pointer;
        transition: color 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        letter-spacing: 1.5px;
    }

    .animated-btn::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0;
        background-color: orange;
        z-index: -1;
        transition: width 0.4s ease;
    }

    .animated-btn:hover {
        color: black;
    }

    .animated-btn:hover::before {
        width: 100%;
    }

    .bars {
        display: none;
        font-size: 24px;
        color: white;
        cursor: pointer;
        flex: 0 0 auto;
    }

    @media only screen and (max-width: 750px) {
        nav {
            position: absolute;
            top: 67px;
            left: 0;
            width: 100%;
            display: none;
            justify-content: center;
            z-index: 1000;
            opacity: 0;

            box-shadow: 1px 15px 20px 11px #314152;
        }

        nav.show {
            display: flex;


        }

        nav ul {
            flex-direction: column;
            width: 100vw;
            background-color: #212121;
            padding: 20px 0;
            align-items: center;
        }

        nav ul li {
            width: 100px;
            height: 40px;
            color: white;
            margin: 10px 0;
        }

        .bars {
            display: block;
        }

        #nav-btn {
            width: 90%;
        }
    }

    /* 
    img container css start header

*/

    .img-container {
        height: 100vh;
        width: 100%;
        background-image: url(../images/mainimg.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: grid;
        justify-content: center;
        align-items: end;
        border-bottom: 2px solid #212121;

    }

    @media (max-width: 550px) {
        .img-container {
            background-position: 45% center;
            /* Shifts image to the right */
        }
    }

    #arrow {
        color: white;
        font-size: 1.4rem;

        padding: 6px;
        border-radius: 100%;
    }

    /* 
   About section css start here  
*/
    .blogs-container {
        background-color: black;
        border-bottom: 2px solid #212121;
    }

.heading-container {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
      z-index: 2;
      position: relative;
    }

    .heading {
      font-size: clamp(2rem, 5vw, 4rem);
      color: transparent;
      -webkit-text-stroke: 1px orange;
      transition: color 0.4s ease;
      cursor: pointer;
      padding: 1rem;
    }

    .heading:hover {
      color: orange;
    }

    .blog-discr {
        color: white;
        text-decoration: underline;
        text-align: center;
    }

    .blogs-container .blog-show {
        background-color: black;
        padding: 20px;
    }

    .blog-card {
        position: relative;
        display: flex;
        height: 250px;
        margin: 30px auto;
        width: 90%;
        max-width: 800px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(172, 169, 169, 0.479);
        transition: all .4s ease-in-out;
    }

    .blog-card:hover {
        transform: scaleY(1.1);
    }

    /* Left full image */


    .about-blog {
        width: 70%;
        background-color: #212121;
        padding-left: 50px;
        color: white;
        /* clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%); */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .img {
        width: 40%;
        height: 100%;
        
        
    }

    .img img {
        width: 80%;
        height: 100%;
        
    }

    /* 
second card css is here 
 */


    .blog-card2 {
        position: relative;
        display: flex;
        height: 250px;
        margin: 30px auto;
        width: 90%;
        max-width: 800px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(172, 169, 169, 0.479);
        right: 0;
        top: 0;
        bottom: 0;
        left: 0;
        transition: all .4s ease-in-out;
    }

    .blog-card2:hover {
        transform: scaleY(1.1);
    }

    /* Text section (on left now) */

    .about-blog2 {
        width: 70%;
        background-color: #212121;
        padding-left: 50px;
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        position: relative;
        right: 0;
        top: 0;
        bottom: 0;
        left: 0;



    }

    .img2 {
        width: 40%;
        height: 100%
    }

    .img2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;

    }






    .title {
        font-size: 22px;
        font-weight: 600;
        font-family: sans-serif;
        text-transform: capitalize;
        text-decoration: underline;

    }

    .date {
        font-size: 12px;
        text-decoration: underline;
        margin-bottom: 10px;
    }

    .little-intro {
        font-size: 13px;
        width: 90%;
    }

    .blog-link button {
        margin-top: 25px;
        position: relative;
        overflow: hidden;
        border: none;
        padding: 10px 20px;
        background-color: #111;
        cursor: pointer;
        transition: color 0.4s ease;
        border-radius: 5px;
    }

    .blog-link a {
        color: #fff;
        font-weight: bold;
        position: relative;
        z-index: 2;
        transition: color 0.4s ease;
    }


    .blog-link button::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #ff6a00, #ee0979);
        z-index: 1;
        transition: all 0.5s ease;
    }

    .blog-link button:hover::before {
        left: 0;
    }

    .blog-link button:hover a {
        color: black;
    }



    @media (max-width: 650px) {

        .blog-card,
        .blog-card2 {
            flex-direction: column;
            height: auto;
            width: 95%;
        }

        .img,
        .img2,
        .about-blog,
        .about-blog2 {
            width: 100%;
            position: relative;
            clip-path: none;
            padding: 20px;
        }

        .img img,
        .img2 img {
            height: auto;
        }
    }

    /* 
    page btn css start here  

 */

    .page-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        color: black;
    }

    .awesome-btn {
        display: inline-block;
        padding: 14px 28px;
        font-size: 1.1rem;
        width: 30%;
        text-align: center;
        font-weight: bold;
        color: white;
        background: linear-gradient(135deg, #ff6a00, #ee0979);
        border: none;
        border-radius: 50px;
        text-decoration: none;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease-in-out;

    }

    .awesome-btn:hover {
        background: linear-gradient(135deg, #ee0979, #ff6a00);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
        transform: translateY(-2px);
        color: black;

    }

    .awesome-btn::after {
        content: "→";
        padding-left: 10px;
        transition: padding-left 0.3s ease;
    }

    .awesome-btn:hover::after {
        padding-left: 15px;
    }


    @media (max-width: 650px) {
        .awesome-btn {
            width: 90%;
        }
    }

    /* 
    project css start here  

*/

    .project-container {
        background-color: black;
        border-bottom: 2px solid #212121;

    }

    .projects {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        justify-content: center;
        padding: 40px;
    }

    .project-card {
        padding: 20px;
        display: grid;
        place-items: center;

    }

    .project-card:hover {
        transform: scale(1);
    }

    @media (max-width: 450px) {
        .project-card {
            padding-left: 10px;
        }

    }

    .prjct-img {
        height: 340px;

        width: 280px;
        position: relative;
        border-radius: 10px;
        border: 2px solid #f5f5f5;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);




    }

    .prjct-img img {
        height: 100%;
        border-radius: 10px;
        width: 100%;
    }

    .about-project {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        height: 337px;
        width: 276px;
        padding: 10px;
        display: flex;
        justify-content: center;
        border-radius: 10px;
        background-color: #413939e1;
        color: white;
        align-items: center;
        flex-direction: column;
    }

    .prjct-img:hover .about-project {
        opacity: 1;
        transition: all .5s ease-in-out;
    }

    #project-btn {
        border-bottom: 2px solid #212121;
    }



    /* 
    contact css start here 

*/

    footer {
        background-color: black;
        position: relative;
    }

    .bg-changer {
        height: 100vh;
        width: 100%;
        position: relative;
        /* Needed for absolute positioning of children */
        z-index: 1;
        overflow: hidden;
        /* Prevent image overflow just in case */
    }

    .bg-changer img {
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        animation: imgChanger 15s infinite;
        object-fit: cover;
        z-index: 2;

    }


    .bg-changer img:nth-child(1) {
        animation-delay: 0s;
    }

    .bg-changer img:nth-child(2) {
        animation-delay: 5s;
    }

    .bg-changer img:nth-child(3) {
        animation-delay: 10s;
    }

    @keyframes imgChanger {
        0% {
            opacity: 0;
        }

        10% {
            opacity: 1;
        }

        30% {
            opacity: 1;
        }

        40% {
            opacity: 0;
        }

        100% {
            opacity: 0;
        }
    }

    .contact-container {
        position: absolute;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;

        z-index: 999;
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-family: sans-serif;
    }

    .icons {
        display: flex;
        justify-items: center;

        margin-top: 20px;
    }

    .icons li {
        padding: 10px;
    }

    .icons a {
        font-size: 2.5rem;
        color: white;
        transition: all 0.3s ease-in-out;
        display: inline-block;
        position: relative;
    }

    .icons a:hover {
        transform: scale(1.3) rotate(5deg);
        color: #ff6a00;
        text-shadow: 0 0 15px rgba(255, 106, 0, 0.7);
    }

    


    .copyright {
        margin-top: 80px;
    }