/* ✅ Mobile (default) */
#boot-btn-wrapper {
  bottom: 15px;   /* 25 → 15 */
}

/* ✅ Small phones (iPhone SE) */
@media (max-width: 380px) {
  #boot-btn-wrapper {
    bottom: 10px;   /* 18 → 10 */
  }
  .boot-btn {
    transform: scale(0.85);
  }
}

/* ✅ Normal phones */
@media (min-width: 381px) and (max-width: 767px) {
  #boot-btn-wrapper {
    bottom: 25px;   /* 35 → 25 */
  }
}

/* ✅ Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  #boot-btn-wrapper {
    bottom: 55px;   /* 70 → 55 */
  }
}

/* ✅ Desktop */
@media (min-width: 1024px) {
  #boot-btn-wrapper {
    bottom: 75px;   /* 90 → 75 */
  }
}




.social-icons-row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;

    padding: 5px 0;          /* Row ki padding normal */
    margin-top: 30px;        /* ✅ ICONS NOW LOWER */
}


.social-icons-row img {
    width: 35px;             /* ✅ FIXED px */
    height: 35px;
    image-rendering: pixelated;
    cursor: pointer;
    transition: 0.2s;
}

.social-icons-row img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px #fff); 
}

.chart-gap {
    margin-bottom: 60px;
}

