* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  color: #ddd;
  background-color: #1a1a1a;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  padding: 20px;
}

nav ul li {
  margin-left: 20px;
}

.nav-btn {
  background-color: transparent;
  color: #f4bc49;
  border: 2px solid #252525;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.nav-btn:hover {
  background-color: #f4bc49;
  color: #252525;
  font-weight: bold;
  transform: scale(1.1);
  transition      : background-color 0.3s, transform 0.3s;
}

/********************* Intro Section *********************/
.intro-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 10vh;
  padding-top: 0;
  background-color: #252525;
  position: relative;
  text-align: left;
}

.intro-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

.intro-text {
  text-align: left;
}

.intro-text h1 {
  color: #f4bc49;
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.intro-text h1 span {
  color: #fff;
}

.intro-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.contact-btn {
  background-color: transparent;
  color: #f4bc49;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  border: 2px solid #f4bc49;
  transition: background-color 0.3s, color 0.3s;
}

.contact-btn:hover {
  background-color: #f4bc49;
  color: #252525;
  font-weight: bold;
  transform: scale(1.1);
  transition      : background-color 0.3s, transform 0.3s;
}

.intro-image img {
  /* width: 600px; */
  margin-left: 4px;
}

.social-media {
  position: fixed;
  top: 40%;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}

.social-media a {
  color: #ddd;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.social-media .yellow-line {
  width: 3px;
  height: 150px;
  background-color: #f4bc49;
  margin-bottom: 20px;
}

/********************* About Section *********************/
.about-section {
  padding         : 60px 10vw;
  background-color: #333;
  text-align      : left;
  position        : relative;
}

.about-section h2, .skills-section h2, .projects-section h2, .experience-section h2, .testimonial-section h2 {
  color        : #f4bc49;
  font-size    : 2.5rem;
  margin-bottom: 20px;
}

.about-section .yellow-line {
  width           : 60px;
  height          : 3px;
  background-color: #f4bc49;
  margin          : 0 auto 20px auto;
}

.about-section p {
  font-size : 1.2rem;
  max-width : 800px;
  margin    : 0 auto;
  color     : #ddd;
  text-align: left;
}

/********************* Skills Section *********************/
.skills-section {
  padding         : 60px 10vw;
  background-color: #333;
}

.skills-grid {
  display              : grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap                  : 20px;
  max-width            : 1200px;
  margin               : 0 auto;
}

.skill-item {
  background-color: #6e6e6e;
  border-radius   : 10px;
  padding         : 20px;
  text-align      : center;
  transition      : background-color 0.3s, transform 0.3s;
}

.skill-item:hover {
  transform       : scale(1.05);
  background-color: #f4bc49;
}

.skill-item img {
  width        : 80px;
  height       : auto;
  margin-bottom: 15px;
}

.skill-item p {
  color    : #fff;
  font-size: 1.1rem;
}

.skills-grid .skill-item:hover img,
.skills-grid .skill-item:hover p {
  color: #252525;
  font-weight: bold;
}

/********************* Projects Section *********************/
.projects-section {
  padding         : 60px 10vw;
  background-color: #333;
}

.project-item {
  position     : relative;
  overflow     : hidden;
  border-radius: 10px;
  transition   : transform 0.3s ease, background-color 0.3s ease;
}

.project-item:hover {
  transform       : scale(1.05);
  background-color: #f4bc49;
}

.project-overlay {
  position        : absolute;
  top             : 0;
  left            : 0;
  right           : 0;
  bottom          : 0;
  background-color: rgba(54, 53, 53, 0.7);
  display         : flex;
  flex-direction  : column;
  align-items     : center;
  justify-content : center;
  color           : white;
  opacity         : 0;
  transition      : opacity 0.3s ease;
  border-radius   : 10px;
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.see-more-btn {
  background-color: transparent;
  color: #f4bc49;
  padding: 10px 20px;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
  border: 2px solid #f4bc49;
  transition: background-color 0.3s, color 0.3s;
}

.see-more-btn:hover {
  background-color: #f4bc49;
  color: #252525;
  font-weight: bold;
  transform: scale(1.1);
  transition      : background-color 0.3s, transform 0.3s;
}

.hidden {
  display: none;
}

.container {
  display: flex;
  justify-content: center;
}

.see-more-projects {
  background-color: transparent;
  color: #f4bc49;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  border: 2px solid #f4bc49;
  transition: background-color 0.3s, color 0.3s;
}

.see-more-projects:hover {
  background-color: #f4bc49;
  color: #252525;
  font-weight: bold;
  transform: scale(1.1);
  transition      : background-color 0.3s, transform 0.3s;
}


/********************* Experience Section *********************/
.experience-section {
  padding: 60px 10vw;
  background-color: #444444;
}

.experience-item {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 40px;
  margin: 15px auto;
  max-width: 600px;
}

.dot {
  width: 15px;
  height: 15px;
  background-color: #f4bc49;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 0;
}

.experience-content {
  border-left: 2px solid #f4bc49;
  padding-left: 20px;
  text-align: left;
}

.experience-item h3 {
  margin: 0;
  font-size: 20px;
}

.company-name {
  font-weight: bold;
  color: #ffffff;
}

.duration {
  color: #ffffff;
  margin: 5px 0;
}

.description {
  margin: 10px 0 0;
  color: #ffffff;
}

/********************* Testimonials Section *********************/
.testimonial-section {
  padding: 60px 10vw;
  background-color: #333;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.testimonial-item:hover {
  transform: scale(1.05);
}

.testimonial-item p {
  font-style: italic;
  color: #555;
}

.testimonial-item h3 {
  margin: 15px 0 5px;
  color: #333;
}

.testimonial-item span {
  color: #888;
  font-size: 0.9rem;
}

/********************* Calendly Integration *********************/
.calendly-section {
  padding: 60px 10vw;
  background-color: #252525;
  text-align: center;
}
/********************* Media Queries *********************/
@media screen and (max-width: 480px) {
  .intro-text h1  {
    font-size: 1.5rem;
    padding-left: 10px;
  }
  .intro-text p {
    font-size: 0.8rem;
    padding-left: 10px;
  }
  .contact-btn{
    padding: 3px;
    font-weight: normal;
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 768px) and (min-width: 481px){
  .intro-text h1  {
    font-size: 2.5rem;
    padding-left: 20px;
  }
  .intro-text p {
    font-size: 0.8rem;
    padding-left: 20px;
  }
  .contact-btn{
    padding: 5px;
    font-weight: normal;
    font-size: 0.8rem;
  }
}

