@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  font-size: 62.5%;
}

html {
  height: 100%;
}

body {
  font-family: "Figtree", sans-serif;
  line-height: 1.5;
  height: 100%;
}

a,
input[type=submit] {
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s ease-in-out;
}

li {
  list-style: none;
}

img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

input,
fieldset,
textarea {
  border: none;
  background: none;
  outline: none;
  border-radius: 0.5rem;
}

/* === utilities/_layout.scss === */
.container {
  display: grid;
  grid-template-columns: [container-start] repeat(12, minmax(min-content, 12.5rem)) [container-end];
  justify-content: center;
}

.page-width {
  grid-column: container-start/container-end;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

.padd {
  padding: calc(1rem + 1vh) calc(1rem + 6vw);
}

.sec-link {
  background-color: transparent;
  color: #d595f6;
  border: 1px solid #d595f6;
  font-size: 1.8rem;
  padding: 1rem 3rem;
  border-radius: 0.5rem;
  cursor: pointer;
}
.sec-link:hover {
  background-color: #d595f6;
  color: #fff;
}

.sec-para {
  font-size: 1.8rem;
  color: rgba(30, 30, 30, 0.9);
  text-align: start;
  margin-bottom: 1rem;
}
.sec-para span {
  display: block;
}

.sec-title {
  font-size: calc(1rem + 2vw);
  font-weight: 900;
  color: #57caff;
  text-align: center;
}

.sec-sub-para {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(102, 102, 102, 0.4);
}

.responsive-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}

.responsive-grid-b {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50rem, 1fr));
  gap: 3rem;
}

.sec-mini-title {
  font-size: 1.8rem;
  color: #d595f6;
  position: relative;
  display: inline-block;
}
.sec-mini-title::before, .sec-mini-title::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 0.2rem;
  width: 2rem;
  transform: translateY(-50%);
  background-color: #57caff;
}
.sec-mini-title::before {
  left: -60%;
}
.sec-mini-title::after {
  right: -60%;
}

.sec-sub-title {
  font-size: 2rem;
  font-weight: 500;
  color: #d595f6;
  transition: all 0.25s ease-in-out;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec-cta {
  background-color: #57caff;
  color: #fff;
  border: none;
  font-size: 1.8rem;
  padding: 1rem 3rem;
  border-radius: 0.5rem;
  cursor: pointer;
  display: block;
}
.sec-cta:hover {
  background-color: #4bbdf2;
  color: #fff;
}

.sec-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.header {
  background-color: #000;
  padding: calc(0.3rem + 1vh) calc(1rem + 6vw);
}
.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav-logo {
  width: 20rem;
}
.header__nav-logo img {
  height: 30%;
  width: 30%;
}
.header__nav-links {
  display: flex;
  gap: 2rem;
  color: #f0ffff;
}
.header__nav-links li a {
  color: #f0ffff;
  font-size: 1.8rem;
}
.header__nav-hamburger {
  display: none;
}

.hide-logo {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  pointer-events: none;
}

.hero {
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  padding: calc(2rem + 12vh);
  justify-content: center;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.9) 90%);
  pointer-events: none;
  z-index: 1;
}
.hero__subtitle {
  font-size: 2.5rem;
  color: #57caff;
  z-index: 3;
  position: relative;
}
.hero__title {
  font-size: calc(2rem + 2.5vw);
  color: #f0ffff;
  line-height: 1.3;
  z-index: 3;
  position: relative;
}
.hero__title p {
  text-align: center;
}
.hero__para {
  font-size: 2rem;
  color: #fff;
  z-index: 3;
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.hero__para span {
  display: inline;
  white-space: normal;
}
.hero__btns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 22rem));
  justify-content: center;
  gap: 2rem;
  z-index: 4;
  position: relative;
}

.intro {
  background-color: #039ae0;
  padding: calc(1rem + 6vh);
}
.intro__title {
  color: #fff;
}
.intro__title span {
  color: #1e1e1e;
}
.intro__box {
  flex-direction: row;
}
.intro__img-cont {
  flex-basis: 40%;
  display: flex;
  justify-content: center;
}
.intro__img-cont img {
  width: 40%;
  height: 40%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.intro__para {
  border: 1px solid #f0ffff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  color: #f0ffff;
  font-size: 1.8rem;
  max-width: 65ch;
  flex-basis: 60%;
}

.services {
  background-color: #000;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.services__title span {
  color: #fff;
}
.services__card {
  background-color: #fff;
  padding: 3rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.services__card i {
  font-size: 4rem;
  color: #1e1e1e;
  z-index: 2;
  position: relative;
  align-self: center;
}
.services__card i::after {
  content: "";
  position: absolute;
  width: 5rem;
  height: 5rem;
  background-color: #57caff;
  border-radius: 50%;
  top: 0;
  right: 0;
  transform: translate(30%, -30%);
  z-index: -1;
}
.services__subtitle {
  font-size: 2rem;
  color: #1e1e1e;
  text-align: center;
  text-transform: uppercase;
  padding-top: 2rem;
}
.services__para {
  color: #1e1e1e;
  font-size: 1.8rem;
}
.services button {
  margin-top: 1.5rem;
}

.tech-stack {
  background-color: #f8f9fa;
  text-align: center;
  padding: 4rem 1rem;
}

.stack-icons {
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2.5rem;
  justify-items: center;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.tech-item i {
  font-size: clamp(4rem, 6vw, 5rem); /* Responsive scaling */
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0.5rem;
}

.tech-item span {
  font-size: 1rem;
  color: #666666;
  font-weight: 500;
  margin-top: 0.3rem;
}

.tech-item:hover {
  transform: scale(1.15);
}

.cta-banner {
  background-color: #000;
}
.cta-banner .cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #039ae0;
  border-radius: 0.5rem;
  padding: calc(1rem + 1vh) calc(1rem + 6vw);
}
.cta-banner .cta-content__title {
  font-size: calc(1rem + 1.5vw);
  color: #fff;
}
.cta-banner .cta-content__para {
  font-size: 1.8rem;
  color: #f0ffff;
}
.cta-banner .cta-content__btn {
  font-weight: 700;
  background-color: #d595f6;
  color: #fff;
}

.projects {
  background-color: #039ae0;
  padding: calc(1rem + 6vh);
}
.projects__title {
  color: #f0ffff;
}
.projects-item {
  background-color: #fff;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.projects-item figure {
  width: 100%;
  padding-bottom: 66.67%;
  overflow: hidden;
  margin: 0;
  flex-shrink: 0;
  position: relative;
}
.projects-item figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem 0.5rem 0 0;
  -o-object-fit: cover;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.projects-item__text {
  flex-grow: 1;
  padding: 2rem;
}
.projects-item__text h3 {
  font-size: 1.8rem;
  overflow-wrap: break-word;
}
.projects-item__text span {
  font-size: 1.5rem;
  color: #666666;
  text-transform: uppercase;
  margin-top: auto;
}

.latest-blogs {
  background-color: #000;
  padding: calc(1rem + 6vh);
}
.latest-blogs__card {
  padding: 1.5rem;
  background-color: #f0ffff;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.latest-blogs__img-photo {
  width: 100%;
  height: 100%;
}
.latest-blogs__img-photo img {
  width: 100%;
  height: 100%;
}
.latest-blogs__tags {
  font-size: 1.5rem;
}
.latest-blogs__blog-title {
  font-size: 1.8rem;
  color: #57caff;
}
.latest-blogs__blog-para {
  font-size: 1.5rem;
  padding-bottom: 1.5rem;
  color: #666666;
}
.latest-blogs__info {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.latest-blogs__info p {
  font-size: 1.5rem;
}
.latest-blogs__author-photo {
  width: 50px;
  height: 50px;
}
.latest-blogs__author-photo img {
  border-radius: 50%;
}
.latest-blogs__date {
  color: #666666;
}

.clients {
  background-color: #000;
  padding: 4rem 0;
}
.clients__list {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 5rem;
}
.clients__list figure {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}
.clients__list figure svg {
  width: 70%;
  height: auto;
  max-width: 80px;
  fill: currentColor;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.clients__list figure svg:hover {
  transform: scale(1.05);
  opacity: 1;
}

.contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  background-color: #000;
}
.contact__img {
  flex: 0 0 auto;
  width: 220px;
  min-width: 100px;
}
.contact__img img {
  width: 100%;
  height: auto;
  opacity: 0.6;
}
.contact__submit {
  flex: 1;
  max-width: 600px;
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.08);
}
.contact__title {
  margin-bottom: 2rem;
  text-align: center;
}
.contact fieldset {
  border: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact fieldset label {
  font-size: 1.5rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.25rem;
}
.contact fieldset input,
.contact fieldset textarea,
.contact fieldset select {
  font-size: 1.5rem;
  font-family: inherit;
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.2s ease;
  background: #fafafa;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.contact fieldset input::-moz-placeholder, .contact fieldset textarea::-moz-placeholder, .contact fieldset select::-moz-placeholder {
  color: #9ca3af;
}
.contact fieldset input::placeholder,
.contact fieldset textarea::placeholder,
.contact fieldset select::placeholder {
  color: #9ca3af;
}
.contact fieldset input:focus,
.contact fieldset textarea:focus,
.contact fieldset select:focus {
  outline: none;
  border-color: #57caff;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.contact fieldset input:hover:not(:focus),
.contact fieldset textarea:hover:not(:focus),
.contact fieldset select:hover:not(:focus) {
  border-color: #d1d5db;
}
.contact fieldset textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}
.contact__link {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #57caff 0%, #48bcf2 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.contact__link:hover {
  background: linear-gradient(135deg, #50c5fc 70%, #47bef5 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}
.contact__link:active {
  transform: translateY(0);
}
.contact__captcha {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0 1rem 0;
}
.contact__captcha .g-recaptcha {
  transform: scale(1);
  transform-origin: center;
}

.footer {
  margin-top: auto;
  flex-direction: row;
  background-color: #f0ffff;
}
.footer__title {
  font-size: 2rem;
  padding-bottom: 1rem;
  color: #1e1e1e;
}
.footer__desc {
  font-size: 1.5rem;
  color: #1e1e1e;
}
.footer__links-title {
  font-size: 1.8rem;
  padding-bottom: 1rem;
  color: #1e1e1e;
}
.footer__links-label {
  font-size: 1.5rem;
  color: #1e1e1e;
}
.footer__socials {
  display: flex;
  gap: 1rem;
}
.footer__socials a {
  color: #1e1e1e;
  font-size: 1.8rem;
}
.footer__socials i {
  font-size: 1.8rem;
}
.footer__socials-title {
  font-size: 1.5rem;
  color: #1e1e1e;
}
.footer__mail {
  font-size: 1.5rem;
}

.back-to-top {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  height: 5rem;
  width: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(45deg, hsla(199, 100%, 67%, 0.9), hsla(280, 84%, 82%, 0.7)) !important;
  color: #f0ffff;
  border: none;
  border-radius: 50%;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  transform: scale(0.8);
  pointer-events: all;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.2);
}
.back-to-top svg {
  width: 2.4rem;
  height: 2.4rem;
}
.back-to-top:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}
.back-to-top:hover {
  transform: translateY(0) scale(1.1);
  box-shadow: 0 0.6rem 1.5rem rgba(0, 0, 0, 0.3);
}
.back-to-top:active {
  transform: translateY(0) scale(0.95);
}

.show-back-to-top {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}

@media screen and (max-width: 600px) {
  .back-to-top {
    bottom: 2rem;
    right: 2rem;
    height: 4.5rem;
    width: 4.5rem;
  }
  .back-to-top svg {
    width: 2rem;
    height: 2rem;
  }
}
@media screen and (max-width: 441px) {
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    height: 4rem;
    width: 4rem;
  }
}
.banner-post {
  padding-top: 0;
}
.banner-post__image-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 400px;
}
.banner-post__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  filter: brightness(0.9);
}
.banner-post__image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
.banner-post__content {
  position: absolute;
  top: 50%;
  left: 5rem;
  right: 2rem;
  transform: translateY(-50%);
  color: white;
  text-align: left;
  z-index: 1;
}
.banner-post__title {
  text-align: left;
  font-size: calc(2rem + 3vw);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.2;
}
.banner-post__content p {
  font-size: calc(1rem + 1vw);
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}
.banner-post__content a {
  color: white;
  font-size: calc(1rem + 1vw);
  text-decoration: underline;
  font-weight: 600;
  transition: all 0.3s ease;
}
.banner-post__content a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.all-posts {
  padding-block: 3rem;
}
.all-posts__title {
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
  color: #57caff;
}
.all-posts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.post-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.post-card__image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-card__content {
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.post-card__category {
  align-self: flex-start;
  background-color: rgba(87, 202, 255, 0.2);
  color: #444;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  margin-bottom: 0.8rem;
  text-transform: capitalize;
}
.post-card__category.design {
  background-color: #e3f2fd;
  color: #1565c0;
}
.post-card__category.security {
  background-color: #fbe9e7;
  color: #d84315;
}
.post-card__category.productivity {
  background-color: #e8f5e9;
  color: #2e7d32;
}
.post-card__title {
  font-weight: 600;
  color: #222;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}
.post-card__title:hover {
  color: #d595f6;
}
.post-card__meta {
  font-size: 1.5rem;
  color: rgba(102, 102, 102, 0.7);
  margin-bottom: 0.7rem;
}
.post-card__btn {
  align-self: flex-start;
  background-color: #d595f6;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.25s ease;
  margin-bottom: 1.5rem;
}
.post-card__btn:hover {
  background-color: rgb(198.0991304348, 111.3930434783, 242.8069565217);
}

.blog-content {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #333;
}

.blog-content p {
  margin-bottom: 1.6rem;
}

.blog-content h1 { font-size: 3rem; margin: 2rem 0; }
.blog-content h2 { font-size: 2.4rem; margin: 1.8rem 0; }
.blog-content h3 { font-size: 2rem; margin: 1.6rem 0; }

.blog-content ul,
.blog-content ol {
  margin-left: 2rem;
  margin-bottom: 1.6rem;
}

.blog-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.blog-article {
  max-width: 100%;
}
.blog-article__title {
  font-size: calc(1rem + 2vw);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.blog-article__date {
  color: #666;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}
.blog-article__author {
  font-weight: 500;
  color: #333;
}
.blog-article__tag {
  display: inline-block;
  background-color: rgba(87, 202, 255, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.blog-sidebar {
  position: sticky;
  top: 2rem;
  height: -moz-fit-content;
  height: fit-content;
}
.blog-sidebar__subsec {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.blog-sidebar__subsec:last-child {
  margin-bottom: 0;
}
.blog-sidebar__title {
  font-size: calc(1rem + 1vw);
  margin-bottom: 1rem;
  color: #333;
  font-weight: 600;
}
.blog-sidebar__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-sidebar__links li {
  margin-bottom: 0.5rem;
}
.blog-sidebar__links li a {
  color: #666;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
  transition: color 0.3s ease;
}
.blog-sidebar__links li a:hover {
  color: #007bff;
}
.blog-sidebar__links li:last-child a {
  border-bottom: none;
}

.recent-posts__item {
  display: flex;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}
.recent-posts__item:hover .recent-posts__title {
  color: #007bff;
}
.recent-posts__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.recent-posts__image {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.recent-posts__content {
  flex: 1;
}
.recent-posts__title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 0.25rem 0;
}
.recent-posts__date {
  font-size: 1.8rem;
  color: #666;
}

.tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tags li a {
  display: inline-block;
  background: #e9ecef;
  color: #495057;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
.tags li a:hover {
  background: #007bff;
  color: white;
}

.error-main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

.error-card {
  background: #fff;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  max-width: 420px;
  width: 100%;
}

.error-card__title {
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #d9534f;
}

.error-card__subtitle {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn-primary,
.btn-secondary {
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-size: 1.4rem;
}

.btn-primary {
  background: #007bff;
  color: #fff;
}

.btn-secondary {
  background: #f1f1f1;
  color: #333;
}

.all-projects {
  background-color: #000;
  padding: calc(1rem + 6vh);
}
.all-projects__title {
  color: #f0ffff;
}
.all-projects {
  /* FILTER BUTTONS */
}
.all-projects__filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.all-projects__filters .filter-btn {
  padding: 0.6rem 1.4rem;
  font-size: 1.5rem;
  background-color: #f0ffff;
  border: 1px solid #666666;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: 0.3s ease;
}
.all-projects__filters .filter-btn.active, .all-projects__filters .filter-btn:hover {
  background-color: #039ae0;
  color: #f0ffff;
}
.all-projects {
  /* PROJECTS GRID */
}
.all-projects__grid {
  margin-top: 2rem;
}
.all-projects {
  /* CARD */
}
.all-projects-item {
  background-color: #f0ffff;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  /* PROJECT IMAGE */
}
.all-projects-item figure {
  width: 100%;
  padding-bottom: 66.67%;
  position: relative;
  margin: 0;
}
.all-projects-item figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem 0.5rem 0 0;
}
.all-projects-item {
  /* PROJECT TEXT */
}
.all-projects-item__text {
  flex-grow: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.all-projects-item__text h3 {
  font-size: 1.8rem;
  color: #57caff;
  overflow-wrap: break-word;
}
.all-projects-item__text span {
  font-size: 1.5rem;
  color: #666666;
  text-transform: uppercase;
}

/* ========================================================= */
/* HERO SECTION */
/* ========================================================= */
.services-hero {
  background-color: #f0ffff;
  padding: calc(1rem + 6vh);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2rem;
  align-items: center;
}
.services-hero__title {
  color: #57caff;
}
.services-hero__lead {
  max-width: 60ch;
  color: #1e1e1e;
  font-size: 1.8rem;
}
.services-hero__quick-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1rem 0;
  color: #1e1e1e;
  font-size: 1.5rem;
}
.services-hero__cta {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}
.services-hero__art img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
@media (max-width: 900px) {
  .services-hero {
    grid-template-columns: 1fr;
  }
}

/* ========================================================= */
/* SERVICES LIST / GRID */
/* ========================================================= */
.services-list {
  background-color: #000;
  padding: calc(1rem + 6vh);
}
.services-list__title {
  color: #f0ffff;
}
.services-list__grid {
  margin-top: 1.6rem;
}

/* SERVICE CARD */
.service-card {
  background-color: #f0ffff;
  padding: 1.5rem;
  border-radius: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.service-card__icon {
  font-size: 2.2rem;
  color: #57caff;
}
.service-card__title {
  font-size: 1.8rem;
  color: #57caff;
}
.service-card__lead {
  font-size: 1.5rem;
  color: #666666;
}
.service-card__deliverables {
  margin: 0.6rem 0;
  padding-left: 0.4rem;
  color: #666666;
  font-size: 1.5rem;
}
.service-card__desc {
  color: #666666;
  margin-top: auto;
  font-size: 1.3rem;
}
.service-card__foot {
  display: flex;
  gap: 1rem;
  margin-top: 0.6rem;
}
.service-card__foot .sec-cta {
  font-size: 1.5rem;
  padding: 1.2rem 1.6rem;
  justify-self: center;
  text-align: center;
}

/* BEAUTIFIED BULLET LISTS (hero + deliverables) */
.services-hero__quick-list li,
.service-card__deliverables li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  color: #666666;
}
.services-hero__quick-list li i,
.service-card__deliverables li i {
  font-size: 1rem;
  color: #039ae0;
}

/* ========================================================= */
/* PROCESS SECTION */
/* ========================================================= */
.services-process {
  background-color: #fff;
  padding: calc(1rem + 6vh);
}
.services-process__title {
  color: #57caff;
}
.services-process .process-steps {
  margin-top: 1rem;
  display: flex;
  gap: 1.4rem;
  padding: 0;
  list-style: none;
}
.services-process .process-steps li {
  flex: 1;
  background: #f0ffff;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  border: 1px solid #039ae0;
}
.services-process .process-steps li h4 {
  margin: 0 0 0.4rem 0;
}
@media (max-width: 800px) {
  .services-process .process-steps {
    flex-direction: column;
  }
}

/* ========================================================= */
/* EXAMPLES PREVIEW */
/* ========================================================= */
.services-examples {
  background-color: #000;
  padding: calc(1rem + 6vh);
}
.services-examples__title {
  color: #f0ffff;
}
.services-examples__grid {
  margin-top: 1.6rem;
}

/* ========================================================= */
/* CONTACT CTA */
/* ========================================================= */
.services-contact {
  background-color: #039ae0;
  padding: calc(1rem + 6vh);
  text-align: center;
}
.services-contact__box {
  max-width: 720px;
  margin: 0 auto;
}
.services-contact__box p {
  font-size: 1.5rem;
}
.services-contact__box .sec-cta {
  display: inline-block;
  margin-top: 2rem;
}
.services-contact .sec-title {
  color: #f0ffff;
}

/* END OF SERVICES PARTIAL */
.legal-hero {
  padding-block: 2rem 1rem;
  text-align: center;
}
.legal-hero__title {
  margin-bottom: 0.5rem;
}
.legal-hero__subtitle {
  font-size: 2rem;
  color: rgba(102, 102, 102, 0.7);
}

.legal-content {
  padding-block: 2rem 4rem;
}
.legal-content__container {
  display: flex;
  justify-content: center;
}
.legal-content__wrapper {
  max-width: 800px;
  width: 100%;
  line-height: 1.65;
  font-size: 2rem;
  color: #666666;
}
.legal-content__wrapper p {
  margin-bottom: 1rem;
}
.legal-content__wrapper h2 {
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  font-size: calc(1rem + 1vw);
  font-weight: 600;
  color: #57caff;
}
.legal-content__wrapper ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.legal-content__wrapper ul li {
  margin-bottom: 0.4rem;
  font-size: inherit;
}
.legal-content__wrapper a {
  color: #d595f6;
  text-decoration: underline;
}

@media screen and (max-width: 500px) {
  .hero__subtitle {
    font-size: 1.8rem;
    line-height: 1.1;
  }
  .hero__btns {
    grid-template-columns: 1fr;
  }
  .projects__title.sec-title {
    color: #fff;
  }
  .intro__title.sec-title {
    color: #fff;
  }
  .contact__captcha .g-recaptcha {
    transform: scale(0.9);
    transform-origin: center;
  }
  .sec-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #57caff;
    text-align: center;
  }
  .services-hero__cta .sec-cta, .services-hero__cta .sec-link {
    padding: 1.1rem 1.4rem;
  }
}
@media screen and (max-width: 600px) {
  .padd {
    padding: calc(1rem + 4vh) calc(1rem + 2vw);
  }
  .header__nav {
    flex-direction: column;
  }
  .header__nav-logo {
    position: fixed;
    top: 2.8rem;
    left: 2.5rem;
    width: 12rem;
    z-index: 1;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  .header__nav-logo img {
    height: 40%;
    width: 40%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header__nav-links {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    background-color: #000;
    padding: calc(2rem + 12vh) calc(2rem + 12vw);
    transform: translateX(40rem);
    transition: transform 0.4s ease-in-out;
    z-index: 10;
  }
  .display-nav {
    transform: translateX(0);
  }
  .header__nav-hamburger {
    position: fixed;
    top: 2.8rem;
    right: 3rem;
    height: 4rem;
    width: 7rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 0.5rem;
    padding: 0 1rem;
    background-image: linear-gradient(45deg, hsla(199, 100%, 67%, 0.9), hsla(280, 84%, 82%, 0.7));
    border-radius: 0.5rem;
    z-index: 11;
  }
  .header__nav-hamburger .line-1,
  .header__nav-hamburger .line-2 {
    height: 0.2rem;
    background-color: #f0ffff;
    transition: all 0.3s ease-in-out;
  }
  .header__nav-hamburger .line-1 {
    width: 70%;
    align-self: flex-end;
  }
  .header__nav-hamburger .line-2 {
    width: 100%;
    align-self: center;
  }
  .header__nav-hamburger .line-1-toggled {
    transform: rotate(45deg) translateX(-0.5rem) translateY(1rem);
    width: 50%;
  }
  .header__nav-hamburger .line-2-toggled {
    transform: rotate(-45deg) translateX(0.4rem) translateY(-0.2rem);
    width: 50%;
  }
  .intro__box {
    flex-direction: column;
  }
  .footer {
    flex-wrap: wrap;
  }
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar__title {
    font-size: 1.8rem;
    font-weight: 700;
  }
}
@media (max-width: 900px) {
  .cta-banner .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: calc(1rem + 1vh);
  }
  .cta-banner .cta-content__texts {
    text-align: center;
  }
  .cta-banner .cta-content__title {
    font-size: 2.5rem;
  }
  .cta-banner .cta-content__para {
    font-size: 1.5rem;
  }
  .cta-banner .cta-content__btn {
    width: 100%;
    max-width: 300px;
    margin-top: 1.5rem;
  }
}/*# sourceMappingURL=main-style.css.map */