@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    scroll-behavior: smooth; /* Smooth scrolling */
}

body {
    background: #0a0a0a;
    text-align: center;
    overflow-x: hidden;
}

/* Fullscreen Video Background */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Navbar */
header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    font-weight: 600;
}

/* Profile image */
.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid cyan;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px cyan;
}

/* Full Page Scroll Effect */
section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 1s ease-in-out;
}

/* Work Experience Section */
#experience {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.experience {
    background: #111;
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

/* Tech Stack Section */
#tech-stack {
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tech-icons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.tech-icons img {
    width: 80px;
    height: 80px;
    border-radius: 50%;  /* Makes the icons circular */
    background: rgba(255, 255, 255, 0.1); /* Subtle background */
    padding: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.tech-icons img:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

/* Projects Section */
.project {
    background: #111;
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

/* Glow Effect */
.glow {
    text-shadow: 0 0 20px cyan, 0 0 30px blue;
}
