@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Basic styling for the home page */
body {
      font-family: "Poppins", sans-serif;
      margin: 0;
      padding: 0;
      color: white;
      background-color: #f5f5f5;
}



.slideshow-container {
      max-width: 100%;
      position: relative;
      margin: 2rem auto auto auto;
}

@media (max-width: 768px) {
      .slideshow-container {
            height: 20vh;
      }

      .mySlides a img {
            height: 18vh;
      }

      .numbertext {
            font-size: 0.6rem;
      }

      .dots {
            display: none;
      }
}

.mySlides {
      display: none;
}

.prev,
.next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      margin-top: -22px;
      padding: 16px;
      color: white;
      font-weight: bold;
      font-size: 18px;
      transition: 0.6s ease;
      border-radius: 0 3px 3px 0;
      user-select: none;
}

.next {
      right: 0;
      border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
      background-color: rgba(0, 0, 0, 0.8);
}

.text {
      color: #f2f2f2;
      font-size: 15px;
      padding: 8px 12px;
      position: absolute;
      bottom: 8px;
      width: 100%;
      text-align: center;
}

.numbertext {
      color: #f2f2f2;
      font-size: 12px;
      padding: 8px 12px;
      position: absolute;
      top: 0;
}

.dot {
      cursor: pointer;
      height: 15px;
      width: 15px;
      margin: 1rem 2px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.6s ease;
}

.active,
.dot:hover {
      background-color: #717171;
}

.fade {
      animation-name: fade;
      animation-duration: 1.5s;
}

@keyframes fade {
      from {
            opacity: .4
      }

      to {
            opacity: 1
      }
}




.scrolling-images {
      width: 100%;
      height: 20vh;
      overflow: hidden;
      position: relative;
      background-color: white;
      margin-top: 3rem;
}



.scrolling-track {
      display: flex;
      width: calc(250px * 15);
      animation: scroll 30s linear infinite;
}

.scrolling-track img {
      max-width: 150px;
      width: 100px;
      height: 100px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      width: 50%;
      object-fit: cover;
      object-fit: cover;
      margin-right: 2rem;
      border-radius: 10px;
}

@keyframes scroll {
      0% {
            transform: translateX(0);
      }

      100% {
            transform: translateX(-100%);
      }
}


@media (max-width: 768px) {
      .scrolling-track img {
            width: 200px;
      }
}

@media (max-width: 480px) {
      .scrolling-track img {
            width: 150px;
      }
}




.intro-section {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      text-align: justify;
      background: #999;
      color: #000;
      height: 55vh;
      background-size: cover;
      background-position: center;
}

.intro-content {
      position: absolute;
      height: fit-content;
      max-width: 80%;
}

.intro-section h1 {
      color: #000;
      font-size: 3rem;
      margin-bottom: 1rem;
      font-weight: 700;
}

.intro-section p {
      font-size: 1.4rem;
      line-height: 1.5;
      margin-bottom: 2rem;
      font-weight: 500;
}



@media (max-width: 1024px) {
      .intro-section {
            height: 60vh;
            padding: 3rem 1.5rem;
      }

      .intro-section h1 {
            font-size: 2.2rem;
      }

      .intro-section p {
            font-size: 1rem;
      }
}

@media (max-width: 768px) {
      .intro-section {
            height: 60vh;
            padding: 3rem 1.5rem;
      }

      .intro-section h1 {
            font-size: 1.9rem;
      }

      .intro-section p {
            font-size: 1.1rem;
      }
}

@media (max-width: 580px) {
      .intro-section {
            height: 60vh;
            padding: 3rem 1.5rem;
      }

      .intro-section h1 {
            font-size: 1.6rem;
      }

      .intro-section p {
            font-size: 1rem;
      }


}

@media (max-width: 480px) {
      .intro-section {
            padding: 0rem 1rem;
            height: 65vh;
      }

      .intro-section h1 {
            font-size: 1.7rem;
      }

      .intro-section p {
            font-size: 0.85rem;
      }
}

@media (max-width: 315px) {
      .intro-section {
            padding: 0rem 1rem;
            max-height: 60vh;
      }

      .intro-section h1 {
            font-size: 1.2rem;
      }

      .intro-section p {
            font-size: 0.7rem;
      }
}




.sell-devices {
      padding: 50px 20px;
      background-color: #f0f0f0;
      text-align: center;
}

.sell-devices .our-services {
      font-size: 2em;
      margin-top: 1rem;
      padding-bottom: 3rem;

}

.sell-devices .container {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
}

.device-item {
      background-color: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      flex: 1;
      max-width: 30%;
      transition: transform 0.3s;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
}

.device-item:hover {
      transform: translateY(-10px);
}

.device-item img {
      width: 280px;
      margin-bottom: 20px;
}

.device-item img:hover {
      width: 350px;
}

.device-item h3 {
      font-size: 22px;
      color: #000;
      margin-bottom: 15px;
}

.device-item p {
      font-size: 16px;
      color: #000;
      text-align: justify;
      margin-bottom: 20px;
      line-height: 1.4;
}

.btn {
      display: inline-block;
      padding: 10px 20px;
      background-color: #000;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      transition: background-color 0.3s;
}

.btn:hover {
      background-color: #686868;
}

@media (max-width: 992px) {
      .sell-devices .container {
            flex-direction: column;
            gap: 30px;
      }

      .device-item {
            max-width: 100%;
            margin-bottom: 20px;
      }
}

@media (max-width: 768px) {
      .device-item h3 {
            font-size: 1.6rem;
      }

      .device-item p {
            font-size: 1.4rem;
      }

      .btn {
            padding: 8px 16px;
            font-size: 1.4rem;
      }
}

@media (max-width: 480px) {
      .sell-devices {
            padding: 30px 10px;
      }

      .device-item img {
            width: 160px;
      }

      .device-item img:hover {
            width: 200px;
      }


      .device-item h3 {
            font-size: 20px;
      }

      .device-item p {
            font-size: 14px;
      }

      .btn {
            padding: 8px 16px;
            font-size: 14px;
      }
}


.works {
      margin-top: 4rem;
      margin-bottom: -1rem;
}

.icon-section {
      display: flex;
      justify-content: space-around;
      align-items: flex-start;
      padding: 40px 0;
      background-color: white;
      text-align: center;
      margin-top: 20px;
      flex-wrap: wrap;
}

.icon-column {
      flex: 1 1 22%;
      margin: 20px;
      max-width: 320px;
}

.icon-column img {
      width: 200px;
      height: 200px;
      margin-bottom: 15px;
}

.icon-column h3 {
      color: #000;
      font-size: 23px;
      margin-bottom: 10px;
      font-weight: 800;
}

.icon-column p {
      text-align: justify;
      font-size: 16px;
      color: #000;
      margin: 0;
}


@media (max-width: 1200px) {
      .icon-column {
            flex: 1 1 45%;
            max-width: 45%;
      }
}

@media (max-width: 768px) {
      .icon-column {
            flex: 1 1 90%;
            max-width: 90%;
      }

      .icon-column img {
            width: 120px;
            height: 120px;
      }

      .icon-column h3 {
            font-size: 22px;
      }

      .icon-column p {
            font-size: 17px;
      }
}


.faq-section {
      background-color: #f9f9f9;
      padding: 50px 20px;
      max-width: 1200px;
      margin: auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
      text-align: center;
      font-size: 30px;
      color: #000;
      margin-bottom: 30px;
      font-weight: bold;
}

.faq-item {
      margin-bottom: 15px;
      background-color: white;
      border-radius: 5px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: all 0.3s ease;
}

.faq-item:hover {
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      font-size: 18px;
      background-color: #fff;
      border-bottom: 1px solid #ddd;
      transition: background-color 0.3s ease;
}

.faq-question h3 {
      margin: 0;
      color: #000;
}

.faq-question:hover {
      background-color: #f1f1f1;
}

.faq-toggle {
      font-size: 24px;
      color: #000;
      transition: transform 0.3s ease;
}

.faq-answer {
      padding: 20px;
      display: none;
      background-color: #fafafa;
      font-size: 16px;
      color: #000;
      line-height: 1.5;
}

.faq-answer p {
      margin: 0;
}


@media (max-width: 768px) {

      .faq-section {
            padding: 20px 10px;
      }

      .faq-section h2 {
            font-size: 24px;
            margin-bottom: 20px;
      }

      .faq-item {
            margin-bottom: 10px;
      }

      .faq-question {
            padding: 10px 15px;
            font-size: 16px;
            text-align: justify;
      }

      .faq-question h3 {
            text-align: left;
      }

      .faq-answer {
            padding: 15px;
            font-size: 18px;
      }

      .faq-toggle {
            font-size: 20px;
      }
}

@media (max-width: 480px) {

      .faq-section h2 {
            font-size: 20px;
      }

      .faq-question {
            font-size: 14px;
            padding: 8px 12px;
      }

      .faq-answer {
            font-size: 15px;
            padding: 10px;
      }

      .faq-toggle {
            font-size: 18px;
      }
}