
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: Arial, sans-serif;
    padding-top: 80px;
    background-color: #ffffff;
}

.user-menu {
    position: relative;
}

.user-icon {
    width: 40px;
    border-radius: 50%;
    cursor: pointer;
    user-select: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    min-width: 160px;
    z-index: 1;
}

.dropdown-content span, .dropdown-content a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #000;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

#user-menu-btn:hover + .dropdown-content, .dropdown-content:hover {
    display: block;
}

.cta-section {
    height: 100vh;
    background-color: #f9f9f9;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cta-section p {
    font-size: 6rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.5;
    user-select: none;
}

.cta-section .highlight {
    background-color: #f7e047;
    padding: 5px 10px;
    border-radius: 20px;
    line-height: 1.2;
    font-weight: bold;
    user-select: none;
    font-size: 6rem;
}

.cta-btn {
    padding: 15px 30px;
    font: 1.2rem;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 60px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    width: fit-content;
}

#cta-section-btn {
    font-size: 1.4rem;
    padding: 15px 30px;
    margin-top: 40px;
    animation: slideIn 1s ease-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
}

#cta-section-btn:hover {
    background-color: #171717;
}

@media (max-width: 600px) {
    .cta-section {
        padding: 40px 10px;
    }

    .cta-section p:first-child {
        margin-top: 50px;
    }

    .cta-section .highlight {
        font-size: 2.7rem !important;
        border-radius: 10px !important;
    }

    .cta-section p span {
        font-size: 2.7rem;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }

    #cta-section-btn {
        font-size: 1.2rem;
    }
}

@media (orientation: landscape) {
    .cta-section {
        height: 100vh;
    }

    .cta-section p {
        font-size: 5rem !important;
    }

    .cta-section .highlight {
        font-size: 5rem !important;
    }

    .highlight {
        border-radius: 10px !important;
    }

    .cta-btn {
        font-size: 1.2rem;
        padding: 15px 30px;
    }

    #cta-section-btn {
        font-size: 1.4rem;
    }

    .cta-section p {
        margin-left: 100px;
        margin-right: 100px;
    }
}


@media (min-width: 601px) and (max-width: 768px) {
    .cta-section {
        padding: 50px 15px;
    }

    .cta-section p, 
    .cta-section .highlight {
        font-size: 4rem;
    }

    .cta-btn {
        font-size: 1.1rem;
        padding: 12px 25px;
    }

    #cta-section-btn {
        font-size: 1.3rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .cta-section {
        padding: 60px 20px;
    }

    .cta-section p, 
    .cta-section .highlight {
        font-size: 5rem;
    }

    .cta-btn {
        font-size: 1.2rem;
        padding: 15px 30px;
    }

    #cta-section-btn {
        font-size: 1.4rem;
    }
}


.slide-in {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideIn 0.8s ease-out forwards;
}

.slide-in:nth-child(1) {
    animation-delay: 0.2s;
}

.slide-in:nth-child(2) {
    animation-delay: 0.4s;
}

.slide-in:nth-child(3) {
    animation-delay: 0.6s;
}

#cta-section-btn {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideIn 0.8s ease-out forwards;
    animation-delay: 0.8s;
    font-family: 'Ubuntu', sans-serif;
}

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


.tools-section {
    background-color: #fafafa;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tools-section-message {
    margin-top: 60px;
    font-size: 2.5rem;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.tools-section-message.fade-in {
    opacity: 1;
}

.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

#tool-search::placeholder {
    color: #888;
    user-select: none;
}

.search-bar input[type="text"] {
    width: 500px;
    border: 2px solid #ccc;
    border-radius: 50px;
    padding: 10px;
    font-size: 16px;
}

.search-bar input[type="text"]:focus {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
}

#tool-search {
    padding-right: 20px;
}

.search-bar .slash {
    position: absolute;
    right: 540px;
    pointer-events: none;
    border: 1px solid #8e8e8e;
    border-radius: 5px;
    padding: 1px 5px;
}

.search-bar .slash span {
    color: #8e8e8e;
    font-size: 1.2rem;
    font-family: 'Ubuntu', sans-serif;
}

@media screen and (max-width: 601px) {
    .search-bar input[type="text"] {
        width: 100%;
    }
}

.search-bar button {
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    margin-left: 10px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
}

.search-bar button:hover {
    background-color: #333;
}


.search-bar button {
    margin-left: 10px;
}

.search-bar i {
    display: none;
    background-color: #000;
    padding: 8px;
    font-size: 15px;
    color: #fff;
    margin-left: 10px;
    border-radius: 50px;
}

.search-bar i:hover {
    transform: scale(1.2);
    transition: ease-out 0.1s;
    cursor: pointer;
}

#contact-developer {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 60px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: fit-content;
    cursor: pointer;
}

#contact-developer:hover {
    background-color: #2e2e2e;
    transform: none;
}

@media only screen and (max-width: 480px) {
    .search-bar button {
        display: none;
    }

    .search-bar input[type="text"] {
        width: 280px;
    }

    .search-bar i {
        display: flex;
    }
}

#tools-list {
    margin-top: 40px;
}

.highlights-container {
    margin: 110px;
    padding: 50px 20px;
    text-align: center;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 2fr);
    gap: 20px;
    padding: 0 20px;
}

.grid-item {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.grid-item.visible {
    opacity: 1;
    transform: translateY(0);
}
  

@media screen and (min-width: 320px) {
    .tools-section-message {
        font-size: 1.5rem;
    }
    .grid-container {
        grid-template-columns: repeat(4, 1fr);
        padding: 0;
    }
}


@media screen and (min-width: 350px) {
    .tools-section-message {
        font-size: 2.5rem;
    }
    .grid-item {
        padding: 20px 40px;
    }
    
}

.grid-item:hover {
    transform: scale(1.05);
}

.icon-container {
    background-color: transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px auto;
    text-decoration: none;
}

.icon-container img {
    background-color: transparent;
    width: 60px;
    height: 60px;
    user-select: none;
}

.text {
    font-size: 16px;
    color: #333333;
    user-select: none;
    margin: 0;
}

.tools-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grid-container {
    width: 100%;
    max-width: 1200px;
    margin-top: 30px;
} 

.no-underline {
    text-decoration: none;
    color: inherit;
}

.no-underline:hover {
    text-decoration: none;
}

.load-btn {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #000;
    color: #ffffff;
    text-decoration: none;
    margin: 0 auto;
    border-radius: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: fit-content;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
}

@media screen and (min-width: 601px) {
    .grid-item a img {
        width: 60px;
        height: 60px;
    }
    .grid-item {
        padding: 20px 10px;
        align-self: center;
    }
}

@media screen and (max-width: 601px) {
    .no-match-notification p {
        font-size: 1.1rem;
        color: #333;
        margin: 0 auto;
        margin-top: 40px;
    }

    .grid-item p {
        font-size: 1rem;
    }
    .grid-item a img {
        width: 60px;
        height: 60px;
    }
    .grid-item {
        padding: 20px 10px;
        align-self: center;
    }
}

@media screen and (max-width: 601px) {
    .grid-container {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
}


.pricing-section {
    text-align: center;
    padding: 40px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.pricing-section.fade-in {
    opacity: 1;
}
  
.pricing-section h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}
  
.pricing-section p {
    font-size: 1rem;
    margin-bottom: 50px;
    color: #555;
}
  
.cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.card {
    display: flex;
    flex-direction: column;
    background-color: #f0f8ff;
    padding: 20px;
    text-align: left;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    height: 350px;
    position: relative;
    transition: transform 0.3s ease;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #000000;
}

.card .price {
    font-size: 1.5rem;
    color: #000000;
}

.price span {
    font-size: 1.9rem;
    color: #000000;
}

.features #available {
    color: #30b852;
}

.features span {
    color: #30b852;
}

.card .features {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #363636;
    text-align: center;
}

.features h4 {
    margin-bottom: 20px;
}

.card i {
    color: #454545;
    font-size: 1.1rem;
    margin-left: 20px;
    margin-right: 20px;
}

hr {
    height: 1px;
    margin: 20px 25px;
}

.card p {
    margin: 10px 0;
    font-size: 1.1rem;
    color: #535353;
    text-align: left;
}

#card-3 .price p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000000;
}

#plan-btn:hover {
    background-color: #2e2e2e;
    transform: none;
}
#card-1 .cta-btn {
    cursor: default;
    user-select: none;
}
.card .cta-btn {
    display: inline-block;
    padding: 10px 20px;
    align-self: center;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    background-color: #000000;
    transition: all 0.3s ease;
    margin-top: auto;
    margin-bottom: 10px;
}

#card-1 .cta-btn{
    background-color: #727272;
}

#card-1 .cta-btn:hover{
    transform: none;
}

.card .cta-btn:hover {
    background-color: #171717;
    transform: scale(1.1);
}

#card-2 {
    height: 430px;
    width: 320px;
    justify-self: center;
    background-color: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}


@media (max-width: 600px) {
    .pricing-section h1 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    #header-text {
        font-size: 0.9rem;
        margin-bottom: 40px;
    }

    .cards {
        flex-direction: column;
        opacity: 0;
        transition: opacity 1.5s ease-in-out;
    }

    .card {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .cards.fade-in {
        opacity: 1;
    }

    #card-2 {
        width: 100%;
        height: auto;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        background: #f0f8ff;
    }
}

.fa-plus {
    font-size: 1.1rem;
    font-weight: 800;
    margin-left: 8px;
}

.load-btn:hover {
    background-color: #2e2e2e;
}

.grid-item {
    transition: all 0.3s ease;
}

@keyframes identifier {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.no-match-notification {
    font-size: 1.5rem;
    color: #333;
    margin: 0 auto;
    margin-top: 20px;
}

.no-match-notification img {
    width: 300px;
    height: auto;
}

.no-match-notification p {
    margin-top: 20px;
}

.no-match-notification button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 60px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: fit-content;
    cursor: pointer;
}

.cta-btn:hover {
    background-color: #171717;
    transform: scale(1.1);
}

@media only screen and (max-width: 480px) {
    .grid-item {
        height: 150px;
    }

    .search-bar .slash {
        display: none;
    }
}


@media only screen and (max-width: 1200px) {
    .cta-section {
        padding: 40px 10px;
        height: 65vh;
    }

    .cta-section .highlight {
        font-size: 24px;
        border-radius: 5px;
    }

    .cta-section img {
        max-width: 270px;
    }

    .cta-section p {
        font-size: 2rem;
        margin-left: 80px;
        margin-right: 80px;
        margin-bottom: 5px;
    }

    .search-bar .slash {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .cta-section {
        height: 60vh;
        padding: 30px 20px;
    }

    .cta-section img {
        max-width: 170px;
    }

    .cta-section p {
        font-size: 1.8rem;
        margin-left: 50px;
        margin-right: 50px;
        margin-bottom: 5px;
    }

    .cta-section .highlight {
        font-size: 24px;
        border-radius: 5px;
    }

    .search-bar .slash {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .cta-section {
        height: 60vh;
        padding: 20px 15px;
    }

    .cta-section img {
        max-width: 170px;
        margin-top: 14px;
        z-index: 0;
    }

    .cta-section p {
        font-size: 1.5rem;
        margin-top: -90px;
        margin-left: 20px;
        margin-right: 20px;
        z-index: 1;
    }

    .cta-section .highlight {
        font-size: 24px;
        border-radius: 5px;
    }

    .cta-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .search-bar .slash {
        display: none;
    }
}

@media only screen and (max-height: 500px) and (orientation: landscape) {
    .cta-section {
        height: 130vh;
    }

    .search-bar .slash {
        display: none;
    }
}


@media only screen and (max-width: 480px) {
    .tools-section-message {
        font-size: 24px;
    }

    .search-bar .slash {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .tools-section-message {
        font-size: 24px;
    }

    .search-bar .slash {
        display: none;
    }
}