/* =========================
GLOBAL
========================= */

body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

html {
  scroll-behavior: smooth;
}

section {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* =====================
NAVBAR
===================== */

.main-navbar {
  background: white;

  padding: 2px 0;

  border-bottom: 1px solid #eee;

  transition: 0.3s;
}

/* logo */

.logo-img {
  height: 80px;

  margin-right: 10px;
}

/* BRAND TEXT */

.brand-text{

font-size:20px;
font-weight:700;

}

/* 8Bit */

.brand-bit{

color:#1FA6A1;

margin-right:4px;

}

/* Technologies */

.brand-tech{

color:#333;

}

/* brand name */

.brand-name {
  font-weight: 700;

  font-size: 20px;

  color: #222;
}

/* menu */

.navbar-nav .nav-link {
  font-weight: 600;

  margin-left: 20px;

  color: #444;

  position: relative;

  transition: 0.3s;
}

/* hover effect */

.navbar-nav .nav-link:hover {
  color: #1fa6a1;
}

/* underline animation */

.navbar-nav .nav-link::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -4px;

  width: 0;

  height: 2px;

  background: #f08a65;

  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* sticky shadow */

.main-navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* sticky navbar shadow */

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* NAVBAR CTA BUTTON */

.btn-nav-cta {
  background: #f08a65;

  color: white;

  padding: 8px 18px;

  border-radius: 6px;

  font-weight: 600;

  transition: 0.3s;
}

.btn-nav-cta:hover {
  background: #e06f4a;

  color: white;

  transform: translateY(-2px);
}

/* =========================
HERO SECTION
========================= */

.hero-section {
  min-height: 100vh;

  background: linear-gradient(-45deg, #0f6b67, #1fa6a1, #2ed3c6, #0f6b67);

  background-size: 400% 400%;

  animation: gradientMove 12s ease infinite;

  display: flex;
  align-items: center;

  color: white;

  position: relative;

  overflow: hidden;
}

/* animated gradient */

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* glass card */

.hero-card {
  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);

  padding: 40px;

  border-radius: 12px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* heading */

.hero-card h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* highlight word */

.hero-card span {
  color: #f08a65;
}

/* text */

.hero-card p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* buttons */

.btn-brand {
  background: #f08a65;
  color: white;

  padding: 12px 30px;

  border-radius: 6px;

  font-weight: 600;

  transition: 0.3s;
}

.btn-brand:hover {
  background: #e06f4a;
  color: white;
}

.btn-outline-light {
  border: 2px solid white;
  color: white;

  padding: 12px 30px;

  font-weight: 600;
}

/* hero illustration */

.hero-illustration {
  background-image: url("../images/hero-im.webp");

  background-size: contain;

  background-repeat: no-repeat;

  background-position: right center;

  min-height: 700px;

  transform: scale(1.15);
}

.hero-illustration::before {
  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  background: radial-gradient(circle, rgba(46, 211, 198, 0.35), transparent);

  filter: blur(60px);

  z-index: -1;
}

/* Floating Shapes */

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;

  animation: float 8s ease-in-out infinite;
}

.shape1 {
  width: 120px;
  height: 120px;

  background: #2ed3c6;

  top: 15%;
  left: 10%;
}

.shape2 {
  width: 80px;
  height: 80px;

  background: #f08a65;

  top: 70%;
  left: 15%;

  animation-delay: 2s;
}

.shape3 {
  width: 60px;
  height: 60px;

  background: white;

  top: 20%;
  right: 25%;

  animation-delay: 3s;
}

.shape4 {
  width: 140px;
  height: 140px;

  background: #1fa6a1;

  bottom: 10%;
  right: 10%;

  animation-delay: 4s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* =========================
ABOUT
========================= */

/* =====================
ABOUT SECTION
===================== */

.about-section {
  padding: 100px 0;

  background: white;
}

/* image */

.about-image img {
  width: 100%;

  border-radius: 10px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* text */

.about-content h2 {
  font-size: 36px;

  font-weight: 700;

  margin-bottom: 20px;
}

.about-content p {
  color: #666;

  font-size: 16px;

  margin-bottom: 20px;
}

/* features */

.about-features {
  margin-top: 20px;
}

.feature {
  display: flex;

  align-items: center;

  margin-bottom: 12px;

  font-size: 15px;
}

.feature i {
  color: #1fa6a1;

  font-size: 18px;

  margin-right: 10px;
}

/* =========================
SERVICES
========================= */

.services {
  background: #f8fbfb;

  padding: 80px 0;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;

  margin-bottom: 10px;
}

.section-title p {
  color: #666;

  margin-bottom: 40px;
}

/* Service Card */

.service-card {
  background: white;

  padding: 35px 30px;

  border-radius: 12px;

  text-align: center;

  transition: 0.3s;

  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);

  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Icon */

.service-icon {
  width: 70px;
  height: 70px;

  margin: auto;
  margin-bottom: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(31, 166, 161, 0.1);

  font-size: 30px;

  color: #1fa6a1;

  transition: 0.3s;
}

.service-card:hover .service-icon {
  background: #1fa6a1;
  color: white;
}

/* Title */

.service-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

/* Text */

.service-card p {
  color: #666;
  font-size: 15px;
}

/* =========================
PROCESS SECTION
========================= */

.process-section {
  padding: 90px 0;

  background: white;
}

/* Wrapper */

.process-wrapper {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 40px;

  margin-top: 50px;

  position: relative;
}

/* Connecting line */

.process-wrapper::before {
  content: "";

  position: absolute;

  top: 35px;
  left: 0;

  width: 100%;
  height: 2px;

  background: #e5e5e5;

  z-index: 0;
}

/* Step */

.process-step {
  text-align: center;

  position: relative;

  z-index: 2;
}

/* Icon */

.step-icon {
  width: 70px;
  height: 70px;

  background: white;

  border: 3px solid #1fa6a1;

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  margin: auto;

  font-size: 26px;

  color: #1fa6a1;

  margin-bottom: 20px;

  transition: 0.3s;
}

/* Hover */

.process-step:hover .step-icon {
  background: #1fa6a1;

  color: white;

  transform: scale(1.1);
}

/* Title */

.process-step h4 {
  font-weight: 700;

  margin-bottom: 10px;
}

/* Text */

.process-step p {
  font-size: 14px;

  color: #666;
}

/* Mobile */

@media (max-width: 768px) {
  .process-wrapper {
    grid-template-columns: 1fr;
  }

  .process-wrapper::before {
    display: none;
  }
}

/* =====================
PORTFOLIO
===================== */

.portfolio-section {
  padding: 100px 0;

  background: #f8fbfb;
}

/* filter buttons */

.portfolio-filter {
  margin-bottom: 40px;
}

.filter-btn {
  border: none;

  background: #eee;

  padding: 8px 18px;

  margin: 5px;

  border-radius: 20px;

  font-weight: 600;

  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: #1fa6a1;

  color: white;
}

/* portfolio card */

.portfolio-card {
  position: relative;

  overflow: hidden;

  border-radius: 10px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* mockup frame */

.mockup-frame {
  background: white;

  padding: 10px;

  border-radius: 8px;
}

.mockup-frame img {
  width: 100%;

  display: block;

  border-radius: 6px;

  transition: 0.4s;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

/* overlay */

.portfolio-overlay {
  position: absolute;

  bottom: 0;

  left: 0;

  width: 100%;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);

  color: white;

  padding: 20px;

  opacity: 0;

  transition: 0.3s;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

/* button */

.portfolio-overlay a {
  display: inline-block;

  margin-top: 10px;

  background: #f08a65;

  color: white;

  padding: 6px 14px;

  border-radius: 4px;

  text-decoration: none;

  font-size: 14px;
}

/* =========================
CTA
========================= */

/* =====================
CTA SECTION
===================== */

.cta-section {
  padding: 90px 0;

  background: linear-gradient(135deg, #1fa6a1, #0f6b67);

  color: white;

  position: relative;

  overflow: hidden;
}

/* background glow */

.cta-section::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  background: rgba(255, 255, 255, 0.08);

  border-radius: 50%;

  top: -120px;
  left: -120px;
}

.cta-section::after {
  content: "";

  position: absolute;

  width: 400px;
  height: 400px;

  background: rgba(255, 255, 255, 0.05);

  border-radius: 50%;

  bottom: -120px;
  right: -120px;
}

/* content */

.cta-box {
  position: relative;

  max-width: 700px;

  margin: auto;
}

/* title */

.cta-box h2 {
  font-size: 36px;

  font-weight: 700;

  margin-bottom: 15px;
}

/* text */

.cta-box p {
  font-size: 17px;

  opacity: 0.9;

  margin-bottom: 30px;
}

/* buttons */

.cta-buttons .btn {
  padding: 12px 28px;

  font-weight: 600;

  border-radius: 6px;
}

/* MAP */

.map-container {
  border-radius: 12px;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* CONTACT INFO */

.contact-item {
  display: flex;

  align-items: flex-start;

  margin-bottom: 25px;
}

.contact-item i {
  font-size: 22px;

  color: #1fa6a1;

  margin-right: 15px;

  margin-top: 4px;
}

.contact-item h5 {
  font-weight: 700;

  margin-bottom: 5px;
}

/* FORM */

.contact-form {
  background: white;

  padding: 35px;

  border-radius: 12px;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
  padding: 12px;

  border-radius: 6px;

  border: 1px solid #ddd;
}

.contact-form .form-control:focus {
  border-color: #1fa6a1;

  box-shadow: none;
}

/* =====================
WHATSAPP BUTTON
===================== */

.whatsapp-float {
  position: fixed;

  bottom: 90px;
  right: 25px;

  background: #25d366;

  color: white;

  width: 58px;
  height: 58px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);

  z-index: 999;

  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);

  color: white;
}

/* =====================
SCROLL TO TOP
===================== */

#scrollTopBtn {
  position: fixed;

  bottom: 25px;
  right: 25px;

  background: #1fa6a1;

  color: white;

  border: none;

  width: 50px;
  height: 50px;

  border-radius: 50%;

  font-size: 20px;

  display: none;

  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);

  cursor: pointer;

  transition: 0.3s;

  z-index: 999;
}

#scrollTopBtn:hover {
  background: #0f6b67;

  transform: translateY(-3px);
}

/* =====================
FOOTER
===================== */

.footer {
  background: #0f2f2e;

  color: #ddd;

  padding: 80px 0 0;
}

/* logo */

.footer-logo {
  height: 50px;

  margin-bottom: 20px;
}

/* about text */

.footer-about p {
  font-size: 14px;

  color: #aaa;
}

/* social */

.footer-social a {
  display: inline-block;

  width: 38px;
  height: 38px;

  background: #1fa6a1;

  color: white;

  border-radius: 50%;

  text-align: center;

  line-height: 38px;

  margin-right: 8px;

  transition: 0.3s;
}

.footer-social a:hover {
  background: #f08a65;
}

/* headings */

.footer h5 {
  color: white;

  margin-bottom: 20px;

  font-weight: 700;
}

/* links */

.footer-links {
  list-style: none;

  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bbb;

  text-decoration: none;

  transition: 0.3s;
}

.footer-links a:hover {
  color: #1fa6a1;
}

/* contact */

.footer-contact {
  list-style: none;

  padding: 0;
}

.footer-contact li {
  margin-bottom: 12px;

  font-size: 14px;
}

.footer-contact i {
  margin-right: 8px;

  color: #1fa6a1;
}

/* bottom bar */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  text-align: center;

  padding: 20px;

  margin-top: 40px;

  font-size: 14px;

  color: #aaa;
}

/* =========================
MOBILE
========================= */

@media (max-width: 992px) {
  .hero-card h1 {
    font-size: 36px;
  }

  .hero-section .row {
    display: flex;
    align-items: center;
  }

  .hero-content {
    padding-right: 40px;
  }

  .hero-illustration {
    min-height: 650px;
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    margin: 10px 0;
  }

  .btn-nav-cta {
    margin-top: 10px;

    display: inline-block;
  }
}

/* MOBILE HERO FIX */

@media (max-width: 768px) {
  .hero-section {
    text-align: center;
    padding-top: 40px;
  }

  .hero-illustration {
    min-height: 280px;
    margin-bottom: 30px;

    background-size: contain;
    background-position: center;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 10px;
  }

  .hero-content h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
}
