/* Base Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.about,
.skills {
  padding: 20px;
  margin: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-img img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.about-content {
  text-align: left;
}

.heading {
  font-size: 2em;
  margin-bottom: 20px;
}

.skills h2 {
  text-align: center;
  margin-bottom: 20px;
}

.skills-box {
  display: grid;
  gap: 20px;
}

.skill-item {
  background: white;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.skill-item img {
  max-width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.skill-item h4 {
  margin: 10px 0 0 0;
}

/* Media Queries for Responsiveness */
@media (min-width: 600px) {
  .about-content {
    max-width: 80%;
    margin: auto;
  }

  .skills-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .about {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .about-img,
  .about-content {
    flex: 1;
  }

  .about-content {
    padding-left: 20px;
  }

  .skills-box {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Footer Styles */
footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: white;
  margin-top: 40px;
  border-radius: 0 0 8px 8px;
}

footer p {
  margin: 0;
}


/* main css */

/* Reset some default browser styles */
body,
h1,
h2,
h3,
p,
a,
ul,
li {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

/* Body styling */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header styling */
.header {
  background: #333;
  color: #fff;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.navbar a {
  color: #fff;
  margin: 0 1rem;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  color: #f39c12;
}

/* Home section styling */
.home {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  background: #f4f4f4;
}

.home-content h1 span {
  color: #f39c12;
}

.btn-box {
  margin-top: 1rem;
}

.btn-box .btn-1,
.btn-box .btn-2 {
  padding: 0.5rem 1rem;
  margin-right: 0.5rem;
  border: none;
  background: #f39c12;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-box .btn-1:hover,
.btn-box .btn-2:hover {
  background: red;
}

#photo {
  height: 200px;
  background-size: contain;
  border-radius: 50%;
}

.img-box img {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
}

/* About section styling */
/* Base Styles */
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px;
  gap: 20px;

}

.about-img {
  flex: 1 1 100%;
  text-align: center;
}

.about-img img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.about-content {
  flex: 2 1 100%;
}

.heading {
  font-size: 2em;
  margin-bottom: 20px;
}

.heading span {
  color: red;
}

p {
  margin: 0 0 15px 0;
}

.btn-2 {
  display: inline-block;
  padding: 10px 20px;
  background-color: red;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.btn-2:hover {
  background-color: darkred;
}

/* Media Queries for Responsiveness */
@media (min-width: 600px) {
  .about {
    flex-direction: row;
  }

  .about-img,
  .about-content {
    flex: 1 1 50%;
  }

  .about-img {
    text-align: left;
  }

  .about-content {
    padding-left: 20px;
  }
}

@media (min-width: 992px) {
  .about {
    padding: 40px;
  }

  .heading {
    font-size: 2.5em;
  }

  .btn-2 {
    padding: 12px 24px;
  }
}

/* Contact section styling */
.contact {
  padding: 2rem;
  text-align: center;
}

.contact h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact h2 {
  margin: 1rem 0;
  font-size: 1.2rem;
}

.contact a {
  color: #f39c12;
  transition: color 0.3s ease;
}

.contact a:hover {
  color: #e67e22;
}

*/

/* Footer styling */
.footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

.footer .social a {
  color: #fff;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.footer .social a:hover {
  color: #f39c12;
}

.footer .list {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

.footer .list li {
  margin: 0 0.5rem;
}

.footer .list a {
  color: #fff;
  transition: color 0.3s ease;
}

.footer .list a:hover {
  color: #f39c12;
}

.hero-image img{
  height: 50px;
  background-size: contain;
}

.Highlihght{
  color:red;
}