:root {
            --primary: #1a1a1a;
            --secondary: #333333;
            --accent: #4a90e2;
            --light: #f5f5f5;
            --text: #e0e0e0;
            --spacing: 2rem;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            
        }

        body {
            background-color: var(--primary);
            color: var(--text);
            line-height: 1.6;
        }

        header {
            padding: var(--spacing);
            position: fixed;
            width: 100%;
            background-color: rgba(26, 26, 26, 0.9);
            z-index: 100;
        }

        nav ul {
            display: flex;
            justify-content: flex-end;
            list-style: none;
        }

        nav ul li {
            margin-left: var(--spacing);
        }

        nav ul li a {
            color: var(--text);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        nav ul li a:hover {
            color: var(--accent);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        section {
            min-height: 100vh;
            padding: calc(var(--spacing) * 3) var(--spacing) var(--spacing);
            display: flex;
            align-items: center;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        /* Home Section */
        #home {
            background-color: var(--secondary);
            position: relative;
            overflow: hidden;
        }

        .home-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .intro-text {
            flex: 1;
            padding-right: var(--spacing);
        }

        .intro-text h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .intro-text p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .photo-container {
            width: 350px;
            height: 350px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid var(--accent);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .photo-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* About Section */
        #about {
            background-color: var(--primary);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: var(--spacing);
        }

        .about-text {
            flex: 1;
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: var(--spacing);
            position: relative;
        }

        .about-text h2::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background-color: var(--accent);
            bottom: -10px;
            left: 0;
        }

        .about-text p {
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .about-image {
            width: 300px;
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Skills Section */
       #skills {
            background-color:#333333;
        }

        .skills-container {
            margin-top: 2rem;
            width: 100%;
            display: flex;
            flex-direction: row;  
            gap: 2rem; 
            overflow-x: auto;
        }

        .skills-grid {
            display: flex;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 2rem;
        }

        .skill-item {
            
            text-align: justify;
            background:blanchedalmond;
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s ease;
            border: 1px solid rgba(232, 170, 181, 0.2);
        }

        .skill-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(232, 170, 181, 0.1);
        }

        .skill-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #e8aab5;
        }

        .skill-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .skill-desc {
            color: #666;
            font-size: 0.9rem;
        }

        .contact-content h2 {
            font-size: 2.5rem;
            margin-bottom: calc(var(--spacing) * 2);
            text-align: center;
            position: relative;
        }

        .contact-content h2::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background-color: var(--accent);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--spacing);
            margin-top: calc(var(--spacing) * 2);
        }

        .contact-card {
            background-color: var(--secondary);
            border-radius: 8px;
            padding: var(--spacing);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .contact-card i {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .contact-card h3 {
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .contact-card p {
            opacity: 0.8;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: var(--spacing);
            background-color: var(--secondary);
            color: var(--text);
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .home-content, .about-content {
                flex-direction: column;
            }

            .intro-text {
                padding-right: 0;
                margin-bottom: var(--spacing);
                text-align: center;
            }

            .photo-container {
                margin-top: var(--spacing);
                width: 250px;
                height: 250px;
            }

            .about-text {
                order: 2;
                text-align: center;
                text-align: justify;
                font-size: x-large;
            }

            .about-text h2::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .about-image {
                order: 1;
                margin-bottom: var(--spacing);
                width: 250px;
                height: 350px;
            }
        }

        @media (max-width: 768px) {
            nav ul {
                justify-content: center;
            }

            nav ul li {
                margin-left: calc(var(--spacing) / 2);
                margin-right: calc(var(--spacing) / 2);
            }

            .intro-text h1 {
                font-size: 2.2rem;
            }

            .skills-grid {
                gap: 15px;
            }

            .skill-bar {
                min-width: 100%;
            }
        }
        a.back-link {
    color: white;
    text-decoration: none;
  }
    