

        main {
            margin-top: 80px;
            padding: 0 40px;
        }

       

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #e2e8f0;
    overflow-x: hidden;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #06b6d4, #0ea5e9);
    width: 0%;
    z-index: 1000;
    transition: width 0.1s ease;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(203, 213, 225, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #06b6d4, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav a {
    color: #cbd5e1;
    text-decoration: none;
    margin: 0 20px;
    transition: color 0.3s;
    cursor: pointer;
    font-size: 14px;
}

nav a:hover {
    color: #06b6d4;
}

/* Hero Section - Most important visual part */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #06b6d4;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #06b6d4, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    min-height: 60px;
}

.hero .subtitle {
    font-size: 24px;
    color: #94a3b8;
    margin-bottom: 10px;
    min-height: 35px;
    display: inline-block;
}

.hero .location {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 30px;
}

/* Soft Blinking Cursor (recommended version) */
.soft-cursor {
    display: inline-block;
    width: 2.5px;
    height: 1.1em;
    background-color: #06b6d4;
    opacity: 0.7;
    margin-left: 3px;
    vertical-align: middle;
    animation: softBlink 1.4s infinite;
}

@keyframes softBlink {
    0%, 100%   { opacity: 0.35; }
    50%        { opacity: 0.9; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 24px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Card hover effects (experience & project cards) */
.experience-card:hover,
.project-card:hover,
.skill-category:hover,
.education-card:hover {
    border-color: #06b6d4;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.2);
    transform: translateY(-5px);
    transition: all 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .hero .subtitle { font-size: 18px; }
    main { padding: 0 20px; }
    header { padding: 15px 20px; }
    nav a { margin: 0 10px; font-size: 12px; }
    .projects-grid,
    .skills-grid,
    .education-grid { grid-template-columns: 1fr; }
}
       

        .typing-cursor {
            display: inline-block;
            width: 2px;
            height: 1em;
            background: #06b6d4;
            margin-left: 5px;
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }


        .about-summary {
            max-width: 600px;
            font-size: 16px;
            line-height: 1.8;
            color: #cbd5e1;
            margin-bottom: 30px;
        }

        .social-links {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 30px;
        }

        .social-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #06b6d4;
            color: #06b6d4;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 18px;
        }

        .social-btn:hover {
            background: #06b6d4;
            color: #0f172a;
            transform: translateY(-5px);
        }

        /* Sections */
        section {
            margin: 80px 0;
        }

        .section-title {
            font-size: 36px;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid rgba(6, 182, 212, 0.3);
        }

        /* Experience Card */
        .experience-card {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.8));
            border: 1px solid rgba(6, 182, 212, 0.2);
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 30px;
            transition: all 0.3s;
        }

        .experience-card:hover {
            border-color: #06b6d4;
            box-shadow: 0 0 30px rgba(6, 182, 212, 0.2);
            transform: translateY(-5px);
        }

        .exp-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 20px;
        }

        .exp-title {
            font-size: 20px;
            font-weight: 600;
            color: #06b6d4;
        }

        .exp-period {
            font-size: 14px;
            color: #64748b;
        }

        .exp-badge {
            display: inline-block;
            background: rgba(6, 182, 212, 0.1);
            color: #06b6d4;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            margin-top: 8px;
        }

        .exp-points {
            margin: 20px 0;
        }

        .exp-point {
            color: #cbd5e1;
            margin: 12px 0;
            padding-left: 20px;
            position: relative;
        }

        .exp-point:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #06b6d4;
        }

        .tech-stack {
            margin-top: 20px;
        }

        .tech-label {
            font-weight: 600;
            color: #94a3b8;
            margin-bottom: 10px;
        }

        .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tech-tag {
            background: rgba(6, 182, 212, 0.1);
            color: #06b6d4;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 13px;
            border: 1px solid rgba(6, 182, 212, 0.3);
        }

        /* Projects Section */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .project-card {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9));
            border: 1px solid rgba(51, 65, 85, 0.8);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.5s;
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }

        .project-card:hover {
            border-color: #06b6d4;
            box-shadow: 0 0 40px rgba(6, 182, 212, 0.3);
            transform: translateY(-10px);
        }

        .project-header {
            padding: 25px;
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(14, 165, 233, 0.1));
        }

        .project-icon {
            font-size: 32px;
            margin-bottom: 12px;
        }

        .project-title {
            font-size: 20px;
            font-weight: 600;
            color: #06b6d4;
            margin-bottom: 5px;
        }

        .project-category {
            font-size: 12px;
            color: #64748b;
        }

        .project-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .project-desc {
            color: #cbd5e1;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .features-label {
            font-weight: 600;
            color: #94a3b8;
            margin-top: 15px;
            margin-bottom: 10px;
        }

        .features-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .feature-tag {
            background: rgba(251, 191, 36, 0.1);
            color: #fbbf24;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 12px;
        }

        .tech-label-proj {
            font-weight: 600;
            color: #94a3b8;
            margin: 15px 0 10px 0;
        }

        .tech-tags-proj {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 15px;
        }

        .tech-tag-proj {
            background: rgba(6, 182, 212, 0.1);
            color: #06b6d4;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 12px;
            border: 1px solid rgba(6, 182, 212, 0.3);
        }

        .backend-info {
            display: none;
            background: rgba(6, 182, 212, 0.05);
            padding: 15px;
            border-radius: 10px;
            margin-top: 15px;
            font-size: 13px;
            color: #cbd5e1;
            border-left: 3px solid #06b6d4;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .backend-info.active {
            display: block;
        }

        .backend-label {
            font-weight: 600;
            color: #06b6d4;
            margin-bottom: 8px;
        }

        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #06b6d4;
            text-decoration: none;
            margin-top: auto;
            padding-top: 15px;
            border-top: 1px solid rgba(6, 182, 212, 0.2);
            transition: all 0.3s;
            cursor: pointer;
        }

        .project-link:hover {
            color: #0ea5e9;
        }

        /* Skills Section */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .skill-category {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.8));
            border: 1px solid rgba(6, 182, 212, 0.2);
            border-radius: 16px;
            padding: 25px;
            transition: all 0.3s;
        }

        .skill-category:hover {
            border-color: #06b6d4;
            box-shadow: 0 0 30px rgba(6, 182, 212, 0.2);
        }

        .skill-category-title {
            font-size: 18px;
            font-weight: 600;
            color: #06b6d4;
            margin-bottom: 15px;
        }

        .skill-item {
            color: #cbd5e1;
            margin: 10px 0;
            padding-left: 15px;
            position: relative;
        }

        .skill-item:before {
            content: "◆";
            position: absolute;
            left: 0;
            color: #06b6d4;
            font-size: 10px;
        }

        /* Education Section */
        .education-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .education-card {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.8));
            border: 1px solid rgba(6, 182, 212, 0.2);
            border-radius: 16px;
            padding: 30px;
            transition: all 0.3s;
            text-align: center;
        }

        .education-card:hover {
            border-color: #06b6d4;
            box-shadow: 0 0 30px rgba(6, 182, 212, 0.2);
            transform: translateY(-5px);
        }

        .edu-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .edu-degree {
            font-size: 18px;
            font-weight: 600;
            color: #06b6d4;
            margin-bottom: 8px;
        }

        .edu-status {
            font-size: 13px;
            background: rgba(34, 197, 94, 0.1);
            color: #4ade80;
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 15px;
        }

        .edu-desc {
            color: #cbd5e1;
            font-size: 14px;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 40px;
            margin-top: 80px;
            border-top: 1px solid rgba(6, 182, 212, 0.2);
            color: #64748b;
        }

        .footer-title {
            font-size: 18px;
            color: #06b6d4;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .footer-subtitle {
            font-size: 14px;
            margin-bottom: 15px;
        }

        .footer-links {
            font-size: 14px;
        }

        .footer-links a {
            color: #06b6d4;
            text-decoration: none;
            margin: 0 15px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #0ea5e9;
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            font-size: 24px;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-10px); }
        }

        @media (max-width: 768px) {
            main {
                padding: 0 20px;
            }

            header {
                padding: 15px 20px;
            }

            nav a {
                margin: 0 10px;
                font-size: 12px;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero .subtitle {
                font-size: 18px;
            }

            .section-title {
                font-size: 28px;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .skills-grid {
                grid-template-columns: 1fr;
            }

            .education-grid {
                grid-template-columns: 1fr;
            }
        }
        
  .soft-cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    background: #06b6d4;
    margin-left: 4px;
    vertical-align: middle;
    animation: softBlink 1.5s infinite;
}

@keyframes softBlink {
    0%, 100%   { opacity: 0.4; }
    50%        { opacity: 0.95; }
}