
/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #121212;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

h1, h2, h3, p {
  margin: 0;
}

a {
  text-decoration: none;
  /* color: #00bcd4; */
  background: linear-gradient(90deg, #00aaff, #7f00ff); /* Adjust colors if needed */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: color 0.3s;
}

a:hover {
  font-weight: bold;
    background: linear-gradient(90deg, #00aaff, #7f00ff); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #121212;
}

header .logo img {
  width: 50px;
  height: auto;
  filter: drop-shadow(0 0 5px #00aaff) drop-shadow(0 0 10px #7f00ff);
  transition: filter 0.3s ease;
}

header .logo img:hover {
  filter: drop-shadow(0 0 10px #00aaff) drop-shadow(0 0 20px #7f00ff);
}

header nav a {
  margin: 0 15px;
  font-weight: bold;
  color: #ffffff;
}

header nav a:hover {
  font-weight: bold;
    background: linear-gradient(90deg, #00aaff, #7f00ff); /* Adjust colors if needed */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Hero Section */
.main {
  text-align: center;
  padding: 80px 80px;
}

.main h1 {
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
}

.main h1 span {
  font-weight: bold;
    background: linear-gradient(90deg, #00aaff, #7f00ff); /* Adjust colors if needed */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main p {
  font-size: 18px;
  color: #cccccc;
}

/* Tech Stack Section */
.tech-stack {
  margin-top: 50px;
  text-align: center;
}

.tech-stack h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.tech-stack p {
  color: #aaaaaa;
  margin-bottom: 30px;
}

.tech-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.tech-icons img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s;
}

.tech-icons img:hover {
  transform: scale(1.2);
}

/* Projects Section */
.projects {
  text-align: center;
  margin: 60px 0;
}

.projects h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.projects p {
  color: #aaaaaa;
  margin-bottom: 40px;
}

.project-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.project-card {
  background-color: #1e1e1e;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.project-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.project-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 15px;
}

.project-card a {
  font-size: 14px;
  font-weight: bold;
  font-weight: bold;
    background: linear-gradient(90deg, #00aaff, #7f00ff); /* Adjust colors if needed */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  margin-right: 10px;
}

.project-card a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px 0;
  background-color: #101010;
  color: #ffffff;
}

footer nav a {
  margin: 0 15px;
  font-size: 14px;
  color: #ffffff;
}

footer nav a:hover {
  font-weight: bold;
    background: linear-gradient(90deg, #00aaff, #7f00ff); /* Adjust colors if needed */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-form {
            display: flex;
            flex-direction: column;
            max-width: 600px;
            margin: 0 auto;
        }
        .contact-form label {
            margin: 10px 0 5px;
        }
        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border: none;
            border-radius: 5px;
        }
        .contact-form button {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            background-color: #00aaff;
            color: white;
            cursor: pointer;
            font-size: 1em;
        }
        .contact-form button:hover {
            background-color: #7f00ff;
        }

/* Contact Section */
#contact {
  text-align: center;
  padding: 60px 20px;
}

#contact h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

#contact p {
  color: #aaaaaa;
  margin-bottom: 30px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.contact-form label {
  text-align: left;
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-form label span {
  color: #ff4d4d;
  margin-left: 2px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  background-color: #1e1e1e;
  color: #ffffff;
  font-family: 'Roboto', sans-serif; /* Ensure consistent font */
  transition: box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 8px rgba(0, 170, 255, 0.7);
}

.contact-form button {
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  background: linear-gradient(90deg, #00aaff, #7f00ff);
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
}

.contact-form button:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #7f00ff, #00aaff);
}

.form-status {
  margin-top: 15px;
  font-size: 16px;
  color: #00ff88;
  display: none;
}
