
/* LOGO */
.logo{
  height: 60px;
}



/* our model section  */

.model-section {
  position: relative;
  padding: 100px 20px;
  background: radial-gradient(circle at top left, #f2f6f2, #ffffff 60%);
  overflow: hidden;
}

/* Soft glow effect */
.model-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #a4de02;
  filter: blur(150px);
  opacity: 0.1;
  top: -100px;
  left: -100px;
  z-index: 0;
}



/* testimonal css */
/* Section */
.testimonials-section {
  position: relative;
  padding: 100px 20px;
  background: radial-gradient(circle at top right, #f2f6f2, #ffffff 60%);
  overflow: hidden;
}

/* Soft glow effect */
.testimonials-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #a4de02;
  filter: blur(150px);
  opacity: 0.1;
  top: -100px;
  right: -100px;
  z-index: 0;
}

/* Container */
.testimonial-container {
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.sub-title {
  color: #8cc63f;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 600;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-top: 10px;
}

/* Card */
.testimonial-card {
  position: relative;
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  text-align: center;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

/* Quote icon */
.quote-bg {
  position: absolute;
  font-size: 120px;
  color: #8cc63f;
  opacity: 0.05;
  top: 20px;
  left: 30px;
}

/* Text */
.testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
}

/* Client */
.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.client-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #e9f5dc;
  color: #8cc63f;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-info h4 {
  margin: 0;
  font-size: 16px;
}

.client-info span {
  font-size: 14px;
  color: #777;
}

/* Animation */
.testimonial-card {
  animation: fadeUp 0.8s ease forwards;
}

/* Remove default slide background */
.swiper-slide-testimonial {
  background: transparent !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Make wrapper clean */
.swiper-wrapper {
  align-items: stretch;
}

/* Make all slides same height */
.testimonial-card {
  width: 100%;
  max-width: 750px;
  min-height: 280px; /* prevents shrinking */
  display: flex;
  flex-direction: column;
  justify-content: center;
}




@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #8cc63f;
}

/* Responsive */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 30px;
  }

  .testimonial-card {
    padding: 35px 20px;
  }
}







/* how heatpup works */
.process-section{
background:var(--black);
color:var(--white);
padding:120px 20px;
}

.container{
max-width:1200px;
margin:auto;
}

.section-header{
text-align:center;
margin-bottom:80px;
}

.section-header h2{
font-size:40px;
font-weight:700;
margin-bottom:15px;
}

.section-header span{
color:var(--green);
}

.section-header p{
color:#aaa;
max-width:700px;
margin:auto;
}

.process-wrapper{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
position:relative;
}
.process-line{
position:absolute;
top:50px;
left:5%;
width:90%;
border-top:2px dotted rgba(155,214,0,0.5);
}

.step{
text-align:center;
opacity:0;
transform:translateY(60px);
max-width:320px;
margin:auto;
}

.icon-box{
width:100px;
height:100px;
margin:auto;
display:flex;
align-items:center;
justify-content:center;
background:rgba(255,255,255,0.05);
border-radius:16px;
border:1px solid rgba(255,255,255,0.1);
margin-bottom:20px;
transition:0.3s;
}

.icon{
width:60px;
height:60px;
color:var(--green);
}

.step:hover .icon-box{
background:var(--green);
}

.step:hover .icon{
color:black;
}

.step h3{
margin-bottom:10px;
font-size:18px;
}

.step p{
color:#aaa;
font-size:14px;
line-height:1.6;
}

@media (max-width:1024px){

.process-wrapper{
grid-template-columns:repeat(2,1fr);
gap:50px;
}

.process-line{
display:none;
}

}

@media (max-width:640px){

.process-wrapper{
grid-template-columns:1fr;
gap:60px;
}

.section-header h2{
font-size:28px;
}

.icon-box{
width:80px;
height:80px;
}

.icon{
width:45px;
height:45px;
}

}



/* comparison  */

.comparison-card{
background:#f9fafb;
padding:35px;
border-radius:14px;
box-shadow:0 8px 25px rgba(0,0,0,0.05);
transition:all .3s;
position:relative;
}

.comparison-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.highlight-card{
border:2px solid #9bd600;
background:white;
transform:scale(1.05);
}

.best-badge{
position:absolute;
top:-12px;
left:50%;
transform:translateX(-50%);
background:#9bd600;
color:black;
font-size:12px;
font-weight:700;
padding:4px 12px;
border-radius:20px;
}


/* rh comparison  */


.sticky-product img{
filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
}


/* index.php  */
.hero-product{
animation: floatProduct 5s ease-in-out infinite;
}

@keyframes floatProduct{

0%{
transform: translateY(0px);
}

50%{
transform: translateY(-15px);
}

100%{
transform: translateY(0px);
}

}

.trust-card{

padding:40px 25px;
border-radius:16px;
background:#ffffff;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:all .3s ease;

}

.trust-card:hover{

transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);

}

.trust-icon{

width:70px;
height:70px;
margin:auto;
display:flex;
align-items:center;
justify-content:center;
background:#9bd600;
color:#000;
border-radius:14px;

}

.category-card{

position:relative;
display:block;
overflow:hidden;
border-radius:18px;
height:380px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:all .4s ease;

}

.category-card img{

width:100%;
height:100%;
object-fit:cover;
transition:transform .6s ease;

}

.category-card:hover img{

transform:scale(1.1);

}

.category-content{

position:absolute;
bottom:0;
left:0;
width:100%;
padding:35px;
color:#fff;
background:linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));

}

.category-content h3{

font-size:24px;
font-weight:700;
margin-bottom:10px;

}

.category-content p{

font-size:14px;
color:#ddd;
margin-bottom:12px;

}

.category-content span{

color:#9bd600;
font-weight:600;

}

.category-card:hover{

transform:translateY(-8px);
box-shadow:0 25px 50px rgba(0,0,0,0.2);

}

.work-step{

padding:20px;
transition:all .3s ease;

}

.work-step h3{

font-size:20px;
font-weight:700;
margin-top:18px;
margin-bottom:10px;

}

.work-step p{

font-size:14px;
color:#666;

}

.work-icon{

width:80px;
height:80px;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
font-size:36px;
background:#9bd600;
border-radius:18px;
color:#000;
transition:all .3s ease;

}

.work-step:hover .work-icon{

transform:translateY(-6px) scale(1.1);
box-shadow:0 10px 25px rgba(0,0,0,0.2);

}


/* index.php comparison  */
.comparison-table{

width:100%;
border-collapse:collapse;
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);

}

.comparison-table th,
.comparison-table td{

padding:18px;
border-bottom:1px solid #eee;
text-align:center;
font-size:15px;

}

.comparison-table th{

background:#000;
color:#fff;
font-weight:600;

}

.comparison-table .highlight{

color:#000;
background:#9bd600;
font-weight:600;

}

.comparison-table tr:hover{

background:#f5f5f5;

}

/* index.php review  */

.testimonial-card{

background:#fff;
padding:35px;
border-radius:16px;
box-shadow:0 12px 30px rgba(0,0,0,0.08);
transition:all .4s ease;
text-align:left;

}

.testimonial-card:hover{

transform:translateY(-8px);
box-shadow:0 20px 45px rgba(0,0,0,0.15);

}

.stars{

color:#9bd600;
font-size:20px;
margin-bottom:12px;

}

.review{

color:#555;
font-size:15px;
margin-bottom:20px;
line-height:1.6;

}

.customer{

font-size:14px;
color:#888;

}


.faq-item{

border:1px solid #eee;
border-radius:12px;
overflow:hidden;

}

.faq-question{

width:100%;
text-align:left;
padding:20px;
font-size:18px;
font-weight:600;
background:#f9f9f9;
cursor:pointer;
border:none;

}

.faq-answer{

display:none;
padding:20px;
color:#555;
line-height:1.6;

}

.faq-item.active .faq-answer{

display:block;

}


.cta-realheat{

background:linear-gradient(135deg,#000,#111);
padding:120px 20px;
text-align:center;
color:#fff;

}

.cta-container{

max-width:900px;
margin:auto;

}

.cta-title{

font-size:42px;
font-weight:700;
margin-bottom:20px;

}

.cta-title span{

color:#9bd600;

}

.cta-text{

color:#ccc;
font-size:18px;
margin-bottom:40px;
line-height:1.6;

}

.cta-buttons{

display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;

}

.cta-btn{

padding:16px 32px;
border-radius:8px;
font-weight:600;
text-decoration:none;
transition:all .3s ease;

}

.call-btn{

background:#9bd600;
color:#000;

}

.call-btn:hover{

transform:translateY(-3px);
box-shadow:0 10px 20px rgba(155,214,0,.4);

}

.whatsapp-btn{

background:#25D366;
color:#fff;

}

.quote-btn{

background:#fff;
color:#000;

}


/* black strip on index.php  */
.heat-ecg-strip{

background:#000;
height:160px;
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;

}

.ecg-container{

position:relative;
width:100%;
/* max-width:1200px; */
text-align:center;

}

/* ECG SVG */

.ecg-svg{

position:absolute;
top:50%;
left:0;
/* width:100%; */
height:120px;
transform:translateY(-50%);

}

/* live ECG path */

.ecg-path{

fill:none;
stroke:#ff2a2a;
stroke-width:3;

stroke-dasharray:2000;
stroke-dashoffset:2000;

animation:drawECG 4s linear infinite;

filter:drop-shadow(0 0 6px #ff0000)
drop-shadow(0 0 16px #ff0000);

}

/* drawing animation */

@keyframes drawECG{

0%{
stroke-dashoffset:2000;
}

100%{
stroke-dashoffset:0;
}

}

/* text */

.ecg-text{

position:relative;
font-size:28px;
letter-spacing:5px;
font-weight:700;
color:#9bd600;

}

.ecg-text{

position:relative;
font-size:28px;
letter-spacing:5px;
font-weight:700;
color:#9bd600;
animation:textHeat 4s linear infinite;

}

@keyframes textHeat{

0%,40%,100%{
color:#9bd600;
text-shadow:none;
}

50%{
color:#fff;
text-shadow:
0 0 10px #ff5a00,
0 0 25px #ff2a00,
0 0 45px #ff0000;
}

}




/* heater animation  on single product pages */


