/* RESET */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', sans-serif;
scroll-behavior: smooth;
}

/* BODY */
body {
background: radial-gradient(circle at top, #1a0000, #000);
color: #ff4d4d;
transition: 0.3s;
overflow-x: hidden;
}

/* NAVBAR */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 40px;
background: rgba(0, 0, 0, 0.9);
border-bottom: 2px solid #ff1a1a;
box-shadow: 0 0 15px #ff0000;
position: sticky;
top: 0;
z-index: 1000;
}

.logo {
font-size: 26px;
font-weight: bold;
color: #ff1a1a;
text-shadow: 0 0 10px red;
}

/* NAV LINKS */
.nav-links {
list-style: none;
display: flex;
gap: 20px;
}

.nav-links a {
color: #ff4d4d;
text-decoration: none;
transition: 0.3s;
}

.nav-links a:hover {
color: #fff;
text-shadow: 0 0 10px red;
}

/* HERO */
.hero {
height: 90vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
background: radial-gradient(circle, #330000, #000);
position: relative;
}

/* FIRE GLOW EFFECT */
.hero h1 {
font-size: 42px;
color: #ff1a1a;
text-shadow:
0 0 10px #ff0000,
0 0 20px #ff3300,
0 0 40px #ff0000;
animation: flicker 1.5s infinite alternate;
}

.hero p {
margin: 15px 0;
color: #ff6666;
}

/* BUTTON */
button {
padding: 10px 20px;
border: none;
background: linear-gradient(45deg, #ff0000, #ff6600);
color: white;
border-radius: 5px;
cursor: pointer;
box-shadow: 0 0 10px red;
transition: 0.3s;
}

button:hover {
transform: scale(1.1);
box-shadow: 0 0 20px orange;
}

/* SECTIONS */
section {
padding: 60px 40px;
text-align: center;
}

h2 {
margin-bottom: 20px;
color: #ff1a1a;
text-shadow: 0 0 10px red;
}

/* SKILLS */
.skill {
background: #330000;
padding: 10px 15px;
border-radius: 20px;
box-shadow: 0 0 10px red;
transition: 0.3s;
}

.skill:hover {
transform: scale(1.1);
box-shadow: 0 0 20px orange;
}

/* CARDS */
.project-card,
.experience-card,
.testimonial {
background: rgba(20, 0, 0, 0.9);
border: 1px solid #ff1a1a;
padding: 20px;
margin: 15px;
border-radius: 10px;
box-shadow: 0 0 15px red;
transition: 0.3s;
}

.project-card:hover,
.experience-card:hover,
.testimonial:hover {
transform: translateY(-5px) scale(1.03);
box-shadow: 0 0 25px orange;
}

/* CONTACT FORM */
.contact-form input,
.contact-form textarea {
background: #1a0000;
border: 1px solid #ff1a1a;
color: #fff;
padding: 10px;
border-radius: 5px;
}

/* FOOTER */
footer {
text-align: center;
padding: 20px;
background: black;
border-top: 2px solid red;
color: #ff4d4d;
}

/* FIRE ANIMATION */
@keyframes flicker {
0% { opacity: 1; }
50% { opacity: 0.8; }
100% { opacity: 1; }
}

/* BACKGROUND FLAMES EFFECT */
body::before {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('BG.webp');
opacity: 0.05;
z-index: -1;
}

.project-card img{
    width: 500px;
    height: 500px;
}

#about img{
    Width: 600px;
    height: 600px;
}
