html,
body {

  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.fade-in-stagger {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInStagger 0.8s ease forwards;
}

@keyframes fadeInStagger {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-delay-1 {
  animation-delay: 0.2s;
}

.fade-delay-2 {
  animation-delay: 0.4s;
}

.fade-delay-3 {
  animation-delay: 0.6s;
}

.fade-delay-4 {
  animation-delay: 0.8s;
}

.fade-delay-5 {
  animation-delay: 1s;
}

.form-control.dark {
  background-color: #1a1a1a;
  color: #ffffff;
  border: 1px solid #333;
}

.form-control.dark::placeholder {
  color: #888;
}

.form-control.dark:focus {
  background-color: #1a1a1a;
  color: #ffffff;
  border-color: #C8FF00;
  box-shadow: none;
}

.dark {
  background-color: #121212;
}

.hero-section {
  height: 60vh;
  background: url('/assets/background/workshopdark.webp') center/cover no-repeat;
  position: relative;
  z-index: 1;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.hero-section h1,
.hero-section .btn {
  z-index: 2;
}

.icon-link:hover .service-icon {
  transform: scale(1.05);
}

.service-icon {
  height: 100px;
  max-width: 100%;
  transition: transform 0.3s ease;
}

.icon-label {
  font-size: 1rem;
  transition: color 0.3s ease;
}

.icon-link:hover .icon-label {
  color: #C8FF00;
}

@media (max-width: 768px) {
  .service-icon {
    height: 70px;
  }

  .icon-label {
    font-size: 0.85rem;
  }

  .icon-link {
    margin: 0 0.5rem;
  }

  .how-step h5 {
    font-size: 0.9rem;
  }

  .how-step p {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .service-icon {
    height: 60px;
  }

  .how-step h5 {
    font-size: 0.85rem;
  }

  .how-step p {
    font-size: 0.60rem;
  }
}

/*how it works*/
.how-icon {
  height: 80px;
  transition: transform 0.3s;
}

.how-icon:hover {
  transform: scale(1.05);
}

.text-muted {
  color: #B0B0B0 !important;
}

.how-icon {
  height: 80px;
  transition: transform 0.3s;
}

.how-icon:hover {
  transform: scale(1.05);
}

.how-steps {
  max-width: 1000px;
  gap: 2rem;
  overflow-x: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 140, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  animation: floatGlow 8s ease-in-out infinite;
}

.radial-gradient {
  position: relative;
  overflow: hidden;
}

.radial-gradient::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 140, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  animation: floatGlow 8s ease-in-out infinite;
}

.radial-gradient {
  position: relative;
  z-index: 1;
  /* establishes stacking context */
}

.radial-gradient>* {
  position: relative;
  z-index: 2;
  /* puts actual content above the ::before */
}

@keyframes floatGlow {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(20px);
  }
}

.contact-section form {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeInForm 1.2s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInForm {
  to {
    opacity: 1;
  }
}

.contact-section input,
.contact-section textarea {
  background-color: #1a1a1a;
  color: #ffffff;
  border: 1px solid #333;
  transition: border-color 0.3s ease;
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
  color: #888;
}

.contact-section input:focus,
.contact-section textarea:focus {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
  border-color: #C8FF00;
  box-shadow: none;
}

.footer-link {
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #C8FF00;
}

.contact-icons a {
  transition: transform 0.3s ease;
}

.contact-icons a:hover {
  transform: scale(1.21);
}

.fs-r {
  font-size: clamp(1rem, 5vw, 1.25rem);
}

.fs-sm-r {
  font-size: clamp(0.8rem, 5vw, 1rem);
}

.btn-outline-black {
  border: 2px solid black;
  color: black;
  background-color: transparent;
  padding-bottom: 3px;
}

.btn-outline-black:hover {
  border: 2px solid #0d6efd;
  color: #0d6efd;
  background-color: transparent;
}

.btn-black {
  background-color: black;
  color: white;
}

.btn-black:hover {
  background-color: #0d6efd;
  color: white;
}

.text-hover-light {
  color: white;
}

.text-hover-light:hover {
  color: rgb(0, 140, 255);
}

.text-hover-light-alt {
  color: rgb(218, 218, 218);
}

.text-hover-light-alt:hover {
  color: #ffffff;
}

.waves-top {
  aspect-ratio: 20/1;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('/assets/background/wave-top.svg');
}

.wt {
  aspect-ratio: 20/1;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('/assets/background/svg.webp');
}

.waves-bottom {
  aspect-ratio: 10/1;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('/assets/background/wave-bottom.svg');
}

.navbar,
.offcanvas-header {
  height: 56px;
  display: flex;
  align-items: center;
}

app-navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  display: block;
  width: 100%;
}

.icon-dark {
  filter: invert(1);
}

html,
body {
  margin: 0;
  padding: 0;
}

/* Nav links */
.nav-link {
  position: relative;
  transition: color 0.2s;
  display: inline-block;
}

.nav-link.active {
  color: #C8FF00 !important;
}

.nav-link:hover:not(.active) {
  color: #00aaff !important;
}

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

/* Button hover */
.btn-primary {
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-primary:hover {
  background-color: #C8FF00;
  box-shadow: 0px 0px 7px rgba(150, 255, 167, 0.6);
  color: black;
  font-weight: 600;
  transform: scale(1.05);
}

.parallax-bg {
  background-image: url('/assets/images/bluelines.webp');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
  position: relative;
  z-index: 1;
}

.parallax-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  /* semi-transparent dark overlay */
  backdrop-filter: blur(3px);
  /* blur behind the overlay */
  -webkit-backdrop-filter: blur(8px);
  /* Safari support */
  z-index: 1;
}

.parallax-bg-1 {
  background-image: url('/assets/images/table_with_devices.webp');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
  position: relative;
  z-index: 1;
}

.parallax-bg-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* semi-transparent dark overlay */
  backdrop-filter: blur(5px);
  /* blur behind the overlay */
  -webkit-backdrop-filter: blur(8px);
  /* Safari support */
  z-index: 1;
}

/* --- For Desktops and larger screens --- */
.parallax-bg-contacts {
  background-image: url('/assets/images/contact.webp');
  background-attachment: fixed;
  background-position: center -200px;
  /* Your desktop position */
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
  position: relative;
  z-index: 1;
}

/* --- For Tablets and Mobile phones (768px wide or smaller) --- */
@media (max-width: 768px) {
  .parallax-bg-contacts {
    background-image: url('/assets/images/contact-centered.webp');
    background-position: center top -130px;

  }
}

.parallax-bg-contacts::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* semi-transparent dark overlay */
  backdrop-filter: blur(3px);
  /* blur behind the overlay */
  -webkit-backdrop-filter: blur(3px);
  /* Safari support */
  z-index: 1;
}

.parallax-bg-iphone {
  background-image: url('/assets/images/iphonebg.webp');
  background-attachment: fixed;
  background-position: center -350px;
  /* Your desktop position */
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .parallax-bg-iphone {
    background-position: center top 20px;
    background-size: auto;
  }
}

.parallax-bg-iphone::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* semi-transparent dark overlay */
  backdrop-filter: blur(1px);
  /* blur behind the overlay */
  -webkit-backdrop-filter: blur(3px);
  /* Safari support */
  z-index: 1;
}

@media (max-width: 768px) {
  .parallax-bg {
    background-image: url('/assets/images/bluelines-mobile.webp');
  }
}

.parallax-bg-ipad {
  background-image: url('/assets/images/ipadbg.webp');
  background-attachment: fixed;
  background-position: center -500px;
  /* Your desktop position */
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .parallax-bg-ipad {
    background-position: center top 20px;
    background-size: auto;
  }
}

.parallax-bg-ipad::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  /* semi-transparent dark overlay */
  backdrop-filter: blur(3px);
  /* blur behind the overlay */
  -webkit-backdrop-filter: blur(3px);
  /* Safari support */
  z-index: 1;
}

/*samsung tab bg*/
.parallax-bg-stab {
  background-image: url('/assets/images/samsungtab.webp');
  background-attachment: fixed;
  background-position: center -100px;
  /* Your desktop position */
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .parallax-bg-stab {
    background-position: center top 20px;
    background-size: auto;
  }
}

.parallax-bg-stab::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  /* semi-transparent dark overlay */
  backdrop-filter: blur(3px);
  /* blur behind the overlay */
  -webkit-backdrop-filter: blur(3px);
  /* Safari support */
  z-index: 1;
}

/*samsung phone bg*/
.parallax-bg-sphone {
  background-image: url('/assets/images/samsungphonebg.webp');
  background-attachment: fixed;
  background-position: center -200px;
  /* Your desktop position */
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .parallax-bg-sphone {
    background-position: center top 20px;
    background-size: auto;
  }
}

.parallax-bg-sphone::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  /* semi-transparent dark overlay */
  backdrop-filter: blur(3px);
  /* blur behind the overlay */
  -webkit-backdrop-filter: blur(3px);
  /* Safari support */
  z-index: 1;
}

/*macbook bg*/
.parallax-bg-macbook {
  background-image: url('/assets/images/macbookbg.webp');
  /* Placeholder image */
  background-attachment: fixed;
  background-position: center -390px;
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .parallax-bg-macbook {
    background-position: center top;
    background-size: auto;
  }
}

.parallax-bg-macbook::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  /* semi-transparent dark overlay */
  backdrop-filter: blur(3px);
  /* blur behind the overlay */
  -webkit-backdrop-filter: blur(3px);
  /* Safari support */
  z-index: 1;
}

@media (max-width: 768px) {
  .parallax-bg {
    background-image: url('/assets/images/bluelines-mobile.webp');
  }
}

/*Submit bg*/
.parallax-bg-submit {
  background-image: url('/assets/images/dissassembled_iphone.webp');
  /* bg large screen */
  background-attachment: fixed;
  background-position: center -390px;
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .parallax-bg-submit {
    background-position: center top -450px;
    background-size: auto;
  }
}

.parallax-bg-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.662);
  /* semi-transparent dark overlay */
  backdrop-filter: blur(3px);
  /* blur behind the overlay */
  -webkit-backdrop-filter: blur(3px);
  /* Safari support */
  z-index: 1;
}

@media (max-width: 768px) {
  .parallax-bg {
    background-image: url('/assets/images/dissassembled_iphone.webp');
  }
}

/*About bg*/
.parallax-bg-about {
  background-image: url('/assets/images/about_bg.webp');
  /* bg large screen */
  background-attachment: fixed;
  background-position: center -230px;
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .parallax-bg-about {
    background-position: center top 20px;
    background-size: 700px 400px;
  }
}

.parallax-bg-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.662);
  /* semi-transparent dark overlay */
  backdrop-filter: blur(5px);
  /* blur behind the overlay */
  -webkit-backdrop-filter: blur(3px);
  /* Safari support */
  z-index: 1;
}

@media (max-width: 768px) {
  .parallax-bg-about {
    background-image: url('/assets/images/about_bg.webp');
  }
}

.ztop {
  position: relative;
  z-index: 3;
}

.card-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.toggle-card:checked~.card-details {
  max-height: 500px;
  /* adjust as needed */
  opacity: 1;
}

/* Glowing box shadow for active button */
.service-toggle {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.service-toggle:hover {
  transform: scale(1.06);
}

.service-toggle.active {
  transform: scale(1.08);
  box-shadow: 0 0 4px #C8FF00;
}

.service-toggle-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.fade-in-section {
  animation: fadeSwitch 0.3s ease-in-out;
}

@keyframes fadeSwitch {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  49% {
    opacity: 0;
    transform: translateY(10px);
  }

  50% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Icon styling */
.service-toggle i {
  color: #00aaff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-toggle:hover i {
  transform: translateY(-3px);
}

.service-toggle.active i {
  color: #C8FF00;
}

/* === Mobile Offcanvas Navigation === */
.offcanvas .off-btn {
  background-color: #121212;
  color: white;
  border: 1px solid #333;
  transition: all 0.2s ease;
  text-decoration: none;
  border-radius: 0.5rem;
}

.offcanvas .off-btn:hover {
  border-color: #00aaff;
  color: #00aaff;
  text-decoration: none;
  transform: scale(1.03);
}

.offcanvas .off-btn:hover .icon {
  color: #00aaff;
}

.offcanvas .off-btn .icon {
  color: white;
  transition: color 0.2s ease;
}

.offcanvas .off-btn.active {
  border-color: #C8FF00 !important;
  color: #C8FF00 !important;
  font-weight: 600;
  text-decoration: none;
}

.offcanvas .off-btn.active .icon {
  color: #C8FF00 !important;
}

.close-btn {
  display: inline-block;
  white-space: nowrap;
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 0.5rem;
  background-color: #772727;
  color: white;
  border: none;
  transition: all 0.2s ease;
  text-align: center;
}

.close-btn:hover {
  background-color: #aa2e2e;
  transform: scale(1.05);
  color: white;
}

input,
textarea,
select {
  font-size: 16px;
}

@media (max-width: 576px) {
  .fade-in-stagger {
    animation: none;
    opacity: 1;
    transform: none;
  }
}


@keyframes fadeSwitch {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  49% {
    opacity: 0;
    transform: translateY(10px);
  }

  50% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  #howSteps {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .how-step {
    flex: 0 0 auto;
    margin-bottom: 1.5rem;
  }
}

.step-toggle {
  cursor: pointer;
  transition: transform 0.2s ease;
  min-width: 120px;
}

.step-toggle:hover {
  transform: scale(1.05);
}

.step-toggle.active {
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.step-toggle.active .how-icon {
  filter: drop-shadow(0 0 12px rgba(18, 176, 255, 0.6));
}

.step-toggle:active {
  transform: scale(0.98);
}

/* Visual press feedback on interaction */
button:active,
.btn:active,
.icon-link:active,
.step-toggle:active {
  transform: scale(0.97);
  transition: transform 0.1s ease;
}

.submit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.submit-popup-overlay.show {
  opacity: 1;
}

.submit-popup.centered {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #121212;
  border-radius: 0.75rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 90%;
  max-width: 360px;
  padding: 1.5rem;
}

.submit-popup.show {
  opacity: 1;
}

.submit-popup-inner {
  color: #ddd;
  text-align: center;
}

.submit-popup .btn.close-btn {
  margin-top: 1rem;
  background-color: #1f1f1f;
  color: white;
  border: 1px solid #333;
}

.submit-popup .btn.close-btn:hover {
  background-color: #333;
}

.floating-call-icon {
  position: fixed;
  bottom: 80px;
  left: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.floating-call-icon:hover {
  transform: scale(1.1);
  background-color: white;
  color: black;
  border-color: white;
}

.contact-section {
  min-height: 35vh
}

/* Custom Google Translate Widget */
.goog-te-gadget-simple {
  background-color: transparent !important;
  border: 1px solid #333 !important;
  border-radius: 0.25rem !important;
  padding: 0.5rem !important;
  cursor: pointer;
}

.goog-te-gadget-simple .goog-te-menu-value {
  color: #fff !important;
}

.goog-te-gadget-icon {
  display: none !important;
}

body>.skiptranslate {
  display: none !important;
}

.series-card {
  background-color: #0F1113;
  border: 1px solid #333;
  border-radius: 0.75rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.series-card:hover {
  transform: translateY(-5px);
}

.series-card .bi-chevron-down {
  transition: transform 0.3s ease;
}

.series-card[aria-expanded="true"] .bi-chevron-down {
  transform: rotate(180deg);
}

.model-details {
  background-color: #0F1113;
  border: 1px solid #333;
  border-top: none;
  border-radius: 0 0 0.75rem 0.75rem;
  padding: 1.5rem;
}

.nav-pills .nav-link {
  background-color: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
  border-radius: 20px;
  padding: 0.4rem 0.8rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

.nav-pills .nav-link:hover {
  background-color: #333;
  color: #C8FF00;
}

.nav-pills .nav-link.active {
  background-color: #333;
  color: #C8FF00;
  border-color: #C8FF00;
}

#searchResults .list-group-item {
  background-color: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
}

.device-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
}

.device-bubble {
  background-color: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
  border-radius: 20px;
  padding: 0.4rem 0.8rem;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

.device-bubble:hover {
  background-color: #333;
  color: #C8FF00;
}

.brand-logo-img,
.brand-logo-icon {
  position: absolute;
  left: 1.5rem;
  font-size: 40px;
  height: 40px;
  width: auto;
  object-fit: contain;
}

.brand-logo-img.samsung-logo {
  height: 25px;
}

.brand-logo-icon {
  color: white;
}

.sub-series-card {
  background-color: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

#searchInput {
  background-color: #1a1a1a;
  color: #ffffff;
  border: 1px solid #333;
  font-size: 1rem;
}

#searchInput::placeholder {
  color: #888;
}

#searchInput:focus {
  background-color: #1a1a1a;
}

.submit-popup.show {
  opacity: 1;
}

.submit-popup-inner {
  color: #ddd;
  text-align: center;
}

.submit-popup .btn.close-btn {
  margin-top: 1rem;
  background-color: #1f1f1f;
  color: white;
  border: 1px solid #333;
}

.submit-popup .btn.close-btn:hover {
  background-color: #333;
}

.floating-call-icon {
  position: fixed;
  bottom: 80px;
  left: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.floating-call-icon:hover {
  transform: scale(1.1);
  background-color: white;
  color: black;
  border-color: white;
}

.contact-section {
  min-height: 35vh
}

/* Custom Google Translate Widget */
.goog-te-gadget-simple {
  background-color: transparent !important;
  border: 1px solid #333 !important;
  border-radius: 0.25rem !important;
  padding: 0.5rem !important;
  cursor: pointer;
}

.goog-te-gadget-simple .goog-te-menu-value {
  color: #fff !important;
}

.goog-te-gadget-icon {
  display: none !important;
}

body>.skiptranslate {
  display: none !important;
}

.series-card {
  background-color: #0F1113;
  border: 1px solid #333;
  border-radius: 0.75rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.series-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.144);
}

.series-card .bi-chevron-down {
  transition: transform 0.3s ease;
}

.series-card[aria-expanded="true"] .bi-chevron-down {
  transform: rotate(180deg);
}

.model-details {
  background-color: #0F1113;
  border: 1px solid #333;
  border-top: none;
  border-radius: 0 0 0.75rem 0.75rem;
  padding: 1.5rem;
}

.nav-pills .nav-link {
  background-color: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
  border-radius: 20px;
  padding: 0.4rem 0.8rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

.nav-pills .nav-link:hover {
  background-color: #333;
  color: #C8FF00;
}

.nav-pills .nav-link.active {
  background-color: #333;
  color: #C8FF00;
  border-color: #C8FF00;
}

#searchResults .list-group-item {
  background-color: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
}

.device-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
}

.device-bubble {
  background-color: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
  border-radius: 20px;
  padding: 0.4rem 0.8rem;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

.device-bubble:hover {
  background-color: #333;
  color: #C8FF00;
}

.brand-logo-img,
.brand-logo-icon {
  position: absolute;
  left: 1.5rem;
  font-size: 40px;
  height: 40px;
  width: auto;
  object-fit: contain;
}

.brand-logo-img.samsung-logo {
  height: 25px;
}

.brand-logo-icon {
  color: white;
}

.sub-series-card {
  background-color: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

#searchInput {
  background-color: #1a1a1a;
  color: #ffffff;
  border: 1px solid #333;
  font-size: 1rem;
}

#searchInput::placeholder {
  color: #888;
}

#searchInput:focus {
  background-color: #1a1a1a;
  color: #ffffff;
  border-color: #C8FF00;
  box-shadow: none;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 1.5rem;
}

/* Cookie Banner Styling */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(16, 16, 16, 0.841);
  /* Dark background */
  backdrop-filter: blur(10px);
  border: 1px solid #0080ffa8;
  /* Your Neon Green accent */
  padding: 20px;
  border-radius: 8px;
  z-index: 1000;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
  display: flex;
  justify-content: center;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  flex-wrap: wrap;
  gap: 15px;
  color: #fff;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}

/* Mobile Tweak */
@media (max-width: 600px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Language Switcher Dropdown */
.navbar .dropdown-menu-dark {
  background-color: #000000;
  border: 1px solid #333;
}

.navbar .dropdown-menu-dark .dropdown-item:hover {
  background-color: #1a1a1a;
  color: #C8FF00;
}

/* === Reviews Section Styling === */
.reviews-section {
  background-color: #050505;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.reviews-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(66, 133, 244, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Google Reviews Logo Header */
.google-reviews-header {
  text-align: center;
}

.google-reviews-header .google-reviews-logo {
  height: 8rem;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* Review Content */
.review-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.review-author-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.05);
  object-fit: cover;
}

.review-author-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #fff;
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: normal;
}

.review-stars {
  color: #5DADE2;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-top: 0.25rem;
}

/* Review Carousel Container */
.review-carousel-container {
  min-height: 350px;
}

/* Custom Carousel Indicators */
.custom-indicators {
  display: none;
}

/* Carousel Fade Transition */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
  border: none;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
  z-index: 1;
  border: none;
}

.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  opacity: 0;
  z-index: 1;
  border: none;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
  border: none;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .reviews-section {
    padding: 4rem 0;
  }

  .google-reviews-header .google-reviews-logo {
    height: 6rem;
  }

  .review-carousel-container {
    min-height: 400px;
  }

  .review-text {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
  }

  .review-author-img {
    width: 40px;
    height: 40px;
  }

  .review-author-name {
    font-size: 0.9rem;
  }

  .custom-indicators {
    gap: 0.4rem;
  }

  .custom-indicators button {
    width: 7px;
    height: 7px;
  }

  .custom-indicators button.active {
    width: 9px;
    height: 9px;
  }
}