/* Add this CSS to your stylesheet */
.header-btn {
  position: relative;
  display: inline-block;
}

.dropdown {
  position: absolute;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 100;
  text-align: left;
  left: -40px;
  top: calc(100% + 10px);
  border-radius: 8px;
  padding: 8px 0;
  overflow: hidden;

  /* Transition effects */
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.25s ease-out, visibility 0.25s ease-out,
    transform 0.25s ease-out;

  /* Border with gradient */
  border: 1px solid #e0e0e0;
  background-image: linear-gradient(to bottom, #ffffff, #f9f9f9);
}

.dropdown-content {
  color: #333;
  padding: 12px 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.25s ease;
  position: relative;
}

.dropdown-content:hover {
  background-color: #f0f7ff;
  color: #0066cc;
  transform: translateX(5px);
}

.dropdown-content:hover .dropdown-icon {
  transform: scale(1.1);
}

.dropdown-icon {
  font-size: 1.2em;
  margin-right: 12px;
  transition: transform 0.2s ease;
  display: inline-block;
  width: 24px;
  text-align: center;
}

.dropdown-text {
  flex-grow: 1;
}

.header-btn:hover .dropdown {
  opacity: 1;
  visibility: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-5px);
}

/* Add a subtle arrow to the dropdown */
.dropdown:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  z-index: 101;
  filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
}

/* Add a subtle divider between items */
.dropdown-content:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

.active-nav {
  color: #ee4a62 !important;
}


.btn-text-white {
  color: #fff !important;
  background-color: #ee4a62;
  padding: 5px 20px;
  border-radius: 10px;
  margin-top: 10px;
}

/*features link */
.features-link {
  display: flex;
  justify-content: flex-start;
  margin-left: 80px;
}

.features-link ul {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  text-align: left;
}

.features-link ul li a {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.features-link ul li a:hover {
  transform: translateY(-2px);
}


@media (max-width: 768px) {
  .features-link {
    justify-content: center;
    margin-top: 30px;
    margin-left: 0;
  }
}
/*end */
.section-note {
  padding: 20px;
  margin-top: 20px;
  border-radius: 8px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  background-color: #f9f9f9;
  border-left: 4px solid #007BFF;  */
}

.section-note-header {
  font-size: 1.6rem;
  color: #333;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}
/*
.section-note:hover{
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
*/
.isotop-header{
  width: 90%;
  padding-left: 1.5rem; 
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.isotop-header h5 {
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.isotop-header h4 {
  font-size: var(--font-size-b1);
  font-size: 1.3rem;
  color: #000000;
  font-weight: 400;
  line-height: normal;
  padding-top: 1rem;
}

