/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: white;
    cursor: none;
    scroll-behavior: smooth;
}

body {
    background: #0a0a0a;
    text-align: center;
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out;
}

/* Background Stars */
.stars, .stars2, .stars3 {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: url('https://www.transparenttextures.com/patterns/stardust.png') repeat;
    animation: starsMove 50s linear infinite;
}

.stars2 {
    animation: starsMove 100s linear infinite;
    opacity: 0.6;
}

.stars3 {
    animation: starsMove 150s linear infinite;
    opacity: 0.3;
}

@keyframes starsMove {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-100%);
    }
}

/* Header Section */
header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 6rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-top: 10px;
}

nav {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: white;
    color: black;
}

/* Introduction Section */
#intro {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    text-align: left;
}

.intro-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    flex-wrap: wrap;
}

.profile-pic {
    width: 150px;  /* Adjust width */
    height: 150px; /* Adjust height */
    border-radius: 50%; /* Circular Shape */
    object-fit: contain; /* Ensures full image fits */
    object-position: center; /* Centers the image */
    border: 3px solid white; /* White border */
    background-color: black; /* Optional: Black background for transparency */
}


.profile-pic:hover {
    transform: scale(1.05);
}

.intro-text {
    max-width: 600px;
}

.intro-text h3 {
    font-size: 2.5rem;
}

.intro-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Sections */
section {
    padding: 80px 20px;
}

h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: auto;
}

/* Projects, Certifications, Achievements */
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

/* Footer */
footer {
    padding: 40px;
    background: black;
    margin-top: 50px;
    font-size: 1rem;
}
/* Footer Section */
footer {
    padding: 40px;
    background: black;
    margin-top: 50px;
    text-align: center;
}
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: white;
    font-size: 2rem;
    margin: 0 15px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ff4500;
}




