/* =======================
   Global Reset & Fonts
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  color: #333;
}
a {
  color: #e60073;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: #b30059;
}

/* =======================
   Layout Containers
======================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
header,
footer {
  background: #f9f9f9;
  border-bottom: 1px solid #eee;
}
header .header-wrap,
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}
.brand img {
  width: 50px;
  height: 50px;
}
.brand h1 {
  font-size: 20px;
  color: #e60073;
}
.brand span {
  font-size: 14px;
  color: #555;
}
.cta .btn {
  margin-left: 10px;
}

/* =======================
   Buttons
======================= */
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #fff !important;
  transition: transform 0.3s ease-in-out;
}
.btn:hover {
  color: #fff !important;
}
.btn.small {
  padding: 6px 12px;
  font-size: 13px;
}
.btn.whatsapp {
  background: linear-gradient(45deg, #25d366, #1ebe57);
  animation: blinkGreen 1.5s infinite, pulse 1.5s infinite;
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.6);
}
.btn.whatsapp:hover {
  background: linear-gradient(45deg, #1ebe57, #25d366);
  transform: scale(1.05);
}
.btn.call {
  background: linear-gradient(45deg, #ff0066, #e60073);
  animation: blinkPink 1.5s infinite, pulse 1.5s infinite;
  box-shadow: 0 0 12px rgba(230, 0, 115, 0.6);
}
.btn.call:hover {
  background: linear-gradient(45deg, #e60073, #ff0066);
  transform: scale(1.05);
}

/* =======================
   Banner
======================= */
.banner img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 15px 0;
  object-fit: contain; /* ✅ Banner bhi pura visible */
}

/* =======================
   Intro
======================= */
.intro {
  margin: 20px 0;
  font-size: 17px;
  text-align: justify;
}

/* =======================
   Grid & Cards
======================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 20px 0;
}
.card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-5px);
}
.card img {
  width: 100%;
  height: auto;         /* ✅ Auto adjust */
  object-fit: contain;  /* ✅ Full image visible */
  display: block;
  background: #000;     /* optional: black bg for empty space */
}
.card .content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
}
.card h3 {
  margin-bottom: 10px;
  color: #e60073;
}
.card p {
  flex-grow: 1;
  font-size: 15px;
  margin-bottom: 15px;
}
.card .actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card .btn {
  text-align: center;
  border-radius: 30px;
  font-size: 14px;
  padding: 10px;
}

/* =======================
   Rates
======================= */
.rates {
  margin: 30px 0;
}
.rates .rate-row {
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.rates .bar {
  flex: 1;
  height: 8px;
  background: #eee;
  margin: 0 10px;
  border-radius: 4px;
}
.rates .bar span {
  display: block;
  height: 100%;
  background: #e60073;
  border-radius: 4px;
}
.rates .price {
  min-width: 80px;
  text-align: right;
  font-weight: bold;
}

/* =======================
   FAQ
======================= */
.faq details {
  margin: 10px 0;
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fafafa;
}
.faq summary {
  font-weight: bold;
  color: #e60073;
  cursor: pointer;
}
.faq .answer {
  margin-top: 10px;
  font-size: 15px;
  color: #444;
}

/* =======================
   Disclaimer
======================= */
.disclaimer {
  margin: 30px 0;
  padding: 15px;
  background: #fff4f9;
  border-left: 4px solid #e60073;
  border-radius: 6px;
  font-size: 14px;
  color: #555;
}

/* =======================
   Footer
======================= */
footer {
  border-top: 1px solid #eee;
  margin-top: 30px;
  padding: 15px 0;
  font-size: 14px;
  color: #777;
}
footer .links a {
  margin: 0 8px;
  color: #555;
}
footer .links a:hover {
  color: #e60073;
}

/* =======================
   Floating Contact
======================= */
.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}
.floating-contact a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}
.floating-contact .whatsapp {
  background: #25d366;
}
.floating-contact .call {
  background: #e60073;
}

/* =======================
   Responsive
======================= */
@media (max-width: 991px) {
  .brand h1 {
    font-size: 18px;
  }
  .cta {
    margin-top: 10px;
  }
  .rates .price {
    font-size: 14px;
  }
  .grid {
    grid-template-columns: 1fr !important;
  }
}

/* =======================
   Animations
======================= */
@keyframes blinkGreen {
  0%   { background: linear-gradient(45deg, #25d366, #1ebe57); box-shadow: 0 0 12px rgba(37, 211, 102, 0.8); }
  50%  { background: linear-gradient(45deg, #1ebe57, #25d366); box-shadow: 0 0 20px rgba(37, 211, 102, 1); }
  100% { background: linear-gradient(45deg, #25d366, #1ebe57); box-shadow: 0 0 12px rgba(37, 211, 102, 0.8); }
}
@keyframes blinkPink {
  0%   { background: linear-gradient(45deg, #ff0066, #e60073); box-shadow: 0 0 12px rgba(230, 0, 115, 0.8); }
  50%  { background: linear-gradient(45deg, #e60073, #ff0066); box-shadow: 0 0 20px rgba(230, 0, 115, 1); }
  100% { background: linear-gradient(45deg, #ff0066, #e60073); box-shadow: 0 0 12px rgba(230, 0, 115, 0.8); }
}
@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Header Buttons Blink */
header .btn.whatsapp {
  background: linear-gradient(45deg, #25d366, #1ebe57);
  animation: blinkGreen 1.5s infinite, pulse 1.5s infinite;
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.6);
  color: #fff !important;
}
header .btn.call {
  background: linear-gradient(45deg, #ff0066, #e60073);
  animation: blinkPink 1.5s infinite, pulse 1.5s infinite;
  box-shadow: 0 0 12px rgba(230, 0, 115, 0.6);
  color: #fff !important;
}

/* =======================
   SEO Content Styling
======================= */
.seo-content {
  margin: 40px 0;
  padding: 20px;
  background: #fafafa;
  border-radius: 8px;
  border: 1px solid #eee;
}
.seo-content h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #e60073;
}
.seo-content h3 {
  font-size: 18px;
  margin-top: 18px;
  margin-bottom: 8px;
  color: #b30059;
}
.seo-content p {
  margin-bottom: 15px;
  text-align: justify;
  font-size: 16px;
}
.seo-content ul {
  margin: 15px 0 20px 20px;
  list-style: disc;
}
.seo-content ul li {
  margin-bottom: 8px;
}

