/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: auto;
    line-height: 1.6;
    cursor: none;
}

/* Custom Cursor - Hide on touch devices */
.cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid #00d4ff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    background: rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(5px);
    display: none;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #00d4ff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    display: none;
}

/* Show cursor only on devices with fine pointer (mouse) */
@media (pointer: fine) {
    .cursor,
    .cursor-dot {
        display: block;
    }
    
    body {
        cursor: none;
    }
}

/* Auto cursor on touch devices */
@media (pointer: coarse) {
    body {
        cursor: auto;
    }
}

/* Network Canvas Background */
#networkCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}

/* Particles Container */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #00d4ff;
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
    opacity: 0.7;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0px) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(200px) scale(0);
        opacity: 0;
    }
}

/* Main Container */
/* Main Container */
.main-container {
    position: relative;
    z-index: 1;
    height: 100vh;
    overflow-y: auto;
    scroll-behavior: smooth;
}

/* Hero Section - Fully Responsive */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 1rem;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

.hero-left {
    flex: 1;
    z-index: 2;
    max-width: 100%;
    min-width: 0;
}

.hero-left h1 {
    font-size: clamp(1.8rem, 7vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00d4ff, #5b73e8, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: slideUpFade 1s ease 0.5s forwards;
    position: relative;
    line-height: 1.1;
    word-break: break-word;
}

/* Glitch Effect */
.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00d4ff, #5b73e8, #00ffc3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glitch-text::before {
    animation: glitch1 2s infinite;
    z-index: -1;
}

.glitch-text::after {
    animation: glitch2 2s infinite;
    z-index: -2;
}

@keyframes glitch1 {
    0%, 14%, 15%, 49%, 50%, 99%, 100% {
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
    15%, 49% {
        transform: translate(-2px, 2px);
        filter: hue-rotate(60deg);
    }
}

@keyframes glitch2 {
    0%, 20%, 21%, 62%, 63%, 99%, 100% {
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
    21%, 62% {
        transform: translate(2px, -2px);
        filter: hue-rotate(120deg);
    }
}

.text-glow:hover {
    text-shadow: 0 0 6px #00d4ff, 0 0 10px #00d4ff;
    transition: text-shadow 0.3s ease;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.5rem);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slideUpFade 1s ease 0.7s forwards;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.highlight {
    color: #00d4ff;
    font-weight: 600;
    display: inline-block;
}

.typewriter-container {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideUpFade 1s ease 0.9s forwards;
    flex-wrap: wrap;
}

.typewriter {
    font-size: clamp(1.2rem, 4vw, 2.8rem);
    font-weight: 700;
    background: linear-gradient(90deg, #ff006e, #5b73e8, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-break: break-word;
    min-height: 1.2em;
}

.cursor-blink {
    font-size: clamp(1.2rem, 4vw, 2.8rem);
    color: #00d4ff;
    animation: blink 1s infinite;
    margin-left: 5px;
}

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

/* Hero Stats - Responsive */
.hero-stats {
    display: flex;
    gap: clamp(1rem, 4vw, 3.5rem);
    opacity: 0;
    animation: slideUpFade 1s ease 1.1s forwards;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 70px;
    flex: 0 0 auto;
}

.stat-number {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 900;
    color: #00d4ff;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.stat-label {
    font-size: clamp(0.7rem, 1.8vw, 1rem);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Profile Container - Fully Responsive */
.hero-right {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(200px, 35vw, 400px);
    height: clamp(200px, 35vw, 400px);
}

.profile-container {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
}

.profile-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    border: 1px solid;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.ring-1 {
    width: 90%;
    height: 90%;
    border-color: #00d4ff;
    animation: ringRotate 20s linear infinite;
}

.ring-2 {
    width: 75%;
    height: 75%;
    border-color: #5b73e8;
    animation: ringRotate 15s linear infinite reverse;
}

.ring-3 {
    width: 60%;
    height: 60%;
    border-color: #ff006e;
    animation: ringRotate 10s linear infinite;
}

@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.profile-pic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    height: 65%;
    border-radius: 50%;
    background: linear-gradient(45deg, #00d4ff, #5b73e8, #ff006e);
    padding: 3px;
    cursor: pointer;
    transition: all 0.5s ease;
    animation: profileFloat 6s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.profile-pic:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.6);
}

@keyframes profileFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}

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

.bcp-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, #0a0a0a 40%, transparent 100%);
    background-color: #111111;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.2rem, 4vw, 3rem);
    color: #00d4ff;
    font-weight: 900;
    text-shadow: 
        0 0 5px #00d4ff,
        0 0 10px #00d4ff,
        0 0 15px #5b73e8;
    box-shadow: 
        0 0 15px rgba(0, 212, 255, 0.5),
        inset 0 0 8px rgba(91, 115, 232, 0.3);
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow:
            0 0 15px rgba(0, 212, 255, 0.5),
            inset 0 0 8px rgba(91, 115, 232, 0.3);
    }
    50% {
        box-shadow:
            0 0 25px rgba(0, 212, 255, 0.8),
            inset 0 0 12px rgba(91, 115, 232, 0.5);
    }
}

.social-orbs {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
}

.social-orbs.active {
    opacity: 1;
    pointer-events: all;
}

.social-orb {
    position: absolute;
    width: clamp(40px, 8vw, 60px);
    height: clamp(40px, 8vw, 60px);
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid #00d4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* Social orb positioning - responsive */
.social-orbs.active .social-orb:nth-child(1) {
    transform: rotate(300deg) translate(clamp(120px, 20vw, 220px)) rotate(-300deg);
}
.social-orbs.active .social-orb:nth-child(2) {
    transform: rotate(330deg) translate(clamp(110px, 18vw, 200px)) rotate(-330deg);
}
.social-orbs.active .social-orb:nth-child(3) {
    transform: rotate(0deg) translate(clamp(100px, 16vw, 180px)) rotate(0deg);
}
.social-orbs.active .social-orb:nth-child(4) {
    transform: rotate(30deg) translate(clamp(95px, 15vw, 170px)) rotate(-30deg);
}
.social-orbs.active .social-orb:nth-child(5) {
    transform: rotate(60deg) translate(clamp(90px, 14vw, 160px)) rotate(-60deg);
}

.social-orb:hover {
    background: linear-gradient(45deg, #00d4ff, #5b73e8);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

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

/* Section Styles - Responsive */
.skills-section,
.projects-section,
.contact-section {
    padding: clamp(40px, 8vw, 100px) clamp(15px, 4vw, 50px);
    position: relative;

}

.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 8vw, 100px);
}

.section-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00d4ff, #5b73e8, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: slideUpFade 1s ease forwards;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    animation: slideUpFade 1s ease 0.2s forwards;
    line-height: 1.4;
}

/* Skills Grid - Fully Responsive */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 4vw, 40px);
    max-width: 1400px;
    margin: 0 auto;
}

.skill-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: clamp(20px, 4vw, 40px);
    position: relative;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00d4ff, #5b73e8, #ff006e, #00d4ff);
    border-radius: 20px;
    z-index: -1;
    animation: borderFlow 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-card:hover::before {
    opacity: 1;
}

@keyframes borderFlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.skill-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.skill-icon {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #00d4ff, #5b73e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.skill-card h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
}

.skill-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
    text-align: center;
}

.skill-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.tech-item {
    padding: 5px 12px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    color: #00d4ff;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tech-item:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.skill-progress {
    position: relative;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #5b73e8, #ff006e);
    border-radius: 5px;
    width: 0;
    transition: width 2s ease;
    position: relative;
    animation: progressGlow 2s infinite alternate;
}

.progress-text {
    position: absolute;
    right: 5px;
    top: -25px;
    color: #00d4ff;
    font-weight: 600;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

@keyframes progressGlow {
    0% { box-shadow: 0 0 5px rgba(0, 212, 255, 0.5); }
    100% { box-shadow: 0 0 15px rgba(0, 212, 255, 0.8); }
}

/* Projects Section - Fully Responsive */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(25px, 5vw, 50px);
    max-width: 1600px;
    margin: 0 auto;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s ease;
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: translateY(30px);
}

.project-card.featured {
    grid-column: span 2;
    background: rgba(0, 212, 255, 0.05);
    border-color: #00d4ff;
}

.project-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(91, 115, 232, 0.1), rgba(255, 0, 110, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-background {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 212, 255, 0.3);
}

.project-content {
    padding: clamp(20px, 4vw, 40px);
    position: relative;
    z-index: 2;
}

.project-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.project-icon {
    font-size: clamp(2rem, 4vw, 2.5rem);
    flex-shrink: 0;
}

.project-card h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #ffffff;
    flex: 1;
    min-width: 0;
    line-height: 1.3;
}

.project-status {
    padding: 5px 12px;
    background: linear-gradient(45deg, #00d4ff, #5b73e8);
    color: #ffffff;
    border-radius: 15px;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    font-weight: 600;
    white-space: nowrap;
}

.project-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.tech-tag {
    padding: 6px 14px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    color: #00d4ff;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tech-tag:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.project-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    white-space: nowrap;
}

.project-link.primary {
    background: linear-gradient(45deg, #00d4ff, #5b73e8);
    color: #ffffff;
}

.project-link.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.project-link:hover {
    transform: translateY(-2px);
}

.project-link.primary:hover {
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
}

.project-link.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Contact Section - Fully Responsive */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(30px, 6vw, 80px);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 4vw, 40px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: clamp(20px, 4vw, 30px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.contact-item:hover {
    transform: translateX(5px);
    border-color: #00d4ff;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.contact-icon {
    width: clamp(45px, 8vw, 60px);
    height: clamp(45px, 8vw, 60px);
    background: linear-gradient(45deg, #00d4ff, #5b73e8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: #ffffff;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #ffffff;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    word-break: break-all;
}

.achievement-highlights {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 4vw, 30px);
}

.achievement-item {
    padding: clamp(20px, 4vw, 30px);
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.achievement-item:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.2);
}

.achievement-icon {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.achievement-item h4 {
    font-size: clamp(1.2rem, 2.8vw, 1.4rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #00d4ff;
    line-height: 1.3;
}

.achievement-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Mobile-Specific Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-left {
        order: 2;
    }
    
    .hero-right {
        order: 1;
        width: clamp(180px, 50vw, 300px);
        height: clamp(180px, 50vw, 300px);
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .project-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .project-status {
        align-self: flex-end;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-details p {
        word-break: normal;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {

    .typewriter-container {
        justify-content: center !important;
        text-align: center !important;
        width: 100%;
      }
    
      .typewriter {
        text-align: center !important;
        width: 100%;
      }
      .cursor-blink {
        display: none !important;
      }
      
    .exp-detail {
        text-align: center;
        white-space: normal;
        word-break: break-word;
      }
    
      .exp-detail br {
        display: none;
      }
    
      .exp-detail span.highlight {
        display: inline !important;
        white-space: nowrap;
        margin-right: 5px;
      }
    .aboutme-section p {
        white-space: normal !important;
        text-align: center;
    }

    .aboutme-section br {
        display: none; /* Hides forced line breaks */
    }

    .aboutme-section .highlight {
        display: inline !important;
        white-space: nowrap;
        margin-right: 5px;
    }



    .projects-section {
        padding: 20px 10px;
        overflow-x: hidden;
        margin-bottom: 120px;
    }

    .projects-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .project-card {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        box-sizing: border-box;
        border-radius: 18px;
        overflow: hidden;
        margin: 0 auto;
    }

    .project-content {
        padding: 0;
    }

    .project-header {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: space-between;
    }

    .project-tech {
        flex-wrap: wrap;
        gap: 8px;
    }

    .project-links {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .project-link {
        justify-content: center;
        font-size: 0.9rem;
        padding: 12px;
    }
   
    .hero-section {
        padding: 0.5rem;
        min-height: 100vh;
    }
    
    .skills-section,
    .projects-section,
    .contact-section {
        padding: 30px 15px;
    }
    
    .hero-subtitle {
        text-align: center;
        line-height: 1.6;
    }
    
    .highlight {
        display: block;
        margin: 0.2rem 0;
    }
    
    .skill-tech-stack,
    .project-tech,
    .project-links {
        justify-content: center;
    }
    
    .social-orbs.active .social-orb:nth-child(1) {
        transform: rotate(300deg) translate(130px) rotate(-300deg);
    }
    .social-orbs.active .social-orb:nth-child(2) {
        transform: rotate(330deg) translate(120px) rotate(-330deg);
    }
    .social-orbs.active .social-orb:nth-child(3) {
        transform: rotate(0deg) translate(110px) rotate(0deg);
    }
    .social-orbs.active .social-orb:nth-child(4) {
        transform: rotate(30deg) translate(105px) rotate(-30deg);
    }
    .social-orbs.active .social-orb:nth-child(5) {
        transform: rotate(60deg) translate(100px) rotate(-60deg);
    }
}

/* Large Screens */
@media (min-width: 1600px) {
    .hero-content {
        gap: 6rem;
    }
    
    .skills-grid,
    .projects-grid {
        gap: 60px;
    }
    
    .section-header {
        margin-bottom: 120px;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 1rem;
    }
    
    .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
    
    .hero-right {
        width: 200px;
        height: 200px;
    }
    
    .profile-pic {
        width: 70%;
        height: 70%;
    }
}
@media (min-width: 481px) and (max-width: 1024px) {
    .projects-grid {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0 20px;
      gap: 30px;
    }
  
    .project-card {
      width: 100%;
      max-width: 700px; /* Or 90vw if you want it dynamic */
      margin: 0 auto;
      border-radius: 20px;
    }
  
    .project-content {
      padding: 20px;
    }
  
    .project-links {
      flex-direction: row;
      justify-content: flex-start;
      flex-wrap: wrap;
    }
  
    .project-link {
      font-size: 1rem;
      padding: 10px 18px;
    }
  }
  @media (max-width: 480px) {
    .achievements-row {
        display: flex;
        flex-wrap: wrap;
        
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }

    .achievements-row .highlight {
        white-space: nowrap;
    }
}

/* Print Styles */
@media print {
    .cursor,
    .cursor-dot,
    #networkCanvas,
    .particles-container {
        display: none;
    }
    
    body {
        background: white;
        color: black;
        cursor: auto;
    }
    
    .main-container {
        overflow: visible;
    }
}


.aboutme-section {
    padding: clamp(40px, 8vw, 100px) clamp(15px, 4vw, 50px);
    position: relative;
    text-align: center;
}

.aboutme-content {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.aboutme-paragraph {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    opacity: 0;
    animation: slideUpFade 1s ease forwards;
}

.aboutme-paragraph:nth-child(1) {
    animation-delay: 0.3s;
}
.aboutme-paragraph:nth-child(2) {
    animation-delay: 0.5s;
}
.education-section {
    padding: clamp(40px, 8vw, 100px) clamp(15px, 4vw, 50px);
    position: relative;
    text-align: center;
}

.education-timeline {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.edu-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    transition: transform 0.3s ease;
    opacity: 0;
    animation: slideUpFade 1s ease forwards;
}

.edu-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.edu-degree {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.edu-institution {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
}

.edu-year {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: rgba(255, 255, 255, 0.6);
    margin: 0.5rem 0;
}

.edu-detail {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: rgba(255, 255, 255, 0.75);
}
.experience-section {
    padding: clamp(40px, 8vw, 100px) clamp(15px, 4vw, 50px);
    position: relative;
    text-align: center;
}

.experience-timeline {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.exp-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    transition: transform 0.3s ease;
    opacity: 0;
    animation: slideUpFade 1s ease forwards;
}

.exp-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.exp-role {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.exp-company {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
}

.exp-year {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: rgba(255, 255, 255, 0.6);
    margin: 0.5rem 0;
}

.exp-detail {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}
.exp-bullets {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.exp-bullets li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.8rem;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.exp-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-size: 1.2em;
    line-height: 1;
    text-shadow: 0 0 6px #00d4ff;
}
.techstack-section {
    padding: clamp(40px, 8vw, 100px) clamp(15px, 4vw, 50px);
    position: relative;
    text-align: center;
}

.techstack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    justify-items: center;
    align-items: center;
}

.techstack-grid img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
    border-radius: 12px;
}

.techstack-grid img:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
}
