@media (min-width: 992px) {
    .header-cta-mobile {
        display: none;
    }
    .header-bottom-mobile {
        display: none;
    }
}

@media (max-width: 992px) {
    .whatsapp-btn {
        display: none;
    }
    .navbar .nav-links {
        display: none;
    }
    .navbar .nav-wrapper{
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        /* gap: 7px; */
    }
    .footer-section{
        display: none;
    }

    .header-cta-mobile {
    /* position: fixed; */
    top: 14px;
    right: 14px;
    display: flex;
    gap: 14px;
    padding: 8px 20px;
    background: #111111;
    border-radius: 0px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    /* box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.6); */
    /* border: 1px solid rgba(255, 255, 255, 0.08); */
    /* z-index: 9999; */
    width: auto;
    justify-content: center;
    width: 100%;
}

.header-cta-mobile .cta-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.25s ease;
    color: #fff;
}

/* icon background colors like screenshot */
.header-cta-mobile .whatsapp {
    background: #25D366;
}

.header-cta-mobile .call {
    background: #007bff;
}

.header-cta-mobile .zoom {
    background: #ff2d55;
}

.header-cta-mobile .email {
    background: #2f2f2f;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* hover premium effect */
.header-cta-mobile .cta-icon:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0px 10px 22px rgba(0, 0, 0, 0.6);
}

.header-bottom-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    padding: 8px 0;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.4);
    z-index: 9999;
}

.header-bottom-mobile ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-bottom-mobile ul li {
    text-align: center;
}

.header-bottom-mobile ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #aaa;
    font-size: 12px;
    transition: 0.3s ease;
}

.header-bottom-mobile ul li a i {
    font-size: 18px;
    margin-bottom: 4px;
}

.header-bottom-mobile ul li a:hover,
.header-bottom-mobile ul li a.active {
    color: #ffffff;
}

.hero .stat-box {
    flex: 1;
}
.hero .stat-box h3 {
    font-size: 25px;
}
.hero .hero-content h2 {
    font-size: 50px;
}
.skill-page .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .resume-main {
    flex-direction: column;
}

.contact-info {
    flex-wrap: wrap;
}
.resume-header {
   flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
}
.cta-icon.resume {
    background: #ffffff;
    color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-icon.resume i {
    color: #000000;
}

}

@media (max-width: 767px) {
    .skill-page .skills-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 14px;
        margin-bottom: 50px;
    }
}