:root {
  --background-one: #141414;
  --background-two: #3a3a3a;

  --primary: #141414;
  --secondary: #202020;
  --accent-one: #b70022;
  --accent-two: #f03123;
  --muted-one: #e7e7e7;

  --text-muted: #e7e7e7;
  --text-one: #f4f4f4;
  --text-two: #202020;

  --glass: rgba(0, 0, 0, 0.45);
  --card-one: linear-gradient(75deg, #101010 0%, #121212 50%, #181818 100%);
  --border: rgba(135, 135, 135, 0.15);

  --grad-one: linear-gradient(145deg, #141414 0%, #121212 50%, #101010 100%);
  --grad-two: linear-gradient(45deg, #050505 0%, #030303 50%, #000000 100%);

  --shadow: 0 0 25px 5px rgba(0, 0, 0, 0.3);
  --shimmer-speed: 2s;
  --shimmer-pause: 3s;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background: var(--background-one);
}
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 999;
}
.nav-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1rem 5rem;
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(202, 211, 223, 0.15);
}
.nav-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
.nav-left svg {
  width: 55px;
  height: auto;
  transition: all 0.2s ease-out;
}
.nav-left svg:hover {
  transform: scale(1.1);
  transition: transform 0.5s cubic-bezier(0.47, 1.64, 0.41, 0.8);
}
.nav-left h2 {
  color: var(--text-one);
  font-family: "Poppins";
  font-weight: 500;
}
.nav-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}
.nav-right a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 400;
}
.nav-right a:hover {
  color: var(--text-one);
}
.nav-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  width: fit-content;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.nav-link:hover::after {
  transform: scaleX(1);
}
.main-btn {
  width: fit-content;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  background: var(--accent-one);
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: none;
  font-weight: 400;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: all 0.3s ease-out;
  text-decoration: none;
  color: var(--text-muted);
}
.main-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
}
.main-btn:hover::before {
  animation: shimmer 0.6s forwards;
}
@keyframes shimmer {
  0% {
    left: -80%;
  }
  100% {
    left: 130%;
  }
}
.main-btn i {
  display: inline-block;
  transform: scale(0.9) rotate(0turn);
  transition: transform 0.5s cubic-bezier(0.47, 1.64, 0.41, 0.8);
}
.main-btn:hover {
  background: var(--accent-two);
  color: var(--text-one);
}
.main-btn:hover i {
  transform: scale(1.1) rotate(1turn);
}
/*LANDING*/
.landing {
  position: relative;
  width: 100%;
  height: 100vh;
  color: var(--text-one);
  z-index: 3;
}
.landing-wrap {
  width: inherit;
  height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem;
  gap: 1rem;
  background-image: url(/images/img004_alt.png);
  background-position: center;
  background-size: cover;
  box-shadow: 0 0 20px 5px #000;
}
.landing-wrap h1 {
  font-size: 3rem;
  font-weight: 500;
}
.landing-wrap h2 {
  font-size: 1.5rem;
  font-weight: 500;
}
/*INTRO*/
.intro {
  position: relative;
  width: 100%;
  height: fit-content;
  color: var(--text-one);
  z-index: 2;
}
.intro-wrap {
  width: inherit;
  height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem;
  background: url(/images/img003.png);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.intro-one {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.intro-one h2 {
  font-size: 2rem;
  font-weight: 500;
}
.intro-one h3 {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--muted-one);
}
/*NAME*/
.name {
  position: relative;
  width: 100%;
  height: fit-content;
  color: var(--text-one);
  z-index: 1;
}
.name-wrap {
  width: inherit;
  height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem;
  background: url(/images/img002.png);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.name-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  gap: 2rem;
  text-align: center;
}
.name-content h2 {
  font-size: 2rem;
  font-weight: 500;
}
.name-content h3 {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--muted-one);
}
/*SERVICE*/
.service {
  position: relative;
  width: 100%;
  height: fit-content;
  color: var(--text-one);
  z-index: 2;
}
.service-wrap {
  width: inherit;
  height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem;
  background: var(--grad-one);
  gap: 2rem;
}
.service-header {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
.service-header h2 {
  font-size: 2rem;
  font-weight: 500;
}
.service-header h3 {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--muted-one);
}
.service-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  height: auto;
}
.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 2rem;
}
.service-cards .card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border: 1px var(--border) solid;
  border-radius: 15px;
  background: var(--card-one);
  box-shadow: var(--shadow);
}
.service-cards .card .thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 4/2;
}
.service-cards .card:nth-child(1) .thumb {
  background: url(/images/img007.png);
  background-position: center;
  background-size: cover;
}
.service-cards .card:nth-child(2) .thumb {
  background: url(/images/img004.png);
  background-position: center;
  background-size: cover;
}
.service-cards .card:nth-child(3) .thumb {
  background: url(/images/img006.png);
  background-position: center;
  background-size: cover;
}
.service-cards .card:nth-child(4) .thumb {
  background: url(/images/img005.png);
  background-position: center;
  background-size: cover;
}
.service-cards .card h4 {
  font-size: 1.4rem;
  font-weight: 500;
}
/*PRICING*/
.pricing {
  position: relative;
  width: 100%;
  height: fit-content;
  color: var(--text-one);
  box-shadow: var(--shadow);
  z-index: 2;
}
.pricing-wrap {
  width: inherit;
  height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem;
  background: var(--grad-one);
  gap: 2rem;
}
.pricing-header {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
.pricing-header h2 {
  font-size: 2rem;
  font-weight: 500;
}
.pricing-header h3 {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--muted-one);
}
.pricing-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  height: auto;
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 2rem;
}
.pricing-cards .card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border: 1px var(--border) solid;
  border-radius: 15px;
  background: var(--card-one);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}
.pricing-cards .card:hover {
  cursor: pointer;
  scale: 1.02;
}
.pricing-cards .card .card-title {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}
.pricing-cards .card h4 {
  font-size: 1.8rem;
  font-weight: 500;
}
.divider-one {
  height: 2px;
  border-radius: 50px;
  background: linear-gradient(
    to right,
    #b8d8ff 0%,
    #e7f2ff 35%,
    #eef6ff 65%,
    #abd1ff 100%
  );
}
.divider-two {
  height: 2px;
  border-radius: 50px;
  background: linear-gradient(
    to right,
    #ffbb00 0%,
    #ffd560 35%,
    #ffdf88 65%,
    #ffbb00 100%
  );
}
.divider-three {
  height: 2px;
  border-radius: 50px;
  background: var(--accent-one);
}
.pricing-cards .card p {
  font-size: 1.4rem;
  font-weight: 500;
}
.pricing-cards .card span {
  font-size: 1.2rem;
  color: var(--muted-one);
}
.pricing-cards .card ul {
  line-height: 1.8;
  padding: 0 0 0 1rem;
}
.pricing-bottom {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1100px;
}
.fineprint {
  color: var(--muted-one);
}
/*ABOUT*/
.about {
  position: relative;
  width: 100%;
  height: fit-content;
  color: var(--text-one);
  z-index: 1;
}
.about-wrap {
  width: inherit;
  height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem;
  background: url(/images/img009.png);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.about-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 50%;
}
.about-header h2 {
  font-size: 2rem;
  font-weight: 500;
}
.about-header h3 {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--muted-one);
}
/*TESTIMONIALS*/
.testimonial {
  position: relative;
  width: 100%;
  height: fit-content;
  color: var(--text-one);
  box-shadow: var(--shadow);
  z-index: 2;
}
.testimonial-wrap {
  width: inherit;
  height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem;
  background: var(--grad-one);
  gap: 2rem;
}
.testimonial-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  gap: 2rem;
}
.testimonial-header h2 {
  font-size: 2rem;
  font-weight: 500;
}
.testimonial-header h3 {
  font-size: 1.2rem;
  font-weight: 300;
  text-align: center;
  color: var(--muted-one);
}
.reviews {
  max-width: 1100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  gap: 5rem;
}
.review {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  gap: 1rem;
}
.stars {
  color: #eea80f;
}
.review h4 {
  font-size: 1.2rem;
  font-weight: 400;
}
.review p {
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
  color: var(--muted-one);
}
/*FOOTER*/
.footer {
  position: relative;
  width: 100%;
  height: fit-content;
  color: var(--text-one);
  z-index: 1;
}
.footer-wrap {
  width: inherit;
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem 5rem;
  background: var(--grad-two);
  gap: 2rem;
}
.footer-header {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}
.footer-header svg {
  width: 75px;
}
.footer-header h2 {
  font-size: 2rem;
  font-weight: 500;
}
.footer-content {
  display: flex;
  flex-direction: row;
  gap: 5rem;
}
.footer-msg {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 500px;
}
.footer-msg h3 {
  padding-left: 1rem;
  border-left: 1px var(--muted-one) solid;
  font-weight: 400;
}
.footer-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.column-header p {
  font-size: 1.2rem;
  color: var(--text-muted);
}
.column-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.column-content a {
  color: var(--text-muted);
}
.column-content a:hover {
  color: var(--text-one);
}
.footer-bottom {
  width: inherit;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
}
.copyright {
  color: var(--text-muted);
  font-size: 0.7rem;
}
.copyright a {
  color: var(--text-one);
  text-decoration: none;
}
.bottom-btn {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: end;
  gap: 1rem;
}
.bottom-btn a {
  padding: 1rem 1.1rem;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  background: var(--accent-one);
  border-radius: 999px;
  border: none;
  font-weight: 500;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: all 0.3s ease-out;
  text-decoration: none;
  color: var(--text-muted);
}
.bottom-btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
}
.bottom-btn a:hover::before {
  animation: shimmer 0.6s forwards;
}
.bottom-btn a:hover {
  background: var(--accent-two);
  color: var(--text-one);
  transform: translateY(-3px);
}
.bottom-btn a i {
  transform: scale(1);
  transition: all 0.3s cubic-bezier(0.47, 1.64, 0.41, 0.8);
}
.bottom-btn a:hover i {
  transform: scale(1.2);
}
.btm-divide {
  width: 2px;
  height: 48px;
  border-radius: 100px;
  background: var(--accent-one);
}
.bottom-btn a:nth-child(4) {
  background: var(--background-two);
}
.anchor {
  padding-top: 1rem;
}
/* MOBILE */
/* ==========================
   TABLETS
========================== */
@media (max-width: 992px) {
  .nav-wrap {
    padding: 1rem 2rem;
  }
  .landing-wrap,
  .intro-wrap {
    padding: 3rem;
  }
  .intro-one {
    width: 80%;
  }
  .landing-wrap h1 {
    font-size: 2.5rem;
  }
}
/* ==========================
   MOBILE
========================== */
@media (max-width: 768px) {
  /* NAVBAR */
  .nav-wrap {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
  }
  .nav-left {
    flex-direction: row;
    gap: 0.5rem;
  }
  .nav-left h2 {
    font-size: 1.1rem;
    text-align: center;
  }
  .nav-left svg {
    width: 45px;
  }
  .nav-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .nav-right a {
    font-size: 0.9rem;
  }
  /* LANDING */
  .landing {
    min-height: 100vh;
  }
  .landing-wrap {
    padding: 2rem;
    text-align: center;
  }
  .landing-wrap h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  .landing-wrap h2 {
    font-size: 1.2rem;
  }
  /* INTRO */
  .intro-wrap {
    padding: 3rem 1.5rem;
  }
  .intro-one {
    width: 100%;
    gap: 1.5rem;
  }
  .intro-one h2 {
    font-size: 1.8rem;
  }
  .intro-one h3 {
    font-size: 1rem;
    line-height: 1.7;
  }
  .main-btn {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }
}
/* ==========================
   TABLETS
========================== */
@media (max-width: 992px) {
  .service-wrap,
  .name-wrap {
    padding: 3rem;
  }
  .service-header,
  .name-content {
    width: 80%;
  }
  .service-cards {
    gap: 1.5rem;
  }
}
/* ==========================
   MOBILE
========================== */
@media (max-width: 768px) {
  /* Service */
  .service-wrap {
    padding: 3rem 1.5rem;
  }
  .service-header {
    width: 100%;
    gap: 1rem;
  }
  .service-header h2 {
    font-size: 1.8rem;
  }
  .service-header h3 {
    font-size: 1rem;
    line-height: 1.6;
  }
  .service-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-cards .card {
    padding: 1.5rem;
  }
  .service-cards .card h4 {
    font-size: 1.25rem;
  }
  .service-cards .card p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .service-cards .card .thumb {
    aspect-ratio: 16 / 9;
  }
  /* WoF Section */
  .name-wrap {
    padding: 3rem 1.5rem;
  }
  .name-content {
    width: 100%;
    gap: 1.5rem;
  }
  .name-content h2 {
    font-size: 1.8rem;
  }
  .name-content h3 {
    font-size: 1rem;
    line-height: 1.7;
  }
}
/* ==========================
   TABLETS
========================== */
@media (max-width: 992px) {
  .pricing-wrap,
  .about-wrap {
    padding: 3rem;
  }
  .pricing-header,
  .about-header {
    width: 80%;
  }
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Make the third card span both columns */
  .pricing-cards .card:last-child {
    grid-column: 1 / -1;
  }
}
/* ==========================
   MOBILE
========================== */
@media (max-width: 768px) {
  /* Pricing */

  .pricing-wrap {
    padding: 3rem 1.5rem;
  }
  .pricing-header {
    width: 100%;
    gap: 1rem;
  }
  .pricing-header h2 {
    font-size: 1.8rem;
  }
  .pricing-header h3 {
    font-size: 1rem;
    line-height: 1.6;
  }
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .pricing-cards .card:last-child {
    grid-column: auto;
  }
  .pricing-cards .card {
    padding: 1.5rem;
  }
  .pricing-cards .card h4 {
    font-size: 1.5rem;
  }
  .pricing-cards .card p {
    font-size: 1.2rem;
  }
  .pricing-cards .card span {
    font-size: 1rem;
  }
  .pricing-cards .card ul {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .pricing-bottom {
    gap: 1rem;
    text-align: center;
  }
  /* About */
  .about-wrap {
    padding: 3rem 1.5rem;
  }
  .about-header {
    width: 100%;
    gap: 1.5rem;
  }
  .about-header h2 {
    font-size: 1.8rem;
  }
  .about-header h3 {
    font-size: 1rem;
    line-height: 1.7;
  }
}
/* ==========================
   TABLETS
========================== */
@media (max-width: 992px) {
  .testimonial-wrap {
    padding: 3rem;
  }
  .testimonial-header {
    width: 80%;
  }
  .reviews {
    gap: 2rem;
  }
  .review {
    width: 100%;
  }
}
/* ==========================
   MOBILE
========================== */
@media (max-width: 768px) {
  .testimonial-wrap {
    padding: 3rem 1.5rem;
  }
  .testimonial-header {
    width: 100%;
    gap: 1rem;
    text-align: center;
  }
  .testimonial-header h2 {
    font-size: 1.8rem;
  }
  .testimonial-header h3 {
    font-size: 1rem;
    line-height: 1.6;
  }
  .reviews {
    flex-direction: column;
    gap: 2rem;
  }
  .review {
    width: 100%;
    max-width: 500px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--card-one);
    box-shadow: var(--shadow);
  }
  .review h4 {
    font-size: 1.2rem;
  }
  .review p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .stars {
    font-size: 1rem;
  }
}
/* ==========================
   TABLETS
========================== */
@media (max-width: 992px) {
  .footer-wrap {
    padding: 2.5rem 3rem;
  }
  .footer-content {
    gap: 3rem;
    flex-wrap: wrap;
  }
  .footer-msg {
    max-width: 100%;
  }
}
/* ==========================
   MOBILE
========================== */
@media (max-width: 768px) {
  .footer-wrap {
    padding: 3rem 1.5rem;
  }
  .footer-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .footer-header svg {
    width: 60px;
  }
  .footer-header h2 {
    font-size: 1.6rem;
  }
  .footer-content {
    flex-direction: column;
    gap: 2.5rem;
  }
  .footer-msg {
    align-items: center;
    text-align: center;
  }
  .footer-msg h3 {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--muted-one);
    padding-top: 1rem;
  }
  .footer-btns {
    width: 100%;
    align-items: center;
  }
  .footer-btns .main-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .footer-column {
    align-items: center;
    text-align: center;
  }
  .column-content {
    align-items: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
  }
  .bottom-btn {
    justify-content: center;
    align-items: center;
  }
  .btm-divide {
    height: 40px;
  }
}
