body {
    font-family: 'Poppins', sans-serif;
}

#hero {
    width: 100%;
    height: auto;
}

#hero .container {
    padding-top: 72px;
}

.button-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
        align-items: center;
    }

    .btn-learn-more {
        width: 80%;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .btn-learn-more {
        width: 100%;
    }
}

.logo img {
    max-height: 120px;
}

@media (max-width: 991px) {
    #hero {
        height: auto;
        text-align: center;
    }

    #hero .animated {
        -webkit-animation: none;
        animation: none;
    }

    #hero .hero-img {
        text-align: center;
    }

    #hero .hero-img img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .hero-img img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    .hero-img img {
        width: 70%;
    }

    #hero .btn-get-started {
        font-size: 16px;
        padding: 10px 24px 11px 24px;
    }
}

.btn-learn-more {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    position: relative;
    color: #f4f7f8;
    margin-top: 6px;
    background-color: transparent;
    border: none;
    transition: 0.3s;
    line-height: 1;
    text-decoration: none;
}

.btn-learn-more:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    background: linear-gradient(to left, rgb(249, 238, 67), rgb(253, 73, 94));
    z-index: -1;
    padding: 2px;
}

.full_bg {
    background-color: black;
}

.nav-link {
    font-weight: 9200;
}

.font {
    font-size: 2rem;
    font-weight: 800;
}

@media (min-width: 768px) {
    .font {
        font-size: 3rem;
    }
}

@media (min-width: 1280px) {
    .font {
        font-size: 4rem;
    }
}

.animated-text {
    background: linear-gradient(to left, rgb(249, 238, 67), rgb(253, 73, 94));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
}

@media (min-width: 768px) {
    .animated-text {
        font-size: 2rem;
    }
}

@media (min-width: 1280px) {
    .animated-text {
        font-size: 3rem;
    }
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    background: linear-gradient(to right, rgb(249, 238, 67), rgb(253, 73, 94));
    -webkit-background-clip: text;
    color: transparent;
}

.section-title p {
    margin-bottom: 0;
}

.box {
    background-color: #161513;
}

.click-icon {
    position: relative;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    animation: pulse 2s infinite;
}

.click-icon::after {
    content: '➡';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #ff0000;
    animation: bounce 1s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(5px);
    }
}

.fas.fa-eye {
    display: inline-block;
    font-size: 25px;
    line-height: 29px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    position: relative;
    text-decoration: none;
    z-index: 1;
    color: #fff;
}

.fas.fa-eye.small {
    font-size: 20px;
    line-height: 45px;
    width: 45px;
    height: 45px;
    margin: 7px;
}

.fas.fa-eye.mini {
    font-size: 15px;
    line-height: 32px;
    width: 30px;
    height: 30px;
    margin: 7px;
}

.fas.fa-eye.auto-width {
    width: auto;
    height: auto;
    padding: 15px;
}

.fas.fa-eye:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
    box-sizing: content-box;
}

.fas.fa-eye.effect-8 {
    background: rgb(255, 255, 255);
    transition: transform ease-out 0.1s, background 0.2s;
}

.fas.fa-eye.effect-8:after {
    top: 0;
    left: 0;
    padding: 0;
    z-index: -1;
    box-shadow: 0 0 0 2px rgb(255, 255, 255);
    opacity: 0;
    transform: scale(0.9);
}

.fas.fa-eye.effect-8:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(0.93);
    color: #fff;
}

.fas.fa-eye.effect-8:hover:after {
    animation: sonarEffect 1.3s ease-out 75ms;
}

@keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #4a0144, 0 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #4a0144, 0 0 0 10px rgba(255, 255, 255, 0.5);
        transform: scale(1.5);
        opacity: 0;
    }
}

.portfolio-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    height: auto;
}

.card-content {
    background: #232323;
    padding: 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.card-content h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.card-content p {
    margin: 5px 0;
    font-size: 14px;
    color: #bbb;
}

.card-content a {
    position: absolute;
    right: 15px;
    bottom: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.3s;
}

.card-content a:hover {
    transform: scale(1.2);
}

.cta-btn {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 40px;
    transition: 0.5s;
    margin: 10px;
    border: 1px solid transparent;
    border-image: linear-gradient(to left, rgb(249, 238, 67), rgb(253, 73, 94)) 1;
    color: #4e0143;
}

.btn-learn-more:hover {
    color: #ffffff !important;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.timeline {
    width: 100%;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(73, 13, 237, 0) 0%, #490ded 10%, #490ded 90%, rgba(73, 13, 237, 0) 100%);
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 7px;
    width: 20px;
    height: 20px;
    background: linear-gradient(to right, rgb(249, 238, 67), rgb(253, 73, 94));
    border-radius: 50%;
    border: 3px solid #ef6a222b;
}

.timeline-content {
    border-radius: 8px;
    padding: 20px;
    margin-left: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.timeline-header h3 {
    font-size: 25px;
    color: #ffffff;
}

.timeline-header span {
    font-size: 14px;
    color: #4db533;
}

.tag {
    background-color: #4ade80;
    color: #0f172a;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.timeline-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #e2e8f0;
}

.hidden-projects {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hidden-projects[style*="display: block"] {
    opacity: 1;
}

.timeline-item {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logoo {
    width: 50px;
    height: auto;
    margin-right: 15px;
}

.tag {
    background: #869aaf;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .timeline-content {
        flex-direction: column;
        text-align: center;
    }
    .logoo {
        margin: 0 auto 10px auto;
    }
}

.icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.icon {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon img {
    width: 50%;
    height: 50%;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.icon:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.footer {
    background: #111;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-icons a {
    font-size: 20px;
    margin: 0 10px;
    color: white;
}

.footer-icons a:hover {
    color: #ddd;
}

.footer-bottom {
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.7;
}
