* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.primary-font {
    font-family: "Rangile", cursive;
}

body {
  color: #111;
 font-family: 'BR Segma', sans-serif;
}



/* CONTACT BAR */
.contact-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #fff;
  border-top: 1px solid #eee;
}

.contact-bar span {
  font-size: 14px;
}

.socials span {
  margin-left: 10px;
}

/* ABOUT */
.about {
  padding: 80px 40px;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* SHAPES */
.shape {
  position: relative;
  width: 250px;
  height: 250px;
}

.circle {
  position: absolute;
  border-radius: 50%;
}


/* TEXT */
.about-text {
  flex: 1;
}

.about-text p {
  color: #777;
  margin-bottom: 30px;
}

/* STATS */
.stats {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.stats h3 {
  font-size: 2rem;
}

/* LANGUAGES */

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .hero-text {
    padding: 40px;
  }

  .about-content {
    flex-direction: column;
  }

  .contact-bar {
    flex-direction: column;
    gap: 10px;
  }
}

.latest-works h2 {
  letter-spacing: -1px;
}

.latest-works hr {
  border-top: 1px solid #ccc;
}

.work-card img {
  transition: all 0.4s ease;
}

/* Hover effect */
.work-card:hover img {
  transform: scale(1.03);
}

.arrow {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.work-card:hover .arrow {
  transform: translateX(5px);
}