header {
    position: relative;
    z-index: 4;
    width: 100%;
    padding: 1rem;
    position: fixed;
    height: 320px;
    white-space:nowrap;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.header__background {
  position: absolute;
  height: 100%;
  inset: 0;
  z-index: -1;
}

.header__background img {
  height: 100%;
  max-height: 100%;
  width: 100%;
}

.header__mobile-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__content {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.header__content__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.header__cotnent__wrapper__welcome {
  color: var(--light-color);
  font-size: 1.5rem;
}

.header__cotnent__wrapper__welcome__name {
  font-size: 2rem;
}

@media (max-width: 640px) {
  .header__cotnent__wrapper__welcome__name {
    font-size: 1.7rem;
  }
}

.header__cotnent__wrapper__notification {
  position: relative;
  width: max-content;
  padding: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background-color: hsl(211, 100%, 88%, 25%);
  margin-left: auto;
}

.header__cotnent__wrapper__notification span {
  background-color: red;
  position: absolute;
  top: 13px;
  right: 16px;
  width: 6px;
  height: 6px;
  border-radius: 1000px;
}

.header__cotnent__search {
  width: 100%;
  margin-top: 1rem;
  position: relative;
}

.header__cotnent__search svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.header__cotnent__search input {
  background: none;
  background-color: #fff;
  border-radius: 1000px;
  font-size: 1rem;
  padding: 1rem;
  border: none;
  outline: none;
  width: 100%;
  padding-left: 3rem;
  font-weight: regular;
}

@media (max-width: 640px) {
  .header__cotnent__search input {
    font-size: 0.875rem;
  }
}

.note {
    border-radius: 15px;
    background: linear-gradient(281deg, #f2f3fe -3.4%, #dfd6fc 49.88%);
    padding: 1.1rem;
    font-size: 1rem;
    margin-inline: 2rem;
    position: relative;
    max-width: 100%;
    margin-top: 320px;
}

.note p {
  font-size: 0.8rem;
 
}
/*
@media (max-width: 640px) {
  .note {
    padding: 1rem;
  }

  .note p {
    font-size: 0.875rem;
  }
}

@media (max-width: 640px) {
  .note {
    max-width: 100%;
    margin-inline: 2rem;
  }
}
*/
.note p span {
  font-weight: 700;
}

.note img {
  position: absolute;
  bottom: -10px;
  right: -24px;
  width: 74px;
}

.tools {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
 padding-inline-start:1rem;
}

.tools__title {
  font-size: 1.5rem;
  font-weight: 500;
}

.tools__cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.tools__cards__card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: var(--light-color);
  padding: 0.5rem;
  border-radius: 16px;
  background: var(--Color-Foundation-Surface-White, #fff);
  box-shadow: 0px 0px 10px 0px rgba(172, 153, 226, 0.15);
  cursor: pointer;
}

.tools__cards__card__image {
  max-width: 7rem;
  max-height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tools__cards__card__content {
    display: flex;
    flex-direction: column;
    /*  gap: 1rem;*/
    padding-top: 1rem
}

    .tools__cards__card__content h4 {
        font-size: 1.1rem;
        font-weight: 500;
    }

.tools__cards__card__content h4 span {
  font-weight: 700;
}

.tools__cards__card__content p {
  color: var(--neutral-color);
}

.hero1 {
    position: absolute;
    top: -60px;
    left: -20px;
    z-index: 3;
    animation: wave1 6s infinite linear;
}

/*top */
.hero2 {
    position: absolute;
    top: -17px;
    left: -20px;
    z-index: 3;

}

.hero3 {
    position: absolute;
    top: -70px;
    left: -50px;
    z-index: 2;
    animation: wave3 8s infinite linear;
}

@-webkit-keyframes wave1 {
    0% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        -webkit-transform: translateY(5px);
                transform: translateY(5px);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
        opacity: 0.5;
    }
}

@keyframes wave1 {
    0% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
        opacity: 0.5;
    }

    50% {
        -webkit-transform: translateY(5px);
                transform: translateY(5px);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
        opacity: 0.5;
    }
}
 

@keyframes wave3 {
    0% {
        transform: translateY(0);
        opacity:1;
    }

    50% {
        transform: translateY(5px);
        opacity: 0.5;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}



 
.wave-emoji {
    display: inline-block;
    -webkit-animation: wave 2s forwards;
            animation: wave 2s forwards;
    -webkit-transform-origin: 70% 70%;
        -ms-transform-origin: 70% 70%;
            transform-origin: 70% 70%;
}

@keyframes wave {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(14deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    30% {
        transform: rotate(14deg);
    }

    40% {
        transform: rotate(-4deg);
    }

    50% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Tool Card Styles */
.tool-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
    cursor: pointer;
    display: flex;
    gap: 1rem;
    padding: 1rem;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
                        0 2px 4px -2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
                        0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.tool-card:hover {
    -webkit-transform: translateY(-4px);
        -ms-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
                        0 4px 6px -4px rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
                        0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.tool-card__emoji {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F9F8FF;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tool-card__emoji span {
    font-size: 2.5rem;
}

 
.tool-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tool-card__title {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.4;
    display: flex;
    gap: 0.25rem;
    color: #1a1a1a;
}

.tool-card__title-bold {
    font-weight: 700;
}

.tool-card__title-regular {
    font-weight: 400;
}

.tool-card__description {
    margin: 0.5rem 0 0 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.tool-card__arrow {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #4A27C2;
}

.tool-card:hover .tool-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Update tools cards grid layout */
.tools__cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .tool-card {
        flex-direction: row;
        align-items: center;
    }

    .tool-card__emoji {
        width: 60px;
        height: 60px;
    }

    .tool-card__emoji span {
        font-size: 2rem;
    }

    .tools__cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.5rem;
    }
}

/* Notes Filter Styles */
.notes-filter {
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.notes-filter::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Notes Container and List Styles */
.notes-container {
    padding: 1rem;
}

.notes-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.group-title {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    margin: 1rem 0 0.5rem 0;
}

.notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.note-item {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: visible;
    gap: 1rem;
}

.note-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-1px);
    background: linear-gradient(to right, rgba(74, 39, 194, 0.02), rgba(74, 39, 194, 0.05));
}

.note-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.note-item:hover::after {
    opacity: 1;
}

.note-content-wrapper {
    flex-grow: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 1rem;
    margin: -1rem 0 -1rem -1rem;
    max-width: 85%;
}

.note-content {
    flex: 1;
    min-width: 0;
    padding-right: 1rem;
}

.note-description {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.note-date {
    font-size: 0.85rem;
    color: #666;
}

.delete-note-button {
    background: none;
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    margin-left: auto;
}

.delete-note-button:hover {
    opacity: 1;
    background: rgba(255, 68, 68, 0.1);
    transform: scale(1.1);
}

.delete-note-button:active {
    transform: scale(0.95);
}

.delete-note-button svg {
    transition: transform 0.3s ease;
}

.delete-note-button:hover svg {
    transform: rotate(4deg);
}

/* New Note Card Styles */
.new-note-card {
    background: white;
    border-radius: 16px;
    padding: 0.5rem;
    /* margin: 1rem 1rem 2rem 1rem; */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(74, 39, 194, 0.1);
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, rgba(74, 39, 194, 0.02), rgba(74, 39, 194, 0.05));
}

.new-note-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 39, 194, 0.1);
    background: linear-gradient(to right, rgba(74, 39, 194, 0.05), rgba(74, 39, 194, 0.08));
}

.new-note-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.new-note-icon {
    background: rgba(74, 39, 194, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.new-note-card:hover .new-note-icon {
    background: rgba(74, 39, 194, 0.15);
    transform: scale(1.05);
}

.new-note-text h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4A27C2;
}

.new-note-text p {
    margin: 0.25rem 0 0 0;
    font-size: 0.9rem;
    color: #666;
}

 
 

 