/*--------------NAVBAR SECTION---------------*/

.navbar-brand {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-weight: 800;
}
.navbar-nav .nav-item .nav-link {
  display: inline-block;
}
.container {
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}
.pro-pic {
  min-height: 50px;
}
.pic-text {
  display: inline-block;
}

.gradient-bg {
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  padding: 0; /* Remove any padding */
  margin: 0; /* Remove any margin */
}

.chobi {
  padding: 20px; /* Add padding around each column */
}

@media (max-width: 768px) {
  .chobi {
    padding: 10px; /* Adjust padding for smaller screens if needed */
  }
}

/*====================NAVBAR HOVER=======================*/

.navbar-nav .nav-link:hover {
  color: #fff;
  border-bottom: 2px solid transparent;
  transition: color 0.5s ease-in-out, border-bottom 0.3s ease-in-out;
}
/*===========SKILLS BUTTON==================*/
.skill-btn {
  width: 100px; /* Adjust this value to your desired button width */
  display: inline-block; /* Ensures the fixed width is applied */
  text-align: center; /* Centers the text inside the button */
}

/*------------PRODUCT SECTION----------
===========================================*/
.headProject {
  text-align: center;
  padding: 4px;
}
.product img {
  width: 100%; /* Make the image take up the full width of its container */
  height: auto; /* Maintain aspect ratio */
  max-width: 300px; /* Limit the maximum width */
  margin: auto; /* Center align the image */
  display: block; /* Center align the image */
}
.product .text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f3f4f5; /* Very light background color */
  padding: 20px; /* Add padding around the card */
  border-radius: 50px; /* Optional: round the corners of the card */
  transition: box-shadow 0.3s ease; /* Smooth transition for the shadow */
}

.product p,
.product small {
  margin-top: 10px; /* Add space between image and text */
}
.button-group {
  display: flex;
  justify-content: center;
  gap: 10px; /* Add space between buttons */
  margin-top: 10px; /* Add space above buttons */
}

/*=================PRODUCT HOVER=============*/
.chobi img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
}
.chobi:hover img {
  transform: scale(1.05);
}

.button-group a {
  display: inline-block;
  margin: 5px 0;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.button-group a:hover {
  background-color: #ff7e5f;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/*=====================FOOTER======================*/
.custom-link {
  text-decoration: none;
  color: #fffdd0;
  font-family: Arial, sans-serif;
}

.custom-link i {
  color: #fffdd0;
}

/*==================arrow=============*/

.navbar.fixed-top {
  transition: background-color 0.3s ease;
}
.navbar.fixed-top.navbar-scrolled {
  background-color: #fad012;
}
/* Style for the Scroll Button */
#scrollBtn {
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #2f37d2;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  font-size: 18px;
  transition: background-color 0.3s, transform 0.3s;
}

#scrollBtn:hover {
  background-color: #bb72eb;
}

/* Rotate the button to point upward when scrolled to the bottom */
#scrollBtn.upward {
  transform: rotate(360deg);
}
h6 {
  font-weight: 100;
  color: #fffdd0;
}
