@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

span{
  color: red;
}


/* ======================================Applied to all sections================================================================ */

section {
  margin: 200px 100px;
}

/* ============================================================================================================================= */

/* ------------------------Top Nav----------------------- */

.na#feedback{
  position: fixed;
  top: 0;
  width: 100%;
}

.top_nav {
  width: 100%;
  height: 65px;
  background: #fff;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top_nav h2 {
  font-size: 24px;
  font-weight: bold;
  color: #494949;
  margin-right: 25px;
}

.top_nav button {
  background: red;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* -----------------------------------Bottom Nav------------------------ */
.bottom_nav {
  width: 100%;
  background: whitesmoke;
  box-shadow: 6px 7px 5px lightgrey;
  border-top: 0.1px ridge rgb(151, 151, 151);
  /* height: 50px; */
  padding: 0 50px;
  display: flex;
}

.bottom_nav ul {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.bottom_nav ul li {
  padding: 10px 30px;
}

.bottom_nav ul li a:hover {
  border-bottom: 4px solid red;
  position: relative;
  top: -2px;
  transition: 0.1s;
}

.bottom_nav ul li a {
  color: #030101;
  letter-spacing: 0px;
  text-transform: uppercase;
  font-size: 15px;
}

#loginbutton{
  padding: 0.5rem;
  background-color: black;
  color: white;
  text-transform: uppercase;
  border-radius: 0%;
  letter-spacing: 2px;
}

#loginbutton:hover {
  background-color: red;
  color: white; /* Optional: Ensures text is readable */
  transition: background-color 0.3s ease; /* Smooth transition effect */
}

/* ------------------Search Bar------------------------- */
.search-content{
  display: flex;
}

.input-search{
  outline: none;
  width: 10rem;
  padding: 1px;
  border-radius: 5px;
  border-radius: 20px;
  text-align: center;
  margin: 5px;
}

#search_button{
  border-radius: 1.5rem;
  background-color: black;
  color: white;
  margin: 0.5rem;
  width: 5rem;
}

#search_button:hover {
  background-color: red;
  color: white; 
  transition: background-color 0.3s ease; 
}

/* -------------------------------Hero Page--------------------------------- */
.hero-content {
  align-items: center;
  justify-content: space-around;
  display: flex;
  padding: 5rem;
  background: yellow;
  color: black;
  border-radius: 1rem;
}


.hero-content .hero-text span{
  color: red;
}

#hero-button{
  padding: 0.5rem;
  background-color: black;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 3rem;
}

#hero-button:hover {
  background-color: red;
  color: white; 
  transition: background-color 0.3s ease; 
}

.hero-text h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero-text h3 span {
  color: green;
}
#feedback .hero-text p {
  font-size: 28px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 100;
  margin-bottom: 10px;
}

img {
  height: 300px;
  width: 500px;
  border-radius: 20px;
}

/* ----------------------------------Menu Heading--------------------------------- */
.mhead {
  text-align: center;
}

.mhead span {
  font-size: 30px;
  text-decoration: underline;
  text-decoration-color: red;
}

.mhead p {
  font-size: 30px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.mhead p span {
  font-size: 30px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  color: red;
}

/* ----------------------------------------Menu list---------------------------- */
.menu_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.box {
  text-align: center;
  margin: 15px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
}

.box img {
  width: 400px;
  height: 250px;
  padding: 2px;
}

.box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.box span {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: block;
  color: red;
  text-decoration: none;
}

.box button {
  background: green;
  color: #fff;
  padding: 0.3rem 0.6rem;
  text-decoration: none;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  font-size: 18px;
  width: 300px;
}

.box a {
  color: #007bff;
  text-decoration: none;
  display: block;
  font-size: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}

/* --------------------------ABOUT US----------------------- */



#about-parent h1{
  text-align: center;
  text-decoration: underline;
  text-decoration-color: red;
}


.about-contain{
  display: flex;
  justify-content: space-around;
  margin-top: 5rem;
}

.about-contain p{
  width: 25rem;
  text-align: justify;
}

/* -----------------------------Feedback------------------------------- */


.title h3 {
  text-align: center;
  font-size: 50px;
  margin-bottom: 30px;
}

.title span {
  color: red;
}

#feedback_content{
  display: flex;
}

#feedback_content .feeds p{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#feedback .feeds {
  border: 1px solid blueviolet;
  padding: 2rem;
  width: 50%;
  margin: 10px;
  overflow: hidden;
  background-color: rgb(241, 241, 241);
  border-radius: 20px;
}


/* -------------------------------Footer------------------------------------ */
#contact-contain{
  display: flex;
  justify-content: space-around;
  background-color: black;
  color: white;
  padding: 2rem;
}


.address h3{
  text-align: center;
}

#Contact h3{
  text-decoration: underline;
  text-decoration-color: red;
}


/*--------------------------- Custom Scroll Bar ------------------------------*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgb(168, 168, 166);
}

::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 20px;
}