*{margin: 0;padding: 0%;text-decoration: none;box-sizing: border-box;}

.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%;
        }
    }
