/* PREMIUM PINK ANIMATED GLASSMORPHISM EDITION 
   Theme: Vibrant Pink & Cyber-Glow 
   Requirement: 100% Structure Preserved | 100% Bold Text | A-Z Full Update
*/

@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@700;800&display=swap');

:root {
    /* Color Palette - Vibrant Pink & Purple */
    --bg-main: #0d0108;
    --card-bg: rgba(30, 5, 20, 0.8);
    --accent-pink: #ff007f;
    --accent-purple: #9d00ff;
    --accent-light: #ff85c1;
    --text-white: #ffffff;
    --text-dim: #ffd1e8;
    --border-glow: rgba(255, 0, 127, 0.3);
    --glass-border: rgba(255, 255, 255, 0.12);
}

/* Global Reset & Forced Bold */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Hind Siliguri', sans-serif; 
    font-weight: 800 !important; /* Force all text to be Bold */
}

/* Animated Pink Background */
body { 
    background-color: var(--bg-main); 
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 127, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(157, 0, 255, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #12010a 0%, #050003 100%);
    background-attachment: fixed;
    color: var(--text-white); 
    overflow-x: hidden; 
    width: 100%; 
    line-height: 1.6; 
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding-bottom: 50px; }

/* Header & Cover: Pink Neon Style */
.header-wrapper { width: 100%; position: relative; }
.cover-container { 
    width: 100%; height: 320px; 
    position: relative; overflow: hidden; 
    border-bottom: 4px solid var(--accent-pink);
    background: #1a000e;
    box-shadow: 0 5px 20px rgba(255, 0, 127, 0.3);
}
.cover-photo { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; filter: brightness(0.9) contrast(1.1) saturate(1.3); }
.cover-overlay { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: linear-gradient(to bottom, transparent 0%, var(--bg-main) 100%); 
}

/* Profile Avatar Section */
.profile-box { 
    position: relative; padding: 0 5%; margin-top: -110px; 
    display: flex; flex-direction: column; align-items: center; text-align: center; z-index: 10; 
}
.avatar-wrapper { 
    position: relative; width: 185px; height: 185px; border-radius: 50%; padding: 6px; 
    background: linear-gradient(45deg, var(--accent-pink), var(--accent-purple)); 
    box-shadow: 0 0 35px rgba(255, 0, 127, 0.5);
}
.profile-photo { 
    width: 100%; height: 100%; object-fit: cover; border-radius: 50%; 
    border: 6px solid var(--bg-main); 
}
.status-indicator { 
    position: absolute; bottom: 18px; right: 18px; width: 24px; height: 24px; 
    background: #00ff88; border: 4px solid var(--bg-main); border-radius: 50%; 
    box-shadow: 0 0 15px #00ff88;
}
.full-name { 
    font-size: 34px; margin-top: 15px; color: var(--text-white); 
    display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 0, 127, 0.6);
}
.verified-badge { color: #00f2ff; font-size: 24px; filter: drop-shadow(0 0 5px #00f2ff); }

/* Bio Box: Premium Glass Card */
.bio-box { 
    text-align: center; font-size: 18px; color: var(--text-dim); 
    max-width: 850px; margin: 15px auto; padding: 25px 5%; 
    background: var(--card-bg); 
    backdrop-filter: blur(15px); 
    border: 1px solid var(--glass-border); 
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* Social Icons: Glowing Pink Interaction */
.social-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; margin: 35px 0; }
.soc-item { 
    width: 58px; height: 58px; display: flex; justify-content: center; align-items: center; 
    border-radius: 15px; background: rgba(255, 255, 255, 0.05); color: var(--text-white); 
    font-size: 24px; text-decoration: none; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    border: 1px solid var(--glass-border);
}
.soc-item:hover { 
    background: var(--accent-pink); color: #fff; 
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 0 25px var(--accent-pink);
    border-color: var(--accent-pink);
}

/* Section Cards: Architectural Layout Maintained */
.section-card { 
    margin: 30px 5%; padding: 35px; 
    background: var(--card-bg); 
    backdrop-filter: blur(12px);
    border-radius: 22px; 
    border: 1px solid var(--glass-border); 
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    transition: 0.4s ease;
}
.section-card:hover { 
    border-color: var(--accent-pink);
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(255, 0, 127, 0.2);
}

.section-header { 
    display: flex; align-items: center; gap: 15px; margin-bottom: 25px; 
    border-bottom: 2px solid var(--glass-border); padding-bottom: 15px;
}
.section-header i { font-size: 26px; color: var(--accent-pink); filter: drop-shadow(0 0 5px var(--accent-pink)); }
.section-title { font-size: 24px; color: var(--accent-pink); text-transform: uppercase; letter-spacing: 1.5px; }

/* Layout Grids: Structure Preserved */
.dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin: 0 5%; }

/* Timeline: Pink Neon Path */
.timeline-item { position: relative; padding-left: 35px; margin-bottom: 35px; border-left: 3px solid var(--glass-border); }
.timeline-dot { 
    position: absolute; left: -11.5px; top: 0; width: 20px; height: 20px; 
    background: var(--bg-main); border: 4px solid var(--accent-pink); border-radius: 50%; 
    box-shadow: 0 0 15px var(--accent-pink);
}
.timeline-item strong { display: block; font-size: 20px; color: var(--text-white); margin-bottom: 8px; }
.timeline-item p { color: var(--text-dim); font-size: 16px; }
.badge, .year-tag { 
    background: rgba(255, 0, 127, 0.15); padding: 6px 16px; border: 1.5px solid var(--accent-pink);
    border-radius: 8px; font-size: 13px; color: var(--accent-pink); 
    margin-top: 12px; display: inline-block;
}

/* Work Gallery: Portfolio Pink Glow */
.work-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.work-item { 
    border-radius: 18px; overflow: hidden; background: rgba(255, 255, 255, 0.03); 
    border: 1px solid var(--glass-border); transition: 0.5s ease; 
}
.work-item:hover { 
    transform: scale(1.04); 
    border-color: var(--accent-pink);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}
.work-img-wrap { width: 100%; height: 210px; position: relative; overflow: hidden; }
.work-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.work-item:hover .work-img-wrap img { transform: scale(1.15); }
.work-overlay { 
    position: absolute; inset: 0; background: rgba(255, 0, 127, 0.35); 
    backdrop-filter: blur(5px);
    display: flex; justify-content: center; align-items: center; 
    opacity: 0; transition: 0.4s; color: #fff; font-size: 20px;
}
.work-item:hover .work-overlay { opacity: 1; }
.work-item p { padding: 20px; text-align: center; color: var(--text-white); font-size: 19px; }

/* Skill Bars: Neon Pink Tech */
.skill-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.skill-item-new { background: rgba(255, 255, 255, 0.04); padding: 22px; border: 1px solid var(--glass-border); border-radius: 15px; }
.skill-info { display: flex; justify-content: space-between; font-size: 16px; margin-bottom: 12px; color: var(--accent-pink); }
.skill-bar-bg { height: 12px; background: rgba(0,0,0,0.2); border-radius: 20px; overflow: hidden; border: 1px solid var(--glass-border); }
.skill-fill-premium { 
    height: 100%; background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink)); 
    box-shadow: 0 0 15px var(--accent-pink);
    animation: fillAnim 2.5s cubic-bezier(0.1, 0, 0.2, 1) forwards;
}

/* Action Buttons: Bold Pink Style */
.action-box { display: flex; flex-wrap: wrap; gap: 20px; margin: 40px 5%; }
.premium-btn { 
    flex: 1; min-width: 220px; padding: 20px; border-radius: 15px; 
    text-decoration: none; display: flex; align-items: center; 
    justify-content: center; gap: 12px; font-size: 19px; text-transform: uppercase;
    letter-spacing: 2.5px; transition: 0.4s;
}
.btn-visit { background: transparent; color: var(--accent-pink); border: 3px solid var(--accent-pink); }
.btn-call { background: var(--accent-pink); color: #fff; border: 3px solid var(--accent-pink); }
.premium-btn:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.5);
    filter: brightness(1.2);
}

/* Footer: Pink Tech Signature */
.footer { text-align: center; padding: 60px 5%; border-top: 2px solid var(--glass-border); margin-top: 60px; background: transparent; }
.footer b { color: var(--accent-pink); font-size: 28px; letter-spacing: 3px; text-shadow: 0 0 15px rgba(255, 0, 127, 0.4); }
.credit a { color: var(--text-dim); text-decoration: none; border-bottom: 2px solid var(--glass-border); }
.credit a:hover { color: var(--accent-pink); border-color: var(--accent-pink); }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(45px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fillAnim { from { width: 0%; } }
.animate-up { animation: fadeInUp 0.9s cubic-bezier(0.2, 1, 0.3, 1) forwards; }

/* Responsive Structures */
@media (max-width: 992px) {
    .dual-grid, .skill-container { grid-template-columns: 1fr; }
    .cover-container { height: 260px; }
    .section-card { margin: 25px 4%; padding: 25px 20px; }
}

@media (min-width: 992px) {
    .dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
}

/* Skill Grid Logic */
.skill-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
    gap: 20px;
}
.skill-item-new:last-child:nth-child(odd) { grid-column: 1 / -1; }

/* Elements Protection */
img { pointer-events: none; -webkit-user-drag: none; }
.work-item, .soc-item, .premium-btn { pointer-events: auto; }