/* Theme 04: Modern Glass-Soft (Final Premium Edition)
    Description: Elegant frosted glass effects with soft pastel accents and ultra-smooth shadows.
    */

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

    :root {
        --glass-bg: rgba(255, 255, 255, 0.7);
        --glass-border: rgba(255, 255, 255, 0.4);
        --main-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        --soft-text: #2d3436;
        --dim-text: #636e72;
        --accent-color: #6c5ce7;
        --body-bg: #f0f2f5;
        --card-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    }

    * { 
        margin: 0; padding: 0; box-sizing: border-box; 
        font-family: 'Hind Siliguri', sans-serif; 
    }

    body { 
        background-color: var(--body-bg); 
        background-image: 
            radial-gradient(at 0% 0%, rgba(108, 92, 231, 0.05) 0px, transparent 50%),
            radial-gradient(at 100% 100%, rgba(118, 75, 162, 0.05) 0px, transparent 50%);
        color: var(--soft-text); 
        overflow-x: hidden; 
        width: 100%; 
        line-height: 1.7; 
    }

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

    /* Header & Cover: Soft Artistic Look */
    .header-wrapper { width: 100%; position: relative; }
    .cover-container { 
        width: 100%; height: 380px; 
        position: relative; overflow: hidden; 
        background: var(--main-gradient);
    }
    .cover-photo { 
        width: 100%; height: 100%; object-fit: cover; 
        mix-blend-mode: overlay; opacity: 0.6; filter: blur(2px);
    }
    .cover-overlay { 
        position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
        background: linear-gradient(to bottom, transparent 20%, var(--body-bg) 100%); 
    }

    /* Profile Box: Elevated Glassmorphism */
    .profile-box { 
        position: relative; padding: 0 5%; margin-top: -130px; 
        display: flex; flex-direction: column; align-items: center; text-align: center; z-index: 10; 
    }
    .avatar-wrapper { 
        position: relative; width: 200px; height: 200px; border-radius: 50%; padding: 8px; 
        background: var(--glass-bg); 
        backdrop-filter: blur(10px);
        box-shadow: var(--card-shadow);
        border: 1px solid var(--glass-border);
    }
    .profile-photo { 
        width: 100%; height: 100%; object-fit: cover; border-radius: 50%; 
        border: 4px solid #fff; 
    }
    .status-indicator { 
        position: absolute; bottom: 25px; right: 25px; width: 22px; height: 22px; 
        background: #00d1b2; border: 4px solid #fff; border-radius: 50%; 
        box-shadow: 0 0 15px rgba(0, 209, 178, 0.4);
    }
    .full-name { 
        font-size: 36px; font-weight: 800; margin-top: 25px; color: #1a1a1a; 
        display: flex; align-items: center; gap: 10px; letter-spacing: -0.5px;
    }
    .verified-badge { color: #4834d4; font-size: 26px; }

    /* Bio Box: Simple & Clean */
    .bio-box { 
        text-align: center; font-size: 19px; color: var(--dim-text); 
        max-width: 750px; margin: 15px auto; padding: 10px 5%; 
        font-weight: 400;
    }

    /* Social Icons: Floating Soft Buttons */
    .social-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin: 30px 0; }
    .soc-item { 
        width: 55px; height: 55px; display: flex; justify-content: center; align-items: center; 
        border-radius: 18px; background: #fff; color: var(--accent-color); 
        font-size: 22px; text-decoration: none; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .soc-item:hover { 
        background: var(--accent-color); color: #fff; 
        transform: translateY(-8px) scale(1.1);
        box-shadow: 0 15px 30px rgba(108, 92, 231, 0.3);
    }

    /* Section Cards: Rounded Glass Style */
    .section-card { 
        margin: 30px 5%; padding: 40px; 
        background: var(--glass-bg); 
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-radius: 30px; 
        border: 1px solid var(--glass-border); 
        box-shadow: var(--card-shadow);
        transition: 0.4s;
    }
    .section-card:hover { transform: translateY(-5px); box-shadow: 0 15px 45px rgba(0,0,0,0.08); }
    
    .section-header { 
        display: flex; align-items: center; gap: 15px; margin-bottom: 30px; 
    }
    .section-header i { font-size: 24px; color: var(--accent-color); }
    .section-title { font-size: 22px; font-weight: 800; color: #2d3436; text-transform: capitalize; }

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

    /* Timeline: Minimalist Dots */
    .timeline-item { position: relative; padding-left: 30px; margin-bottom: 35px; border-left: 2px solid #dfe6e9; }
    .timeline-dot { 
        position: absolute; left: -9px; top: 5px; width: 16px; height: 16px; 
        background: #fff; border: 4px solid var(--accent-color); border-radius: 50%; 
    }
    .timeline-item strong { display: block; font-size: 19px; color: #2d3436; font-weight: 700; }
    .timeline-item p { color: var(--dim-text); font-size: 16px; margin-top: 5px; }
    .badge, .year-tag { 
        background: #f1f2f6; padding: 5px 15px; 
        border-radius: 50px; font-size: 12px; color: var(--accent-color); 
        margin-top: 12px; font-weight: 700; display: inline-block;
    }

    /* Work Gallery: Soft Frames */
    .work-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 25px; }
    .work-item { 
        border-radius: 25px; overflow: hidden; background: #fff; 
        transition: 0.5s; box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    }
    .work-item:hover { transform: scale(1.03); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
    .work-img-wrap { width: 100%; height: 240px; position: relative; }
    .work-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
    .work-overlay { 
        position: absolute; inset: 0; background: rgba(108, 92, 231, 0.8); 
        display: flex; justify-content: center; align-items: center; 
        opacity: 0; transition: 0.4s; color: #fff; font-weight: 700;
    }
    .work-item:hover .work-overlay { opacity: 1; }
    .work-item p { padding: 20px; text-align: center; font-weight: 700; color: #2d3436; font-size: 17px; }

    /* Skill Bars: Smooth Round Caps */
    .skill-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .skill-item-new { background: rgba(255,255,255,0.5); padding: 25px; border-radius: 20px; }
    .skill-info { display: flex; justify-content: space-between; font-size: 15px; margin-bottom: 12px; font-weight: 700; }
    .skill-bar-bg { height: 10px; background: #dfe6e9; border-radius: 20px; overflow: hidden; }
    .skill-fill-premium { 
        height: 100%; background: var(--main-gradient); 
        border-radius: 20px;
        animation: fillAnim 2s cubic-bezier(0.1, 0.42, 0.41, 1) forwards;
    }

    /* Action Buttons: Pill Shaped Premium */
    .action-box { display: flex; flex-wrap: wrap; gap: 20px; margin: 40px 5%; }
    .premium-btn { 
        flex: 1; min-width: 250px; padding: 20px; border-radius: 50px; 
        font-weight: 700; text-decoration: none; display: flex; align-items: center; 
        justify-content: center; gap: 12px; font-size: 18px;
        transition: 0.4s;
    }
    .btn-visit { background: #fff; color: var(--accent-color); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
    .btn-call { background: var(--main-gradient); color: #fff; box-shadow: 0 10px 25px rgba(108, 92, 231, 0.3); }
    .premium-btn:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); filter: brightness(1.1); }

    /* Footer: Soft Signature */
    .footer { text-align: center; padding: 60px 5%; margin-top: 50px; }
    .footer b { font-size: 26px; color: #2d3436; letter-spacing: -1px; }
    .credit a { color: var(--accent-color); text-decoration: none; font-weight: 700; }

    /* Animations */
    @keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fillAnim { from { width: 0%; } }
    .animate-up { animation: fadeInUp 1s ease-out forwards; }

    /* Responsive Design */
    @media (max-width: 992px) {
        .dual-grid, .skill-container { grid-template-columns: 1fr; }
        .cover-container { height: 300px; }
    }
    @media (max-width: 600px) {
        .full-name { font-size: 28px; }
        .avatar-wrapper { width: 160px; height: 160px; }
        .section-card { padding: 30px 20px; border-radius: 25px; }
        .premium-btn { min-width: 100%; }
    }