@font-face {
    font-family: MontserratAlternates-Regular;
    src: url("assets/MontserratAlternates-Regular.ttf"); }

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

header {
    width: 100%;
    height: 70px;
    position: relative;
    top: 15px;
}

.ribbon {
    width: 650px;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 auto;
    gap: 20px;
}

#pdp-dark {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 0.25s ease;
    user-select: none;
}

#pdp-dark:hover {
    transform:
    rotate(-5deg)
    translateY(-5px)
    scale(1.1);
    cursor: pointer;
}

#namedesc{
    font-family: "Cause", cursive;
    font-optical-sizing: auto;
    transition: opacity 0.15s ease;
}


#name {
    font-family: "Cause", cursive;
    font-optical-sizing: auto;
}

.tilt-card {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: transform 0.25s ease;
}

.tilt-card:hover {
    transform: 
    translateY(-5px)
    scale(1.05);
}

#card1:hover {
    transform: rotate(-5deg)
    translateY(-7px)
    scale(1.05);
}
#card3:hover {
    transform: rotate(5deg)
    translateY(-7px)
    scale(1.05);
}

.icon {
    width: 50%;
    height: auto;
    user-select: none;
}

.icon:hover {
    cursor: pointer;
}

.icons {
    width: 20%;
    height: 100%;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 5px;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#available-div {
    width: auto;
    height: auto;

    font-family: "Cause", cursive;
    font-size: 0.7rem;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 5px;
}

#online-dot {
    width: 10px;
    height: 10px;
    background: green;

    border-radius: 50%;

    animation: online 1.5s infinite;
}

@keyframes online {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1)
    }
}

#hero {
    position: relative;
    width: 700px;
    height: 380px;
    margin-bottom: 3%;
}

#slogan {
    font-size: 3rem;
    font-family: "Handlee", cursive;
    width: 60%;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#desc {
    color: #707070;
    width: 55%;
    text-align: center;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#test{
    height: 10000px;
}

#cv {
    z-index: 9998;
    position: absolute;
    top: 100px;
    width: 600px;
    height: 500px;
    background: white;
    margin: 0 auto;
    border-radius: 7%;
    padding-bottom: 2.5%;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    scrollbar-width: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#cv.show {
    opacity: 1;
    visibility: visible;
}

#cv-ribbon {
    width: 90%;
    height: 10vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    position: relative;
    top: 1.5vh;
    left: 1.5vw;
}

#x-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-left: auto;
    background: #EEEEEE;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

#x-button:hover {
    transform: 
    rotate(90deg)
    scale(1.1);
    background: rgb(218, 216, 216);
    cursor: pointer;
}

#x-svg {
    width: 40%;
    height: auto;
}

#cv-info {
    position: relative;
    top: 25px;
    width: 95%;
    background: #EEEEEE;
    margin: 0 auto;
    border-radius: 50px;
    padding: 50px 40px 40px;
}

.cv-title {
    font-family: "Cause", cursive;
    font-optical-sizing: auto;
    font-size: 1.2rem;
}

.longtext {
    font-family: "Cause", cursive;
    font-optical-sizing: auto;
}

ul{
    padding-left: 20px;
}

#hide-ctl {
    width: 100%;
}

#control {
    width: 650px;
    height: 60px;
    background: whitesmoke;
    box-shadow: 30px 30px 50px rgba(0, 0, 0, 0.2);
    border-radius: 50px;

    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;

    position: fixed;
    bottom: 30px;

    left: 50%;
    transform: translateX(-50%);

    z-index: 9997;
    transition: opacity 0.3s ease;
}

#ctl {
    background: #E0E0E0;
    width: 75%;
    height: 85%;
    border-radius: 50px;
    display: flex;
    margin-left: 7px;
}

.ctl-button {
    border-radius: 50px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ctl-tooltip {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1e;
    color: antiquewhite;
    font-family: "Handlee", cursive;
    font-size: 1rem;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    pointer-events: none;

    opacity: 0;
    translate: 0 6px;
    transition: opacity 0.2s ease, translate 0.2s ease;
}

.icon-link:hover .ctl-tooltip {
    opacity: 1;
    translate: 0 0;
}

.ctl-icon {
    width: 20%;
    height: auto;
    transition: transform 0.2s ease-in-out;
    transform: translateY(0);
}

.icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

#ctc-button {
    width: 28%;
    height: 85%;
    text-decoration: none;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

.ctl-icon:hover {
    transform: 
    rotate(3deg)
    translateY(-5px);
    cursor: pointer;
}

#contact-me {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 50px;
    background: 
    radial-gradient(at 0% 0%, hsla(253, 16%, 25%, 1) 0, transparent 50%), 
    radial-gradient(at 50% 0%, hsla(225, 25%, 22%, 1) 0, transparent 50%), 
    radial-gradient(at 100% 0%, hsla(339, 25%, 22%, 1) 0, transparent 50%), 
    radial-gradient(at 0% 100%, hsla(208, 20%, 24%, 1) 0, transparent 50%), 
    #1a1a1e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 7px;
    transition: transform 0.3s ease-in-out, background 0.4s ease;
    cursor: pointer;
}

.ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, hsla(225, 60%, 50%, 0.9) 0%, hsla(225, 60%, 35%, 0.5) 50%, transparent 80%);
    animation: ripple-expand 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    pointer-events: none;
    z-index: 0;
}

@keyframes ripple-expand {
    from {
        width: 0;
        height: 0;
        opacity: 1;
    }
    to {
        width: 400%;
        height: 400%;
        opacity: 0;
    }
}

#contact-me:hover {
    transform: scale(1.05);
}

#contacText {
    font-family: "Handlee", cursive;
    color: antiquewhite;
    pointer-events: none;
    z-index: 1;
}

#details {
    width: 1300px;
    height: max-content;
    margin: 0 auto;
    padding-bottom: 50px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 100px;
    overflow: hidden;
    background: linear-gradient(to bottom, #f5f5f5, #ffffff);
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    /* box-shadow: inset 0 4px 10px rgba(0,0,0,0.2); */
}

#details-ribbon {
    width: 100%;
    height: 10vh;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    top: 1.5vh;
    text-align: center;
}

.detailsname {
    margin: auto;
    width: 180px;
    background: 
    radial-gradient(at 0% 0%, hsla(253, 16%, 25%, 1) 0, transparent 50%), 
    radial-gradient(at 50% 0%, hsla(225, 25%, 22%, 1) 0, transparent 50%), 
    radial-gradient(at 100% 0%, hsla(339, 25%, 22%, 1) 0, transparent 50%), 
    radial-gradient(at 0% 100%, hsla(208, 20%, 24%, 1) 0, transparent 50%), 
    #1a1a1e;
    border-radius: 50px;
    color: antiquewhite;
    transition: transform 0.3s ease-in-out;
}

.detailsname:hover {
    cursor: pointer;
    transform: scale(1.05);
}

.details-title {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 20px;
    font-size: 1.5rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

#thumbnails {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.track {
    width: max-content;
    display: flex;
    gap: 10px;
}

#track1 {
    animation: scroll-slide 120s linear infinite;
}

#track2 {
    animation: scroll-slide2 120s linear infinite
}

#track3 {
    animation: scroll-slide 60s linear infinite
}

#track1:hover, #track2:hover, #track3:hover {
    animation-play-state: paused;
}

.thumbnail-card {
    height: 225px;
    width: 400px;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.thumbnail-card:hover {
    transform: scale(1.2);
}

.thumbnail {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

@keyframes scroll-slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-slide2 {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

.hr {
    border: none;
    border-top: 2px solid #e0e0e0;
    width: 80%;
    margin: 20px auto;
    opacity: 0.5;
}

#comments {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#trusted {
    width: 450px;
    height: auto;
    margin: 0 auto;
    border-radius: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;

    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease;
}

#trusted:hover {
    cursor: pointer;
    transform: scale(1.1);
}

#trusted-img {
    width: 125px;
    height: auto;
}

#trusted-text {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 5px;
}

#comments-card {
    width: 895px;
    height: 400px;
    background: #F7F7F7;
    box-shadow: inset 0 4px 10px rgba(0,0,0,0.2);
    margin: 0 auto;
    border-radius: 30px;
    display: flex;
    gap: 10px;
    padding: 10px 10px 10px 10px;
    overflow: hidden;
}

.comment {
    width: 285px;
    height: 100%;
    background: #FFFFFF;
    border-radius: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding-top: 10px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;

    min-height: 220px;
}

.comment-ribbon {
    width: 100%;
    height: 75px;
    display: flex;
    gap: 10px;
    align-items: center;
    padding-left: 20px;
}

.comment-ribbon-img {
    height: 100%;
    width: auto;
    border-radius: 50%;
    user-select: none;
    transition: transform 0.25s ease;
}

.comment-ribbon-img:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.comment-text {
    padding-top: 10px;
    width: 80%;
    
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 20px;

    font-family: MontserratAlternates-Regular;
}

.star-icon {
    height: 100%;
    width: auto;
}

.rating {
    height: 30px;
    width: 80%;
    display: flex;
    position: absolute;
    bottom: 60px;
    left: 10%;
}

.comments-track {
    display: flex;
    gap: 10px;
    width: max-content;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}

.comment-img-link {
    height: 100%;
    width: auto;
}

#tools {
    width: 900px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tool {
    width: 650px;
    height: 75px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;

    background: 
    radial-gradient(at 0% 0%, hsla(253, 16%, 25%, 1) 0, transparent 50%), 
    radial-gradient(at 50% 0%, hsla(225, 25%, 22%, 1) 0, transparent 50%), 
    radial-gradient(at 100% 0%, hsla(339, 25%, 22%, 1) 0, transparent 50%), 
    radial-gradient(at 0% 100%, hsla(208, 20%, 24%, 1) 0, transparent 50%), 
    #1a1a1e;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.2);

    display: flex;
    gap: 20px;
    align-items: center;

    padding-left: 15px;
    margin: 0 auto;

    user-select: none;
}


.tool:hover {
    cursor: pointer;
}

.tool-fill {
    position: absolute;
    inset: 0;
    width: 0%;
    background: linear-gradient(
        90deg,
        hsla(253,40%,40%,0.55) 0%,
        hsla(339,40%,35%,0.45) 60%,
        hsla(208,40%,38%,0.3) 100%
    );
    border-radius: 20px;
    transition: width 2.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}

.tool-image {
    height: 85%;
    width: 70px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

#envato-img {
    width: 100%;
    height: auto;
    border-radius: 10px;

}

.tool-desc {
    width: 80%;
    height: 100%;

    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;

}

.tool-text {
    font-family: "Cause", cursive;
    font-optical-sizing: auto;
    color: antiquewhite;
}

#tool-name {
    font-size: 1.3rem;
}

.tool-img {

    border-radius: 10px;

    width: 80%;
    height: 80%;

    display: flex;
    align-items: center;
    justify-content: center;

}

.mastery {
    width: 60px;
    height: 30px;
    border-radius: 30px;

    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);

    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    right: 30px;
    z-index: 2;
}

#FAQ {
    width: 800px;
    height: 600px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}


.FAQ-card {
    font-family: MontserratAlternates-Regular;
    width: 600px;
    height: 75px;
    
    background: linear-gradient(to bottom, #f5f5f5, #ffffff);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    border-radius: 24px;

    display: flex;
    align-items: center;
    gap: 20px;

    padding-left: 30px;
    position: relative;

    transition: transform 0.3s ease;
}

.FAQ-card:hover {
    transform: scale(1.02);
    cursor: pointer;
}

.FAQ-text {
    display: flex;
    align-items: center;

    width: 450px;
    height: auto;
    padding: 15px;

    user-select: none;
}

.FAQ-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;

    position: absolute;
    right: 50px;
    background: #EEEEEE;

    display: flex;
    align-items: center;
    justify-content: center;
}

.FAQ-button:hover {
    background: rgb(218, 216, 216);
    cursor: pointer;
}

.FAQ-button:active .switch-text {
    transform: scale(1.1);
}

.switch-text {
    width: 50%;
    height: 50%;
}

.pricing-scene {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 30px;
    }

    .card {
      position: relative;
      width: 320px;
      backdrop-filter: blur(20px);
      border-radius: 28px;
      border: 1px solid rgba(255, 255, 255, 0.75);
      padding: 2.25rem 2rem 2rem;
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: default;
      z-index: 1;
    }

    .card:after {
        background: radial-gradient(circle, rgba(20,184,166,0.10) 0%, transparent 70%);
    }

    .card:hover {
      transform: translateY(-6px);
      cursor: pointer;
    }


    .badge {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: antiquewhite;
      background: 
    radial-gradient(at 0% 0%, hsla(253, 16%, 25%, 1) 0, transparent 50%), 
    radial-gradient(at 50% 0%, hsla(225, 25%, 22%, 1) 0, transparent 50%), 
    radial-gradient(at 100% 0%, hsla(339, 25%, 22%, 1) 0, transparent 50%), 
    radial-gradient(at 0% 100%, hsla(208, 20%, 24%, 1) 0, transparent 50%), 
    #1a1a1e;;
      border: 1px solid rgba(139,92,246,0.18);
      border-radius: 100px;
      padding: 4px 12px;
      margin-bottom: 1.25rem;
    }

    .plan-name {
      font-size: 26px;
      font-weight: 500;
      color: #1a1040;
      margin: 0 0 4px;
      line-height: 1.2;
      font-family: "Anton", sans-serif;
    }

    .plan-tagline {
      font-size: 13px;
      color: #7c7a8a;
      font-weight: 400;
      margin: 0 0 1.75rem;
    }

    .price-row {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 4px;
    }

    .currency {
      font-size: 30px;
      font-weight: 500;
      line-height: 1;
      padding-top: 4px;
    }

    .amount {
      font-size: 52px;
      font-weight: 300;
      line-height: 1;
      letter-spacing: -2px;
    }

    .billing-note {
      font-size: 12px;
      color: #28272b;
      margin-bottom: 1.75rem;
    }

    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(139,92,246,0.15), transparent);
      margin-bottom: 1.5rem;
    }

    .features {
      list-style: none;
      margin: 0 0 2rem;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13.5px;
      color: #3d3a50;
      font-weight: 400;
      font-family: Cause, cursive;
    }

    .check {
      width: 15px;
      height: 15px;
      background: 
    radial-gradient(at 0% 0%, hsla(253, 16%, 25%, 1) 0, transparent 50%), 
    radial-gradient(at 50% 0%, hsla(225, 25%, 22%, 1) 0, transparent 50%), 
    radial-gradient(at 100% 0%, hsla(339, 25%, 22%, 1) 0, transparent 50%), 
    radial-gradient(at 0% 100%, hsla(208, 20%, 24%, 1) 0, transparent 50%), 
    #1a1a1e;;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .uncheck {
        width: 15px;
        height: 15px;
        background: red;
        border-radius: 50%;
        
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .uncheck svg {
        width: 15px;
        height: 15px;
        stroke: antiquewhite;
        stroke-width: 1;
        fill: none;
    }

    .check svg {
      width: 8px;
      height: 8px;
      stroke: antiquewhite;
      stroke-width: 2.5;
      fill: none;
    }

    .cta-btn {
      width: 100%;
      padding: 13px 0;
      border-radius: 14px;
      background: 
    radial-gradient(at 0% 0%, hsla(253, 16%, 25%, 1) 0, transparent 50%), 
    radial-gradient(at 50% 0%, hsla(225, 25%, 22%, 1) 0, transparent 50%), 
    radial-gradient(at 100% 0%, hsla(339, 25%, 22%, 1) 0, transparent 50%), 
    radial-gradient(at 0% 100%, hsla(208, 20%, 24%, 1) 0, transparent 50%), 
    #1a1a1e;
      color: antiquewhite;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.02em;
      border: none;
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
      position: relative;
      overflow: hidden;
    }

    .cta-btn::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 50%;
      background: linear-gradient(180deg, rgba(255,255,255,0.12), transparent);
      border-radius: 14px 14px 0 0;
    }

    .cta-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(14, 3, 33, 0.35), 0 1px 0 rgba(178, 142, 142, 0.18) inset;
    }

    .cta-btn:active {
      transform: translateY(0);
    }

#pricing-ribbon {
    width: 100%;
    height: 10vh;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    top: 1.5vh;
    text-align: center;
}


.pricing-title {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-size: 1.5rem;
}

#price {
    padding-top: 100px;
    width: 100%;
    height: 1000px;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

#CONTACT {
      width: 560px;
      height: 100%;
      height: 100%;
      padding: 4rem 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 25px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    }

    .section-title {
      font-family: 'Handlee', cursive;
      font-size: 36px;
      font-weight: 600;
      color: #111111;
      margin-bottom: 0.75rem;
    }
 
    .started-text > p {
      font-size: 15px;
      color: #000000;
      margin-bottom: 1.75rem;
      opacity: 0.9;
    }
 
    .started-text ul {
      list-style: none;
    }
 
    .e-item {
      border-bottom: 0.5px solid #e5e5e5;
      overflow: hidden;
      cursor: default;
    }
 
    .e-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.875rem 0;
      font-size: 15px;
      color: #2d2929;
      transition: color 0.2s ease;
          font-family: MontserratAlternates-Regular;

    }
 
    .e-item:hover .e-head {
      color: #000000;
    }
 
    .e-arrow {
      font-size: 16px;
      font-weight: 300;
      color: #cccccc;
      transition: transform 0.3s ease, color 0.2s ease;
      line-height: 1;
    }
 
    .e-item:hover .e-arrow {
      transform: rotate(45deg);
      color: #111111;
    }
 
    .e-body {
      max-height: 0;
      overflow: hidden;
      font-size: 13px;
      color: #aaaaaa;
      line-height: 1.6;
      transition: max-height 0.35s ease, padding 0.3s ease;
      padding: 0;
        font-family: MontserratAlternates-Regular;

    }
 
    .e-item:hover .e-body {
      max-height: 80px;
      padding-bottom: 0.875rem;
    }
 
    .optional {
      font-size: 11px;
      color: #cccccc;
      margin-left: 6px;
    }

#C-info {
      width: 650px;
      height: 100%;
      padding: 33px 50px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 25px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    }

#contact-info {
    width: 100%;
    height: 100%;
  position: relative;
}

.contactme-title {
    width: 100%;
    height: 100%;
    font-size: 1.5rem;
}

.form-wrapper {
  width: 100%;
  height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      
    }
 
    .form-group {
      margin-bottom: 1.25rem;
    }
 
    label {
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.1em;
      margin-bottom: 8px;
      margin-left: 10px;
      text-transform: uppercase;
      font-family: MontserratAlternates-Regular;
    }
 
    input[type="text"],
    input[type="email"],
    select,
    textarea {
      width: 90%;
      border-radius: 10px;
      border: none;
      border-bottom: 1px solid #ccc;
      outline: none;
      background: transparent;
      padding: 14px 16px;
      font-size: 15px;
      transition: border-color 0.2s;
      font-family: "Cause", cursive;
        }
 
    input::placeholder,
    textarea::placeholder {
      color: #6b6685;
    }
 
    input:focus,
    select:focus,
    textarea:focus {
      border-color: #7c6fcd;
    }
 
    .select-wrapper {
      position: relative;
    }
 
    select {
      cursor: pointer;
    }
 
    select:valid {
      color: black;
    }
 
    textarea {
      resize: vertical;
      min-height: 80px;
    }
 
    .form-group:last-of-type {
      margin-bottom: 1.75rem;
    }
 
    .btn-submit {
      width: 80%;
      background: 
    radial-gradient(at 0% 0%, hsla(253, 16%, 25%, 1) 0, transparent 50%), 
    radial-gradient(at 50% 0%, hsla(225, 25%, 22%, 1) 0, transparent 50%), 
    radial-gradient(at 100% 0%, hsla(339, 25%, 22%, 1) 0, transparent 50%), 
    radial-gradient(at 0% 100%, hsla(208, 20%, 24%, 1) 0, transparent 50%), 
    #1a1a1e;;
      border: none;
      border-radius: 12px;
      padding: 17px;
      margin: 0 auto;
      font-size: 16px;
      font-weight: 600;
      color: antiquewhite;
      cursor: pointer;
      letter-spacing: 0.02em;
      transition: background 0.2s;
      transition: transform 0.3s ease;
    }

    .btn-submit:hover {
        box-shadow: 0 8px 24px rgba(14, 3, 33, 0.35), 0 1px 0 rgba(178, 142, 142, 0.18) inset;
        transform: translateY(-4px);
    }

    #contactme-ribbon { 
    margin: 0 auto;
    position: relative;
    top: 1.5vh;
    text-align: center;
    }

    #lastdiv {
        width: 100%;
        display: flex;
        gap: 50px;
        flex-direction: column;
    }
    #contactme {
        display: flex;
        height: 610px;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }

    .icons2 {
        display: none;
    }

.input-error {
  border-bottom: 1px solid #e05555 !important;
  color: #e05555;
}

.input-error::placeholder {
  color: #e0555580;
}

.field-error {
  color: #e05555;
  font-size: 11px;
  font-family: "Cause", cursive;
  letter-spacing: 0.03em;
  margin-top: 5px;
  margin-left: 10px;
  opacity: 0;
  transform: translateY(-4px);
  animation: errorFadeIn 0.2s ease forwards;
}

@keyframes errorFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#e16:hover {
    border: 1px solid black;
}

 #e16-footer {
            border-top: 1px solid #e8e4df;
            background: #fdfcfb;
            padding: 2.8rem 2.5rem 2rem;
            font-family: 'Cause', cursive;
        }
        .e16-footer-inner {
            max-width: 860px;
            margin: 0 auto;
        }
        .e16-footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .e16-footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .e16-avatar-link { display: block; }
        .e16-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #e8e4df;
            transition: border-color 0.2s;
        }
        .e16-avatar:hover { border-color: #b0aab8; }
        .e16-brand-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .e16-brand-name {
            font-size: 15px;
            font-weight: 600;
            color: #1a1a1e;
            letter-spacing: 0.04em;
        }
        .e16-brand-sub {
            font-size: 11px;
            color: #9b96b8;
            letter-spacing: 0.08em;
        }
        .e16-footer-tagline {
            text-align: right;
        }
        .e16-tagline-text {
            font-size: 13px;
            font-weight: 600;
            color: #1a1a1e;
            margin: 0 0 4px;
            letter-spacing: 0.02em;
            text-align: center;
        }
        .e16-tagline-hint {
            font-size: 11px;
            color: #9b96b8;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 5px;
            margin: 0 0 12px;
        }
        .e16-tagline-hint svg {
            color: #b0aab8;
            flex-shrink: 0;
        }
        .e16-cta-btn {
            display: inline-block;
            font-family: 'Cause', cursive;
            font-size: 11px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: #1a1a1e;
            border: 1px solid #c8c3d0;
            border-radius: 30px;
            padding: 8px 20px;
            text-decoration: none;
            transition: background 0.2s, border-color 0.2s, color 0.2s;
        }
        .e16-cta-btn:hover {
            background: #1a1a1e;
            border-color: #1a1a1e;
            color: antiquewhite;
        }
        .e16-footer-divider {
            width: 100%;
            height: 1px;
            background: #e8e4df;
            margin: 2rem 0 1.4rem;
        }
        .e16-footer-bottom {
            text-align: center;
        }
        .e16-copy {
            font-size: 11px;
            color: #a09ca8;
            line-height: 1.8;
            max-width: 580px;
            margin: 0 auto;
            letter-spacing: 0.02em;
        }
        .e16-copy strong {
            color: #7a7585;
        }
        @media (max-width: 580px) {
            #e16-footer { padding: 2rem 1.5rem 1.6rem; }
            .e16-footer-top { flex-direction: column; align-items: center; gap: 1.2rem; }
            .e16-footer-brand { flex-direction: column; align-items: center; text-align: center; }
            .e16-brand-info { align-items: center; }
            .e16-footer-tagline { text-align: center; width: 100%; }
            .e16-tagline-hint { justify-content: center; }
            .e16-cta-btn { display: block; text-align: center; width: 100%; box-sizing: border-box; }
            .e16-footer-divider { margin: 1.4rem 0 1rem; }
        }