@layer base {
  :root {
    /* WeBuyElectronics Design System - All colors in HSL */
    /* Primary Colors */
    --background: 0 0% 100%;
    --foreground: 217 33% 10%;
    --container-width: min(1400px, 100% - 2rem);
    /* Brand Colors */
    --primary: 181 34% 47%;
    --primary-foreground: 0 0% 100%;
    --primary-dark: 181 40% 35%;
    /* Accent Colors */
    --success: 158 64% 52%;
    --success-foreground: 0 0% 100%;
    --warning: 38 92% 50%;
    --warning-foreground: 217 33% 10%;
    /* Neutral Colors */
    --light-gray: 210 17% 98%;
    --medium-gray: 220 9% 46%;
    --dark-gray: 217 33% 10%;
    /* UI Elements */
    --card: 0 0% 100%;
    --card-foreground: 217 33% 10%;
    --popover: 0 0% 100%;
    --popover-foreground: 217 33% 10%;
    --secondary: 222 36% 11%;
    --secondary-foreground: 0 0% 100%;
    --muted: 210 17% 98%;
    --muted-foreground: 220 9% 46%;
    --accent: 210 17% 98%;
    --accent-foreground: 217 33% 10%;
    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 100%;
    --border: 214 32% 91%;
    --input: 214 32% 91%;
    --ring: 181 34% 47%;
    /* Design System Values */
    --radius: 0.75rem;
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    /* Transitions */
    --transition: 0.2s ease-in-out;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

@media (min-width: 1024px) {
  html {
    scroll-padding-top: 6rem;
  }
}
body {
  overflow-x: hidden;
}

@layer base {
  * {
    @apply border-border;
  }
  body {
    @apply bg-background text-foreground;
    font-family: "Inter", sans-serif;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
  }
}
@layer utilities {
  .bg-primary {
    background-color: hsl(var(--primary)) !important;
  }
  .bg-primary\/20 {
    background-color: hsla(var(--primary), 0.2);
  }
  .bg-primary-dark {
    background-color: hsl(var(--primary-dark));
  }
  .text-primary {
    color: hsl(var(--primary));
  }
  .text-primary-foreground {
    color: hsl(var(--primary-foreground));
  }
  .bg-secondary {
    background-color: hsl(var(--secondary));
  }
  .text-secondary {
    color: hsl(var(--secondary));
  }
  .text-secondary-foreground {
    color: hsl(var(--secondary-foreground));
  }
  .bg-success {
    background-color: hsl(var(--success)) !important;
  }
  .text-success {
    color: hsl(var(--success));
  }
  .text-success-foreground {
    color: hsl(var(--success-foreground));
  }
  .bg-success\/10 {
    background-color: hsla(var(--success), 0.1);
  }
  .bg-warning {
    background-color: hsl(var(--warning));
  }
  .text-warning {
    color: hsl(var(--warning));
  }
  .text-warning-foreground {
    color: hsl(var(--warning-foreground));
  }
  .bg-warning\/10 {
    background-color: hsla(var(--warning), 0.1);
  }
  .text-foreground {
    color: hsl(var(--foreground));
  }
  .bg-background {
    background-color: hsl(var(--background));
  }
  .bg-light-gray {
    background-color: #f2f2f2 !important;
  }
  .text-medium-gray {
    color: hsl(var(--medium-gray));
  }
  .bg-dark-gray {
    background-color: hsl(var(--dark-gray));
  }
  .hover\:bg-primary\/90:hover {
    background-color: hsla(var(--primary), 0.9);
  }
  .hover\:bg-success\/90:hover {
    background-color: hsla(var(--success), 0.9);
  }
  .hover\:bg-warning\/90:hover {
    background-color: #e19c25 !important;
  }
  .bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
  }
  .bg-gradient-to-r-text {
    background-image: linear-gradient(to right, hsl(var(--success)), hsl(var(--primary)));
    display: inline-block;
    position: relative;
  }
  .bg-gradient-to-r-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2em;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, hsl(var(--success)), hsl(var(--primary)));
  }
  .accordion-trigger-icon {
    transition: transform var(--transition);
  }
  .accordion-trigger-open .accordion-trigger-icon {
    transform: rotate(180deg);
  }
}
.testimonial-wrapper .testimonial-card {
  min-height: 320px;
}
@media (max-width: 1200px) {
  .testimonial-wrapper .testimonial-card {
    min-height: 390px !important;
  }
}
.testimonial-wrapper .testimonial-card .avatar .avatar-img {
  width: 56px;
  height: 56px;
  border-radius: 50px;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.testimonial-wrapper .slick-list {
  overflow: visible !important;
}
.testimonial-wrapper .testimonial-btn-prev,
.testimonial-wrapper .testimonial-btn-next {
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
  background: none !important;
  border: 1px solid #50A0A1;
  border-radius: 50px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial-wrapper .testimonial-btn-prev:hover,
.testimonial-wrapper .testimonial-btn-next:hover {
  background-color: hsl(var(--primary));
}
.testimonial-wrapper .testimonial-btn-prev {
  position: static !important;
}
.testimonial-wrapper .testimonial-btn-next {
  position: static !important;
}
.testimonial-wrapper .testimonial-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.testimonial-wrapper .testimonial-slider {
  width: 100%;
  margin: auto;
  overflow: hidden;
}
.testimonial-wrapper .testimonial-slider .slide {
  border-radius: 20px !important;
}
.testimonial-wrapper .testimonial-slider .testimonial-card {
  border: 1px solid #E5F4F2;
  border-radius: 20px !important;
  padding: 40px 30px !important;
}
@media (max-width: 768px) {
  .testimonial-wrapper .testimonial-slider .testimonial-card {
    padding: 40px 16px !important;
  }
}
.testimonial-wrapper .testimonial-slider .slide-inner {
  width: 100%;
  height: 100%;
}
.testimonial-wrapper .testimonial-slider .slick-slide {
  transform: scale(0.95);
  transition: transform 0.3s;
}

.text-primary {
  color: #50A0A1 !important;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 4rem);
  background: radial-gradient(circle at top left, #121826, transparent 55%), linear-gradient(130deg, #121826 0%, #121826 45%, #121826 100%);
  color: #fff;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    min-height: auto !important;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.06;
}

.hero::after {
  content: "";
  position: absolute;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.28), transparent 70%);
  filter: blur(40px);
  top: 4rem;
  left: 20%;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding: 0.3rem 1rem 2rem 1rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-content h1 .gradient {
  background: linear-gradient(90deg, var(--success), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-content p {
  max-width: 38rem;
  color: rgba(200, 215, 255, 0.86);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  font-weight: 600;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: min(80%, 320px);
  padding-top: 177.7777777778%;
}

.phone-body {
  position: absolute;
  inset: 0;
  border-radius: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: 8px solid rgb(31, 41, 55);
  box-shadow: 0 18px 45px rgba(15, 22, 41, 0.35);
}

.phone-screen {
  position: absolute;
  inset: 1.5rem;
  border-radius: 2.25rem;
  background: linear-gradient(135deg, #0a0e27, #1a1f3a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f3f4ff;
  padding: 1.5rem;
}

.phone-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.32), rgba(252, 211, 77, 0.25));
  border-radius: 3rem;
  filter: blur(35px);
  z-index: -1;
}

.section {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
}

.counter-card {
  --border-color: rgba(255, 255, 255, 0.3);
  border-right: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  z-index: 2;
}

.counter-card-wrap {
  background-color: #50A0A1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 60px 0;
  position: relative;
  z-index: 3;
}

.counter-card:last-child {
  border-right: none;
}

.counter-card_number {
  font-size: 50px !important;
  color: #fff;
  font-weight: 900;
  margin-bottom: 2px;
  margin-top: -0.25em;
}

.counter-card_text {
  font-weight: 500;
  color: #fff;
  display: block;
  margin-bottom: -0.5em;
}

.counter-sec-1 {
  margin-top: -100px;
}
@media (max-width: 480px) {
  .counter-sec-1 {
    margin-top: -140px;
  }
}

@media (max-width: 991px) {
  .counter-card-wrap {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px;
  }
  .counter-card:nth-child(even) {
    border-right: none;
  }
  .counter-card:nth-child(-n+2) {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
  }
  .counter-card:nth-last-child(-n+2) {
    padding-top: 30px;
  }
}
@media (min-width: 481px) and (max-width: 575px) {
  .counter-card-wrap {
    padding: 40px 0;
  }
  .counter-card_number {
    font-size: 32px !important;
    margin-bottom: 0;
  }
  .counter-card_text {
    font-size: 14px !important;
  }
}
@media (min-width: 280px) and (max-width: 480px) {
  .counter-card_number {
    font-size: 28px !important;
    margin-bottom: 0;
  }
  .counter-card-wrap {
    padding: 40px 12px;
  }
  .counter-card {
    padding: 24px 4px 12px 4px !important;
  }
  .counter-card_text {
    font-size: 14px !important;
  }
}
.vision-mission-card {
  position: relative;
  padding: 50px 40px;
  background-color: var(--body-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 1;
  border: 1px solid rgba(18, 24, 38, 0.9);
  min-height: 250px;
}
@media (max-width: 768px) {
  .vision-mission-card {
    padding: 24px 16px;
  }
}
@media (min-width: 767px) and (max-width: 1199px) {
  .vision-mission-card {
    padding: 30px 20px;
  }
}

.cta-sec-1 {
  background-image: url("../images/home-cta.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
}

.cta-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.68);
  z-index: -1;
}

.whatsapp-button-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.text-primary {
  color: #50A0A1 !important;
}

.container {
  width: min(1350px, 100% - 4rem) !important;
  margin: 0 auto !important;
}
@media (max-width: 768px) {
  .container {
    width: min(1350px, 100% - 2rem) !important;
  }
}

.parents-btn {
  border: none;
}
@media (min-width: 280px) and (max-width: 450px) {
  .parents-btn .btn-pill {
    font-size: 16px !important;
    padding: 10px 24px !important;
  }
}
@media (min-width: 576px) and (max-width: 1300px) {
  .parents-btn {
    flex-wrap: wrap !important;
  }
}
@media (min-width: 991px) and (max-width: 1500px) {
  .parents-btn {
    display: flex;
    flex-wrap: wrap !important;
  }
  .parents-btn > a {
    flex: 0 0 50%;
    max-width: 50%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media (min-width: 1200px) and (max-width: 10000px) {
  .header-right-image {
    justify-content: flex-end !important;
  }
}

.preloader {
  position: fixed;
  inset: 0;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.preloader-truck {
  width: clamp(220px, 40vw, 800px);
  max-width: 100%;
  transform: translateX(-140%);
  animation: truck-drive 1.8s ease-out forwards;
}

.preloader-text {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: hsl(var(--foreground));
}

@keyframes truck-drive {
  0% {
    transform: translateX(-160%) scale(0.96);
    opacity: 0;
  }
  55% {
    opacity: 1;
    transform: translateX(6%) scale(1);
  }
  75% {
    transform: translateX(-3%);
  }
  100% {
    transform: translateX(0);
  }
}
.preloader .wiggle-text {
  text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px !important;
}

.wiggle-text {
  display: inline-block;
  animation: wiggle 1.8s ease-in-out infinite;
  transform-origin: center;
  text-shadow: rgba(255, 255, 255, 0.4) 0px 4px 5px !important;
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(2deg);
  }
  30% {
    transform: rotate(-2deg);
  }
  45% {
    transform: rotate(1.5deg);
  }
  60% {
    transform: rotate(-1.5deg);
  }
  75% {
    transform: rotate(0.75deg);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(78, 159, 160, 0.5843137255);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0);
  }
}
.btn-pulse {
  animation: pulse 2s ease-in-out infinite;
  font-weight: 700 !important;
}

#site-content {
  transition: opacity 0.5s ease, filter 0.5s ease;
}

.rc-anchor-normal {
  width: 100% !important;
  max-width: 302px !important;
}

.rc-anchor-light {
  background: none !important;
  border: none !important;
}

.rc-anchor-normal .rc-anchor-content {
  height: 74px !important;
  width: auto !important;
}

@media (max-width: 480px) {
  .rc-anchor-normal {
    transform: scale(0.85);
    transform-origin: center;
  }
}
.destop-img-condition {
  display: block;
}
@media (max-width: 1024px) {
  .destop-img-condition {
    display: none;
  }
}

.mobile-img-condition {
  display: none;
}
@media (max-width: 1024px) {
  .mobile-img-condition {
    display: block;
    margin-bottom: 24px;
  }
}

.search-terms-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 481px) {
  .search-terms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 768px) {
  .search-terms-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .search-terms-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .search-terms-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
  }
}
@media (min-width: 1536px) {
  .search-terms-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem;
  }
}/*# sourceMappingURL=main.css.map */