    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Comic Sans MS', sans-serif;
        ;
        scroll-behavior: smooth;


    }

    :root {
        --Calender-border-color: #007bff;
        --calender-Header: #007bff;
        --social-icons-btn-social: #E6B419;
        --text-h5: blue;
        --info-text-h1: red;
        --btn-social-hover: #6ebca8;
        --infoColor: #DFDFDF;
        --btn-social-font: #fff;
        --welcm-h1-color: #212529;
        --Count-Color: #9D2235;
        --Faculty-color: #6ebca8;
        --h2Color: #212529;


    }

    .contact-section {
        height: 160vh;
        padding: 100px;
        color: var(--h2Color);
        text-align: center;
        display: flex;
        gap: 30px;
        flex-direction: column;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s ease forwards;
        overflow: hidden;


    }


    .img {
        height: 100px;
        width: 100px;
        float: left;

    }

    .google-map {
        height: 250px;
        width: 350px;
        border: 1px solid #8d8d8d;
        padding: 20px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        transition: all 0.3s ease;
        margin: auto;


    }

    .google-map h3 {
        color: var(--h2Color);
        font-size: 1.8rem;
        font-weight: 500;
        text-align: center;

    }

    .google-map,
    .contact-info,
    .working-hours {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .google-map:hover,
    .contact-info:hover,
    .working-hours:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 40px rgba(31, 38, 135, 0.37);
    }

    .locate {
        color: var(--h2Color);
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 10px;
        transition: color 0.3s ease;
    }

    .others-info {
        display: flex;
        gap: 50px;
        justify-content: space-around;
    }

    .contact-info,
    .working-hours {
        height: auto;
        padding: 20px;
        color: #081b29;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        font-weight: 500;
        line-height: 10px;


    }

    .working-hours {
        text-align: left;

    }

    .contact-info {
        text-align: left;
        line-height: 20px;

    }

    .contact-info h3,
    .working-hours h3 {
        color: var(--h2Color);
        font-size: 1.8rem;
        font-weight: 500;
        text-align: center;
        margin-bottom: 15px;
    }

    .working-hours,
    .contact-info {

        height: 250px;
        width: 350px;
        border: 1px solid #8d8d8d;
        padding: 20px;
        border-radius: 20px;
    }

    .social-icons .btn-social {
        width: 35px;
        height: 35px;
        background: var(--NavColor);
        border-radius: 50%;
        font-size: 20px;
        color: var(--barColor);
        text-align: center;
        margin: 0 5px;
        padding: 2px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .social-icons .btn-social:hover {
        transform: scale(1.1);
        box-shadow: 0 0 20px var(--NavColor);
    }


    .container-form {
        border: solid 1px #8d8d8d;
        padding: 20px;
        border-radius: 20px;
        background-color: #fff;
        opacity: 0;
        transform: scale(0.9);
        animation: fadeInScale 0.7s ease forwards;
        animation-delay: 0.5s;
    }

    .heading {
        font-size: 1.3rem;
        margin-bottom: 20px;
        font-weight: bolder;
    }

    .form-container {
        display: flex;
        justify-content: center;
    }

    .form {
        display: flex;
        gap: 20px;
        width: 100%;
    }

    .left-side,
    .right-side {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .textarea {
        height: 180px;
        padding: 10px 15px;
        font-size: 1rem;
        border-radius: 8px;
        border: solid 1px #8d8d8d;
        letter-spacing: 1px;
        resize: none;
    }

    .input-field {
        position: relative;
    }

    .input-field label {
        position: absolute;
        color: #8d8d8d;
        pointer-events: none;
        left: 15px;
        transform: translateY(0.6rem);
        transition: all 0.3s ease;
    }

    .input-field input {
        padding: 10px 15px;
        font-size: 1rem;
        border-radius: 8px;
        border: solid 1px #8d8d8d;
        width: 100%;
    }


    .input-field input:focus,
    .input-field input:valid {
        outline: none;
        border: solid 1px var(--NavColor);
        box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
        transform: scale(1.02);
    }


    .input-field input:focus~label,
    .input-field input:valid~label {
        transform: translateY(-51%) translateX(-10px) scale(0.8);
        background-color: #fff;
        padding: 0px 5px;
        color: var(--NavColor);
        font-weight: bold;
    }

    .form .btn-container {
        display: flex;
        justify-content: flex-start;
    }

    .form .btn {
        padding: 10px 20px;
        font-size: 1rem;
        border-radius: 10px;
        border: solid 1px var(--NavColor);
        background: var(--NavColor);
        color: #fff;
        font-weight: bolder;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .form .btn:hover {
        background: var(--btn-social-hover);
        transform: scale(1.05);
    }



    .form .btn:active {
        transform: scale(0.995);
    }

    @media (max-width: 1020px) {
        .contact-section {
            padding: 50px;
            height: 200vh;
        }

        .form {
            flex-direction: column;
        }

        .textarea {
            height: 200px;
        }

        .container-form {
            padding: 15px;
        }

        .others-info {
            height: auto;
            flex-direction: row;
        }

        .google-map {
            width: 100%;
        }




    }

    @media (max-width: 768px) {
        .contact-section {
            padding: 30px;
            height: 280vh;
        }

        .textarea {
            width: 100%;
            height: 180px;
        }

        .form .btn {
            width: 100%;
        }

        .others-info {
            height: auto;
            flex-direction: column;
        }

        .contact-info,
        .working-hours {
            width: 100%;
        }

        .google-map {
            width: 100%;
        }
    }

    @media (max-width: 450px) {


        .google-map {
            width: 100%;
        }

        .contact-section {
            padding: 10px;
            margin-top: 100px;
            height: 270vh;
        }

        .textarea {
            width: 100%;
            height: 150px;
        }

        .form .btn {
            padding: 12px;
            font-size: 0.9rem;
        }

        .heading {
            font-size: 1.2rem;
        }

        .form {
            flex-direction: column;
            gap: 10px;
        }

        .left-side,
        .right-side {
            min-width: unset;
        }

        .textarea {
            height: 120px;
        }

        .btn {
            padding: 12px;
            font-size: 0.9rem;
        }
    }