@charset "UTF-8";
/* ==========================================================================
   LEMON IT SOLUTIONS — MAIN STYLESHEET (SCSS)
   Organized into: Variables, Mixins, Base/Reset, Layout, Components,
   Sections, Utilities, Responsive Media Queries
   ========================================================================== */
/* ==========================================================================
   1. VARIABLES
   ========================================================================== */
/* ==========================================================================
   2. MIXINS
   ========================================================================== */
/* ==========================================================================
   3. BASE / RESET
   ========================================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 400;
  color: #33415c;
  background: #ffffff;
  overflow-x: hidden;
  width: 100%;
  line-height: 1.65;
}

img, svg {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 700;
  color: #0a1f44;
  line-height: 1.2;
}

::selection {
  background: #ffd93d;
  color: #0a1f44;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f7f9fc;
}

::-webkit-scrollbar-thumb {
  background: #0a1f44;
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #f4c400;
}

/* ==========================================================================
   4. LAYOUT / UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
}

.text-gradient {
  background: linear-gradient(135deg, #ffd93d 0%, #f4c400 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f4c400;
  background: #fff4c2;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}

.section-desc {
  color: #6b7a99;
  font-size: 1.05rem;
}

.glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px rgba(10, 31, 68, 0.1);
}

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-aos].in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-aos=fade-right] {
  transform: translateX(-40px);
}
[data-aos=fade-right].in-view {
  transform: translateX(0);
}

[data-aos=fade-left] {
  transform: translateX(40px);
}
[data-aos=fade-left].in-view {
  transform: translateX(0);
}

[data-aos=zoom-in] {
  transform: scale(0.9);
}
[data-aos=zoom-in].in-view {
  transform: scale(1);
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  display: inline-flex;
  max-width: 100%;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  white-space: nowrap;
}
@media (max-width: 360px) {
  .btn {
    white-space: normal;
    text-align: center;
  }
}
.btn--primary {
  background: linear-gradient(135deg, #ffd93d 0%, #f4c400 100%);
  color: #0a1f44;
  box-shadow: 0 10px 30px rgba(255, 217, 61, 0.35);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 217, 61, 0.45);
}
.btn--outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffd93d;
  transform: translateY(-3px);
}
.btn--sm {
  padding: 0.65rem 1.4rem;
  font-size: 0.85rem;
}
.btn--block {
  width: 100%;
}

/* ==========================================================================
   6. PRELOADER
   ========================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0a1f44 0%, #16407a 100%);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader__logo {
  text-align: center;
  color: #ffffff;
}

.preloader__lemon {
  display: block;
  font-size: 3rem;
  color: #ffd93d;
  margin-bottom: 1rem;
  animation: spin-pulse 1.4s ease-in-out infinite;
}

.preloader__text {
  font-weight: 600;
  letter-spacing: 0.05em;
}

@keyframes spin-pulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.15) rotate(15deg);
  }
}
/* ==========================================================================
   7. SCROLL PROGRESS BAR
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(135deg, #ffd93d 0%, #f4c400 100%);
  z-index: 1001;
  transition: width 0.1s ease;
}

/* ==========================================================================
   8. HEADER / NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.3rem 0;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.header.scrolled {
  padding: 0.8rem 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 8px rgba(10, 31, 68, 0.06);
}
.header.scrolled .navbar__logo, .header.scrolled .nav-link {
  color: #0a1f44;
}
.header.scrolled .navbar__toggle span {
  background: #0a1f44;
}

.header .container {
  max-width: 1440px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.navbar__logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  color: #ffffff;
  transition: color 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.navbar__logo-icon {
  color: #ffd93d;
  font-size: 1.9rem;
  line-height: 1;
}
@media (max-width: 480px) {
  .navbar__logo-icon {
    font-size: 1.6rem;
  }
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-size: 1.35rem;
}
@media (max-width: 480px) {
  .navbar__logo-text {
    font-size: 1.1rem;
  }
}

.navbar__logo-brand {
  font-size: 1em;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: currentColor;
}
.navbar__logo-brand .accent {
  color: #f4c400;
}

.navbar__logo-tagline {
  display: block;
  font-size: 0.42em;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.72;
  margin-top: 2px;
}

.navbar__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
}
@media (max-width: 1400px) {
  .navbar__menu {
    position: fixed;
    top: var(--header-height, 80px);
    left: 0;
    width: 100%;
    max-height: calc(100vh - var(--header-height, 80px));
    overflow-y: auto;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 1rem 2.5rem 2.5rem;
    box-shadow: 0 20px 50px rgba(10, 31, 68, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 970;
  }
  .navbar__menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media (max-width: 1400px) and (max-width: 400px) {
  .navbar__menu {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #ffd93d;
  transition: width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.nav-link:hover, .nav-link.active {
  color: #ffd93d;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
@media (max-width: 1400px) {
  .nav-link {
    display: block;
    width: 100%;
    color: #0a1f44;
    font-size: 1.05rem;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(10, 31, 68, 0.08);
  }
  .nav-link::after {
    display: none;
  }
}

.navbar__menu-cta {
  display: none;
}
@media (max-width: 1400px) {
  .navbar__menu-cta {
    display: block;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(10, 31, 68, 0.08);
  }
}

@media (max-width: 1400px) {
  .navbar__cta {
    display: none;
  }
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  flex-shrink: 0;
  z-index: 1001;
}
.navbar__toggle span {
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.navbar__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 1400px) {
  .navbar__toggle {
    display: flex;
  }
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 31, 68, 0.5);
  z-index: 950;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   9. HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  background: radial-gradient(circle at 20% 20%, rgba(255, 217, 61, 0.15), transparent 40%), radial-gradient(circle at 80% 80%, rgba(255, 217, 61, 0.1), transparent 45%), linear-gradient(135deg, #0a1f44 0%, #0d2555 55%, #10294f 100%);
  overflow: hidden;
}

.hero__shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}
.shape--1 {
  width: 120px;
  height: 120px;
  background: rgba(255, 217, 61, 0.25);
  top: 12%;
  left: 6%;
  animation-duration: 9s;
}
.shape--2 {
  width: 70px;
  height: 70px;
  background: rgba(255, 217, 61, 0.35);
  top: 65%;
  left: 12%;
  animation-duration: 7s;
  animation-delay: 1s;
}
.shape--3 {
  width: 160px;
  height: 160px;
  border: 2px solid rgba(255, 217, 61, 0.2);
  background: transparent;
  top: 20%;
  right: 8%;
  animation-duration: 10s;
}
.shape--4 {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.08);
  bottom: 10%;
  right: 18%;
  animation-duration: 8s;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-25px) translateX(15px);
  }
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}
@media (max-width: 992px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero__eyebrow {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  display: inline-flex;
  color: #ffd93d;
  font-weight: 600;
  font-size: 0.9rem;
  background: rgba(255, 217, 61, 0.12);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 217, 61, 0.25);
}
@media (max-width: 992px) {
  .hero__eyebrow {
    margin-inline: auto;
  }
}

.hero__title {
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero__desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 2.5rem;
}
@media (max-width: 992px) {
  .hero__desc {
    margin-inline: auto;
  }
}

.hero__actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
@media (max-width: 992px) {
  .hero__actions {
    justify-content: center;
  }
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat {
  color: #ffffff;
  min-width: 0;
}
.stat__number, .stat__suffix {
  font-size: clamp(1.4rem, 5vw, 1.9rem);
  font-weight: 700;
  color: #ffd93d;
}
.stat__suffix {
  margin-left: 2px;
}
.stat p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}

.hero__visual {
  position: relative;
  height: 460px;
}
@media (max-width: 992px) {
  .hero__visual {
    display: none;
  }
}

.hero__card {
  position: absolute;
  width: 220px;
  padding: 1.5rem;
  border-radius: 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(10, 31, 68, 0.1);
  animation: card-float 6s ease-in-out infinite;
}
.hero__card i {
  font-size: 1.8rem;
  color: #ffd93d;
  margin-bottom: 0.5rem;
  display: block;
}
.hero__card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: #ffffff;
}
.hero__card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
.hero__card:nth-child(1) {
  top: 0;
  left: 10%;
}
.hero__card--2 {
  top: 42%;
  right: 0;
  animation-delay: 1.5s;
}
.hero__card--3 {
  bottom: 0;
  left: 20%;
  animation-delay: 3s;
}

@keyframes card-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}
.hero__orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 217, 61, 0.25), transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  z-index: 1;
}
.hero__scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #ffd93d;
  border-radius: 999px;
  animation: scroll-dot 1.6s ease infinite;
}
@media (max-width: 768px) {
  .hero__scroll {
    display: none;
  }
}

@keyframes scroll-dot {
  0% {
    opacity: 1;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 20px;
  }
}
/* ==========================================================================
   10. ABOUT SECTION
   ========================================================================== */
.about {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .about {
    padding: 4rem 0;
  }
}
.about {
  background: #f7f9fc;
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}
@media (max-width: 992px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
}

.about__visual {
  position: relative;
}
@media (max-width: 992px) {
  .about__visual {
    margin-bottom: 1.5rem;
  }
}

.about__frame {
  height: 340px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0a1f44 0%, #16407a 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  padding: 2.5rem;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(10, 31, 68, 0.15);
}
.about__frame i {
  font-size: 3rem;
  color: #ffd93d;
}
.about__frame p {
  font-size: 1.15rem;
  font-weight: 500;
  max-width: 260px;
}

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: #ffffff;
  border-radius: 16px;
  padding: 1rem 1.5rem;
  box-shadow: 0 20px 50px rgba(10, 31, 68, 0.15);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.8rem;
}
.about__badge i {
  color: #f4c400;
  background: #fff4c2;
  padding: 12px;
  border-radius: 50%;
  font-size: 1.2rem;
}
.about__badge strong {
  display: block;
  color: #0a1f44;
  font-size: 1.1rem;
}
.about__badge span {
  font-size: 0.8rem;
  color: #6b7a99;
}
@media (max-width: 480px) {
  .about__badge {
    right: 0.5rem;
    padding: 0.5rem 1rem;
  }
}

.about__text {
  margin-bottom: 1.5rem;
  color: #33415c;
}

.about__list {
  margin-bottom: 2.5rem;
}
.about__list li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
  font-weight: 500;
  color: #0a1f44;
}
.about__list li i {
  color: #2ecc71;
  margin-top: 3px;
}

/* ==========================================================================
   11. SERVICES SECTION
   ========================================================================== */
.services {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .services {
    padding: 4rem 0;
  }
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1200px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(10, 31, 68, 0.15);
}
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #ffd93d 0%, #f4c400 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0a1f44 0%, #16407a 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.service-card__icon i {
  font-size: 1.5rem;
  color: #ffd93d;
}
.service-card:hover .service-card__icon {
  transform: rotate(-8deg) scale(1.05);
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.service-card p {
  color: #6b7a99;
  font-size: 0.92rem;
}

/* ==========================================================================
   12. WHY CHOOSE US SECTION
   ========================================================================== */
.why-us {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .why-us {
    padding: 4rem 0;
  }
}
.why-us {
  background: linear-gradient(135deg, #0a1f44 0%, #16407a 100%);
  position: relative;
}
.why-us .section-eyebrow {
  background: rgba(255, 217, 61, 0.15);
  color: #ffd93d;
}
.why-us .section-title {
  color: #ffffff;
}
.why-us .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .why-us__grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 24px rgba(10, 31, 68, 0.1);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.why-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd93d 0%, #f4c400 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.why-card__icon i {
  font-size: 1.5rem;
  color: #0a1f44;
}
.why-card h3 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.why-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

/* ==========================================================================
   13. DEVELOPMENT PROCESS / TIMELINE
   ========================================================================== */
.process {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .process {
    padding: 4rem 0;
  }
}
.process {
  background: #f7f9fc;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .timeline {
    grid-template-columns: 1fr;
  }
}

.timeline__item {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  border: 1px solid rgba(10, 31, 68, 0.08);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.timeline__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10, 31, 68, 0.15);
}

.timeline__number {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(10, 31, 68, 0.06);
}

.timeline__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #fff4c2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.timeline__icon i {
  color: #f4c400;
  font-size: 1.3rem;
}

.timeline__item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.timeline__item p {
  font-size: 0.88rem;
  color: #6b7a99;
}

/* ==========================================================================
   14. TECHNOLOGIES SECTION
   ========================================================================== */
.technologies {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .technologies {
    padding: 4rem 0;
  }
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1rem;
}
@media (max-width: 992px) {
  .tech-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 480px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 400px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tech-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.5rem 0.5rem;
  background: #ffffff;
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: 16px;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.tech-card i {
  font-size: 1.8rem;
  color: #0a1f44;
  transition: color 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.tech-card span {
  font-size: 0.8rem;
  font-weight: 500;
  color: #33415c;
}
.tech-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, #0a1f44 0%, #16407a 100%);
  box-shadow: 0 8px 24px rgba(10, 31, 68, 0.1);
}
.tech-card:hover i {
  color: #ffd93d;
}
.tech-card:hover span {
  color: #ffffff;
}

/* ==========================================================================
   15. PORTFOLIO SECTION
   ========================================================================== */
.portfolio {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .portfolio {
    padding: 4rem 0;
  }
}
.portfolio {
  background: #f7f9fc;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .portfolio__grid {
    grid-template-columns: 1fr;
  }
}

.portfolio-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(10, 31, 68, 0.06);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(10, 31, 68, 0.15);
}
.portfolio-card__image {
  height: 190px;
  background: linear-gradient(135deg, #0a1f44 0%, #16407a 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.portfolio-card__image i {
  font-size: 3rem;
  color: #ffd93d;
  z-index: 1;
}
.portfolio-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 217, 61, 0.18), transparent 60%);
}
.portfolio-card__body {
  padding: 1.5rem;
}
.portfolio-card__body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.portfolio-card__body p {
  color: #6b7a99;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.portfolio-card .tags {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.portfolio-card .tags span {
  font-size: 0.75rem;
  font-weight: 500;
  background: #fff4c2;
  color: #f4c400;
  padding: 4px 12px;
  border-radius: 999px;
}

/* ==========================================================================
   16. TESTIMONIALS SECTION
   ========================================================================== */
.testimonials {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .testimonials {
    padding: 4rem 0;
  }
}
.testimonials {
  background: linear-gradient(135deg, #0a1f44 0%, #16407a 100%);
  position: relative;
}
.testimonials .section-eyebrow {
  background: rgba(255, 217, 61, 0.15);
  color: #ffd93d;
}
.testimonials .section-title {
  color: #ffffff;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(10, 31, 68, 0.1);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  color: #ffffff;
}
.testimonial-card__quote {
  font-size: 1.6rem;
  color: #ffd93d;
  opacity: 0.6;
  margin-bottom: 1rem;
}
.testimonial-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}
.testimonial-card__author strong {
  display: block;
  font-size: 0.95rem;
}
.testimonial-card__author span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
.testimonial-card .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd93d 0%, #f4c400 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial-card .avatar i {
  color: #0a1f44;
}
.testimonial-card .stars {
  color: #ffd93d;
  font-size: 0.85rem;
  display: flex;
  gap: 3px;
}

/* ==========================================================================
   17. FAQ SECTION
   ========================================================================== */
.faq {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .faq {
    padding: 4rem 0;
  }
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.faq-item.active {
  box-shadow: 0 8px 24px rgba(10, 31, 68, 0.1);
  border-color: transparent;
}
.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2.5rem;
  text-align: left;
  font-weight: 600;
  color: #0a1f44;
  background: #ffffff;
}
.faq-item__question span {
  min-width: 0;
}
.faq-item__question i {
  flex-shrink: 0;
  color: #f4c400;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media (max-width: 480px) {
  .faq-item__question {
    padding: 1rem 1.5rem;
  }
}
.faq-item.active .faq-item__question i {
  transform: rotate(45deg);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: #f7f9fc;
}
.faq-item__answer p {
  padding: 0 2.5rem 1.5rem;
  color: #6b7a99;
  font-size: 0.92rem;
}
@media (max-width: 480px) {
  .faq-item__answer p {
    padding: 0 1.5rem 1rem;
  }
}

/* ==========================================================================
   18. CONTACT SECTION
   ========================================================================== */
.contact {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .contact {
    padding: 4rem 0;
  }
}
.contact {
  background: #f7f9fc;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2.5rem;
}
@media (max-width: 992px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

.contact__info {
  grid-column: span 4;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 1.5rem;
  flex-direction: column;
}
@media (max-width: 992px) {
  .contact__info {
    grid-column: span 12;
  }
}

.contact-info-card {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(10, 31, 68, 0.08);
}
.contact-info-card i {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffd93d 0%, #f4c400 100%);
  color: #0a1f44;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
}
.contact-info-card > div {
  min-width: 0;
}
.contact-info-card h3 {
  font-size: 1rem;
  margin-bottom: 3px;
  color: #0a1f44;
}
.contact-info-card p {
  font-size: 0.9rem;
  color: #6b7a99;
  word-break: break-word;
}

.contact__form {
  grid-column: span 8;
  padding: 2.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
}
@media (max-width: 992px) {
  .contact__form {
    grid-column: span 12;
  }
}
@media (max-width: 480px) {
  .contact__form {
    padding: 1.5rem;
  }
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #0a1f44;
  margin-bottom: 0.4rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: 8px;
  background: #ffffff;
  color: #33415c;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #f4c400;
  box-shadow: 0 0 0 3px rgba(255, 217, 61, 0.25);
}
.form-group input.invalid, .form-group select.invalid, .form-group textarea.invalid {
  border-color: #e74c3c;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a1f44' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  cursor: pointer;
}
.form-group .form-error {
  display: block;
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: 0.3rem;
  min-height: 1em;
}

.form-success {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(46, 204, 113, 0.12);
  color: #239954;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-success.show {
  display: flex;
}
.form-success i {
  color: #2ecc71;
}

/* ==========================================================================
   19. FOOTER
   ========================================================================== */
.footer {
  background: #0a1f44;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 6rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding-bottom: 4rem;
}
@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

.footer__col h3 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.footer__col ul li {
  margin-bottom: 0.7rem;
}
.footer__col a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer__col a:hover {
  color: #ffd93d;
  padding-left: 4px;
}

.footer__about .navbar__logo {
  color: #ffffff;
  margin-bottom: 1rem;
}
.footer__about p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer__socials {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.7rem;
}
.footer__socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.footer__socials a:hover {
  background: linear-gradient(135deg, #ffd93d 0%, #f4c400 100%);
  color: #0a1f44;
  transform: translateY(-3px);
}

.footer__contact li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
}
.footer__contact li i {
  color: #ffd93d;
  margin-top: 3px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ==========================================================================
   20. SCROLL TO TOP BUTTON
   ========================================================================== */
#scrollTopBtn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd93d 0%, #f4c400 100%);
  color: #0a1f44;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(255, 217, 61, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 900;
}
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scrollTopBtn:hover {
  transform: translateY(-5px);
}
@media (max-width: 480px) {
  #scrollTopBtn {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 42px;
    height: 42px;
  }
}
