* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: gray;
    background: white;
}


nav {
    background: black;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

h12 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color:white;
    
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.nav-links a:hover {
    background: #555;
}


.parallax {
    min-height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-parallax {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                      url('https://i.ppy.sh/040af9a0da5cedfaa5272f55bf1b7e74370661a5/68747470733a2f2f6d65646961312e74656e6f722e636f6d2f696d616765732f61643138396638653235646565393435636635373264643161643834363832352f74656e6f722e6769663f6974656d69643d36313539383132');
}

.section-parallax {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23232526"/><stop offset="100%" style="stop-color:%23414345"/></linearGradient></defs><rect width="1000" height="1000" fill="url(%23grad2)"/></svg>');
}


.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.btn:hover {
    background: #0056b3;
}


.content-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: #007bff;
    margin-bottom: 1rem;
}


.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 2rem auto;
    display: block;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}


.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.skill {
    background: #007bff;
    color: white;
    padding: 1rem;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
}


.contact-info {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-block;
    margin: 0.5rem;
    padding: 0.5rem 1rem;
    border: 2px solid #007bff;
    border-radius: 5px;
    transition: all 0.3s;
}

.contact-info a:hover {
    background: #007bff;
    color: white;
}


footer {
    background: gray;
    color: white;
    text-align: center;
    padding: 2rem;
}


@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .cards {
        grid-template-columns: 1fr;
    }
}
.fullscreendiv{
    height: 100vh;
    width: 100vh;
}






















/* MOBILE HAMBURGER MENU - Shows on screens smaller than 992px */
@media (max-width: 991.98px) {
    
    /* Make navbar more solid on mobile */
    .custom-navbar {
        background: black !important;
    }
    
    /* The dropdown menu when hamburger is clicked */
    .navbar-collapse {
        background: rgba(52, 58, 64, 0.98); /* Dark background */
        border-radius: 10px; /* Rounded corners */
        margin-top: 1rem; /* Space from navbar */
        padding: 1rem; /* Padding inside menu */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Drop shadow */
    }
    
    /* Center menu items */
    .navbar-nav {
        text-align: center;
    }
    
    /* Mobile menu links */
    .navbar-nav .nav-link {
        margin: 0.25rem 0; /* Vertical spacing */
        padding: 0.75rem 1rem !important; /* Bigger touch targets */
        border-radius: 8px;
        display: block; /* Full width */
        width: 100%;
    }
    
    /* Mobile hover (tap) effect */
    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: none; /* No lift on mobile */
    }
    
    /* Hamburger button styling */
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none; /* Remove focus outline */
    }
}
