    
    .containerhhh{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    
    .contact {
     padding: 20px;
     margin: 50px 0;
     width: fit-content;
     max-width: 90vw;
     margin-left: 10px;
     margin-right: 10px;
     box-shadow: 0 5px 15px   rgba(66, 66, 66, 0.575);
     border-top: 0.5px solid rgb(224, 224, 224);
     border-radius: 10px;
     overflow-x: hidden !important;
    }

    .contact hr{
        border: 0.5px solid rgb(184, 184, 184);
    }

    @media (max-width: 430px){
    .contact {
            padding: 10px;
            margin-top: 100px;
            width: 98vw;
            max-width: unset;
            margin-left: 5px;
            margin-right: 20px;
           }
      }
    

    .newsl{
        box-shadow: none;
        border-top: none;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .newslll{
        font-size: 1.5rem;
        font-family: 'Lucida Sans', 'Lucida Sans Regular';
        color: rgb(117, 117, 117);
    }

    .contact input, button {
     font: 400 15px 'Open Sans', sans-serif, helvetica, Arial;
    }
   

    fieldset {
     border: medium none !important;
     margin:  0 0 10px;
     min-width: 100%;
     width: 100%;
    }
    .contact input, textarea {
     width: 100%;
     border: none;
     border: 1px solid rgb(180, 180, 180);
     padding: 15px;
     margin: 5px 0;
     font-size: 14px;
     border-radius: 5px;
    }

    .contact input:hover, textarea:hover {
     transition: 0.2s ease-in;
     background-color: rgb(169, 184, 190);
    }
    
    .contact button {
     outline: none;
     border: none;
     background-color: rgb(184, 21, 21);
     color: white;
     /* margin: 10px; */
     padding: 10px;
     font-size: 17px;
     width: 100%;
     border-radius: 5px;
    }
     
    .contact button:hover {
        transition: 0.2s ease-in;
     background-color: rgba(18, 18, 19, 0.8);
    }
     
    .contact input:focus {
    transition: 1s ease-in;
     outline: 0;
     border: none;
     background-color: rgba(20, 20, 20, 0.11);
    }

    .inputBox span{
        font-size: 1rem;
        
    }

    .contact h1{
        color: rgb(32, 32, 32);
        padding-top: 20px;
    }
     



    /* comment form starts */
    .commentfs{
        width: 80%;
        padding: 10px;
    }

    .commentfs2{
        width: 100% !important;
        padding: 10px;
    }

    .commentfs form h3{
        font-family: "Rajdhani", sans-serif;
        margin-top: 20px;
        padding: 10px;
    }

    .commentfs form div fieldset input, .commentfs form div fieldset textarea{
        padding: 10px;
        border: none;
        background-color: rgb(235, 235, 235);
        border-radius: 0;
    }

    .cmbtn{
        background-color: rgb(245, 245, 245);
        padding: 10px;    
        padding-left: 20px;    
        padding-right: 20px;
        border-radius: 20px;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
        color: black;
    }

    .cmbtn:hover{
        box-shadow: none;
    }

    .column fieldset input::placeholder{
        font-size: 16px;
    }
    /* comment form ends */



    /* new form starts */
    /* Comment Form Container */
.commentstyle {
    background-color: #fdfdfd;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin: 40px auto;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.commentstyle h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: #333;
    font-weight: 600;
}

.commentstyle fieldset {
    border: none;
    margin-bottom: 20px;
    position: relative;
}

.commentstyle input[type="text"],
.commentstyle input[type="email"],
.commentstyle textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    resize: vertical;
}

.commentstyle input[type="text"]:focus,
.commentstyle input[type="email"]:focus,
.commentstyle textarea:focus {
    outline: none;
    border-color: #ff5e00;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}

.commentstyle button {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-radius: 10px;
    background-color: red;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.commentstyle button:hover {
    background-color: rgb(150, 0, 0);
    /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); */
}

.commentstyle textarea {
    min-height: 120px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .commentstyle {
        padding: 20px;
    }
}

    /* new form ends */