:root {
  --background-color: #181818;
  --content-color: #1e1e1e;
  --box-color: #333333;
  --text-color: white;
  --accent-color: #007acc;
  --border-color: #484848;
  --ff-poppins: "Poppins", sans-serif;
  --shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  --border-radius: 15px;
}

body {
  margin: 0;
  font-family: var(--ff-poppins);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--background-color);
  min-height: 100vh;
  color: var(--text-color);
}

.container {
  display: flex;
  width: 90%;
  position: relative;
}

.sidebar,
.main-content {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  background-color: var(--content-color);
}

.sidebar {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow);
}

.profile {
  width: 100px;
  height: 100px;
  background-color: var(--box-color);
  border-radius: var(--border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.profile-name {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 10px;
}

.profession-box {
  margin-top: 20px;
  background-color: var(--box-color);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 5px 10px;
  border-radius: 8px;
  text-align: center;
}

.contact-info {
  width: 100%;
  height: 100px;
  background-color: var(--box-color);
  margin: 10px 0;
  border-radius: var(--border-radius);
}

.main-content {
  margin-left: 260px;
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-bar,
.services,
.testimonials {
  width: 100%;
  height: 150px;
  background-color: var(--box-color);
  border-radius: var(--border-radius);
}

.separator {
  width: 100%;
  height: 1px;
  background-color: var(--box-color);
  margin: 20px 0;
  border: none;
}

.navbar {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 20px;
  border-radius: 0 var(--border-radius) 0 var(--border-radius);
  border: 1px solid var(--border-color);
  background-color: var(--content-color);
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.navbar nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

.navbar nav ul li a.active,
.social-links i:hover {
  color: var(--accent-color);
}

.content-title {
  position: relative;
  top: 0;
  margin-bottom: 20px;
}

.content-title h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
}

.content-separator {
  width: 60px;
  height: 4px;
  background-color: var(--accent-color);
  margin-top: 5px;
}

.info-item {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: var(--border-radius);
  gap: 10px;
  width: 100%;
  min-height: 55px;
}

.icon {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: var(--box-color);
  border: 1px solid transparent;
  background-image: linear-gradient(var(--content-color), var(--content-color)),
    linear-gradient(to bottom right, var(--border-color), var(--content-color));
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.icon i {
  color: var(--accent-color);
  font-size: 1rem;
}

.details {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.info-title {
  font-size: 0.65rem;
  font-weight: 600;
  color: #bbb;
  text-transform: uppercase;
}

.info-text {
  font-size: 0.8rem;
  font-weight: 400;
}

.social-links {
  display: flex;
  gap: 20px;
  position: relative;
  width: auto;
}

.social-links a {
  text-decoration: none;
}

.social-links i {
  font-size: 1.2rem;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.hidden {
  display: none;
}

.section-header {
  display: flex;
  align-items: center;

  position: relative;
  z-index: 10;
  gap: 10px;
}

.section-icon {
  width: 41px;
  height: 41px;
  background-color: var(--box-color);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: 1px solid transparent;
  background-image: linear-gradient(var(--content-color), var(--content-color)),
    linear-gradient(to top, var(--border-color), var(--content-color));
  background-origin: border-box;
  background-clip: content-box, border-box;
  z-index: 11;
}

/* .section-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: red;
  transform: translateX(-50%);
  z-index: 12;
} */

.section-icon i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.timeline-list {
  position: relative;
  padding-left: 30px;
  list-style: none;
}

.timeline-item {
  position: relative;
  padding-left: 20px;
  counter-increment: none;
}

.timeline-item:not(:last-child) {
  margin-bottom: 30px;
}

.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: -47px;
  left: -9px;
  width: 1px;
  height: calc(100% + 80px);
  background: var(--border-color);
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 7px;
  left: -13px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 0 3px var(--box-color);
}

.timeline-item::marker {
  content: none;
}

.timeline-item-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 5px;
}

.timeline-date {
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: 500;
}

.timeline-text {
  font-size: 0.85rem;
  color: var(--text-color);
  margin-top: 5px;
}

.map-container {
  width: 100%;
  height: 350px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.gm-style-cc,
.gmnoprint {
  display: none !important;
}

#custom-map {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
}

.contact-form {
  margin-top: 20px;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
}

.form-group {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.form-group input,
textarea {
  width: 100%;
  padding: 10px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  background-color: var(--box-color);
  color: var(--text-color);
  resize: none;
}

.btn {
  width: 100%;
  padding: 10px;
  background-color: var(--accent-color);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background-color: darken(var(--accent-color), 10%);
}

textarea {
  width: 100%;
  box-sizing: border-box;
  resize: none;
}

.about {
  color: var(--text-color);
  text-align: center;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.highlight {
  color: var(--accent-color);
  font-weight: 600;
}

.about-boxes {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.about-box {
  background: var(--box-color);
  padding: 20px;
  border-radius: 10px;
  width: 220px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.about-box i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.about-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-box p {
  font-size: 0.95rem;
}

/* .about-box:hover {
  transform: translateY(-5px);
  background: var(--accent-color);
  color: var(--background-color);
} */

pixel-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

.project-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 40px;
  gap: 20px;
}

.card {
  background: var(--background-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  max-width: 400px;
  width: 100%;
  position: relative;
  overflow: hidden;
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

.card::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-color) 10%, transparent 70%);
  opacity: 0.1;
  pointer-events: none;
  bottom: 10px;
  left: 10px;
}

.card:hover {
  transform: translateY(-5px);
}

.card-header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  font-size: 0.9rem;
  color: var(--text-color);
}

.card-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-body p {
  font-size: 1rem;
  line-height: 1.6;
}

.card-footer {
  margin-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
}

.btn-read-more {
  background: var(--accent-color);
  color: var(--text-color);
  border-radius: 2em;
  padding: 0.625rem 1.5rem;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
}

.btn-read-more:hover {
  background: var(--text-color);
  color: var(--accent-color);
}

.profile-img {
  width: auto;
  height: 90%;
  object-fit: cover;
  border-radius: var(--border-radius);
  display: block;
  margin: 0 auto;
}
