* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

.instrument-sans {
  font-family: "Instrument Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.charm-regular {
  font-family: "Charm", cursive;
  font-weight: 400;
  font-style: normal;
}

body {
  /* background-color: #f0f8ff; */
  font-family: "Instrument Sans", sans-serif;
}

.topbar {
  background: linear-gradient(#d2a905, #EFBF04);
  /* background-color: #EFBF04;  */
  padding: 8px 20px;
  color: rgb(159, 46, 5);
  color: #222222;
  font-weight: bold;
  text-align: center;
}

.navbar-brand span {
  font-size: 30px;

}

.navbar-brand span:hover {
  /* color: #EFBF04; */
  color: rgb(247, 213, 149);
  filter: drop-shadow(0 0 0.85rem rgb(63, 63, 64));

}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}


.dropdown-menu {
  background-image: linear-gradient(to top, #572d03, rgb(114, 33, 4) 40%);
  border: none;
  transition: all 0.3s ease-in-out;
}

.dropdown-menu a {

  color: #FFF;
}

.dropdown-menu a:hover {
  background-image: linear-gradient(to top, #572d03, rgb(114, 33, 4) 40%);


  color: #EFBF04;
}

.navbar-nav .nav-link {
  color: #ffffff !important;
  /* Bright white for all links */
  opacity: 1;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #EFBF04 !important;
  /* Keep hover/active white */
}

.custom-toggler {
  padding: 1px;
  width: 32px;
  height: 32px;

}

.custom-toggler .navbar-toggler-icon {

  background-size: 70% 70%;
}

@media(max-width: 576px) {
  .topbar {
    font-weight: normal;
  }

  .navbar-brand img {
    width: 50px;
    height: 50px;
  }

  .navbar-brand span {
    font-size: 22px;

  }

  .navbar-nav .nav-link {
    font-size: 14px !important;
  }

}

/* ------------------------- 
      contact-section
 ------------------------- */
#contact {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/contact-id.png);
  min-height: 40vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: last baseline;
}


#contact .contact h2 {
  font-size: 35px;
  font-weight: bold;
  letter-spacing: .1rem;

  color: #EFBF04;
}

#contact .contact p {
  font-size: 18px;
  letter-spacing: .0.8rem;
  word-spacing: .2rem;
  color: white;
}

.Contact-line {
  text-align: center;
  width: 300px;
  margin: auto;
  border-bottom: 1px solid black;
  padding-bottom: 5px;

}

.Contact-card {
  box-shadow: 1px 1px 10px 1px rgb(199, 201, 231);
  transition: 0.8s all ease;

}

.Contact-card:hover {
  transform: scale(1.1);
}

.Contact-card svg {
  filter: drop-shadow(2px 2px 2px gray);
}

/* .............................
        contact form
   ................................ */
.form-container {
  max-width: 600px;
  margin: auto;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: #fff;
}

.Submit {
  background-color: #007bff;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
}

.Submit:hover {
  background-color: #0056b3;
}


/* .............................
           footer
   ................................ */

.s-footer {

  background: linear-gradient(#d2a905, #EFBF04);

}

.l-footar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 30px 0;
}

.nutty {
  color: rgb(0, 0, 0);
}

.social-icons {
  display: flex;
  color: rgb(0, 0, 0);
  gap: 10px;

}

.b-box {
  width: 50px;
  height: 50px;
 
  background-color: blue;
  text-align: center;
  border-radius: 5px;
  position: fixed;
  right: 10px;
  bottom: 25px;
  /* box-shadow: 2px 1px 1px 1px rgb(103, 102, 102); */
  filter: drop-shadow(2px 2px 2px gray);
}

.b-box i {
  padding-top: 15px;
}

.b-box a {
  color: white;
}
@media screen and (max-width: 576px) {
  .l-footar {
 flex-direction: column;
 
}
.nutty {
 margin-bottom: 15px;
}

}