@font-face {
  font-family: "Grok";
  src: url(../Fonts/neuehaasgrotdispround-55roman-trial.otf);
}

/* Reset & Global */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Grok", sans-serif;
  max-width: 100vw;
}

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  background-color: #e8e8e8;
  transition: all 0.5s ease-in-out;
}

/* ---------------- NAVBAR ---------------- */
.navbar {
  width: 100vw;
  padding: 20px 35px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background-color: #e8e8e8;
  z-index: 1000;
}

.logo a {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  pointer-events: none;
  color: #1f1f1f;
}

.toggle {
  display: flex;
}

.toggle img {
  display: none;
}

#check {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1rem;
}

.nav-links a {
  color: #1f1f1f;
  text-decoration: none;
  padding: 7px 10px;
  border: 0.7px solid gray;
  border-radius: 20px;
}

.nav-links a li {
  font-weight: 600;
}

.nav-links a:hover {
  color: #e8e8e8;
  background-color: #1f1f1f;
  transform: scale(1.05);
  transition: all 0.5s ease-in-out;
  border: none;
  box-shadow: 0px 1px 3px black;
}

/* ---------------- HERO SECTION ---------------- */
.hero {
  display: flex;
  flex-direction: row;
}

.left-hero {
  width: 50vw;
  height: 70vh;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.right-hero {
  width: 50vw;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.sml-headline {
  font-size: 16px;
  color: #1f1f1f;
  font-weight: 600;
}

.head-name {
  font-weight: 900;
  font-size: 50px;
}

.sub-head {
  font-size: 30px;
  color: #1f1f1f;
  font-weight: 700;
}

.sub-head span {
  background: linear-gradient(to right, #5f6aff, #a673f3);
  background-clip: text;
  color: transparent;
}

#cursor {
  position: relative;
  z-index: 8;
  display: inline-block;
  color: #5f6aff;
  animation: blink 0.9s step-end infinite;
}

.para {
  margin-top: 7px;
  max-width: 21rem;
  font-size: 12px;
  color: #1f1f1f;
  font-weight: 500;
  width: 60%;
  text-align: center;
}

.btn-cta {
  margin-top: 20px;
}

 .btn-cta button {
  padding: 13px;
  border: none;
  border-radius: 20px;
  background-color: #1f1f1f;
  color: #e8e8e8;
  font-weight: 600;
  cursor: pointer;
}

.btn-cta button:hover {
  background-color: #e8e8e8;
  color: #1f1f1f;
  border: 1px solid #1f1f1f;
  box-shadow: 0px 0.7px 2px black;
  transform: scale(1.02);
  transition: all 0.5s ease-in-out;
}

.icons {
  width: 30px;
  height: 70vh;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  margin: 0 20px;
}

.icons a {
  width: 30px;
  height: 30px;
}

.icons a:hover {
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.box-head {
  height: 300px;
  width: 300px;
  background: linear-gradient(to bottom, gray, #1f1f1f);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.box-head img {
  position: relative;
  top: 10%;
}

/* ---------------- ABOUT SECTION ---------------- */
.about {
  width: 100vw;
  min-height: 70vh;
  background-color: #1f1f1f;
  display: flex;
  flex-direction: column;
  padding: 60px 20px;
}

.about-heading {
  height: 15vh;
  width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-top: 10vw;
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(to right, #694ae6, #9443cf);
  background-clip: text;
  color: transparent;
  animation: float 3s ease-in-out infinite;
}

.box-about {
  height: 450px;
  width: 400px;
  background-color: #e8e8e8;
  margin: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  padding: 10px;
  transition: all 0.5s ease-in-out;
  animation-name: about-box;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timeline: view();
  animation-range: entry;
}

.box-about img {
  height: 35%;
  margin-top: 5%;
  background-color: #e8e8e8;
  padding: 20px;
}

.box-about-text {
  text-align: center;
  color: #1f1f1f;
  font-weight: 550;
  margin: 5% 12%;
  font-size: 14px;
}

.box-about-text span {
  background: linear-gradient(to right, rgb(11, 13, 43), rgb(105, 104, 107));
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.button-box-about a button {
  color: #1f1f1f;
  font-weight: 600;
  font-size: 14px;
  padding: 10% 14px;
  border: 2px solid #1f1f1f;
  border-radius: 20px;
}

.button-box-about a:hover button {
  background-color: #1f1f1f;
  color: #e8e8e8;
  border: none;
  transform: scale(1.05);
  transition: all 0.3s ease;
  box-shadow: 0px 1px 3px black;
  cursor: pointer;
}

.first-row,
.second-row,
.third-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 5vw;
}

.second-row,
.third-row {
  margin-top: 50px;
}

/* ---------------- SERVICES SECTION ---------------- */
.services {
  width: 100vw;
  padding: 60px 20px;
  background-color: #e8e8e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: none;
}

.services-heading {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(to right, #6f42c1, #ab3ecf);
  background-clip: text;
  color: transparent;
  margin-bottom: 40px;
  animation: float 3s ease-in-out infinite;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
  gap: 50px;
}

.card-wrapper {
  width: 330px;
  transition: transform 0.3s ease;
  margin: 20px 30px;
}

.card-wrapper:hover {
  transform: scale(1.05);
}

.animated-border {
  padding: 2.7px;
  border-radius: 20px;
  background: linear-gradient(45deg, #ff00cc, #3333ff, #00ffcc, #ffcc00);
  background-size: 400% 400%;
  animation: borderMove 4s linear infinite;
  background-position: 0% 50%;
}

.card-content {
  min-height: 500px;
  background-color: #1f1f1f;
  border-radius: 17px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  font-size: 25px;
  margin-bottom: 15px;
  color: #e8e8e8;
  text-align: center;
}

.card-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  color: #e8e8e8;
}

.card-content li {
  font-size: 15px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.good::before {
  content: "✔";
  color: #00e676;
  margin-right: 10px;
}

.bad::before {
  content: "✖";
  color: #ff1744;
  margin-right: 10px;
}

.bad {
  color: #888888;
  text-decoration: line-through;
}

#contact-link {
  display: inline-block;
  text-decoration: none;
  width: 100%;
}

.service-btn {
  display: inline-block;
  width: 100%;
  padding: 8px 11px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.service-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
}


    .contact-section {
      padding: 60px 20px;
      background-color: #e8e8e8;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    .contact-section h2 {
      font-size: 30px;
      color: #1f1f1f;
      margin-bottom: 30px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .contact-form {
      padding: 40px;
      border-radius: 16px;
      max-width: 800px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
      padding: 12px 15px;
      border: .5px solid #1f1f1f;
      border-radius: 10px;
      font-size: 14px;
      transition: 0.3s ease;
      background-color: #f9f9f9;
      color: #1f1f1f;
    }

    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus {
      outline: 1px solid #1f1f1f;
      transform: scale(1.02);
      border-color: #1f1f1f;
    }

    .contact-form textarea {
      resize: none;
      grid-column: 1 / 3;
      height: 100px;
    }

    .contact-form button {
      grid-column: 1 / 3;
      padding: 12px;
      background-color: #1f1f1f;
      color: #ffffff;
      font-size: 18px;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .contact-form button:hover {
      transform: scale(1.05);
      background-color: #333;
    }

    /* ---------------- FOOTER ---------------- */

    .footer{
      height: 25vh;
      width: 100vw;
      background-color: #1f1f1f;
      display: flex;
      align-items: center;
      justify-content: space-evenly;

    }

    .icons-footer {
  width: 20px;
 height: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
 }

.icons-footer a {
  width: 20px;
  height: 20px;
  padding: 5px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.icons-footer a:hover {
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.pages-footer ul{
  list-style: none;
}

.pages-footer ul li{
  margin: 3px 0px;
}

.footer-link a{
text-decoration: none;
color: #e8e8e8;
font-size: 16px;
font-weight: 600;

}

.footer-link a:hover li{
  transform: scale(1.05);
  transition: all 0.5s ease;
}

.copyright-footer{
  width: 10vw;
  color: #e8e8e8;
  font-size: 14px;
  font-weight: 550;
}

.footer button{
  height: 30px;
  width: 30px;
  background-color: #e8e8e8;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  border-radius: 4px;
}

.footer button:hover{
  transform: scale(1.05);
  transition: all 0.5s ease;
  cursor: pointer;
}



/* ---------------- ANIMATIONS ---------------- */
@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes about-box {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
