/* ===================== Home Start ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

.content h2 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #f8fafc;
}

.content h2 span {
  background: -webkit-linear-gradient(45deg, #e3a127, #ffcb58);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.divider {
  width: 70px;
  height: 4px;
  background: #e3a127;
  margin: 20px 0;
  border-radius: 5px;
}

.description p {
  color: #b8c4d9;
  font-size: 1.05rem;
  line-height: 1.7;
}

.visual-content {
  position: relative;
  width: 420px;
  height: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 40px rgba(227, 161, 39, 0.6);
  z-index: -2;
}

.center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes float {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
  }
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 380px;
  height: 380px;
  transform: translate(-50%, -50%);
  border: 2px dashed rgba(227, 161, 39, 0.25);
  border-radius: 50%;
}

.orbit i {
  position: absolute;
  width: 65px;
  height: 65px;
  background: radial-gradient(circle, #e3a127, #b87e10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 0 20px rgba(227, 161, 39, 0.6);
  transition: 0.4s ease;
  cursor: pointer;
}

.orbit i:hover {
  transform: scale(1.25);
  background: #fff;
  color: #e3a127;
  box-shadow: 0 0 30px rgba(227, 161, 39, 0.9);
}

.orbit i::after {
  content: attr(title);
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(227, 161, 39, 0.1);
  color: #ffcb58;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease, bottom 0.3s ease;
  pointer-events: none;
}

.orbit i:hover::after {
  opacity: 1;
  bottom: -45px;
}

.orbit i:nth-child(1) {
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.orbit i:nth-child(2) {
  top: 25%;
  right: 5%;
  transform: translate(50%, -50%);
}
.orbit i:nth-child(3) {
  bottom: 25%;
  right: 5%;
  transform: translate(50%, 50%);
}
.orbit i:nth-child(4) {
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 50%);
}
.orbit i:nth-child(5) {
  bottom: 25%;
  left: 5%;
  transform: translate(-50%, 50%);
}
.orbit i:nth-child(6) {
  top: 25%;
  left: 5%;
  transform: translate(-50%, -50%);
}

@media (max-width: 992px) {
  .hero {
    text-align: center;
    flex-direction: column;
    padding: 100px 0 220px;
  }

  .visual-content {
    width: 350px;
    height: 350px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 170px;
  }

  .center-image {
    width: 180px;
    height: 180px;
  }

  .orbit {
    width: 300px;
    height: 300px;
  }

  .orbit i {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 100px 0 190px;
  }

  .content h2 {
    font-size: 2rem;
  }

  .description p {
    font-size: 0.95rem;
  }

  .visual-content {
    width: 280px;
    height: 280px;
    margin-top: 120px;
  }

  .center-image {
    width: 150px;
    height: 150px;
  }

  .orbit {
    width: 240px;
    height: 240px;
  }

  .orbit i {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
/* ===================== Home End ===================== */
/* ===================== About Start ===================== */

.about-cover {
  background-color: #c4c4c4;
  color: #1b262c;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cover::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.about-content h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1b262c;
}

.about-content p {
  margin-top: 15px;
  font-size: 1.1rem;
  color: #333;
}

.about-content h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffb400;
  margin: 15px auto 0;
  border-radius: 2px;
}

.heading {
  font-size: 32px;
  font-weight: bold;
  position: relative;
}

.heading span {
  position: relative;
}

.heading span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 80%;
  height: 4px;
  background-color: #ffb400;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .about-content h1 {
    font-size: 2.2rem;
  }
  .about-content p {
    font-size: 1rem;
  }
}

.mission-box {
  background: #1b262c;
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
}

.mission-box:hover {
  background: #212529;
  color: white;
  transform: translateY(-10px);
}

.mission-box h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.mission-box i {
  font-size: 40px;
  color: #ffb400;
  transition: 0.3s;
}

.mission-box:hover i {
  transform: scale(1.2);
}

.call-to-action {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
}

.call-to-action:hover {
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

@media (min-width: 768px) {
  .about .about-image {
    margin-top: -150px;
  }
}

@media (max-width: 767px) {
  .about .about-image {
    margin-top: 0;
  }
}

/* ===================== About End ===================== */

/* ===================== Services Start ===================== */

.services-cover {
  background-color: #c4c4c4;
  color: #1b262c;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-cover::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.services-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.services-content h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1b262c;
}

.services-content p {
  margin-top: 15px;
  font-size: 1.1rem;
  color: #333;
}

.services-content h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffb400;
  margin: 15px auto 0;
  border-radius: 2px;
}

.service-card {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #eee;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.service-card h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media (max-width: 768px) {
  .services-content h1 {
    font-size: 2.2rem;
  }
  .services-content p {
    font-size: 1rem;
  }
}

/* ===================== Services End ===================== */

/* ===================== Services-Details End ===================== */

.services-details-cover {
  background-color: #c4c4c4;
  color: #1b262c;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-details-cover::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.services-services-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.services-services-content h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1b262c;
}

.services-services-content p {
  margin-top: 15px;
  font-size: 1.1rem;
  color: #333;
}

.services-services-content h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffb400;
  margin: 15px auto 0;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .services-services-content h1 {
    font-size: 2.2rem;
  }
  .services-services-content p {
    font-size: 1rem;
  }
}

/* ===================== Services-Details End ===================== */
/* ===================== Portfolio Start ===================== */

.portfolio-cover {
  background-color: #c4c4c4;
  color: #1b262c;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.portfolio-cover::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.portfolio-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.portfolio-content h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1b262c;
}

.portfolio-content p {
  margin-top: 15px;
  font-size: 1.1rem;
  color: #333;
}

.portfolio-content h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffb400;
  margin: 15px auto 0;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .portfolio-content h1 {
    font-size: 2.2rem;
  }
  .portfolio-content p {
    font-size: 1rem;
  }
}

/* ===================== Portfolio End ===================== */

.portfolio-details-cover {
  background-color: #c4c4c4;
  color: #1b262c;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.portfolio-details-cover::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.portfolio-details-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.portfolio-details-content h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1b262c;
}

.portfolio-details-content p {
  margin-top: 15px;
  font-size: 1.1rem;
  color: #333;
}

.portfolio-details-content h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffb400;
  margin: 15px auto 0;
  border-radius: 2px;
}

.heading {
  font-size: 32px;
  font-weight: bold;
  position: relative;
}

.heading span {
  position: relative;
}

.heading span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 80%;
  height: 4px;
  background-color: #ffb400;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .portfolio-details-content h1 {
    font-size: 2.2rem;
  }
  .portfolio-details-content p {
    font-size: 1rem;
  }
}

/* ===================== Portfolio-Details End ===================== */

/* ===================== Contact Start ===================== */

.contact-cover {
  background-color: #c4c4c4;
  color: #1b262c;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cover::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.contact-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.contact-content h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1b262c;
}

.contact-content p {
  margin-top: 15px;
  font-size: 1.1rem;
  color: #333;
}

.contact-content h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffb400;
  margin: 15px auto 0;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .contact-content h1 {
    font-size: 2.2rem;
  }
  .contact-content p {
    font-size: 1rem;
  }
}
/* ===================== Contact End ===================== */
