*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

input{
    box-shadow: none !important;
}

/* home page code start */

.logo{
    height: 100px !important;
    width: auto !important;
}

.nav-link{
    text-align: center !important;
    padding: 10px 30px !important;
    font-size: 20px;
    color:black  !important;
    position: relative;
}

.nav-link:hover{
    color: rgb(158, 89, 24) !important;
}

.nav-link:after{
    content: "";
    position: absolute;
    left: 0;
    height: 3px;
    width: 0;
    background: rgb(158, 89, 24);
    transition: 0.3s;
    bottom: 0;
    border-radius: 50px;
}

.nav-link:hover:after{
    width: 100%;
}

.ribbon {
  width: 160px;
  font-size: 20px;
  padding: 4px;
  position: absolute;
  left: 0px;
  top: -12px;
  text-align: center;
  border-radius: 25px;
  transform: rotate(-18deg);
  background-color: #ff0000ff;
  color: white;
}

.mybtn{
    background: rgb(255, 255, 255);
    border-color: rgb(158, 89, 24);
    box-shadow:  1px 1px 5px 1px rgb(189, 101, 18);
    border-width: 1px;
    color: black;
    font-size: 18px;
    padding: 5px 40px;
    transition: 0.3s;
    width: 100%;
    border-radius: 50px;
}

.mybtn:hover{
    color: rgb(255, 255, 255) !important;
    background: rgb(158, 89, 24);
    border-width: 1px !important;
    box-shadow: 1px 1px 20px 1px black;
}
.mycarousel{
    max-height: 100vh;
    width: 100% !important;
}

.heading{
    text-align: center;
    font-size: 45px;
    padding: 30px 0px;
    
}

.color{
    color: rgb(158, 89, 24);
    text-decoration: underline;
}

.bgcolour{
    background: linear-gradient(180deg, rgb(248, 218, 190), rgb(255, 237, 220), white);
}

/* 
.mxht{
    max-height: 50px;
} */

.undrline{
    text-decoration: underline;
}

i{
    font-size: 22px;
    color: black;
}

.fa-trash{
    color: red;
    transition: 0.3s;
}

.fa-trash:hover{
    color: rgb(134, 4, 4);
    cursor: pointer;
}

.call:hover{
    color: rgb(3, 3, 126);
}


.youtube{
    font-size: 35px;
    transition: 0.3s;
}
.youtube:hover{
    color: red;
}

.facebook{
    font-size: 35px;
    transition: 0.3s;
}

.facebook:hover{
    color: rgb(30, 30, 209);
    font-size: 35px;
}

.textjustify{
    text-align: justify;
}

/* home page code end */

/* login and sign up page codes start */

.log{
    border-radius: 50px;
    background: linear-gradient(180deg, rgb(248, 218, 190), rgb(255, 237, 220), white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px 40px;
    }

.userlogo{
    max-width: 200px;
}

.form-control{
    border-radius: 20px !important;
    text-decoration: none !important;
    border-color: black;
}
.selecttag{
    border-radius: 20px !important;
    text-decoration: none !important;
    border-color: black;
    
}

/* login and sign up page codes end */


/* Typewriter codes start */

    .typewriter {
        overflow: hidden; /* Hides text that exceeds the current width */
        white-space: nowrap; /* Keeps text on a single line */
    }
    .typewriter {
        animation: typing 4s steps(40, end) forwards; /* Animates width from 0 to 100% */
    }

    @keyframes typing {
        from { width: 0%; }
        to { width: 100%; }
    }

        .typewriter::after {
        content: ""; /* The cursor character */
        border-right: 2px solid black; /* Styles the cursor */
        animation: blink-caret .75s step-end infinite; /* Animates visibility */
    }

    @keyframes blink-caret {
        from, to { border-color: transparent; }
        50% { border-color: black; }
    }

    /* Typewriter codes end */

