/* index.css - styles for index.html */
* {
    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;
}
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%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #10ffdf;
    font-size: 1.5rem;
    cursor: pointer;
}
.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 */
.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  */
.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  */
.hero-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.about {
    padding: 100px 0;
    background: #525252;
}

.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);
}

/* Section headers styling */
.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;
    max-width: 600px;
    margin: 0 auto;
}

/* 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;
            position: relative;
        }

        /* Example: Add a gold star before the first skill heading */
        .skills-grid .skill-card:first-child h3::before {
            content: "★ ";
            color: gold;
            font-size: 1.2em;
            position: relative;
            left: -4px;
            top: 0;
        }

        .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/Rk9H3Kdv/IMG-2258.jpg');
        }

        .skill-card:nth-child(2) .hover-image {
            background-image: url('https://i.ibb.co/QFLt3Yn1/IMG-2081.jpg');
        }

        .skill-card:nth-child(3) .hover-image {
            background-image: url('https://i.ibb.co/BVzZ7jKH/gif-kinky-portrait-6.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 {
    padding: 60px 0;
    background: #525252;
}

.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;
}

/* 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;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #f805a7 0%, #0bd0f3 100%);
    color: #ffffff;
    padding: 20px 0;
    margin-top: 40px;
}

.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;
}

/* PDF Container */
.pdf-container iframe {
    display: block;
    margin: 0 auto;
    width: 800px;
    height: 800px;
}

/* Animations */
.floating {
    animation: floating 1s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }

}
