@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #1f242d;
  color: #fff;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #1f242d;
  padding: 20px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.navbar .logo {
  font-size: 28px;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.navbar ul {
  display: flex;
}

.navbar ul li {
  list-style: none;
  margin-left: 30px;
}

.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.navbar ul li:hover a,
.navbar ul li.active a {
  color: #7cf03d;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
  gap: 40px;
}

.hero-text {
  max-width: 50%;
  text-align: left;
}

.hero-text h1 {
  font-size: 3rem;
}

.hero-text h3 {
  margin-top: 15px;
  font-size: 1.5rem;
  color: #bbb;
}

.hero-text h3 span {
  color: #7cf03d;
  font-weight: 600;
}

.btn {
  position: relative;
  top: 20px;
  display: inline-block;
  padding: 10px 30px;
  background: #7cf03d;
  color: #1f242d;
  border: 2px solid #7cf03d;
  text-decoration: none;
  font-weight: bold;
  border-radius: 40px;
  box-shadow: 0 0 10px #7cf03d;
  font-size: 16px;
  font-weight: 600;
  transition: .5s;
}

.btn:hover {
  background: transparent;
  color: #7cf03d;
  box-shadow: none;
}

.btn .socials {
  margin: 20px;
}

.btn .socials {
  margin-top: 20px;
}

.socials a {
  position: relative;
  left: 200px;
  bottom: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 2px solid #7cf03d;
  border-radius: 50%;
  margin-right: 15px;
  color: #7cf03d;
  font-size: 22px;
  margin: 5px;
  transition: all 0.3s;
  text-decoration: none;

}

.socials a:hover {
  background-color: #7cf03d;
}

.hero-image {
  position: relative;
  width: 250px;
  height: 250px;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
 
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  border: 3px solid #00ff88;
  border-radius: 50%;
  transform: translate(-50%,-50%) rotate(0deg);
  animation: wave1 6s linear infinite;
  opacity: 0.7;
  z-index: 3;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  border: 3px solid #00ff88;
  border-radius: 50%;
  transform: translate(-50%,-50%) rotate(0deg);
  animation: wave2 8s linear infinite;
  opacity: 0.4;
  z-index: 3;
}

@keyframes wave1 {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

@keyframes wave2 {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}
/* About Section */
.about {
  padding: 80px 10%;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #7cf03d;
}

.about p {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
  color: #ccc;
}

/* Portfolio Grid */
.portfolio {
  padding: 80px 10%;
  text-align: center;
}

.portfolio h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #7cf03d;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #2c323e;
  padding: 40px;
  border-radius: 8px;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  background: #3a4150;
}

/* Contact Section */
.contact {
  padding: 80px 10%;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #7cf03d;
}

.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.contact input,
.contact textarea {
  margin: 10px 0;
  padding: 12px;
  border: none;
  border-radius: 5px;
  outline: none;
  font-size: 16px;
}

.contact button {
  background: #7cf03d;
  color: #1f242d;
  padding: 12px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.contact button:hover {
  background: #66d92b;
}

/* Footer */
footer {
  background: #15191f;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #aaa;
}
