
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;800&display=swap');
    @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css');


    /* Custom Styles */

    * {
        scroll-behavior: smooth;
    }
    a{
        text-decoration: none;
    }

    body {
        font-family: poppins;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 100vh;
        margin: 0;

        box-sizing: border-box;
        padding: 0;
        overflow-x: hidden !important;

    }

    /* headingsss n all */
    .course-head {
        height: auto;
        width: 95%;
        background-color: white;
        border-bottom: 4px solid black;
        border-radius: 5px;
        margin-bottom: 15px;
        margin-inline: auto;
        padding-bottom: 10px;

    }

    .course-head-bca {
        text-align: center;
        font-size: 30px;
        font-size: poppins;
        margin: 0;
    }

    .course-head p {
        font-size: 17 px;
        padding: 10px;
    }

    .prj-button {
        height: 30px;
        width: 100px;
        background-color: #333;
        border-radius: 20px;
        margin-left: 80%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }

    /* sem cardds */
    .holderr {
        display: flex;
        width: 80%;
        margin-inline: auto;
        background-color: #eeebeb;
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
        border-radius: 15px;
        overflow: hidden;

    }

    h3 {
        text-align: center;
        font-size: 22px;
    }

    /* Left section with buttons */
    .left-section {
        background-color: #333;
        padding: 5px;
        padding-bottom: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        width: 30%;
    }

    .left-section h2 {
        color: white;
    }

    .btn-holderr {
        display: flex;
        align-items: center;
        gap: 20px;
        justify-content: center;
    }

    .button {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #cb4b74;

        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18 px;
        cursor: pointer;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .btnsss {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        justify-content: center;
    }


    .button:hover {
        transform: scale(1.1);
        background-color: rgba(255, 174, 92, 0.975);
        color: black;
    }

    .button.active {
        background-color: rgba(255, 229, 112, 0.975);
        color: black;
    }

    /* Right section with cardzx content */
    .right-section {
        padding: 20px;
        width: 60%;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .cardzx {
        display: none;

        padding: 3px;


    }

    .cardzx.active {
        display: block;
    }

    .cardzx h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .cardzx p {
        font-size: 15px;
        color: #333;
    }









    .card {
        background: #fff;
        width: 320px;
        /* display: grid;
               grid-template-rows: repeat(7, auto); 
               min-height: 500px;   */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        border-radius: 15px;
        display: flex;
        flex-direction: column;
    }

    .card a {
        text-decoration: none;
        color: #cb4b74;
    }

    .card-head a {
        color: white !important;
    }

    .part {
        display: flex;

        align-items: center;
        height: 40px;
        border-bottom: 1px solid #d3d2d2;
        padding: 10px;
    }

    /* loading-styles */
    .part-loading {
        display: flex;
        justify-content: space-around;
    }

    .text-loading {
        background-color: rgb(148, 148, 148);
        border-radius: 4px;
        width: 70% !important;
    }

    .image-loading {
        background-color: rgb(148, 148, 148);
        height: 40px;
        width: 40px;
        border-radius: 50%;

    }

    /* loading-complete */

    .text {
        text-align: left;
        font-size: 15px;
        width: 80% !important;
        color: #333;
    }

    .softwares {
        text-align: left;
        font-size: 13px;
        width: 95% !important;
        color: #333;
    }

    #links {
        font-size: 12px;
        display: flex;
        justify-content: space-around;

    }

    #links a {
        text-decoration: underline;
    }

    .image-holderr {
        /* flex: 1; */
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30%;
        overflow: visible;
        position: relative;
    }

    .image-holderr img {
        width: 50px;
        height: 50px !important;
        border-radius: 50%;
        transition: transform 0.3s ease;
    }

    .image-holderr:hover img {
        transform: scale(2.8);
        z-index: 3;
    }

    p {
        padding: 0;
        margin: 0;
    }

    .card-head {
        width: 100%;
        background-color: #333;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 50px;
        text-align: center;
        color: white;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }

    #time-table {
        display: flex;
        gap: 10px;

    }

    #time-table a {
        transition: 0.2s all ease;

    }

    #time-table a:hover {
        transform: scale(1.4);
        color: #6ebeff !important;
    }

    .card-head h2 {
        font-size: 18px;
        font-weight: 500;
    }

    .card-head p {
        font-size: 16px;
        text-transform: capitalize;
    }



    @media (max-width: 768px) {

        .left-section h2 {
            margin: 4px;
        }

        .holderr {
            flex-direction: column;
            width: 94%;
            border: 1px solid black;
        }

        .left-section {
            width: 100%;
            align-items: center;
            justify-content: center;
        }

        .btnsss {
            flex-direction: row;
            gap: 20px;
            margin-top: -10px;
        }

        .btn-holderr {
            flex-direction: column;

        }

        .right-section {
            width: 98%;
            padding: 0;
            padding-top: 20px;
            padding-bottom: 20px;

        }

        .button {
            width: 50px;
            height: 50px;
            color: white;
            font-size: 15px;
            font-weight: 700;

        }

        h3 {
            font-size: 18px;
            padding-inline: 20px;
        }



    }


    /* media sem ends */



    /* projectss */

    /* Stacking cards vertically when screen width is 1000px or less */
    @media (max-width: 1000px) {
        .project-container {
            grid-template-columns: 1fr;
            /* Single column layout */
        }
    }

    #prj-heading {
        text-align: center;
    }

    .holder222 {
        display: flex;
        flex-direction: column;
        width: 95%;
        border: 1px solid black;
        margin-inline: auto;
        background-color: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 15px;
        overflow: hidden;
        margin-bottom: 20px;
        /* Add margin for multiple sections */
    }

    /* Left section with buttons */
    .left-section222 {
        background-color: #333;
        padding-bottom: 15px;
        padding-top: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }

    .btnzzp {
        display: flex;
        gap: 15px;
    }

    .button222 {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #cb4b74;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        cursor: pointer;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .button222:hover {
        transform: scale(1.1);
        background-color: rgba(255, 174, 92, 0.975);
        color: black;
    }

    .button222.active {
        background-color: rgba(255, 229, 112, 0.975);
        color: black;
    }

    /* Right section with card content */
    .right-section222 {

        width: 100%;
        display: flex;
        justify-content: center;

    }

    .card222 {
        display: none;
        background-color: white;
        padding: 20px;
        border-radius: 10px;

    }

    .card222.active {
        display: block;
    }

    /* .card222 h2 {
           font-size: 24px;
           margin-bottom: 10px;
       }

       .card222 p {
           font-size: 16px;
           color: #333;
       } */








    /* projects */

    .prj-main {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;


    }

    .prj-main h4 {
        text-align: center;
        text-decoration: underline;
        padding: 30px;
        margin: 0;
        font-size: 20px;
        font-family: poppins;
    }

    .project-container {
        display: grid;
        padding: 20px;
        place-items: center;
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 20px;
        width: 100%;
        max-width: 1250px;
        border-radius: 15px;
    }

    /* Stacking cards vertically when screen width is 1000px or less */
    @media (max-width: 1000px) {
        .project-container {
            grid-template-columns: 1fr;
            /* Single column layout */
        }
    }

    .line {
        width: 90%;
        height: 2px;
        border-radius: 5px;
        border-bottom: 4px solid black;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-inline: auto;
    }

    .project-container h4 {
        font-size: 22px;
    }


    .project-card {

        height: 190px;
        /* increase height if wanna add more than 4 team members  */
        width: 550px;
        color: black;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 2px solid black;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 4px 8px 8px rgba(0, 0, 0, 0.1);

    }

    .project-card p {
        font-size: 14px;
    }

    .left .desc p {
        font-size: 12px;
    }

    .titlee {
        margin: 0;
        font-size: 16px !important;
        font-weight: 600;
        padding-top: 10px !important;
    }


    .left {
        height: 190px;
        width: 70%;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        padding-left: 10px;

    }

    .left .desc {
        height: 120px;
        width: 95%;

        display: flex;
        align-items: center;
        justify-content: center;
        color: black;
        padding: 5px;
        border-bottom: 1px solid black;
        border-radius: 3px;
    }

    .team {
        height: 100%;
        width: 29%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #f7f0f0;
        border-left: 2px solid black;
        gap: 3px;
    }

    .team h4 {
        margin: 0;
        padding: 0;
        font-size: 15px;

    }



    .team-images {
        display: flex;
        align-items: center;
        width: 30%;
        overflow: visible;
        position: relative;
        gap: 5px;
        width: 100%;
        align-items: center;
        justify-content: flex-start;
        padding-left: 10px;
    }

    .team-images img {
        width: 35px;
        height: 35px !important;
        border-radius: 50%;
        border: 1px solid black;
        transition: transform 0.3s ease;
    }

    .overlay{
        display: flex;
        gap: 5px;
    }


    .team-images img:hover {
        transform: scale(3.5);
        z-index: 3;
    }

    .date-url {
        display: flex;
        justify-content: center;
        gap: 5px;
        align-items: center;
        padding-bottom: 5px;
    }

    .date-url a {
        text-decoration: none;
        color: black;
    }

    #url-a {
        transition: 0.1s all ease;
    }

    #url-a:hover {
        transform: scale(1.02);

    }

    .date {
        height: 30px;
        min-width: 40%;
        display: flex;
        justify-content: center;
        font-size: 12px;
        align-items: center;
        margin: 0;

    }

    #team-contact {
        padding-right: 8px;
        font-size: 15px;
        transition: all ease 0.1s;
    }

    #team-contact:hover {
        transform: scale(1.2);
        color: #97433d;
    }




    @media (max-width: 480px) {
        .left-section222 {
            flex-direction: column;
        }

        .button222 {
            width: 40px;
            height: 40px;
            font-size: 16px;
            font-weight: 500;
        }

        .project-container {
            grid-template-columns: repeat(1, minmax(300px, 1fr)) !important;
            width: 90%;
        }

        .project-card {
            width: 320px !important;
            flex-direction: column;
            height: 260px !important;
        }

        .left {
            width: 97% !important;
        }

        .titlee {
            padding-top: 10px !important;
        }

        .desc {
            height: 90px !important;
            margin: 5px !important;
            margin-bottom: 10px !important;

        }

        .date {
            align-items: flex-start;

        }

        .date-url {
            align-items: flex-start;
            padding: 0;
        }

        .team {
            flex-direction: row !important;
            width: 99% !important;
            border-top: 2px solid black;
            border-left: none;

        }

        .team h4 {
            display: none;
        }

        .team-images {
            flex-direction: column;
            gap: 3px;
        }

        .team-images img {
            width: 45px !important;
            height: 45px !important;
        }

    }


    /* projects endss */









    /* footer  */
    .foooter {
        height: auto;
        display: flex;
        width: 100%;
        background-color: #333;
        justify-content: center;
        align-items: center;
        color: white;
        transition: 0.5s all ease;
        overflow: hidden;
    }

    .foooter h5 {
        margin: 0;
    }

    .foooter a {
        text-decoration: none;
        color: white;
    }

    .foooter a:hover {
        color: rgb(242, 139, 159);
        transform: scale(1.4);
    }

.address-div {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    justify-content: center;
    height: 90%;
    padding: 10px;
}

.desadd15{
    font-size: 15px !important;
}

    .address-heading {
        font-size: 18px;
        text-align: center;
    }

    .sub-address-heading {
        font-size: 14px;
        padding-top: 10px;

    }

    .description-address {
        font-size: 13px;
    }

    .courses-div {
        width: 30%;
        height: 90%;
        padding: 10px;

        /* background-color: greenyellow; */
    }

    .ug-sub {
        font-size: 13px;
        word-spacing: 10px;
    }

    .contact-div {
        width: 30%;
        height: 90%;

        padding: 10px;
    }

    .contact-div i {
        padding: 10px;
    }

    .contact-div h5 {
        margin-top: 10px;
    }

    .s-media {
        display: flex;
        justify-content: space-around;
        text-align: center;
        padding-inline: 20px;

    }

    .s-c-media {
        display: flex;
        justify-content: center;

        gap: 60px;
        text-align: center;
        padding-inline: 20px;
    }

    #nh {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        text-align: right;
        position: relative;
        top: -15px;
        padding-right: 20px;
        padding-top: 20px;
        margin: 0;
        right: 20px;
        color: white;
        font-size: 20px;
    }



    @media (max-width: 480px) {
        html {
            max-width: 100vw !important;
            overflow-x: hidden !important;
        }

        .course-head {
            height: auto;
            padding-bottom: 10px;

        }

        .course-head p {
            font-size: 12px;
            padding: 5px;
        }

        .prj-button {
            margin-left: 70%;
        }

        .image-container:hover img {
            transform: scale(1);

        }

        .image-container img:hover {
            transform: scale(2.8);
            z-index: 3;
        }

        .text {
            font-size: 15px;
        }

        .card-container {
            grid-template-columns: none;
        }

        .card {
            width: 310px;
        }

        .foooter {
            height: 760px !important;
            flex-direction: column;
            padding: 10px;
        }


        .address-div,
        .contact-div,
        .courses-div {
            width: 100% !important;
        }

        .contact-div {
            height: 26% !important;
        }

        .courses-div {
            height: 37% !important;
            border-top: 2px solid white;
            border-bottom: 2px solid white;
        }

        .address-div {
            height: 37%
        }

        #nh {
            display: none;
        }


    }

    /* media ends  */

    .part .text b {
        padding-right: 3px;
        text-transform: capitalize;
    }

