* {
  box-sizing: border-box;
}

:root {
  --header-bg: #10375c;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Sora", sans-serif;
  background: #0c0c0c !important;
  color: #ffffff !important;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(12, 12, 12, 0.9), rgba(26, 26, 26, 0.85)), 
              url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

/* ============== common ================= */
input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 1170px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
}

a {
  text-decoration: none;
}


.btn:nth-child(2) {
  background: #333;
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 50px;
  background: #ff6b35;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
  }
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  animation: none;
}

.section-heading {
  color: #10375c;
  font-size: 5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1px;
}

.section-desc {
  margin-top: 18px;
  color: #575f66;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.67;
}
/* control btn */
.control {
  display: flex;
  column-gap: 18px;
  align-items: center;
}

.control__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #575f66;
  background: #fff;
  cursor: pointer;
  transition: 0.25s;
}

.control__btn:hover {
  background: #2e80ce;
  border-color: #2e80ce;
  color: #fff;
}

.control-icon--next {
  rotate: 180deg;
}
/* ================ header ================ */
.header {
  padding-top: 30px;
  background: var(--header-bg);
  min-height: 100vh;
  animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

/* Desktop navbar */
@media (min-width: 769px) {
  .navbar {
    display: block !important;
  }
  
  .mobile-menu-btn {
    display: none !important;
  }
}

.hamburger {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
  transform-origin: 1px;
}

.mobile-menu-btn.active .hamburger:nth-child(1) {
  transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger:nth-child(3) {
  transform: rotate(-45deg);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar__list {
  display: flex;
}

.header__action--login,
.navbar__link {
  padding: 8px 21px;
  color: #c9d2da;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.75;
}

.navbar__link:hover,
.navbar__link--active {
  text-shadow: 1px 0 0 currentColor;
  color: #fff;
}

.navbar__link--active::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  top: -3px;
  position: relative;
  right: 8px;
}

.header__action--signup {
  min-width: 144px;
  line-height: 44px;
  font-size: 1.6rem;
}

.header__action--login {
  margin-right: 7px;
}

/* =================== hero ========================== */
.hero {
  display: flex;
  padding-top: 76px;
  align-items: center;
}

.hero__content {
  width: 44%;
}

.hero__media {
  flex: 1;
}



.hero__row {
  margin-top: 38px;
  display: flex;
  align-items: center;
  column-gap: 38px;
}

.hero__phone {
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.67;
}

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

.hero__img {
  border-radius: 6px;
  object-fit: cover;
}

.hero__img-large {
  width: 330px;
  height: 540px;
  margin-right: -6px;
  z-index: 1;
}

.hero__img-small {
  width: 210px;
  height: 410px;
}

/* =================== service ========================== */
.service {
  padding: 170px 0;
  background: #fff;
}

.service__heading,
.service__desc {
  text-align: center;
}

.service__desc {
  width: 468px;
  margin: 18px auto 0;
}

.service__row {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service__img {
  width: 350px;
  height: 350px;
  border-radius: 0;
  object-fit: contain;
  opacity: 0;
  transform: translateX(50px);
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 0.6s ease,
              opacity 0.6s ease-out;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
  border: none;
  outline: none;
  background: transparent;
  will-change: transform, filter;
}

.service__img.scroll-animate.animate {
  opacity: 1;
  transform: translateX(0);
}

.service__img:hover {
  transform: translateY(-20px) scale(1.1) rotate(-2deg);
  filter: drop-shadow(0 25px 45px rgba(255, 255, 255, 0.25)) 
          drop-shadow(0 30px 60px rgba(255, 107, 53, 0.35))
          drop-shadow(0 0 80px rgba(255, 140, 66, 0.25));
  animation: gentleFloat 2.5s ease-in-out infinite;
}

.logo-slogan {
  display: block;
  text-align: center;
  margin-top: 25px;
  font-size: 2rem;
  font-weight: 600;
  color: #ff6b35;
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
  letter-spacing: 1px;
  animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gentleFloat {
  0%, 100% {
    transform: translateY(-20px) scale(1.1) rotate(-2deg);
  }
  50% {
    transform: translateY(-25px) scale(1.1) rotate(2deg);
  }
}

.service-item {
  padding: 21px;
  display: flex;
  width: 470px;
  border-radius: 10px;
  background: #fff;
  transition: 0.25s;
}

.service-item:hover {
  position: relative;
  box-shadow: 0px 14px 28px 0px rgba(0, 0, 0, 0.05);
}

.service-item:hover .service-item__icon {
  color: #fff;
  background: #2e80ce;
}

.service-item__icon {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background: #eff6fd;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 19px;
  transition: 0.25s;
}

.service-item__heading {
  color: #10375c;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: normal;
}

.service-item__desc {
  margin-top: 8px;
  color: #575f66;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.75;
}

.service__btn {
  margin-top: 55px;
}

/* =================== work ========================== */
.work {
  background: #f6fbff;
  padding: 100px 0;
}

.work__desc {
  width: 468px;
}

.work__list {
  margin-top: 86px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  align-items: stretch;
}

.work-item {
  padding: 25px;
  border-radius: 4px;
  background: #fff;
  border: 12px solid #eaf6ff;
  transition: all 0.3s ease;
  width: 100%;
  height: 450px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: scale(0.8) translateY(30px);
  transition: all 0.6s ease-out;
}

.work-item.scroll-animate.animate {
  opacity: 1;
  transform: scale(1) translateY(0);
}


@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.work-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.work-item:hover {
  border-color: #2e80ce;
  transform: translateY(-16px);
}

.work-item img {
  width: calc(100% + 50px);
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  margin: -25px -25px 0 -25px;
}

.work-item__heading {
  margin-top: 18px;
  color: #10375c;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.38;
}

.work-item__desc {
  margin-top: auto;
  color: #575f66;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.75;
}

.work-item__more {
  margin-top: 18px;
  display: inline-block;
  color: #2e80ce;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
}

/* =================== about ========================== */
.about {
  margin-top: 85px;
  padding: 85px 0 206px;
}

.about-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about__media {
  width: 49%;
}

.about-content {
  width: 40%;
}

.about__img {
  position: relative;
}

.about__img--big {
  display: flex;
  object-fit: cover;
  width: 512px;
  height: 370px;
  border-radius: 6px;
  box-shadow: 0px 14px 28px 0px rgba(0, 0, 0, 0.07);
}

.about__img--small {
  position: absolute;
  top: 121px;
  left: 238px;
  object-fit: cover;
  width: 332px;
  height: 370px;
  border-radius: 6px;
}

.about-content__btn {
  margin-top: 38px;
}

/* =================== team ========================== */
.team {
  padding: 85px 0;
}

.team-header {
  text-align: center;
  margin: 0 auto;
}

.team__cta {
  margin-top: 38px;
}

.team__list {
  margin-top: 70px;
  column-gap: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.team-item__thumb {
  height: 290px;
  max-width: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}

.team-item__img-bg {
  border-radius: 6px;
  background: #eaf6ff;
  padding-top: 28px;
  overflow: hidden;
}

.team-item:hover .team-item__thumb {
  transform: scale(1.1);
}

.team-item__name {
  margin-top: 12px;
  color: #10375c;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.75;
}

.team-item__desc {
  color: #575f66;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.86;
}

.team__control {
  margin-top: 38px;
  justify-content: center;
}

/* ======================== install ===================== */
.install__inner {
  margin: 180px 0 85px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 70px;
  height: 427px;
  border-radius: 4px;
  background: #2e80ce;
}

.install__img {
  position: absolute;
  bottom: 0;
  width: 284px;
  height: 522px;
  object-fit: cover;
}

.install__content {
  min-width: 586px;
}

.install__heading {
  color: #fff;
  max-width: 489px;
}

.install__desc {
  margin-top: 18px;
  max-width: 586px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.67;
}

.install__row {
  margin-top: 38px;
  display: flex;
  column-gap: 28px;
  align-items: center;
}

/* ======================== blog ===================== */
.blog {
  padding: 85px 0;
  background: #fff;
}

.blog__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog__content {
  width: 40%;
}

.blog__heading {
  max-width: 470px;
}

.blog__more {
  margin-top: 28px;
  display: inline-block;
  color: #10375c;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.56;
  text-decoration-line: underline;
  text-underline-offset: 5px;
}

.blog__control {
  margin-top: 28px;
  justify-content: flex-start;
}

.blog__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
}
.blog-item {
  max-width: 270px;
  border-radius: 12px;
  border: 1px solid #e8ebee;
  background: #fff;
  overflow: hidden;
  transition: 0.5s;
}

.blog-item:hover {
  box-shadow: 0px 18px 50px 0px rgba(0, 0, 0, 0.05);
  border-color: transparent;
}

.blog-item:hover .blog-item__thumb {
  transform: scale(1.1);
}

.blog-item__thumb {
  width: 270px;
  height: 172px;
  border-radius: 12px 12px 0px 0px;
  object-fit: cover;
  transition: 0.25s;
}

.blog-item__wrap {
  height: 172px;
  overflow: hidden;
}

.blog-item__body {
  padding: 18px 22px;
}

.blog-item__heading {
  color: #10375c;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.62;
}

.blog-item__desc {
  margin-top: 10px;
  color: #575f66;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.72;
}

.blog-item__more {
  display: inline-block;
  margin-top: 12px;
  color: #10375c;
  font-size: 1.4rem;
  font-weight: 400;
}

.blog-item__more:hover {
  color: #2e80ce;
}

/* ==================== Appointment ====================== */
.appointment {
  margin-top: 85px;
}

.appointment__inner {
  padding: 100px 178px;
  background: #f6fbff;
  text-align: center;
}

.appointment__heading::after {
  content: "";
  display: block;
  width: 136px;
  height: 2px;
  background: #2e80ce;
  margin: 18px auto 0;
}

.appointment__desc {
  margin: 18px auto 0;
  max-width: 617px;
}

.appointment__btn {
  margin-top: 38px;
}

/* ==================== footer ====================== */
.footer {
  margin-top: 80px;
  padding: 40px 0 30px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  font-family: "Open Sans", sans-serif;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  margin-bottom: 30px;
  gap: 40px;
}

.footer__desc {
  margin-top: 21px;
  color: #a9b3bb;
  font-size: 1.6rem;
  line-height: 1.75;
}

.footer__heading {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.75;
}

.footer__list {
  margin: 20px 0 28px;
}

.footer__link {
  color: #a9b3bb;
  font-size: 1.4rem;
  line-height: 1.86;
  white-space: nowrap;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__item {
  margin-bottom: 10px;
}

.footer__social {
  margin: 20px 0 28px;
  display: flex;
  column-gap: 10px;
}

.footer__social-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #2e80ce;
  transition: 0.25s;
}

.footer__social-btn:hover {
  background: #2e80ce;
  color: #fff;
}

.footer-form {
  display: flex;
  column-gap: 12px;
  margin-top: 10px;
}

.footer-form__input {
  width: 212px;
  height: 46px;
  border-radius: 4px;
  border: 1px solid #406181;
  background: transparent;
  outline: none;
  color: #fff;
}

.footer-form__input::placeholder {
  color: #9ca8b1;
  font-size: 1.4rem;
  line-height: 1.86;
}

.footer-form__submit {
  width: 108px;
  height: 46px;
  border-radius: 4px;
  background: #2e80ce;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.86;
  border: none;
}

.footer-form__submit:hover {
  cursor: pointer;
  opacity: 0.9;
}

.footer__copyright {
  border-top: 1px solid #406181;
}

.footer__copyright-text {
  padding: 28px 0 42px;
  color: #aab3ba;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.86;
}

/* Language Selector */
.header__language {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.header__language:hover {
  background: #e9ecef;
}

.language__text {
  font-size: 1.4rem;
  font-weight: 600;
  color: #10375c;
}

.language__arrow {
  font-size: 1rem;
  color: #6c757d;
}

/* Chat Bubbles */
.story-chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-bubble {
  padding: 12px 16px;
  border-radius: 20px;
  max-width: 80%;
  font-size: 1.4rem;
  line-height: 1.4;
  background: #e9ecef;
  color: #495057;
  align-self: flex-start;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease-out;
}

.chat-bubble.scroll-animate.animate {
  opacity: 1;
  transform: translateX(0);
}


@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.chat-bubble--blue {
  background: #4a90e2;
  color: white;
}

.chat-bubble--orange {
  background: #ff6b35;
  color: white;
}

.chat-bubble--flags {
  background: #f8f9fa;
  color: #6c757d;
  font-size: 1.8rem;
  text-align: center;
  align-self: center;
  max-width: 100%;
}

/* Logo styles */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo__icon {
  font-size: 2rem;
}

.logo__text {
  font-size: 2.4rem;
  font-weight: 700;
  color: white;
}

.logo__highlight {
  color: #ff6b35;
}

/* Hero highlight */
.hero__highlight {
  color: #ff6b35;
}

/* Footer links */
.footer__column:first-child .logo__text {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
  text-align: center;
}

.footer__link {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  padding: 6px 12px;
  border-radius: 4px;
}

.footer__link:hover {
  color: #ff6b35;
  background: rgba(255, 255, 255, 0.1);
}

.footer__social {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  justify-items: center;
}

.footer__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__social-btn i {
  font-size: 1.2rem;
}

.footer__social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Facebook hover */
.footer__social-btn:nth-child(1):hover {
  background: #1877f2;
  box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

/* LinkedIn hover */
.footer__social-btn:nth-child(2):hover {
  background: #0077b5;
  box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}

/* Twitter hover */
.footer__social-btn:nth-child(3):hover {
  background: #1da1f2;
  box-shadow: 0 5px 15px rgba(29, 161, 242, 0.3);
}

/* Pinterest hover */
.footer__social-btn:nth-child(4):hover {
  background: #e60023;
  box-shadow: 0 5px 15px rgba(230, 0, 35, 0.3);
}

/* Instagram hover */
.footer__social-btn:nth-child(5):hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 5px 15px rgba(188, 24, 136, 0.3);
}

/* YouTube hover */
.footer__social-btn:nth-child(6):hover {
  background: #ff0000;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  /* Header mobile */
  .header {
    padding: 15px 0;
    position: relative;
  }
  
  .header-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .navbar {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(30, 60, 114, 0.95);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
  }
  
  .navbar.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    max-height: 400px;
  }
  
  .navbar__list {
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
  }
  
  .navbar__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Hero Section Mobile Optimization */
  .hero {
    min-height: 100vh;
    padding: 80px 0 40px;
  }
  
  .hero__heading {
    font-size: 2.8rem !important;
    line-height: 1.2 !important;
    margin-bottom: 25px !important;
    padding: 0 15px !important;
  }
  
  .hero__desc {
    font-size: 1.4rem !important;
    line-height: 1.6 !important;
    margin-bottom: 35px !important;
    padding: 0 20px !important;
  }
  
  .hero__row {
    margin-top: 30px !important;
  }
  
  .btn {
    font-size: 1.4rem !important;
    padding: 15px 30px !important;
    border-radius: 8px !important;
  }
  
  .navbar__link {
    font-size: 1.6rem;
    padding: 15px 20px;
    display: block;
    width: 100%;
    text-align: center;
  }
  
  /* Hero mobile */
  .hero {
    min-height: 60vh;
    padding: 50px 0;
  }
  
  .hero__heading {
    font-size: 3.5rem;
    line-height: 1.2;
  }
  
  .hero__desc {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .hero__row {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    font-size: 1.4rem;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* My Story mobile */
  .service__row {
    flex-direction: column;
    gap: 30px;
  }
  
  .story-chat {
    gap: 15px;
  }
  
  .chat-bubble {
    font-size: 1.4rem;
    padding: 12px 16px;
  }
  
  .service__img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  
  /* Work section mobile */
  .work__list {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
  
  .work-item {
    height: auto;
    padding: 20px;
  }
  
  .work-item img {
    height: 150px;
    margin: -20px -20px 0 -20px;
  }
  
  .work-item__heading {
    font-size: 2rem;
    margin-top: 15px;
  }
  
  .work-item__desc {
    font-size: 1.4rem;
    margin-top: 15px;
  }
  
  /* Footer mobile */
  .footer__top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .footer__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
  }
  
  .footer__social {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .footer__social-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .footer__social-btn i {
    font-size: 1rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero__heading {
    font-size: 2.8rem;
  }
  
  .hero__desc {
    font-size: 1.6rem;
  }
  
  .work-item__heading {
    font-size: 1.8rem;
  }
  
  .footer__links {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .footer__social {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .service__img {
    max-width: 350px;
  }
}

/* Work footer */
.work__footer {
  text-align: center;
  margin-top: 30px;
}

/* Hero center alignment */
.hero {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding-top: 0;
  padding-bottom: 50px;
}

.hero__content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1.2s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__heading {
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
}

/* Rocket Icon Animation */
.rocket-icon {
  display: inline-block;
  font-size: 6rem;
  animation: rocketLaunch 3s ease-in-out infinite;
  transform-origin: center;
  filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.6));
  position: relative;
}

@keyframes rocketLaunch {
  0%, 100% {
    transform: translateY(0) rotate(-45deg);
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.6));
  }
  15% {
    transform: translateY(-10px) rotate(-40deg) scale(1.1);
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.8))
            drop-shadow(0 10px 20px rgba(255, 140, 66, 0.4));
  }
  30% {
    transform: translateY(-25px) rotate(-35deg) scale(1.15);
    filter: drop-shadow(0 0 40px rgba(255, 107, 53, 1))
            drop-shadow(0 15px 30px rgba(255, 140, 66, 0.6));
  }
  50% {
    transform: translateY(-40px) rotate(-30deg) scale(1.2);
    filter: drop-shadow(0 0 50px rgba(255, 180, 100, 1))
            drop-shadow(0 20px 40px rgba(255, 200, 150, 0.8))
            drop-shadow(-20px 20px 30px rgba(255, 107, 53, 0.5));
  }
  65% {
    transform: translateY(-25px) rotate(-35deg) scale(1.15);
    filter: drop-shadow(0 0 40px rgba(255, 107, 53, 1))
            drop-shadow(0 15px 30px rgba(255, 140, 66, 0.6));
  }
  80% {
    transform: translateY(-10px) rotate(-40deg) scale(1.1);
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.8))
            drop-shadow(0 10px 20px rgba(255, 140, 66, 0.4));
  }
}

/* Rocket Trail Effect */
.rocket-icon::before {
  content: '💨';
  position: absolute;
  right: -30px;
  bottom: -10px;
  font-size: 3rem;
  opacity: 0;
  animation: trailEffect 3s ease-in-out infinite;
  filter: blur(2px);
}

@keyframes trailEffect {
  0%, 100% {
    opacity: 0;
    transform: translateX(0) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translateX(20px) scale(1.5);
  }
}

/* Sparkles Effect */
.rocket-icon::after {
  content: '✨';
  position: absolute;
  left: -25px;
  top: -15px;
  font-size: 2rem;
  animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.3) rotate(180deg);
  }
}

.hero__desc {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #fff;
  font-weight: 400;
  text-align: center;
}

.hero__row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  font-size: 2.4rem;
  color: white;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: bounce 2s infinite, glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  }
  to {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.6);
  }
}

.scroll-arrow:hover {
  color: #ff6b35;
  transform: scale(1.2);
}

/* Tech Background - Apply to entire page */
/* Removed duplicate body definition to prevent override */

.hero {
  background: transparent;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(0, 150, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 0, 150, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(0, 255, 200, 0.06) 0%, transparent 50%);
  animation: techPulse 4s ease-in-out infinite;
  z-index: 1;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(0, 150, 255, 0.03) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(255, 0, 150, 0.03) 50%, transparent 70%);
  animation: techScan 6s linear infinite;
  z-index: 1;
}

@keyframes techPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes techScan {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }
  100% {
    transform: translateX(100%) translateY(100%);
  }
}

/* Ensure all sections are transparent to show tech background */
.header, .service, .work, .footer {
  background: transparent;
  position: relative;
  z-index: 10;
}

/* Sync chat bubbles with tech background */
.chat-bubble {
  background: rgba(12, 12, 12, 0.8);
  border: 1px solid rgba(0, 150, 255, 0.2);
  color: #ffffff;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.chat-bubble--blue {
  background: rgba(0, 150, 255, 0.1);
  border: 1px solid rgba(0, 150, 255, 0.3);
  color: #00ff88;
}

.chat-bubble--orange {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: #ff6b35;
}

.chat-bubble--flags {
  background: rgba(0, 255, 200, 0.1);
  border: 1px solid rgba(0, 255, 200, 0.3);
  color: #00ffcc;
}

/* Sync work items with tech background */
.work-item {
  background: rgba(12, 12, 12, 0.8);
  border: 1px solid rgba(0, 150, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.work-item:hover {
  border-color: rgba(0, 150, 255, 0.4);
  box-shadow: 0 12px 35px rgba(0, 150, 255, 0.2);
  transform: translateY(-5px);
}

.work-item__heading {
  color: #ffffff;
}

.work-item__desc {
  color: #cccccc;
}

.work-item img {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin: -25px -25px 0 -25px;
  width: calc(100% + 50px);
  transition: all 0.3s ease;
}

.work-item:hover img {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 150, 255, 0.2);
}

/* Sync service section with tech background */
.service {
  background: transparent;
  position: relative;
  z-index: 10;
}

/* Duplicate removed - using the main .service__img definition above */

.service h2 {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(0, 150, 255, 0.3);
}

.service p {
  color: #cccccc;
}

/* Sync footer with tech background */
.footer {
  background: rgba(12, 12, 12, 0.9);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(0, 150, 255, 0.2);
  box-shadow: 
    0 -4px 20px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(255, 107, 53, 0.1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.footer__social-btn {
  background: rgba(12, 12, 12, 0.8);
  border: 1px solid rgba(0, 150, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.footer__social-btn:hover {
  background: rgba(0, 150, 255, 0.1);
  border-color: rgba(0, 150, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 150, 255, 0.2);
}

/* Logo Image Styling */
.logo__img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
  transition: all 0.3s ease;
}

.logo__img:hover {
  filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.6));
  transform: scale(1.05);
}

/* Header logo specific */
.header .logo__img {
  height: 70px;
  width: auto;
  max-width: 200px;
  filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.5));
}

/* Footer logo specific */
.footer .logo__img {
  height: 60px;
  width: auto;
  max-width: 180px;
  filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.6));
}

/* Contact Form Styles */
.contact {
  background: transparent;
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

.contact__heading {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.contact__desc {
  font-size: 1.4rem;
  color: #cccccc;
  text-align: center;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact__form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(12, 12, 12, 0.8);
  border: 1px solid rgba(0, 150, 255, 0.2);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form__group {
  margin-bottom: 25px;
}

.form__label {
  display: block;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(12, 12, 12, 0.6);
  border: 1px solid rgba(0, 150, 255, 0.3);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.4rem;
  font-family: inherit;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: #00ff88;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
  background: rgba(12, 12, 12, 0.8);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #888888;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__submit {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.form__submit:hover {
  background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* WHO WE ARE Section Styles */
.service__list .about-content {
  width: 100%;
  max-width: 650px;
}

.service__list .about-section {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service__list .about-section.animate {
  opacity: 1;
  transform: translateY(0);
}

.service__list .about-section:nth-of-type(1).animate {
  transition-delay: 0s;
}

.service__list .about-section:nth-of-type(2).animate {
  transition-delay: 0.2s;
}

.service__list .about-title {
  font-size: 2.6rem;
  color: #ff6b35;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.service__list .about-text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 15px;
}

.service__list .principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.service__list .principle-item {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.03) 100%);
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-radius: 16px;
  padding: 25px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease-out;
}

.service__list .principle-item:nth-child(1) { animation-delay: 0.1s; }
.service__list .principle-item:nth-child(2) { animation-delay: 0.2s; }
.service__list .principle-item:nth-child(3) { animation-delay: 0.3s; }
.service__list .principle-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service__list .principle-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.5s ease;
}

.service__list .principle-item:hover::before {
  left: 100%;
}

.service__list .principle-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.service__list .principle-icon i {
  font-size: 2.4rem;
  color: #ffffff;
  transition: all 0.4s ease;
}

.service__list .principle-item:hover .principle-icon {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
}

.service__list .principle-item:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.08) 100%);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25);
  border-color: rgba(255, 107, 53, 0.4);
}

.service__list .principle-item h4 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
}

.service__list .principle-item:hover h4 {
  color: #ff6b35;
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.service__list .principle-item p {
  font-size: 1.35rem;
  line-height: 1.6;
  color: #d0d0d0;
  margin: 0;
  text-align: center;
}

/* Mobile logo adjustments */
@media (max-width: 768px) {
  .header .logo__img {
    height: 50px;
    max-width: 150px;
  }
  
  .footer .logo__img {
    height: 45px;
    max-width: 120px;
  }
  
  .contact {
    padding: 60px 0;
  }
  
  .contact__heading {
    font-size: 2.8rem;
  }
  
  .contact__desc {
    font-size: 1.2rem;
  }
  
  .contact__form {
    padding: 30px 20px;
    margin: 0 20px;
  }
  
  /* Service Section Mobile */
  .service {
    padding: 60px 0 !important;
  }
  
  .service__heading {
    font-size: 2.4rem !important;
    margin-bottom: 40px !important;
  }
  
  .service__row {
    flex-direction: column !important;
    gap: 40px !important;
    align-items: center !important;
  }
  
  .service__list {
    width: 100% !important;
    padding: 0 15px !important;
  }
  
  .service__list .about-content {
    max-width: 100% !important;
  }
  
  .service__list .principles-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  
  .service__list .principle-item {
    padding: 15px !important;
  }
  
  .service__list .principle-item h4 {
    font-size: 1.5rem !important;
  }
  
  .service__list .principle-item p {
    font-size: 1.2rem !important;
  }
  
  .story-chat {
    gap: 15px !important;
    justify-content: center !important;
  }
  
  .chat-bubble {
    font-size: 1.3rem !important;
    padding: 15px 20px !important;
    margin-bottom: 12px !important;
  }
  
  .service__img {
    width: 180px !important;
    height: 180px !important;
    object-fit: contain !important;
    margin: 0 auto !important;
    display: block !important;
  }
  
  /* Work Section Mobile */
  .work {
    padding: 60px 0 !important;
  }
  
  .work__list {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 0 15px !important;
  }
  
  .work-item {
    padding: 20px !important;
  }
  
  .work-item__heading {
    font-size: 1.6rem !important;
  }
  
  .work-item__desc {
    font-size: 1.2rem !important;
  }
}

/* Review Page Styles */
.review-hero {
  background: transparent;
  padding: 120px 0 80px;
  position: relative;
  z-index: 10;
  text-align: center;
}

.review-hero__heading {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.review-hero__desc {
  font-size: 1.8rem;
  color: #cccccc;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.review-hero__stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3.5rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.stat-label {
  font-size: 1.4rem;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.review-form-section {
  background: transparent;
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

.review-form__wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.review-form__heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.review-form__desc {
  font-size: 1.4rem;
  color: #cccccc;
  margin-bottom: 40px;
}

.review-form {
  background: rgba(12, 12, 12, 0.8);
  border: 1px solid rgba(0, 150, 255, 0.2);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.form__select {
  width: 100%;
  padding: 15px 20px;
  background: rgba(12, 12, 12, 0.6);
  border: 1px solid rgba(0, 150, 255, 0.3);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.4rem;
  font-family: inherit;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.form__select:focus {
  outline: none;
  border-color: #00ff88;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
  background: rgba(12, 12, 12, 0.8);
}

.form__select option {
  background: #1a1a1a;
  color: #ffffff;
}

.social-links__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.social-link__group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link__group i {
  color: #00ff88;
  font-size: 1.6rem;
  width: 20px;
  text-align: center;
}

.social-input {
  flex: 1;
  margin-bottom: 0;
}

.form__checkbox-label {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #cccccc;
  font-size: 1.4rem;
  cursor: pointer;
  margin-bottom: 0;
}

.form__checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #ff6b35;
}

.form__link {
  color: #00ff88;
  text-decoration: underline;
}

.form__link:hover {
  color: #00cc6a;
}

.review-process {
  background: rgba(12, 12, 12, 0.8);
  border: 1px solid rgba(0, 150, 255, 0.2);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 100px;
}

.review-process__heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 20px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.step-content h4 {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.step-content p {
  color: #cccccc;
  font-size: 1.4rem;
  margin: 0;
}

/* Mobile responsive for review page */
@media (max-width: 768px) {
  .review-hero {
    padding: 100px 0 60px;
  }
  
  .review-hero__heading {
    font-size: 3.5rem;
  }
  
  .review-hero__desc {
    font-size: 1.4rem;
  }
  
  .review-hero__stats {
    flex-direction: column;
    gap: 30px;
  }
  
  .review-form__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form__row {
    grid-template-columns: 1fr;
  }
  
  .social-links__container {
    grid-template-columns: 1fr;
  }
  
  .review-process {
    position: static;
  }
}


/* Update text colors for dark background */
.header .logo__text,
.header .navbar__link,
.service h2,
.service p,
.work h2,
.work p,
.footer .logo__text,
.footer .footer__link {
  color: #ffffff;
}

/* Sync navigation colors with tech background */
.header {
  background: rgba(12, 12, 12, 0.9);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 150, 255, 0.2);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(255, 107, 53, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.navbar {
  background: transparent;
  backdrop-filter: blur(10px);
}

.navbar.active {
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 150, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.navbar__item {
  border-bottom: 1px solid rgba(0, 150, 255, 0.1);
}

.navbar__link {
  color: #ffffff;
  transition: all 0.3s ease;
}

.navbar__link:hover {
  background: rgba(0, 150, 255, 0.1);
  color: #00ff88;
}

.navbar__link--active {
  background: rgba(0, 150, 255, 0.15);
  color: #00ff88;
  border-left: 3px solid #00ff88;
}

/* Tech Grid Pattern */
.hero__content {
  position: relative;
  z-index: 10;
}

.hero__content::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background-image: 
    linear-gradient(rgba(0, 150, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 150, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  z-index: -1;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Floating Tech Elements */
.hero .tech-dot-1 {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 4px;
  height: 4px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 20px #00ff88;
  animation: float1 3s ease-in-out infinite;
  z-index: 2;
}

.hero .tech-dot-2 {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 6px;
  height: 6px;
  background: #ff6b35;
  border-radius: 50%;
  box-shadow: 0 0 25px #ff6b35;
  animation: float2 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes float1 {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) scale(1.2);
    opacity: 1;
  }
}

@keyframes float2 {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-30px) scale(1.3);
    opacity: 0.9;
  }
}

/* Tech Lines */
.hero__content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ff88, transparent);
  animation: techLine 2s ease-in-out infinite;
  z-index: 3;
}

@keyframes techLine {
  0%, 100% {
    opacity: 0;
    transform: scaleX(0);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ========================================
   BACK TO TOP BUTTON
======================================== */
.back-to-top {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    left: auto !important;
    width: 50px;
    height: 50px;
    background: #ff6b35;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
    }
}
