/* =================================================================================================== */

.title-bot {
  text-align: center;
  padding-bottom: 0px !important;
  position: relative;
}

.page-title.sticky {
  position: sticky;
  top: calc(75px);
  /* Adjust this value to match the height of your header */
  z-index: 999;
  /* Ensure it stays above content but below the header */
  background-color: #f5f5f5;
  padding: 10px 0;
  /* Optional: Add padding for better aesthetics */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* Optional: Add shadow for better visibility */
}

/* For large screens (LG and above) */
@media (min-width: 992px) {
  .page-title.sticky {
    top: 75px;
    /* Set top value for large screens */
  }
}

/* For medium screens (MD) */
@media (min-width: 768px) and (max-width: 991px) {
  .page-title.sticky {
    top: 68px;
    /* Set top value for medium screens */
  }
}

/* For small screens (SM) */
@media (max-width: 767px) {
  .page-title.sticky {
    top: 65px;
    /* Set top value for small screens */
  }
}

/* Change background color of the accordion header */
.accordion-button {
  background-color: var(--accent-color);
  /* Change to your desired color */
  color: white;
  /* Text color */
  border: 1px solid (--accent-color);
  /* Outline color for the header */
}

.accordion-button:focus {
  box-shadow: none;
  /* Custom focus outline */
}

/* Change background color and border for active accordion button */
.accordion-button:not(.collapsed) {
  background-color: #bbb;
  /* Change to your desired active color */
  color: white;
  /* Text color for active state */
  border: 1px solid var(--accent-color);
  /* Outline color for active header */
}

/* Change background color of the accordion body */
.accordion-body {
  background-color: #f8f9fa;
  /* Change to your desired color */
  color: #333;
  /* Text color inside the body */
  border-top: 0px solid #ccc;
  /* Optional border for separating body */
}

/* ==================================================== */

.banim {
  width: 100%;
  height: 50%;
  object-fit: cover;
}

/* ======================================================= */

.chip {
  display: inline-block;
  padding: 0 0px;
  height: 150px;
  width: 100%;
  font-size: 16px;
  line-height: 50px;
  border-start-start-radius: 75px;
  border-end-start-radius: 75px;
  background-color: #f1f1f1;
  transition: 0.5s ease;
}

.chip:hover {
  background-color: var(--accent-color);
  transform: scale(1.02);
}

.chip:hover h3,
.chip:hover h4 {
  color: white;
}

.chip img {
  float: left;
  margin: 0 20px 0 0px;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(0.4);
  transition: 0.5s ease;
}

.chip:hover img {
  filter: saturate(120%);
  transform: scale(0.9);
}


.chip h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 25px 0 5px 0;
}

.chip h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 20px 0 5px 0;
  padding-right: 20px;
}

/* For small screens (SM) */
@media (max-width: 767px) {
  .chip h3 {
    font-size: 16px;
  }

  .chip h4 {
    font-size: 13px;
  }

  section,
  .section {
    padding: 0px 0;
  }

  .nav {
    justify-content: space-around;
  }
}

.icosize {
  font-size: 40px;
  color: var(--accent-color);
  /* Change to your desired color */
}

/* ======================================================================= */

.whychoose p {
  margin-bottom: 0px;
}

.clink {
  transition: 0.3s;
}

.clink:hover {
  transform: scale(1.07);
}

.clink a {
  color: #444;
}

/* ================================================================================= */

.tablink {
  width: 350px;
  height: 50px;
  border: 1px solid #333;
}

.skills .content {
  margin-top: 0px;
}

.skills section,
.section {
  padding: 0px;
}

.points h6 {
  margin-top: 15px;
  font-style: italic;
  text-decoration: underline;
}

/* ============================================================================ */

.featured {
  margin-top: -150px;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
}

@media (max-height: 768px),
(max-width: 1024px) {
  .featured {
    margin-top: 0;
  }
}

.featured-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}

.featured-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.featured-item .icon {
  margin-bottom: 10px;
}

.featured-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.featured-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.featured-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.featured-item:hover h4 a,
.featured-item:hover .icon i,
.featured-item:hover p {
  color: var(--contrast-color);
}

.featured-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* =============================================================================================================== */

.member-info h6 {
  font-size: small;
  font-style: italic;
}

/* ================================================================================================================= */

.team.rightborder {
  transition: 0.5s ease;
}

.team .team-member .pic {
  float: left;
  margin: 0 20px 0 0px;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  object-fit: cover;
  /* filter: sepia(1); */
  transition: 0.5s ease;
}

.team .rightborder:hover .pic {
  filter: sepia(0);
  /* border-radius: 0%; */
  transform: scale(1.4);
  border-top-left-radius: 0%;
  border-bottom-left-radius: 0%;
  border-top-right-radius: 0%;
  border-bottom-right-radius: 20%;
}

.team .rightborder:hover {
  border-right: var(--accent-color) solid 10px;
}

/* ==================================================================================================================== */

.blog-posts .baro {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 0px;
  height: 100%;
  width: fit-content;
  object-fit: cover;
}

.blog-posts .baro:hover {
  transform: translateY(5px);
}

.picol {
  width: 100%;
  height: auto;
  object-fit: cover;
}


/* ==================================================================================================================== */

/* ==================================================================================================================== */

.round {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.blog-posts article {
  padding: 5px 5px 5px 5px;
}

.blog-posts .left p {
  text-align: right;
  padding: 0px 30px 0px 0px;
}

.blog-posts .right p {
  text-align: left;
  padding: 0px 0px 0px 30px;
}

.round {
  background-color: var(--accent-color);
  color: #f1f1f1;
  font-weight: bold;
}

.blog-posts article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-posts .left p {
  text-align: right;
  padding: 0px 30px 0px 0px;
}

.contento li:hover b {
  color: var(--accent-color);
  cursor: pointer;
  transition: 0.3s ease;
}

.contento li:hover {
  transform: scale(1.5);
}

.contento:hover {
  cursor: pointer;
}

.contento li {
  list-style: none;
}

.blog-posts .contento article {
  padding: 40px 20px 5px 0px;
}

/* ======================================================================================================================== */

ul.list-unstyled {
  padding-left: 0;
  margin-top: 30px;
  margin-left: 15px;
}

ul.list-unstyled li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

ul.list-unstyled li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  margin-right: 20px;
}

ul.list-unstyled li i {
  margin-right: 8px;
  font-size: 20px;
}

ul.list-unstyled li .social a:hover {
  background: #007bff;
  transition: color 0.3s ease;
}

/* ================================================================================================================================ */

.temia {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

.temia:hover {
  background-color: rgb(255, 240, 240);
  border: solid 1px #ffb4a7;
}

.icons {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  margin-left: -40px;
}

.iconso {
  margin-left: -40px;
  margin-top: -15px;
}

.icons li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
}

.icons a {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--nav-color);
  padding: 10px;
  margin-left: 10px;
}

.icons span {
  font-size: 14px;
  color: var(--nav-color);
  padding-left: 20px;
}

.icons li:hover a {
  background: var(--accent-color);
  color: #f1f1f1;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 100%);
}

.icons li:hover span {
  color: var(--accent-color);
}

.icons:hover {
  color: var(--accent-color);
}

/* ======================================================================================= */

.btned {
  background: #ffffff;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  /* display: inline-block; */
  border-radius: 50px;
  transition: 0.5s;
  margin-left: 25px;
  animation: fadeInUp 1s both 0.4s;
  padding: 5px 40px;
  /* position: absolute;
  right: 30px; */
}

.btned:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: none;
}