/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,Helvetica,sans-serif;
}

/* GLOBAL */
body{
background:#f8fafc;
color:#1f2933;
line-height:1.6;
}

.container{
max-width:1100px;
margin:auto;
padding:0 20px;
}

section{
padding:50px 0;
}

h1,h2,h3{
color:#0f172a;
}

/* HEADER */
.header{
background:#fff;
border-bottom:1px solid #e5e7eb;
position:sticky;
top:0;
z-index:10;
}

.header-flex{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 0;
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-weight:700;
}

.logo img{
height:28px;
width:auto;
}

/* BUTTONS */
.btn{
display:inline-block;
padding:10px 18px;
border-radius:8px;
text-decoration:none;
font-size:14px;
font-weight:600;
}

.primary{background:#2563eb;color:#fff}
.secondary{background:#0f172a;color:#fff}
.whatsapp{background:#22c55e;color:#fff}

/* HERO */
.hero{
background:#2563eb;
color:#fff;
text-align:center;
padding:50px 20px;
}

.hero h1{
font-size:32px;
margin-bottom:10px;
color:#fff;
}

.hero p{
max-width:700px;
margin:0 auto 20px;
color:#e0e7ff;
}

/* SERVICES */
.section{text-align:center}

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:30px;
}

/* CARD */
.card{
background:#fff;
border-radius:14px;
padding:18px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
box-shadow:0 12px 22px rgba(0,0,0,0.08);
}

/* IMAGE SIZE FIX */
.card img{
width:100%;
height:170px;           /* 👈 fixed height */
object-fit:cover;      /* 👈 crop nicely */
border-radius:10px;
margin-bottom:12px;
}

/* TEXT */
.card h3{
margin-bottom:6px;
}

.card p{
font-size:14px;
color:#475569;
margin-bottom:10px;
}

/* TRUST */
.trust{
display:flex;
justify-content:space-around;
margin-top:40px;
color:#475569;
}

.trust strong{
display:block;
font-size:22px;
color:#0f172a;
}

/* FOOTER */
footer{
background:#020617;
color:#cbd5f5;
text-align:center;
padding:30px 20px;
font-size:13px;
}

/* MOBILE */
@media(max-width:768px){
.hero h1{font-size:26px}
.trust{flex-direction:column;gap:20px}
.card img{height:150px;}   /* smaller on mobile */
}
.back-btn{
display:inline-block;
margin-top:15px;
padding:10px 22px;
background:#22c55e;
color:white;
border-radius:6px;
text-decoration:none;
font-weight:600;
}

.know-btn{
display:inline-block;
margin-top:10px;
padding:8px 15px;
background:#0066cc;
color:white;
border-radius:5px;
text-decoration:none;
font-size:14px;
}
@media (max-width: 768px) {

  .info-container, 
  .info-card {
    width: 95% !important;
    max-width: 100% !important;
    margin: 15px auto;
    padding: 20px;
  }

  .info-card h2 {
    font-size: 22px;
  }

  .info-card p,
  .info-card li {
    font-size: 16px;
    line-height: 1.6;
  }

  .info-card img {
    width: 100%;
    height: auto;
  }

}
@media (max-width: 768px) {

  body * {
    max-width: 95% !important;
  }

  img {
    width: 100% !important;
    height: auto;
  }

}
p, li {
  font-size:16px !important;
}
/* WATER DROP CHAT BUBBLE */

#bubbleBot{
  position:fixed;
  bottom:20px;
  right:20px;
  width:60px;
  height:60px;
  border-radius:50%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, #cfe2ff 40%, #0d6efd 100%);
  color:black;
  font-weight:bold;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.3);
  z-index:99999;
  animation:float 3s ease-in-out infinite;
}

/* SIDE MESSAGE */

#bubbleText{
  position:fixed;
  bottom:40px;
  right:95px;
  background:white;
  padding:6px 12px;
  border-radius:15px;
  font-size:13px;
  box-shadow:0 4px 10px rgba(0,0,0,0.2);
  z-index:99999;
}

/* FLOATING ANIMATION */

@keyframes float{
  0%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
  100%{transform:translateY(0)}
}
#bubbleWrapper{
  position:fixed;
  bottom:20px;
  right:20px;
  display:flex;
  align-items:center;
  gap:10px;
  z-index:100000;
}

#bubbleBot{
  width:60px;
  height:60px;
  border-radius:50%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, #cfe2ff 40%, #0d6efd 100%);
  color:black;
  font-weight:bold;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.3);
  animation:float 3s ease-in-out infinite;
}

#bubbleText{
  background:white;
  padding:6px 12px;
  border-radius:15px;
  font-size:13px;
  box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

@keyframes float{
  0%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
  100%{transform:translateY(0)}
}
