/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #121212; /* Dark background */
  color: #ffffff;
  line-height: 1.6;
}

/* Dark Header Section */
.dark-header {
  background-color: #121212;
  padding: 50px 20px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo  {
  width: 70px; /* Set logo size */
  background-color: #ff6f61;

}

.navbar {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.navbar a {
  color: #ff6f61;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #ffdd00;
}

/* Image Section - Circular Image */
.image-section {
  text-align: center;
  padding-top: 50px;
}

.profile-img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.profile-img :hover {
  transform: scale(1.1);
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 50px 20px;
}

.hero-section h1 {
  font-size: 4rem;
  margin-bottom: 10px;
}

.hero-section .highlight {
  color: #ff6f61;
}

.hero-section p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.cta-button {
  padding: 15px 30px;
  font-size: 1.2rem;
  color: #ffffff;
  background-color: #ff6f61;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #ff4a33;
}

/* About Section */
.about-section {
  padding: 50px 20px;
  text-align: center;
}

/* Skills Section with Progress Bars */
.skills-section {
  padding: 50px 20px;
  text-align: center;
}

.progress-bar-container {
  width: 80%;
  margin: 0 auto;
}

.skill {
  margin-bottom: 20px;
}

.progress-bar {
  background-color: #ffffff;
  border-radius: 20px;
  height: 20px;
  width: 100%;
}

.progress {
  background-color: #ff6f61;
  height: 100%;
  border-radius: 20px;
}

/* Portfolio Section */
.portfolio-section {
  padding: 50px 20px;
  text-align: center;
}

.portfolio-items {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.portfolio-item {
  width: 200px;
}

.portfolio-item img {
  width: 100%;
  border-radius: 10px;
}

.portfolio-item a {
  text-decoration: none;
  color: #ff6f61; 
  font-weight: bold;
  display: block;
  margin-top: 10px;
}
#work {
  padding: 20px;
  background: #121212;
  text-align: center;
  border-bottom: 1px solid #121212;
}

#work h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.work-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.work-item {
  width: 200px;
}

.work-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.work-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Testimonials Section */
.testimonials-section {
  padding: 50px 20px;
  text-align: center;
}

.testimonials-section blockquote {
  font-style: italic;
  margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
  padding: 50px 20px;
  text-align: center;
}

.contact-section form {
  width: 50%;
  margin: 0 auto;
}

.contact-section input, .contact-section textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #444;
  border-radius: 5px;
}

.contact-section button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #ff6f61;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
}

.contact-section button:hover {
  background-color: #ff4a33;
}

/* Footer Section */
.footer-section {
  padding: 20px;
  text-align: center;
  background-color: #121212;
}

.social-links a {
  text-decoration: none;
  color: #ffffff;
  margin: 0 10px;
}

.social-links a:hover {
  color: #ff6f61;
}