@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Science+Gothic:wght@100..900&display=swap');
:root {
  --primary-color: #344e89;
  --secondary-color: #5664a6;
  --accent-color: #1fa39a;
}

body {
  margin: 0;
  padding: 0;
  height: 2000px;
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Science Gothic', sans-serif;
  font-weight: 600;
  letter-spacing: 1.1px;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 110px;
}

header {
  height: 100px;
  backdrop-filter: blur(4px);
  z-index: 99;
}

header.shadow {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

header.header-top {
  top: 2% !important;
}

header.header-bg {
  background-color: #121212;
  transition: background-color 0.5s ease-out;
}

.logo {
  width: 90px;
}

header i {
  font-size: 25px;
}

.logo.img-invert {
  filter: saturate(0) contrast(1000%) brightness(0) invert(1);
}

.bi-list {
  color: black;
}

.bi-list.list-clr {
  filter: invert(1);
}

/* hero section */

.hero {
  margin-top: 100px;
}

.hero h2 {
  font-size: 55px;
  color: var(--accent-color);
}

.hero p {
  font-size: 20px;
}

.getStarted {
  padding: 10px;
  color: white;
  border-radius: 5px;
  border: none;
  background: var(--secondary-color);
}

/* nav */

nav ul {
  list-style-type: none;
}

nav a {
  text-decoration: none;
  color: black;
  padding-bottom: 4px;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 2px;
  background-color: currentColor;
  width: 0;
  transition: all 0.2s ease;
  transform: translateX(-50%);
}

nav a:hover::after {
  width: 100%;
}

nav a.nav-color {
  color: var(--accent-color) !important;
}

/* tech marquee */

.tech-marquee {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  margin-top: 120px;
}

.tech-track {
  display: inline-flex;
  gap: 60px;
  align-items: center;
  animation: scroll 25s linear infinite;
}

.tech-track img {
  width: 140px;
  transition: all 0.3s;
  opacity: 0.8;
}

.tech-track img:hover {
  opacity: 1;
  transform: scale(1.2);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  
  100% {
    transform: translateX(-50%);
  }
}

/* seevices */

/* Parent column must allow visible overflow */
.service-card .col-12,
.service-card .col-sm-6,
.service-card .col-md-4 {
  overflow: visible;
}

.service-img {
  object-fit: cover;
}

.service-static-animation,
.service-dynamic-animation,
.service-ecommerce-animation,
.service-wordpress-animation{
  width: 100%;
}

/* Card styling */
.services .card {
  width: 100%;
  transition: box-shadow 0.5s ease;
}

.services .card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.services {
  background-color: ghostwhite;
}

.card img {
  height: 200px;
}

.services .row {
  margin: 0;
  background-color: whitesmoke;
}

/* web animation  */

.web-animation {
  width: 300px;
  height: 300px;
  margin: 20px auto;
}

/* aside */

aside {
  position: fixed;
  top: 0;
  right: 0;
  background-color: ghostwhite;
  z-index: 9999;
  transform: translateX(100%);
  overflow-y: scroll;
  width: 75%;
}

aside img {
  width: 60px;
}

aside ul {
  list-style-type: none;
}

aside a {
  text-decoration: none;
  color: var(--secondary-color);
  padding: 10px;
  font-weight: 700;
  font-size: 22px;
}

aside a:hover {
  text-decoration: underline;
}

aside.active {
  transform: translateX(0);
  transition: all 0.2s ease-in;
}

aside.hide {
  transform: translateX(100%);
  transition: all 0.2s ease-in;
}

/* about */

.about {
  background: none;
}

.about p::first-letter {
  color: var(--secondary-color);
  font-size: 23px;
}

.about p {
  text-align: justify;
}

.join-btn {
  background: transparent;
  color: var(--secondary-color);
}

/* others */

.mid-color {
  color: var(--secondary-color);
}

.more {
  background: linear-gradient(145deg, #4b6cff, #364ecc);
  color: #fff;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.18s ease-in-out;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.30);
}

.more i {
  transition: transform 0.2s ease;
}

.more:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.35);
}

.more:hover i {
  transform: translate(2px, -2px);
}

.more:active {
  transform: translate(0px, 0px);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
}

.contact-box {
  background: var(--primary-color);
  color: #fff;
  border-radius: 1rem;
  padding: 40px 30px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.45);
}

.contact-btn {
  background: linear-gradient(145deg, #14e6c9, #0eb89e);
  color: #000;
  padding: 12px 28px;
  font-size: 1.2rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.35);
  transition: all 0.25s ease-in-out;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.45);
}

.contact-btn-secondary {
  background: linear-gradient(145deg, #4b6cff, #364ecc);
  color: #fff;
}

.contact-btn i {
  transition: transform 0.25s ease-in-out;
}

.contact-btn:hover i {
  transform: translate(4px, -4px);
}

/* contact info */
.contact-info {
  background-image: url('/assets/svg/parallax.svg');
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  filter: brightness(150%);
}

.contact-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.contact-info .container {
  position: relative;
  z-index: 1;
}

.contact-card {
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact-card i {
  color: #00ffcc;
}

.contact-card h5 {
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-card p {
  margin: 0;
}

/* testimonials */

.testimonials .row div:not(.first-testimonial) {
  transition: transform 0.3s ease;
}

.testimonials .row div:hover:not(.first-testimonial) {
  transform: rotate(3deg) scale(0.9);
}

.testimonials .first-testimonial {
  transform: rotate(5deg);
}

.testimonials .first-testimonial:hover {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

/* pricing */

.pricing {
  position: relative;
  clip-path: polygon(0 0,
      100% 3%,
      100% 100%,
      0% 97%);
  z-index: 30;
  padding: 30% 0 !important;
}

.price-card {
  border-radius: 20px;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 10px rgba(0, 200, 83, 0.5),
    0 0 20px rgba(0, 200, 83, 0.4),
    0 0 30px rgba(0, 200, 83, 0.3);
}

.price-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 30px;
  border-radius: 50px 0 0 50px;
  background-color: black;
  font-family: 'bootstrap-icons';
  content: "\F46C";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #00c853;
}

/* WhatsApp contact */

.wp {
  position: fixed;
  bottom: 4%;
  right: 7%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  opacity: 1;
  z-index: 99999;
  transition: opacity 0.2s ease;
}

.wp.show {
  opacity: 1;
}

.wp.hidden {
  opacity: 0;
  pointer-events: none;
}

.wp i {
  font-size: 35px;
}

.wp::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: linear-gradient(45deg, #25D366, #128C7E);
  z-index: -1;
}

.custom-tooltip {
  --bs-tooltip-bg: var(--accent-color);
  --bs-tooltip-color: black;
}

/* faq */
.faq-section {
  background: #f8f9fc;
}

.faq-title {
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 40px;
  padding-top: 40px;
}

.carousel-control-prev-icon {
  background-color: red;
  border-radius: 50%;
  background-size: 100%, 100%;
}

.carousel-control-next-icon {
  background-color: blue;
  border-radius: 50%;
  background-size: 100%, 100%;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: none;
}

.accordion-button:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(90, 60, 249, 0.25);
}

.contact-table i {
  color: var(--accent-color);
  font-size: 1.3rem;
  margin-right: 8px;
}

.pricing-box {
  background: #fff;
  border-radius: 10px;
  border-left: 5px solid var(--accent-color);
  padding: 15px;
  margin-bottom: 15px;
}

/* footer */

footer {
  background-image: url("/assets/svg/footer-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: white;
}

footer ul.list-unstyled li a {
  color: white !important;
}

footer ul.list-unstyled li i {
  color: white;
}

footer img {
  width: 60%;
  filter: invert(1);
}

footer a {
  text-decoration: none;
  font-size: 22px;
}

footer i {
  margin-right: 10px;
}

footer h2 {
  mix-blend-mode: difference;
}

/* overlay */

.overlay {
  backdrop-filter: blur(2px);
  z-index: 999;
}

/* media queries */

@media (min-width: 768px) {
  .rounded-md-4 {
    border-radius: 1.5rem !important;
  }
  
  .about {
    background: honeydew;
  }
  
  footer img {
    width: 20%;
  }
  
  footer {
    background-position: top;
  }
  
  footer ul li a {
    font-size: 14px !important;
  }
  
  .contact-card {
    margin-right: 10px;
  }
  
  .pricing {
    padding: 5% 0 !important;
    clip-path: polygon(0 0,
        100% 6%,
        100% 100%,
        0% 94%);
  }
  
  .hero {
    margin-top: 130px;
  }
  
  nav li {
    font-size: 14px;
  }
  
  .wp {
    right: 3%;
  }
  
  .web-animation {
    width: 100%;
  }
  
  .contact-card {
    padding: 10px 15px;
  }
}

/* mini phones */
@media (max-width: 320px) {
  aside {
    width: 100%;
  }
}