body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

h1, h2, h3 {
  margin: 0 0 10px;
}

p {
  margin: 0 0 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar {
  background-color: #1a1a1a;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar ul {
  display: flex;
  list-style: none;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  margin-left: 20px;
}

.navbar ul li a {
  color: #fff;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #05f9f9;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background-color: #fff;
}

.hero .intro {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.hero .intro h1 {
  font-size: 2.5rem;
  color: #1a1a1a;
}

.hero .intro h1 span {
  color: #05f9f9;
}

.hero .intro h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #555;
}

.hero .intro p {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Hero & Contact Buttons */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #05f9f9, #00d4ff);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(5, 249, 249, 0.4);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(5, 249, 249, 0.6);
  background: linear-gradient(135deg, #00d4ff, #05f9f9);
}

.hero-img {
  width: 200px;         
  height: 200px;        
  object-fit: cover;    
  border-radius: 50%;   
  border: 5px solid #05f9f9;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero .photo {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.hero .photo img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


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


/* Projects Section */
.projects {
  padding: 60px 20px;
  background-color: #f1f1f1;
  text-align: center;
}

.projects h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

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

.project-card {
  background-color: #11cbe840;
  padding: 25px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card h3 {
  color: #05f9f9;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}


.project-card .btn {
  display: inline-block; 
  width: auto;
  padding: 6px 15px; 
  font-size: 0.85rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(5, 249, 249, 0.3);
}

.project-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(5, 249, 249, 0.5);
}

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

.contact h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #555;
}

.contact form {
  max-width: 500px;
  margin: 0 auto;
}

.contact .form-group {
  margin-bottom: 20px;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border 0.3s;
}

.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: #05f9f9;
}

.contact button {
  padding: 12px 30px; 
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer .social-links {
  margin-top: 10px;
}

.footer .social-links a {
  color: #fff;
  margin: 0 10px;
  transition: color 0.3s;
}

.footer .social-links a:hover {
  color: #05f9f9;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
  }
  
  .project-container {
    flex-direction: column;
    align-items: center;
  }
}
