* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background: linear-gradient(rgba(10, 15, 30, 0.88), rgba(10, 15, 30, 0.88)), 
                url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?q=80&w=1920&auto=format&fit=crop') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

.dashboard-container, .main-content {
    background: transparent !important;
}

.dashboard-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 100vw;
    overflow-x: hidden;
    background-color: #0b0d10;
}

/* ===== HEADER ===== */
.custom-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 15, 30, 0.7);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(0, 210, 255, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    padding: 12px 0;
}

.header-container {
    width: 100%;
    max-width: 100% !important;
    padding: 0 10px;  /* padding kam kiya */
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    flex-wrap: nowrap;  /* YEH CHANGE - wrap nahi hoga */
    row-gap: 0;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
    min-width: 0;
}

.avatar-wrapper {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.header-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 210, 255, 0.8);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-avatar:hover {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.6);
}

.status-dot {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 10px;
    height: 10px;
    background-color: #00ff88;
    border: 2px solid #0a0f1e;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ff88;
}

.header-brand {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #00d2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-subtitle {
    font-size: 0.65rem;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 6px;  /* gap kam kiya */
    margin-left: auto;
    min-width: 0;
    flex-wrap: nowrap;  /* YEH CHANGE - wrap nahi hoga */
}

.header-contact-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    text-decoration: none;
    color: #cbd5e1;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 0;
    white-space: nowrap;
}

.pill-icon {
    font-size: 0.85rem;
}

.header-contact-pill:hover {
    color: #ffffff;
    background: rgba(0, 210, 255, 0.12);
    border-color: #00d2ff;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.3), inset 0 0 10px rgba(0, 210, 255, 0.1);
}

/* ===== BANNER ===== */
.banner-container {
    width: 100%;
    overflow: hidden;
    border-bottom: 2px solid rgba(0, 210, 255, 0.5);
    position: relative;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 210, 255, 0.2);
}

.banner-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    filter: brightness(1.1) drop-shadow(0 0 10px rgba(0, 210, 255, 0.6)) drop-shadow(0 0 20px rgba(127, 255, 212, 0.4));
}

.banner-container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0,210,255,0.2) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
}

.banner-container::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(127,255,212,0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    filter: blur(25px);
    z-index: 1;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 16px;
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    width: 100%;
    max-width: 100%;
}

.profile-avatar-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, #00d2ff, #7fffd4);
    box-shadow: 0 0 25px rgba(0, 210, 255, 0.8), 0 0 45px rgba(127, 255, 212, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.profile-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background-color: #1a1a1a;
}

.profile-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 10px;
    line-height: 1.3;
}

.typewriter-text {
    font-family: 'Sansita Swashed', system-ui;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #00d2ff 0%, #0072ff 50%, #00fff0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 12px rgba(0, 210, 255, 0.4));
    display: inline-block;
}

.typewriter-cursor {
    color: #00d2ff;
    font-weight: 300;
    margin-left: 2px;
    animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.profile-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #00d2ff;
    letter-spacing: 1px;
    margin-top: -2px;
    text-transform: uppercase;
    padding: 0 10px;
}

.profile-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #a0aec0;
    max-width: 650px;
    margin: 5px auto;
    padding: 0 12px;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    max-width: 600px;
    padding: 0 10px;
}

.skill-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 210, 255, 0.3);
    color: #e2e8f0;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.skill-chip:hover {
    border-color: #7fffd4;
    color: #00d2ff;
    box-shadow: 0 0 12px rgba(0, 210, 255, 0.6);
    transform: translateY(-2px);
}

/* ===== TICKER ===== */
.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
    background: rgba(15, 23, 42, 0.8);
    border-top: 1px solid rgba(0, 210, 255, 0.4);
    border-bottom: 1px solid rgba(0, 210, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
    padding: 12px 0;
    white-space: nowrap;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 25px;
    width: max-content;
    animation: scrollTicker 25s linear infinite;
}

.ticker-wrapper:hover .ticker-track {
    animation-play-state: paused;
}

@keyframes scrollTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-radius: 25px;
    flex-shrink: 0;
}

.ticker-logo {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    object-fit: contain;
    display: block;
}

.ticker-item span {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* ===== EDUCATION / EXPERIENCE / PROJECTS ===== */
.education-section {
    width: 100%;
    max-width: 650px;
    margin: 35px auto 15px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 12px;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #00d2ff, #00fff0);
    border-radius: 2px;
}

.education-cards-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.education-card {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 210, 255, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.education-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 210, 255, 0.7);
    box-shadow: 0 12px 25px rgba(0, 210, 255, 0.25);
}

.edu-logo-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    padding: 3px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.edu-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.edu-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    min-width: 0;
}

.edu-university {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    word-break: break-word;
}

.edu-degree {
    font-size: 0.88rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.4;
    word-break: break-word;
}

.edu-badge {
    display: inline-block;
    margin-top: 3px;
    padding: 3px 12px;
    background: rgba(0, 210, 255, 0.12);
    border: 1px solid rgba(0, 210, 255, 0.4);
    color: #00d2ff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.project-link {
    text-decoration: none;
    color: #94a3b8;
    word-break: break-all;
    overflow-wrap: break-word;
    font-size: 0.82rem;
    transition: color 0.2s ease;
    display: inline-block;
    max-width: 100%;
}

.project-link:hover {
    color: #00d2ff;
    text-decoration: underline;
}

.card-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 6px;
    gap: 10px;
    flex-wrap: wrap;
}

.visit-btn {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(0, 210, 255, 0.1);
    color: #00d2ff;
    border: 1px solid rgba(0, 210, 255, 0.5);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
    white-space: nowrap;
}

.visit-btn:hover {
    background: linear-gradient(135deg, #00d2ff 0%, #0052d4 100%);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.6);
}

/* ===== TECHNICAL SKILLS GRID ===== */
.full-width-skills-section {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 12px;
}

.skills-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
    margin-top: 20px;
    box-sizing: border-box;
}

.skills-grid-container .animated-skill-card {
    min-height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(0, 210, 255, 0.25);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-sizing: border-box;
}

.skills-grid-container .animated-skill-card:hover {
    transform: translateY(-6px);
    background: rgba(15, 23, 42, 0.95);
    border-color: #00d2ff;
    box-shadow: 0 0 25px rgba(0, 210, 255, 0.4);
}

.skills-grid-container .skill-icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.skills-grid-container .skill-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 210, 255, 0.4));
}

.skills-grid-container .animated-skill-card span {
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
}

/* ===== SOCIAL CARDS ===== */
.social-section {
    max-width: 750px;
}

.social-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    width: 100%;
}

.social-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.37);
    text-decoration: none;
    color: #ffffff;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.social-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.social-card:hover .social-icon-box {
    transform: scale(1.1) rotate(-5deg);
}

.social-icon-box img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.social-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}

.social-name {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.social-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
}

.social-arrow {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.social-card:hover .social-arrow {
    transform: translate(4px, -4px);
    color: #ffffff;
}

.social-card.linkedin:hover {
    background: rgba(10, 102, 194, 0.12);
    border-color: rgba(10, 102, 194, 0.5);
    box-shadow: 0 15px 30px rgba(10, 102, 194, 0.3);
}

.social-card.instagram:hover {
    background: rgba(225, 48, 108, 0.12);
    border-color: rgba(225, 48, 108, 0.5);
    box-shadow: 0 15px 30px rgba(225, 48, 108, 0.3);
}

.social-card.facebook:hover {
    background: rgba(24, 119, 242, 0.12);
    border-color: rgba(24, 119, 242, 0.5);
    box-shadow: 0 15px 30px rgba(24, 119, 242, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    width: 100%;
    background: rgba(10, 15, 30, 0.95);
    padding: 35px 20px 22px 20px;
    margin-top: 40px;
    backdrop-filter: blur(12px);
    overflow: hidden;
    box-sizing: border-box;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 3px;
    background: linear-gradient(90deg, #00d2ff, #0072ff, #9d00ff, #ff007f, #00d2ff);
    animation: runningBorder 4s linear infinite;
}

@keyframes runningBorder {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    gap: 10px;
}

.footer-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
    margin: 0;
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.6);
    background: linear-gradient(135deg, #ffffff 0%, #00d2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-bio {
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
    max-width: 550px;
    padding: 0 10px;
}

.footer-text {
    color: #64748b;
    font-size: 0.82rem;
    margin-top: 4px;
    margin-bottom: 0;
}

.footer-credit {
    color: #cbd5e1;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
}

.footer-credit .brand-name {
    color: #00d2ff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.star-icon {
    position: absolute;
    right: 20px;
    bottom: 50%;
    transform: translateY(50%);
    width: 20px;
    height: 20px;
    fill: #00d2ff;
}

/* ==========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================== */

/* === TABLET & SMALL LAPTOP === */
@media (max-width: 820px) {
    .header-container {
        padding: 0 16px;
    }
    
    .header-avatar {
        width: 36px;
        height: 36px;
    }
    
    .brand-title {
        font-size: 0.9rem;
    }
    
    .brand-subtitle {
        font-size: 0.6rem;
    }
    
    .profile-avatar-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .profile-title {
        font-size: 1.8rem;
    }
    
    .typewriter-text {
        font-size: 1.6rem;
    }
    
    .profile-subtitle {
        font-size: 0.95rem;
    }
    
    .main-content {
        padding: 35px 14px;
    }
    
    .education-section {
        max-width: 600px;
        padding: 0 10px;
    }
    
    .education-card {
        padding: 14px 16px;
        gap: 14px;
    }
    
    .edu-logo-wrapper {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }
    
    .edu-university {
        font-size: 1.05rem;
    }
    
    .skills-grid-container {
        gap: 14px;
    }
    
    .skills-grid-container .animated-skill-card {
        min-height: 100px;
        padding: 14px 10px;
    }
    
    .social-grid-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.2rem;
    }
}

/* === MOBILE (SMARTPHONES) === */
@media (max-width: 650px) {
    .header-container {
        padding: 6px 8px;
        flex-direction: row;  /* YEH CHANGE - row mein rahega */
        gap: 4px;
        justify-content: space-between;
    }
    
    .header-left {
        margin: 0;
        justify-content: flex-start;
        gap: 6px;
        flex-shrink: 1;  /* Shrink ho sakta hai */
        min-width: 0;
    }
    
    .header-right {
        margin: 0;
        justify-content: flex-end;
        gap: 4px;
        flex-shrink: 1;  /* Shrink ho sakta hai */
        min-width: 0;
    }
    
    .header-brand {
        display: flex;  /* Brand show karega */
        flex-shrink: 1;
        min-width: 0;
    }
    
    .brand-title {
        font-size: 0.7rem;  /* Chota kiya */
    }
    
    .brand-subtitle {
        font-size: 0.5rem;  /* Chota kiya */
    }
    
    .header-contact-pill {
        padding: 4px 8px;
        font-size: 0.6rem;  /* Chota kiya */
        flex: 0 1 auto;  /* Auto width */
        white-space: nowrap;  /* Text wrap nahi hoga */
    }
    
    .header-avatar {
        width: 28px;
        height: 28px;
    }
    
    .status-dot {
        width: 7px;
        height: 7px;
    }
}

/* === VERY SMALL PHONES (360px and below) === */
@media (max-width: 380px) {
    .header-contact-pill.email-pill .pill-text {
        display: none;
    }
    
    .header-contact-pill {
        padding: 5px 10px;
        font-size: 0.68rem;
    }
    
    .header-avatar {
        width: 30px;
        height: 30px;
    }
    
    .brand-title {
        font-size: 0.78rem;
    }
    
    .profile-avatar-wrapper {
        width: 85px;
        height: 85px;
    }
    
    .profile-title {
        font-size: 1.1rem;
    }
    
    .typewriter-text {
        font-size: 1rem;
    }
    
    .profile-subtitle {
        font-size: 0.75rem;
    }
    
    .profile-bio {
        font-size: 0.8rem;
    }
    
    .skill-chip {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
    
    .edu-logo-wrapper {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
    
    .edu-university {
        font-size: 0.9rem;
    }
    
    .edu-degree {
        font-size: 0.78rem;
    }
    
    .skills-grid-container {
        gap: 8px;
    }
    
    .skills-grid-container .animated-skill-card {
        min-height: 80px;
        padding: 10px 6px;
    }
    
    .skills-grid-container .skill-icon-box {
        width: 30px;
        height: 30px;
    }
    
    .skills-grid-container .animated-skill-card span {
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .education-card {
        padding: 12px 10px;
    }
    
    .visit-btn {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    
    .footer-name {
        font-size: 1.1rem;
    }
    
    .footer-bio {
        font-size: 0.78rem;
    }
}