      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #161515;
            background: linear-gradient(145deg, #0bd0f3 0%, #f805a7 100%);
            min-height: 100vh;
        }

        /* Navigation - Clean and modern */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: #232323;
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background: #525252;
            box-shadow: 0 2px 15px #0bd0f3;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(45deg, #eb0bf3, #10ffdf);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #10ffdf;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #ffffff;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #0bd0f3;
            transition: width 1.0s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }
        
              /* Hero Section - Eye-catching and engaging */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #10ffdf;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #242424;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 2rem;
            animation: fadeInUp 2s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(25px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #0bd0f3, #f805a7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* Button styling - Creating visual hierarchy and clear user paths */
        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            margin: 0 10px;
            font-size: 1rem;
        }

        /*Primary button - Main action we want users to take */
        .cta-button.primary {
            background: linear-gradient(45deg, #0bd0f3, #f805a7);
            color: #ffffff;
            box-shadow: 0 10px 20px #0bd0f3;
        }

        .cta-button.primary:hover {
            transform: translateY(-3px);
            color: #000000;
            box-shadow: 0 10px 20px #f805a7;
        }

        /* Secondary button - Alternative action with subtle styling */
        .cta-button.secondary {
            background: rgba(255, 255, 255, 0.2);
            color: rgb(255, 255, 255);
            border: 2px solid white;
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
        }

        .cta-button.secondary:hover {
            background: #0bd0f3;
            color: #000000;
            transform: translateY(-3px);
            
        }

        /* Button container for proper spacing */
        .hero-buttons {
            margin-top: 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        /* About Section - Clean and informative */
        .about {
            padding: 100px 0;
            background: #525252;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #ffffff;
            text-align: center;
    
        }

        .about-text p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #dfdfdf;
            text-align: center;
        }

        .profile-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .profile-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .profile-image:hover img {
            transform: scale(1.05);
        }

        /* Skills Section - Visual and engaging */
         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: #242424;
            min-height: 100vh;
            padding: 2rem 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
            color: #ffffff;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #f805a7, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .skill-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #ffffff;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            min-height: 300px;
        }

        .skill-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px #0bd0f3;
            background: rgba(36, 34, 34, 0.2);
        }

        .skill-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .skill-card:hover .skill-icon {
            transform: scale(1.2);
        }

        .skill-card h3 {
            color: #ffffff;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .skill-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        /* Hover Image Styles */
        .hover-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 20px;
            z-index: 1;
        }

        .skill-card:hover .hover-image {
            opacity: 0.3;
        }

        .skill-content {
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .skill-card:hover .skill-content {
            color: white;
            text-shadow: 2px 2px 4px rgba(77, 77, 77, 0.7);
        }

        .skill-card:hover .skill-content h3 {
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .skill-card:hover .skill-content p {
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        }

        /* Individual card hover images */
        .skill-card:nth-child(1) .hover-image {
            background-image: url('https://i.ibb.co/pv7Wzx0V/gif-kinky-portrait-8.gif');
        }

        .skill-card:nth-child(2) .hover-image {
            background-image: url('https://i.ibb.co/KD2p9Hj/IMG-0826.gif');
        }

        .skill-card:nth-child(3) .hover-image {
            background-image: url('https://i.ibb.co/hF5WG8Cj/gif-kinky-2.gif');
        }

                @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }
            
            .skills-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .skill-card {
                padding: 1.5rem;
            }
        }
        /* Portfolio Section - Showcase work */
 .portfolio {
            padding: 60px 0;
            background: #525252;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 10px;
        }
        
        .section-header p {
            font-size: 1.1rem;
            color: #c9c7c7;
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .portfolio-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 5px #f805a7;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px #0bd0f3;
        }
        
        .image-container {
            position: relative;
            width: 100%;
            height: 300px;
            overflow: hidden;
        }
        
        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .portfolio-item:hover .image-container img {
            transform: scale(1.1);
        }
        
        .hover-text {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .portfolio-item:hover .hover-text {
            opacity: 1;
        }
        
        .hover-text h4 {
            font-size: 1.4rem;
            margin: 0 0 10px 0;
            font-weight: bold;
        }
        
        .hover-text p {
            font-size: 0.9rem;
            margin: 0;
            line-height: 1.4;
            opacity: 0.9;
        }
        
        @media (max-width: 768px) {
            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
        }
        /* Contact Section - Clean and accessible */
        .contact {
            padding: 100px 0;
            background: #242424;
            text-align: center;
        }

        /* Contact section button styling - Reinforces the action hierarchy */
        .contact-buttons {
            margin: 2rem 0;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .social-link {
            display: inline-block;
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #f805a7,#0bd0f3);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 30px #f805a7;
        }

        .site-footer {
            background: linear-gradient(135deg, #f805a7 0%, #0bd0f3 100%);
            color: #ffffff;
            padding: 20px 0;
            margin-top: 40px;
        }
        
        .site-footer .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-content {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .footer-left p {
            margin: 0;
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .footer-right {
            display: flex;
            gap: 20px;
        }
        
        .footer-link {
            color: #000000;
            text-decoration: none;
            font-size: 0.9rem;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }
        
        .footer-link:hover {
            opacity: 1;
            text-decoration: underline;
            color: #f805a7
        }
        
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .footer-right {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
        }
        .pdf-container iframe {
    display: block;  /* Essential for margin: auto to work */
    margin: 0 auto;  /* Centers horizontally */
    width: 800px;    /* Specify a width less than 100% */
    height: 800px;
}
        /* Responsive Design - Mobile-first approach */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .skills-grid {
                grid-template-columns: 1fr;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .social-links {
                flex-wrap: wrap;
            }
        }

        /* Floating animation for decorative elements */
        .floating {
            animation: floating 1s ease-in-out infinite;
        }

        @keyframes floating {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        /* Section headers styling */
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ffffff, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #bbbbbb;
            max-width: 600px;
            margin: 0 auto;
        }
