@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Desktop styles (default) */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 3vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(20, 20, 20, 0.45);
    box-shadow: 0 2px 24px rgba(0,0,0,0.12);
    backdrop-filter: blur(18px) saturate(1.5);
    z-index: 1000;
    border-bottom: 1.5px solid rgba(255,255,255,0.08);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    flex-direction: row;
    gap: 2.2rem;
    align-items: center;
    transition: all 0.3s;
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

nav a, .resume-btn {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.03em;
    font-size: 1.1rem;
    opacity: 0.92;
    transition: color 0.2s, background 0.2s, opacity 0.2s;
    margin: 0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: none;
    border: none;
    box-shadow: none;
}

nav a:hover, .resume-btn:hover {
    color: #a8edea;
    opacity: 1;
    background: rgba(255,255,255,0.08);
}

.resume-btn {
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255,255,255,0.13);
    margin-left: 1.5rem;
    font-weight: 600;
}

.hamburger {
    display: none;
    margin-left: 0.7rem;
    background: linear-gradient(90deg, #3a8dde 0%, #a8edea 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(40,40,40,0.18);
    border: none;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

section {
    min-height: 100vh;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#home {
    padding-top: 8rem;
    text-align: center;
}

#home p {
    margin: 0 auto;
}

h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0;
}

h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    opacity: 0;
}

#about {
    text-align: left;
    padding: 0 8rem;
    align-items: center;
    justify-content: center;
}

#about h2 {
    font-size: 5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    opacity: 0;
}

#about p {
    font-size: 1.25rem;
    opacity: 0.85;
    margin: 1rem auto;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
}

.about-text {
    text-align: center;
    margin: 0 auto;
}

p {
    font-size: 1.2rem;
    opacity: 0.7;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}

.profile {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    margin: 2.5rem auto;
    box-shadow: 0 6px 32px rgba(0,0,0,0.18), 0 1.5px 6px rgba(0,0,0,0.12);
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
}

.profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.interests {
    margin-top: 3rem;
    text-align: left;
    width: 100%;
    max-width: 900px;
}

.interests p {
    font-size: 1.1rem;
    opacity: 0.6;
    text-align: left;
    margin: 0.2rem 0;
}

.interests span {
    opacity: 1;
    color: #fff;
    font-weight: 500;
}

.skills-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.skills-container h3 {
    font-size: 2rem;
    margin: 2rem 0 1.5rem;
    text-align: center;
}

.tech-icons {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tech-icons img {
    width: 75px;
    height: 75px;
    transition: transform 0.3s;
    object-fit: contain;
    padding: 12px;
    border-radius: 12px;
    background-color: rgba(40, 40, 40, 0.8);
}

.tech-icons img:hover {
    transform: translateY(-5px);
    background-color: rgba(50, 50, 50, 0.95);
}

/* Specific styling for icons that need white background */
.tech-icons img[alt="Jupyter Notebook"],
.tech-icons img[alt="Google Colab"],
.tech-icons img[alt="Truffle"] {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px;
}

/* Specific styling for Web3.js icon */
.tech-icons img[alt="Web3.js"] {
    background-color: rgba(241, 104, 34, 0.95);
    padding: 8px;
}

/* Custom colors for AI/ML tools */
.tech-icons img[alt="spaCy"] {
    background-color: rgba(9, 163, 213, 0.95);
    padding: 8px;
}

.tech-icons img[alt="NLTK"] {
    background-color: rgba(40, 40, 40, 0.8);
    padding: 10px;
}

.tech-icons img[alt="cuDNN"] {
    background-color: rgba(118, 185, 0, 0.95);
    padding: 8px;
}

/* Custom color for Hardhat */
.tech-icons img[alt="Hardhat"] {
    background-color: rgba(253, 182, 13, 0.95);
    padding: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

footer {
    text-align: center;
    padding: 2rem;
    opacity: 0.7;
    width: 100%;
}

/* --- Responsive Enhancements for All Devices --- */

@media (max-width: 1200px) {
    .skills-container {
        max-width: 98vw;
    }
    section {
        padding: 2.5rem 1.5rem;
    }
    #about {
        padding: 0 2.5rem;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.7rem;
    }
    h2 {
        font-size: 1.7rem;
    }
    .profile {
        width: 180px;
        height: 180px;
    }
    .skills-container {
        max-width: 98vw;
    }
    section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.3rem;
    }
    .profile {
        width: 110px;
        height: 110px;
    }
    .skills-container h3 {
        font-size: 1.1rem;
    }
    .tech-icons img {
        width: 44px;
        height: 44px;
        padding: 6px;
    }
    .languages-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 0.7rem;
        max-width: 98vw;
    }
    .languages-grid img {
        width: 44px;
        height: 44px;
        padding: 6px;
    }
    #about {
        padding: 0 0.5rem;
    }
    #about h2 {
        font-size: 1.3rem;
    }
    #about p {
        font-size: 0.98rem;
    }
    .interests {
        max-width: 98vw;
    }
    .skills-container {
        max-width: 100vw;
    }
    section {
        padding: 1.2rem 0.5rem;
    }
    nav:not(.mobile-top-nav) {
        display: none !important;
    }
    .mobile-top-nav {
        display: flex;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.2rem;
    }
    h2 {
        font-size: 0.95rem;
    }
    .profile {
        width: 70px;
        height: 70px;
    }
    .tech-icons img, .languages-grid img {
        width: 28px;
        height: 28px;
        padding: 2px;
    }
    section {
        padding: 0.3rem;
    }
    #about h2 {
        font-size: 1rem;
    }
    .skills-container h3 {
        font-size: 0.9rem;
    }
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

section, .skills-container, .languages-grid, .tech-icons {
    box-sizing: border-box;
}

.profile img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.skills-container, .languages-grid, .tech-icons {
    width: 100%;
    max-width: 100vw;
    overflow-x: auto;
}

footer {
    word-break: break-word;
    font-size: 0.95rem;
}

/* Add this new class for languages grid */
.languages-grid {
    display: grid;
    grid-template-columns: repeat(4, 90px);
    grid-template-rows: repeat(2, 90px);
    gap: 2.2rem;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem auto;
    width: 100%;
    max-width: 600px;
    padding: 0 1rem;
}

.languages-grid img {
    place-self: center;
    margin: 0 auto;
    width: 80px;
    height: 80px;
    padding: 12px;
    background: rgba(40, 40, 40, 0.8);
}

/* Update mobile view for languages grid */
@media (max-width: 768px) {
    .languages-grid {
        grid-template-columns: repeat(4, 75px);
        grid-template-rows: repeat(2, 75px);
        gap: 1.2rem;
        padding: 0 0.5rem;
    }

    .languages-grid img {
        width: 70px;
        height: 70px;
        padding: 10px;
    }
}

/* Add these styles to your CSS */
#contact {
    position: relative;
    overflow: hidden;
    padding: 4rem;
    /* background: #000; */
    background: transparent;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#contact::before {
    content: none;
}

#contact > * {
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: rgba(40, 40, 40, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-icon i {
    font-size: 1.75rem;
    opacity: 0.9;
    color: #fff;
}

.social-icon:hover {
    transform: translateY(-5px);
    background: rgba(60, 60, 60, 0.95);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

#contact h2 {
    font-size: 5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, #fff 0%, #919191 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 4px 12px rgba(255, 255, 255, 0.1);
}

/* Remove the wave background */
.wave-bg {
    display: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .social-links {
        gap: 1.5rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }

    .social-icon i {
        font-size: 1.5rem;
    }

    #contact h2 {
        font-size: 3.5rem;
    }
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

h1.appear, h2.appear {
    animation: fadeInUp 0.8s ease forwards;
}

#about h2.appear {
    opacity: 1;
}

.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    opacity: 0.55;
}

/* Mobile Top Nav Bar */
.mobile-top-nav {
    display: none;
}
.mobile-dropdown-menu {
    display: none;
}
@media (max-width: 768px) {
    .mobile-top-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 56px;
        background: rgba(20, 20, 20, 0.45);
        box-shadow: 0 2px 24px rgba(0,0,0,0.12);
        border-bottom: 1.5px solid rgba(255,255,255,0.08);
        z-index: 3000;
        align-items: center;
        justify-content: space-around;
        padding: 0 0.5rem;
        display: flex;
        backdrop-filter: blur(18px) saturate(1.5);
    }
    .mobile-top-nav a {
        color: #fff;
        text-decoration: none;
        font-size: 1.08rem;
        font-weight: 500;
        padding: 0.6rem 0.9rem;
        border-radius: 12px;
        transition: background 0.18s, color 0.18s;
        margin: 0 0.08rem;
        background: none;
        letter-spacing: 0.01em;
        display: inline-block;
    }
    .mobile-top-nav a:hover {
        background: #181818;
        color: #a8edea;
    }
    .mobile-top-nav .resume-btn {
        background: #181818;
        color: #fff;
        font-weight: 600;
        font-size: 1.08rem;
        border-radius: 12px;
        box-shadow: none;
        padding: 0.6rem 1rem;
        margin-left: 0.12rem;
        border: none;
        transition: background 0.18s, color 0.18s;
    }
    .mobile-top-nav .resume-btn:hover {
        background: #232323;
        color: #a8edea;
    }
    body, main, section {
        padding-top: 56px !important;
    }
}

.tech-icons.software-tools-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    justify-items: center;
    align-items: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

.tech-icons img, .languages-grid img {
    width: 44px !important;
    height: 44px !important;
    padding: 6px !important;
    object-fit: contain;
}

@media (max-width: 768px) {
    .software-tools-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 2vw !important;
    }
    .software-tools-grid img {
        width: 8vw !important;
        height: 8vw !important;
        max-width: 36px !important;
        max-height: 36px !important;
        padding: 1vw !important;
    }
}
@media (max-width: 600px) {
    .software-tools-grid {
        gap: 1vw !important;
    }
    .software-tools-grid img {
        width: 10vw !important;
        height: 10vw !important;
        max-width: 32px !important;
        max-height: 32px !important;
        padding: 0.5vw !important;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.3rem;
    }
    p, #about p, .interests p {
        font-size: 1.1rem;
    }
    .profile {
        width: 100px;
        height: 100px;
    }
    .tech-icons img, .languages-grid img {
        width: 40px;
        height: 40px;
        padding: 6px;
    }
    .skills-container h3 {
        font-size: 1.1rem;
    }
    .social-icon {
        width: 40px;
        height: 40px;
    }
    .social-icon i {
        font-size: 1.2rem;
    }
    section {
        padding: 0.7rem 0.2rem;
    }
}

@media (max-width: 400px) {
    h1 {
        font-size: 1.3rem;
    }
    h2 {
        font-size: 1rem;
    }
    p, #about p, .interests p {
        font-size: 0.95rem;
    }
    .profile {
        width: 70px;
        height: 70px;
    }
    .tech-icons img, .languages-grid img {
        width: 28px;
        height: 28px;
        padding: 2px;
    }
    .skills-container h3 {
        font-size: 0.9rem;
    }
    .social-icon {
        width: 28px;
        height: 28px;
    }
    .social-icon i {
        font-size: 1rem;
    }
    section {
        padding: 0.3rem 0.1rem;
    }
}

.software-tools-grid img {
    width: 70px !important;
    height: 70px !important;
    padding: 10px !important;
}
.tech-icons.software-tools-grid {
    gap: 1.2rem !important;
}
@media (max-width: 992px) {
    .software-tools-grid img {
        width: 56px !important;
        height: 56px !important;
        padding: 8px !important;
    }
}
@media (max-width: 768px) {
    .software-tools-grid img {
        width: 48px !important;
        height: 48px !important;
        padding: 6px !important;
    }
    .tech-icons.software-tools-grid {
        gap: 0.8rem !important;
    }
}
@media (max-width: 600px) {
    .software-tools-grid img {
        width: 40px !important;
        height: 40px !important;
        padding: 4px !important;
    }
}

@media (max-width: 768px) {
    .languages-grid {
        gap: 0.5rem !important;
    }
    .languages-grid img {
        width: 40px !important;
        height: 40px !important;
        padding: 5px !important;
    }
}
@media (max-width: 600px) {
    .languages-grid {
        gap: 0.3rem !important;
    }
    .languages-grid img {
        width: 32px !important;
        height: 32px !important;
        padding: 3px !important;
    }
}
@media (max-width: 400px) {
    .languages-grid {
        gap: 0.15rem !important;
    }
    .languages-grid img {
        width: 24px !important;
        height: 24px !important;
        padding: 1px !important;
    }
}

.languages-grid img,
.tech-icons:not(.software-tools-grid) img {
    width: 80px !important;
    height: 80px !important;
    padding: 12px !important;
}
@media (max-width: 992px) {
    .languages-grid img,
    .tech-icons:not(.software-tools-grid) img {
        width: 60px !important;
        height: 60px !important;
        padding: 8px !important;
    }
}
@media (max-width: 768px) {
    .languages-grid img,
    .tech-icons:not(.software-tools-grid) img {
        width: 48px !important;
        height: 48px !important;
        padding: 6px !important;
    }
}
@media (max-width: 600px) {
    .languages-grid img,
    .tech-icons:not(.software-tools-grid) img {
        width: 36px !important;
        height: 36px !important;
        padding: 3px !important;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem !important;
    }
    h2 {
        font-size: 1.5rem !important;
    }
    p, #about p, .interests p {
        font-size: 1.15rem !important;
    }
    .profile {
        width: 140px !important;
        height: 140px !important;
    }
    .languages-grid img,
    .tech-icons img,
    .software-tools-grid img {
        width: 60px !important;
        height: 60px !important;
        padding: 8px !important;
    }
}
@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem !important;
    }
    h2 {
        font-size: 1.1rem !important;
    }
    p, #about p, .interests p {
        font-size: 1rem !important;
    }
    .profile {
        width: 100px !important;
        height: 100px !important;
    }
    .languages-grid img,
    .tech-icons img,
    .software-tools-grid img {
        width: 44px !important;
        height: 44px !important;
        padding: 5px !important;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 7vw !important;
    }
    h2 {
        font-size: 5vw !important;
    }
    p, #about p, .interests p {
        font-size: 3.8vw !important;
    }
    .profile {
        width: 28vw !important;
        height: 28vw !important;
        max-width: 180px !important;
        max-height: 180px !important;
    }
    .languages-grid img,
    .tech-icons img,
    .software-tools-grid img {
        width: 10vw !important;
        height: 10vw !important;
        max-width: 70px !important;
        max-height: 70px !important;
        padding: 2vw !important;
    }
    .skills-container, .languages-grid, .tech-icons {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
}
@media (max-width: 600px) {
    h1 {
        font-size: 8vw !important;
    }
    h2 {
        font-size: 6vw !important;
    }
    p, #about p, .interests p {
        font-size: 4vw !important;
    }
    .profile {
        width: 32vw !important;
        height: 32vw !important;
        max-width: 120px !important;
        max-height: 120px !important;
    }
    .languages-grid img,
    .tech-icons img,
    .software-tools-grid img {
        width: 13vw !important;
        height: 13vw !important;
        max-width: 48px !important;
        max-height: 48px !important;
        padding: 1vw !important;
    }
}

@media (max-width: 768px) {
    .skills-container h3,
    section h2,
    #contact h2 {
        font-size: 5vw !important;
        margin-bottom: 2vw !important;
    }
    .social-links {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 4vw !important;
        max-width: 100vw !important;
        overflow-x: auto !important;
    }
    .social-icon {
        width: 12vw !important;
        height: 12vw !important;
        min-width: 40px !important;
        min-height: 40px !important;
        max-width: 60px !important;
        max-height: 60px !important;
    }
    .social-icon i {
        font-size: 6vw !important;
        min-font-size: 18px !important;
        max-font-size: 32px !important;
    }
}
@media (max-width: 600px) {
    .skills-container h3,
    section h2,
    #contact h2 {
        font-size: 6vw !important;
        margin-bottom: 3vw !important;
    }
    .social-links {
        gap: 6vw !important;
        margin-top: 4vw !important;
    }
    .social-icon {
        width: 16vw !important;
        height: 16vw !important;
        min-width: 32px !important;
        min-height: 32px !important;
        max-width: 48px !important;
        max-height: 48px !important;
    }
    .social-icon i {
        font-size: 8vw !important;
        min-font-size: 16px !important;
        max-font-size: 28px !important;
    }
}

@media (max-width: 768px) {
    .languages-grid img,
    .tech-icons img {
        width: 16vw !important;
        height: 16vw !important;
        max-width: 80px !important;
        max-height: 80px !important;
        padding: 2vw !important;
    }
    .social-icon {
        width: 8vw !important;
        height: 8vw !important;
        min-width: 32px !important;
        min-height: 32px !important;
        max-width: 40px !important;
        max-height: 40px !important;
    }
    .social-icon i {
        font-size: 7vw !important;
        min-font-size: 18px !important;
        max-font-size: 32px !important;
    }
}
@media (max-width: 600px) {
    .languages-grid img,
    .tech-icons img {
        width: 20vw !important;
        height: 20vw !important;
        max-width: 80px !important;
        max-height: 80px !important;
        padding: 2vw !important;
    }
    .social-icon {
        width: 12vw !important;
        height: 12vw !important;
        min-width: 32px !important;
        min-height: 32px !important;
        max-width: 44px !important;
        max-height: 44px !important;
    }
    .social-icon i {
        font-size: 9vw !important;
        min-font-size: 18px !important;
        max-font-size: 32px !important;
    }
}

@media (max-width: 768px) {
    .languages-grid img {
        width: min(max(16vw, 60px), 75px) !important;
        height: min(max(16vw, 60px), 75px) !important;
        padding: 2vw !important;
    }
}
@media (max-width: 600px) {
    .languages-grid img {
        width: min(max(20vw, 60px), 75px) !important;
        height: min(max(20vw, 60px), 75px) !important;
        padding: 2vw !important;
    }
}

@media (max-width: 768px) {
    .software-tools-grid img {
        width: min(max(16vw, 60px), 75px) !important;
        height: min(max(16vw, 60px), 75px) !important;
        padding: 2vw !important;
    }
}
@media (max-width: 600px) {
    .software-tools-grid img {
        width: min(max(20vw, 60px), 75px) !important;
        height: min(max(20vw, 60px), 75px) !important;
        padding: 2vw !important;
    }
}

@media (max-width: 768px) {
    .languages-grid img,
    .tech-icons img,
    .software-tools-grid img {
        width: 60px !important;
        height: 60px !important;
        padding: 0 !important;
        background: none !important;
        object-fit: contain !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        margin: 0 !important;
    }
    .languages-grid,
    .tech-icons,
    .software-tools-grid {
        margin: 0 !important;
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .software-tools-grid img {
        width: 44px !important;
        height: 44px !important;
        padding: 8px !important;
        background: rgba(40,40,40,0.8) !important;
        object-fit: contain !important;
        border-radius: 8px !important;
        box-shadow: none !important;
        margin: 0 !important;
    }
}