/* =========================
   RECHARGE SECTION
========================= */
.recharge-section {
  padding: 60px 0;
  background: #F8F7F2;
}

.recharge-inner {
  display: flex;
  flex-direction: row; /* ✅ Desktop: content left, image right */
  align-items: center;
  gap: 40px;
}

.recharge-image {
  flex: 0 0 30%;
  max-width: 30%;
  order: 2; /* 👈 desktop pe image right */
}

.recharge-image img {
  width: 70%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

.recharge-content {
  flex: 0 0 70%;
  max-width: 70%;
  order: 1;
}

.recharge-title {
  margin-bottom: 15px;
  color: #3D93DC;
  font-family: monospace;
  text-align: center;
}

.recharge-desc {
  font-size: 15px;
  line-height: 25px;
  font-family: sans-serif;
  color: rgb(81 81 81);
  margin-bottom: 20px;
  margin-top: 30px;
  text-align: left;
}

.recharge-btn {
  display: inline-block;
  background: #28a745;
  color: #fff;
  padding: 12px 45px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
  font-family: monospace;
  font-size: 16px;
  text-shadow: 0 1px 2px #000;
}
.recharge-btn:hover {
  background: #1e7e34;
}

/* ✅ Mobile: image always top, content bottom */
@media (max-width: 768px) {
  .recharge-inner {
    flex-direction: column;
    text-align: center;
    gap: 0px; !important;
  }
  .recharge-image {
    order: 1; /* 👈 force image first */
    max-width: 100%;
  }
  .recharge-content {
    order: 2;
    max-width: 100%;
  }
  .recharge-image img {
    width: 100%;
  }
}


/* =========================
   FIRMWARE SECTION
========================= */
.firmware-section {
  padding: 60px 0;
  background: #F8F7F2;
}

.firmware-inner {
  display: flex;
  flex-direction: row; /* ✅ Desktop: image left, content right */
  align-items: center;
  gap: 40px;
}

.firmware-image {
  flex: 0 0 30%;
  max-width: 30%;
  order: 1; /* 👈 desktop pe image left */
}

.firmware-image img {
  width: 70%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

.firmware-content {
  flex: 0 0 70%;
  max-width: 70%;
  order: 2;
  margin-left: 40px;
}

.firmware-content h2 {
  margin-bottom: 15px;
  color: #3D93DC;
  font-family: monospace;
  text-align: center;
}

.firmware-content p {
  font-size: 15px;
  line-height: 25px;
  font-family: sans-serif;
  color: rgb(81 81 81);
  margin-top: 30px;
}

.firmware-btn {
  display: inline-block;
  background: #0073aa;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
  font-family: monospace;
  font-size: 16px;
  text-shadow: 0 1px 2px #000;
}
.firmware-btn:hover {
  background: #005f88;
}

/* ✅ Mobile: image always top, content bottom */
@media (max-width: 768px) {
  .firmware-inner {
    flex-direction: column;
    text-align: center;
    gap: 0px; !important;
  }
  .firmware-image {
    order: 1; /* 👈 force image first */
    max-width: 100%;
  }
  .firmware-content {
    order: 2;
    max-width: 100%;
    margin-left: 0;
  }
  .firmware-image img {
    width: 100%;
  }
}




    /* Intro Section */
.intro-section {
    padding: 60px 0;
    
}
.intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Slider */
/* Swiper container size */
.intro-slider {
    width: 100%;
    max-width: 800px;   /* ✅ fix width */
    height: auto;
    border-radius: 12px;
    overflow: hidden;
}

/* Images resize properly */
.intro-slider img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* ✅ no stretch */
}

/* Arrows & pagination color */
.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}
.swiper-pagination-bullet-active {
    background: #0073aa;
}


/* Text */
.intro-title {
   margin-bottom: 15px;
    color: #F8353C;
    font-family: monospace;
    text-align:center;
}
.intro-desc {
    font-size: 15px;
    line-height: 25px;
    font-family: sans-serif;
    color: #5d5d5d;
    text-align: left;
}
.intro-btn {
    display: inline-block;
    background: #0073aa;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}
.intro-btn:hover {
    background: #005f87;
}

/* Responsive */
@media(max-width: 768px) {
    .intro-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .intro-text {
        margin-top: 20px;
    }
}
