/* --- General Improvements --- */

body.index-page {
  background-color: #121212;
  /* Dark background for the whole page */
  color: #eee;
  font-family: 'Poppins', sans-serif;
}

/* Header */
.header {
  background-color: #1e1e1e;
  padding: 1rem 2rem;
  border-bottom: 1px solid #333;
}

.logo .sitename {
  color: #f39c12;
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0;
}

.navmenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
}

.navmenu ul li a {
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navmenu ul li a.active,
.navmenu ul li a:hover {
  color: #f39c12;
}

/* Hero Section */
#hero {
  position: relative;
  text-align: center;
  padding: 6rem 1rem ;
  /* margin-top: 3rem; */
}

#hero img {
  position: absolute;
  top: 2rem;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

#hero h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

#hero p {
  font-size: 1.25rem;
  color: #f39c12;
}

/* About Section */
#about {
  padding: 4rem 0;
}

.about-info p {
  font-size: 1rem;
  margin: 0.25rem 0;
}

.skills-content h5 {
  color: #f39c12;
  font-weight: 700;
  margin-bottom: 1rem;
}

.progress {
  background: #2e2e2e;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.progress-bar-wrap {
  background: #444;
  border-radius: 25px;
  height: 20px;
  width: 100%;
}

.progress-bar {
  background: #f39c12;
  height: 20px;
  width: 100%;
  transition: width 1s ease-in-out;
}

/* Portfolio Section */
.section-title h2 {
  color: #f39c12;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-bottom: 1rem;
}
.portfolio-wrap img {
  height: 10rem;
}

.portfolio-filters li {
  list-style: none;
  cursor: pointer;
  color: #ccc;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background-color: #222;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.portfolio-filters li.filter-active,
.portfolio-filters li:hover {
  background-color: #f39c12;
  color: #fff;
}

.portfolio-item {
  background: #1e1e1e;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(243, 156, 18, 0.3);
  transition: transform 0.3s ease;
}
.call-us {
  margin-top: 18rem;
}

.portfolio-item:hover {
  transform: scale(1.05);
}

.portfolio-info h4 {
  color: #f39c12;
  font-weight: 700;
  margin: 0.5rem 0;
}

.portfolio-links a {
  color: #eee;
  font-weight: 600;
  text-decoration: none;
  margin-right: 0.5rem;
  transition: color 0.3s ease;
}

.portfolio-links a:hover {
  color: #f39c12;
}

/* Contact Section */
#contact {
  background-color: #1e1e1e;
  padding: 4rem 0;
  color: #eee;
}

.info-item h3 {
  color: #f39c12;
}

.info-item p {
  margin: 0;
  font-size: 1rem;
}

.email-form input,
.email-form textarea {
  background-color: #222;
  border: none;
  color: #eee;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border-radius: 5px;
  font-size: 1rem;
}

.email-form button {
  background-color: #f39c12;
  border: none;
  color: #fff;
  padding: 0.75rem 2rem;
  font-weight: 700;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.email-form button:hover {
  background-color: #d17e07;
}

/* Footer */
.footer {
  background-color: #121212;
  color: #ccc;
  padding: 2rem 0;
}

.footer .social-links a {
  color: #ccc;
  font-size: 1.5rem;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

.footer .credits a {
  color: #f39c12;
  text-decoration: none;
}

.footer .credits a:hover {
  text-decoration: underline;
}

/* Scroll Top */
#scroll-top {
  background: #f39c12;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: none;
  position: fixed;
  right: 20px;
  bottom: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#scroll-top:hover {
  background: #d17e07;
}

/* Show scroll-top button on scroll */
body.show-scroll #scroll-top {
  display: flex;
}
.my-icon-img {
  width: 40px;
  /* size it */
  height: 40px;
  border-radius: 50%;
  /* round shape */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}
.some-class {
  background-image: url('./assets/img/bg2.jpg');
  background-size: cover;
  background-position: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.skills {
  max-width: 600px;
  margin: 2rem auto;
  font-family: 'Poppins', sans-serif;
}

.skills h5 {
  font-weight: 700;
  font-size: 1.5rem;
  color: #f39c12;
  margin-bottom: 1.5rem;
}

.skill-item {
  margin-bottom: 1.5rem;
}

.skill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.1rem;
  color: #eee;
  margin-bottom: 0.4rem;
}

.skill-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

.progress-bar-wrap {
  background: #333;
  border-radius: 25px;
  height: 20px;
  width: 100%;
  overflow: hidden;
}

.progress-bar {
  background-color: #f39c12;
  height: 100%;
  width: 0;
  border-radius: 25px;
  transition: width 1s ease-in-out;
}
.center{
  margin: 50px auto;
}

.datas{
  display: flex;
  justify-content: space-around;
  gap: 100px;
  align-items: center;
}
.right img{
  width: 300px;
  border-radius: 20px;
}
.left{
  gap: 30px;
}