body, html {
  height: 100%;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #f4f4f4;
  scroll-behavior: smooth;
}

/* General Layout */
.section {
  padding: 60px 20px;
  margin: 28px 58px;
}

a {
  text-decoration: none;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
  font-weight: 600;

}


h3 {
  color: #555;
}

p {
  line-height: 1.8;
  color: #666;
}

h3, p {
  margin: 0 30px;
}

/* Header */
.banner {
  height: 100vh;
  background: linear-gradient(135deg, #C41E3A, #feb47b);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.banner h1 {
  font-size: 4rem;
  text-transform: uppercase;
}

.banner .btn {
  margin-top: 20px;
  padding: 15px 30px;
  font-size: 1.2rem;
  background-color: #fff;
  color: #ff7e5f;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.banner .btn:hover {
  background-color: #f8f8f8;
}

section#projects {
  padding-top: 0;
}

.info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* About Section */
.about-me {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  padding: 30px 0;
}

.content {
  background-color: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.imgBox {
  width: 100%;
  height: 800px;
}

.imgBox img {
  object-fit: contain;
  height: 100%;
  width: 100%;
  border-radius: 14px;
}

/* Skills Section */
.skills {
  background-color: #f4f4f4;
}

.skills .skill-item {
  margin-bottom: 20px;
}

/* Projects Section */
.project-item {
  margin-bottom: 80px;
  background-color: #fff;
  border-radius: 14px;
  padding: 23px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease-in-out;
}

.project-item:hover {
  transform: translateY(-10px);
  transition: .5s ease-in-out;
}

.project-item h3 {
  margin-bottom: 10px;
}

.project-item .box {
  width: 87%;
  height: 300px;
  margin: 30px 30px 20px 30px;
}

.project-item .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}


/* Contact Section */
.contact {
  background: #fff;
  border-radius: 14px;
  text-align: center;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact a.btn {
  background-color: #ff7e5f;
  color: #fff;
  padding: 10px 20px;
  font-size: 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.contact a.btn:hover {
  background-color: #feb47b;
}


/* Individual projects html */

.works {
  height: auto;
}

.works .content p {
  margin-top: 2.5rem;
}

.works .content p:first-of-type {
  margin-top: 0;
}

.works-image.v {
  width: 100%;
  height: 35vh;
  display: flex;
  justify-content: center;
}

.works-image {
  width: 100%;
  height: 30vh;
  display: flex;
  justify-content: center;
}

.go-home {
  margin-bottom: 60px;
}

.go-home-btn {
  position: relative;
  top: 20px;
  left: 20px;
  background-color: white;
  color: #4a4a4a;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}
.go-home-btn:hover {
  box-shadow: #4a4a4a;
  color: #3d3d3d;
}

.banner-box {
  margin: 0 20px;
  display: flex;
  justify-content: center;
}

.banner-box img {
  border-radius: 16px;
}


/* Individual projects html */

@media (max-width: 498px) {
  .section {
      margin: 30px 0;
      padding: 0;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .banner h1 {
      font-size: 2.5rem;
  }

  .banner .btn {
      font-size: 1rem;
      padding: 10px 20px;
  }
}