/* ==========================================================================
   १ — मुख्य रॅपर
   ========================================================================== */
.technology-gadgets,
.technology-gadgets *{
  box-sizing:border-box;
}

.technology-gadgets{
  font-family:"Hind",Arial,sans-serif;
  background:#FBF9F6;
  color:#181829;
  line-height:1.65;
}

.technology-gadgets img,
.technology-gadgets video,
.technology-gadgets iframe{
  max-width:100%;
  height:auto;
}

.technology-gadgets .wrap{
  max-width:860px;
  margin:0 auto;
  padding:0px 20px 60px;
}

@media (max-width:480px){
  .technology-gadgets .wrap{
    padding:0px 16px 40px;
  }
}


/* ==========================================================================
   २ — हिरो सेक्शन (वरचा शीर्षक-पट्टा + साऊंडवेव्ह अ‍ॅनिमेशन)
   ========================================================================== */
.technology-gadgets .hero{
  position:relative;
  background:linear-gradient(160deg, #12121F 0%, #1D1D33 55%, #2a1f3d 100%);
  color:#ffffff;
  padding:56px 24px 70px;
  overflow:hidden;
  border-radius:0px 0px 32px 32px;
  text-align:center;
}

.technology-gadgets .hero::before{
  content:"";
  position:absolute;
  inset:0px;
  background:radial-gradient(circle at 20% 15%, #FF5D7359, transparent 45%),
             radial-gradient(circle at 85% 80%, #9FE6B82E, transparent 40%);
  pointer-events:none;
}

.technology-gadgets .eyebrow{
  display:inline-block;
  background:#FFFFFF14;
  border:1px solid #FFFFFF2E;
  padding:6px 16px;
  border-radius:999px;
  font-size:14px;
  letter-spacing:0.5px;
  margin-bottom:22px;
  backdrop-filter:blur(4px);
}

.technology-gadgets .hero h1{
  font-size:42px;
  font-weight:700;
  margin:0px 0px 14px;
  position:relative;
  z-index:2;
  color:#FFF3C0 !important;
}

.technology-gadgets .hero h1 .accent{
  color:#FF5D73 !important;
}

.technology-gadgets .hero p.sub{
  max-width:560px;
  margin:0 auto;
  color:#d3d3e6 !important;
  font-size:17px;
  font-weight:300;
  position:relative;
  z-index:2;
}

.technology-gadgets .wave{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:6px;
  height:54px;
  margin:30px auto 6px;
  position:relative;
  z-index:2;
}

.technology-gadgets .wave span{
  width:6px;
  border-radius:4px;
  background:linear-gradient(180deg, #FF5D73, #ffb199);
  animation:technology-gadgets-bounce 1.2s ease-in-out infinite;
}

.technology-gadgets .wave span:nth-child(1){height:14px; animation-delay:0s;}
.technology-gadgets .wave span:nth-child(2){height:34px; animation-delay:0.1s;}
.technology-gadgets .wave span:nth-child(3){height:50px; animation-delay:0.2s;}
.technology-gadgets .wave span:nth-child(4){height:24px; animation-delay:0.3s;}
.technology-gadgets .wave span:nth-child(5){height:44px; animation-delay:0.4s;}
.technology-gadgets .wave span:nth-child(6){height:18px; animation-delay:0.5s;}
.technology-gadgets .wave span:nth-child(7){height:38px; animation-delay:0.6s;}
.technology-gadgets .wave span:nth-child(8){height:12px; animation-delay:0.7s;}

@keyframes technology-gadgets-bounce{
  0%,100%{transform:scaleY(0.4); opacity:0.6;}
  50%{transform:scaleY(1); opacity:1;}
}

@media (prefers-reduced-motion: reduce){
  .technology-gadgets .wave span{animation:none;}
}

@media (max-width:600px){
  .technology-gadgets .hero h1{font-size:30px;}
  .technology-gadgets .hero p.sub{font-size:15px;}
}

@media (max-width:480px){
  .technology-gadgets .hero{padding:44px 18px 56px;}
  .technology-gadgets .hero h1{font-size:26px;}
  .technology-gadgets .wave{height:40px;}
}


/* ==========================================================================
   ३ — लेख परिचय आणि विभाग-शीर्षक पट्टी
   ========================================================================== */
.technology-gadgets .lead{
  font-size:18px;
  color:#4a4a63;
  margin:38px 0px 30px;
  padding:0px 4px;
}

.technology-gadgets .section-tag{
  display:flex;
  align-items:center;
  gap:10px;
  margin:44px 0px 18px;
  font-size:20px;
  font-weight:600;
  letter-spacing:1px;
  color:#E8425A;
  text-transform:uppercase;
}

.technology-gadgets .section-tag::after{
  content:"";
  flex:1;
  height:2px;
  background:linear-gradient(90deg, #FF5D73 0%, transparent 100%);
  opacity:0.35;
}

@media (max-width:480px){
  .technology-gadgets .lead{font-size:15.5px; margin:28px 0px 22px;}
  .technology-gadgets .section-tag{font-size:12.5px; margin:34px 0px 14px;}
}


/* ==========================================================================
   ४ — सर्व कार्ड्ससाठी सामायिक स्टाईल
   ========================================================================== */
.technology-gadgets .card{
  border-radius:22px;
  padding:28px 28px 26px;
  margin-bottom:22px;
  position:relative;
  overflow:hidden;
  transition:transform 0.35s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.35s ease;
  border:1px solid transparent;
}

.technology-gadgets .card:hover{
  transform:translateY(-6px) scale(1.02);
  box-shadow:0px 18px 34px -14px #14142847;
}

.technology-gadgets .card-icon{
  font-size:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:56px;
  height:56px;
  border-radius:16px;
  background:#FFFFFF8C;
  margin-bottom:14px;
  transition:transform 0.4s ease;
}

.technology-gadgets .card:hover .card-icon{
  transform:rotate(-8deg) scale(1.12);
}

.technology-gadgets .card h2{
  font-size:22px;
  font-weight:700;
  margin:0px 0px 10px;
  color:#181829 !important;
}

.technology-gadgets .card p{
  margin:0px 0px 10px;
  color:#181829;
  font-size:16px;
}

.technology-gadgets .card p:last-child{
  margin-bottom:0px;
}

@media (max-width:480px){
  .technology-gadgets .card{padding:22px 20px; border-radius:18px;}
  .technology-gadgets .card h2{font-size:19px;}
  .technology-gadgets .card p{font-size:14.5px;}
  .technology-gadgets .card-icon{width:48px; height:48px; font-size:24px;}
  .technology-gadgets .card:hover{transform:translateY(-3px) scale(1.0);}
}


/* ==========================================================================
   ५ — साऊंड कार्ड (विभाग-१)
   ========================================================================== */
.technology-gadgets .card--sound{
  background:#FFE8D6;
  border-color:#FFC9A0;
}


/* ==========================================================================
   ६ — बॅटरी कार्ड (विभाग-२) + बॅटरी-मीटर
   ========================================================================== */
.technology-gadgets .card--battery{
  background:#DBF7E3;
  border-color:#9FE6B8;
}

.technology-gadgets .battery-meter{
  display:flex;
  align-items:center;
  gap:14px;
  background:#FFFFFF8C;
  border-radius:14px;
  padding:14px 16px;
  margin:16px 0px 6px;
}

.technology-gadgets .battery-shell{
  position:relative;
  width:140px;
  height:26px;
  border:2.5px solid #181829;
  border-radius:6px;
  flex-shrink:0;
}

.technology-gadgets .battery-shell::after{
  content:"";
  position:absolute;
  right:-7px;
  top:6px;
  width:5px;
  height:12px;
  background:#181829;
  border-radius:0px 3px 3px 0px;
}

.technology-gadgets .battery-fill{
  position:absolute;
  top:2px; left:2px; bottom:2px;
  width:92%;
  border-radius:3px;
  background:linear-gradient(90deg,#37c871,#7be8a2);
  animation:technology-gadgets-charge 2.6s ease-in-out infinite alternate;
}

@keyframes technology-gadgets-charge{
  0%{width:14%;}
  100%{width:92%;}
}

@media (prefers-reduced-motion: reduce){
  .technology-gadgets .battery-fill{animation:none; width:80%;}
}

.technology-gadgets .battery-label{
  font-weight:600;
  font-size:15px;
}

.technology-gadgets .battery-label small{
  display:block;
  font-weight:400;
  color:#4a4a63;
  font-size:13px;
}

@media (max-width:420px){
  .technology-gadgets .battery-meter{flex-direction:column; align-items:flex-start; gap:10px;}
  .technology-gadgets .battery-shell{width:100%;}
}


/* ==========================================================================
   ७ — कनेक्टिव्हिटी कार्ड (विभाग-३) + फीचर-लिस्ट
   ========================================================================== */
.technology-gadgets .card--connect{
  background:#E4E6FF;
  border-color:#B7BBFF;
}

.technology-gadgets .feat-list{
  list-style:none;
  margin:14px 0px 0px;
  padding:0px;
  display:grid;
  gap:10px;
}

.technology-gadgets .feat-list li{
  background:#FFFFFF8C;
  border-radius:12px;
  padding:10px 14px;
  font-size:15.5px;
  display:flex;
  gap:10px;
  align-items:flex-start;
}

@media (max-width:480px){
  .technology-gadgets .feat-list li{font-size:13.5px; padding:9px 12px;}
}


/* ==========================================================================
   ८ — किंमत कार्ड (विभाग-४) + रंग-डॉट्स
   ========================================================================== */
.technology-gadgets .card--price{
  background:#FFF3C0;
  border-color:#FFDD73;
}

.technology-gadgets .price-row{
  display:flex;
  align-items:baseline;
  gap:14px;
  margin:14px 0px 4px;
  flex-wrap:wrap;
}

.technology-gadgets .price-old{
  font-size:19px;
  color:#9a8a55;
  text-decoration:line-through;
  opacity:0.75;
}

.technology-gadgets .price-new{
  font-size:34px;
  font-weight:700;
  color:#E8425A;
}

.technology-gadgets .color-dots{
  display:flex;
  gap:10px;
  margin-top:12px;
  flex-wrap:wrap;
}

.technology-gadgets .dot{
  display:flex;
  align-items:center;
  gap:6px;
  background:#FFFFFF99;
  padding:6px 12px;
  border-radius:999px;
  font-size:14px;
}

.technology-gadgets .dot .swatch{
  width:14px;
  height:14px;
  border-radius:50%;
  display:inline-block;
  border:1px solid #00000026;
}

@media (max-width:480px){
  .technology-gadgets .price-new{font-size:26px;}
  .technology-gadgets .price-old{font-size:16px;}
  .technology-gadgets .price-row{gap:10px;}
}


/* ==========================================================================
   ९ — निष्कर्ष विभाग
   ========================================================================== */
.technology-gadgets .conclusion{
  margin-top:44px;
  background:#12121F;
  color:#f1f1f6;
  border-radius:22px;
  padding:30px 28px;
  position:relative;
  overflow:hidden;
}

.technology-gadgets .conclusion::before{
  content:"🎧";
  position:absolute;
  right:-10px;
  bottom:-24px;
  font-size:120px;
  opacity:0.08;
}

.technology-gadgets .conclusion h2{
  margin:0px 0px 10px;
  font-size:22px;
  display:flex;
  gap:8px;
  align-items:center;
  color:#FFF3C0 !important;
}

.technology-gadgets .conclusion p{
  margin:0px;
  color:#cfcfe0;
  font-size:16px;
  position:relative;
  z-index:2;
}

@media (max-width:480px){
  .technology-gadgets .conclusion{padding:24px 20px; border-radius:18px;}
  .technology-gadgets .conclusion h2{font-size:19px;}
  .technology-gadgets .conclusion p{font-size:14.5px;}
  .technology-gadgets .conclusion::before{font-size:90px;}
}