 
  :root {
            --bg-dark: #000000;
            --card-bg: #161b22;
            --accent: #d81b60;
            --text-white: #ffffff;
            --text-gray: #a0a0a0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }

        body {
            background-color: var(--bg-dark);
            /* background: url("../images/me.jpg"); */
            color: var(--text-white);
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            line-height: 1.6;
            width: 100%;
            max-width: 100%;
        }

        /* --- Global Layout --- */
        .container {
            padding: 80px 8%;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            width: 50%;
            height: 4px;
            background: var(--accent);
            position: absolute;
            bottom: -10px;
            left: 0;
        }

        /* --- Header --- */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        
            position: fixed;
            width: 100%;
            max-width: 100%;
            z-index: 1000;
            background: rgba(15, 16, 18, 0.9);
            backdrop-filter: blur(10px);
            box-sizing: border-box;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-white);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            text-decoration: none;
            color: white;
            font-size: 0.9rem;
            transition: 0.3s;
        }

        nav a:hover {
            color: var(--accent);
        }
.cv_btn{

    background-color: var(--accent);
    color: white;
    padding: 5px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 0px 30px;
    transition: 0.3s;
    border: 1px dashed var(--text-gray);
}
.cv_btn:hover{
    transform: translateY(-5px);
    background-color: #8e0839;
    box-shadow: 0 10px 20px rgba(216, 27, 96, 0.3);
}
.cv_btn .cv_link{
    color: white;
    text-decoration: none;
}
        /* --- Hero Section --- */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            padding: 0 10%;
            background: url("../images/me.jpg");
            /* background: linear-gradient(to right, var(--bg-dark) 35%, transparent 65%), url('../images/me.jpg'); */
            background-size: contain;
            background-position: right top;
            background-repeat: no-repeat;
        }

        .hero-content {
            max-width: 650px;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            font-weight: 700;
            line-height: 1.1;
        }

        .hero-content .role {
            font-size: 1.5rem;
            color: var(--accent);
            margin: 10px 0 20px;
        }

        .hero-content .description {
            color: var(--text-gray);
            font-size: 1.1rem;
            margin-bottom: 35px;
        }

        .btn-main, .btn-send {
            background-color: var(--accent);
            color: white;
            padding: 10px 35px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s;
        }

        .btn-main:hover, .btn-send:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(216, 27, 96, 0.3);
        }

        .hero-footer {
            position: absolute;
            bottom: 40px;
            left: 10%;
            display: flex;
            gap: 40px;
            z-index: 5;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .contact-item i {
            font-size: 1.4rem;
            color: var(--accent);
        }

        .contact-item span {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--accent);
        }

        .contact-item p {
            font-size: 0.9rem;
            color: var(--text-white);
        }

        /* --- Stats/About Section --- */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .stat-card {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: 0.3s;
        }

        .stat-card:hover {
            border-bottom: 3px solid var(--accent);
        }

        .stat-card h3 {
            font-size: 2rem;
            color: var(--accent);
        }

        /* --- Skills Section --- */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .skill-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .progress-bg {
            background: #333;
            height: 10px;
            border-radius: 5px;
            overflow: hidden;
        }

        .progress-fill {
            background: var(--accent);
            height: 100%;
            width: 0;
            transition: 1.5s ease-in-out;
        }

        /* --- Work Section --- */
        .project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .project-card {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            transition: 0.4s;
        }

        .project-card:hover {
            transform: scale(1.03);
        }

        .project-img {
            height: 200px;
            background: #252a34;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #555;
        }

        .project-info {
            padding: 20px;
        }
textarea{
    /* remove horizontal resize */
    resize: vertical;
}
        .project-info h3 {
            margin-bottom: 10px;
            color: var(--accent);
        }

        /* --- Contact Section --- */
        .contact-flex {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-form input,
        .contact-form textarea {
            padding: 15px;
            background: var(--card-bg);
            border: 1px solid #333;
            color: white;
            border-radius: 5px;
            outline: none;
        }

        .contact-form input:focus {
            border-color: var(--accent);
        }

        footer {
            text-align: center;
            padding: 40px;
            border-top: 1px solid #222;
            margin-top: 50px;
            color: var(--text-gray);
            font-size: 0.8rem;
        }

        /* --- Responsive Design --- */
        @media (max-width: 992px) {
            
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 5%;
            }

            nav ul {
                display: none;
            }

            .hero {
                background-size: 150%;
                background-position:top 10% right 20%;
                padding: 0 5%;
                padding-bottom: 50px;
                background-repeat: no-repeat;
                max-width: 100vw;
                overflow-x: hidden;
            }
.description{
    backdrop-filter: blur(1px);
}
            .hero-footer {
                flex-direction: column;
                gap: 15px;
                font-size: 10px;
                left: 5%;
                transform: none;
                margin-left: 0;
                width: auto;
                padding-bottom: 50px;
            }
            .hero-content h1,.hero-content .typewriter {
                font-size: 26px;
            }
            .hero-content .description{
                font-size: 12px;
                margin-bottom: 0px;
            }
            .contact-item p,.contact-item span,.contact-item i{
                font-size: 10px;
            }
            .btn-main{display: none;}

            .section-title {
                font-size: 2rem;
            }

            .container {
                padding: 60px 5%;
            }
        }

        /* Extra small screens */
        @media (max-width: 480px) {
            .hero {
                padding: 0 4%;
                max-width: 100vw;
                overflow-x: hidden;
            }

            .hero-footer {
                left: 4%;
                gap: 10px;
            }

            .container {
                padding: 40px 4%;
            }
        }
 .typewriter {
            color: white;
            font-size: 40px; /* Increased size as mentioned for visibility */
        }
        .typewriter-text {
            color: rgb(255, 238, 0); /* Different color for the dynamic text as implied */
        }
        .cursor {
            color: white;
            animation: blink 1s infinite; /* Blinking cursor effect */
        }
        @keyframes blink {
            0% { opacity: 1; }
            50% { opacity: 0; }
            100% { opacity: 1; }
        }