* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
  font-family: "Zen Dots", sans-serif;
}
.zen-dots-regular {
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  font-style: normal;
}

:root {
  --bg-color: #000000;
  --second-color: #a5a5a5;
  --main-color: #ffffff;
  --accent-color: #121212;
  --sc-bg-color: #0d0d0d;
  --gradient-color: linear-gradient(
    rgba(69, 69, 69, 1) 0%,
    rgba(181, 181, 181, 1) 100%
  );
}

header {
  position: fixed;
  width: 100%;
  top: 20px;
  display: flex;
  justify-content: center;
}
.TH-logo {
  width: 90px;
  height: 40px;
}
.navbar {
  background: rgba(244, 227, 227, 0.518);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(221, 218, 218, 0.161);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  width: 50%;
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
.navbar a {
  color: #ffffff;
  font-size: medium;
  font-weight: 600;
  text-decoration: none;
  padding: 5px;
  display: flex;
  align-items: center;
}
.navbar .contact-btn {
  color: #000000;
  border-radius: 20px;
  padding: 15px 25px;
  margin-left: 75px;
  cursor: pointer;
}
.navbar a:hover {
  transform: scale(1.1);
  transition: 0.4s ease-in-out;
}

.hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: row;
  background-color: #000000;
}
.hero-card {
  width: 100%;
  background-image: url(img/portfolio\ hero\ section\ 1.png);
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding-left: 20px;
}
.hero-right h1 {
  display: flex;
  justify-content: flex-start;
  line-height: 100%;
  font-weight: 900;
  font-size: 120px;
  color: var(--bg-color);
}
.hero-right h3 {
  font-size: 24px;
  line-height: 120%;
}
.hero-left {
  max-width: 450px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: nowrap;
}
.hero-left p {
  color: var(--accent-color);
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -1%;
}
.start-btn {
  margin-top: 10px;
  margin-left: 180px;
  display: inline-block;
  padding: 12px 15px;
  border: 2px solid #ffffff;
  border-radius: 10px;
  background-color: transparent;
  color: #ffffff;
  transition: 0.3s ease-in-out;
  align-self: flex-start;
}
.start-btn:hover {
  transition: 0.3s ease-in-out;
  transform: scale(1.1);
}
.services {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--sc-bg-color);
  border-radius: 20px;
}
.services-content {
  margin-top: 10vh;
  display: flex;
  flex-direction: column;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5vh 10vh;
}
.services-header h2 {
  color: var(--main-color);
}
.services-grid {
  flex-direction: column;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: auto;
}
.card {
  background-color: var(--accent-color);
  border: solid 2px var(--second-color);
  border-radius: 25px;
  padding: 30px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.card p {
  color: var(--second-color);
  padding-top: 20px;
  line-height: 150%;
  letter-spacing: -1%;
}
.card-top {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-start;
  align-items: flex-start;
}
.card-top img {
  width: 28px;
  height: 28px;
  filter: invert(1);
}
.card-top h3 {
  color: var(--main-color);
}
.carousel {
  margin: 100px auto;
  width: 90%;
  border: 5px solid white;
  display: flex;
}
.skill {
}
