.fade-up{opacity:0;transform:translateY(40px);animation:fadeUp .9s ease forwards}
@keyframes fadeUp{to{opacity:1;transform:translateY(0)}}

.gradient-flow{
  background:linear-gradient(120deg,#2563eb,#7c3aed,#2563eb);
  background-size:400% 400%;
  animation:flow 10s ease infinite
}
@keyframes flow{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
.logo {
    max-height: 300%; 
    width: auto;      
    display: block;
}
.icon-circle{
  width:56px;height:56px;
  display:flex;align-items:center;justify-content:center;
  border-radius:16px;
  background:rgba(0,0,0,.05);
}

.hero-bg{
  position:relative;
  overflow:hidden;
  border-radius:28px;
}
.hero-bg::before{
  content:"";
  position:absolute;
  inset:0;
  background:#000; /* Black background for hero */
  filter:brightness(.7);
}
.hero-content{position:relative;z-index:2}

.scroll-reveal{
  opacity:0;
  transform:translateY(80px);
  transition:all 1s cubic-bezier(.22,1,.36,1);
}
.scroll-reveal.active{
  opacity:1;
  transform:translateY(0);
}


.review-image-section{
  padding:80px 20px;
  background:#f4f6f9;
  text-align:center;
}

.review-title{
  font-size:34px;
  margin-bottom:50px;
}

.review-image-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr); /* 2 per row */
  gap:30px;
  max-width:1100px;
  margin:auto;
}

.review-image-grid img{
  width:100%;
  height:auto;
  border-radius:14px;
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
  transition:0.3s ease;
}

.review-image-grid img:hover{
  transform:scale(1.03);
}




/* Mobile */
@media(max-width:768px){
  .review-image-grid{
    grid-template-columns:1fr; /* 1 per row on mobile */
  }
}

.google-review-btn{
  margin-top:50px;
  text-align:center;
  padding:0 20px;
}

.google-review-btn a{
  display:inline-block;
  padding:16px 28px;
  background:#fbbf24;
  color:#111;
  font-weight:700;
  text-decoration:none;
  border-radius:10px;
  font-size:16px;
  letter-spacing:.5px;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
  transition:all .3s ease;
  max-width:100%;
  white-space:nowrap;
}

/* Hover */
.google-review-btn a:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(0,0,0,0.25);
  background:#f59e0b;
}

/* ✅ Mobile fix */
@media(max-width:600px){
  .google-review-btn a{
    display:block;
    width:100%;
    white-space:normal;
    font-size:10px;
  }
}



.stats-section{
  padding:80px 5%;
  background: linear-gradient(135deg,#0f2027,#203a43,#2c5364);
}

.stats-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.stat-box{
  flex:1;
  min-width:180px;
  text-align:center;
  padding:30px 20px;
  border-radius:18px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
}

.stat-box:hover{
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,255,255,0.15);
}

.stat-box h2{
  font-size:46px;
  font-weight:700;
  background: linear-gradient(90deg,#00f5ff,#a855f7,#ff00cc);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-bottom:8px;
}

.stat-box p{
  color:#e0e0e0;
  font-size:14px;
  letter-spacing:1px;
  text-transform:uppercase;
}

@media(max-width:768px){
  .stats-container{
    flex-direction:column;
  }
}


 .monthly-plans {
  padding: 80px 20px;
  background: #f9fafc;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 36px;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #666;
  margin-bottom: 50px;
}

.plans {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.plan-card {
  background: #fff;
  padding: 30px;
  width: 320px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  position: relative;
  transition: 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
}

.plan-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.plan-desc {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 25px;
}

.plan-card ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #0056b3;
}

.popular {
  border: 2px solid #007bff;
}

.badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #007bff;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
}


 .button-group {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.call-btn {
  background: #007bff;
}

.call-btn:hover {
  background: #0056b3;
}

.whatsapp-btn {
  background: #25D366;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}


 .bot-msg{
  background:#f3f4f6;
  padding:12px;
  border-radius:12px;
  margin-bottom:10px;
  font-size:14px;
}

.chat-whatsapp{
  display:inline-block;
  margin-top:10px;
  background:#25D366;
  color:white;
  padding:8px 14px;
  border-radius:8px;
  text-decoration:none;
  font-size:13px;
}

.chat-whatsapp:hover{
  background:#1ebe5d;
}

/*chatbot*/
 .chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2563eb;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 999999;
  transition: 0.3s;
}
.chat-toggle:hover {
  transform: scale(1.1);
}

/* Chatbox */
.chatbox {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;
  max-height: 420px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  display: none;
  flex-direction: column;
  overflow: hidden;
  font-family: Arial, sans-serif;
  z-index: 999999;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Header */
.chat-header {
  background: linear-gradient(90deg,#2563eb,#7c3aed);
  color: white;
  padding: 14px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  position: relative;
}

.chat-close {
  position: absolute;
  right: 12px;
  top: 10px;
  cursor: pointer;
  font-size: 14px;
}

/* Body */
.chat-body {
  padding: 15px;
  height: 240px;
  overflow-y: auto;
  font-size: 14px;
  background: #f9fafb;
}

/* Message Box */
.bot-msg {
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  line-height: 1.5;
}

/* Buttons */
.chat-options button {
  width: 100%;
  margin-bottom: 8px;
  padding: 8px;
  border-radius: 8px;
  border: none;
  background: #e5e7eb;
  cursor: pointer;
  font-size: 13px;
  transition: 0.3s;
}
.chat-options button:hover {
  background: #d1d5db;
}

/* WhatsApp Button */
.chat-whatsapp {
  display: inline-block;
  margin-top: 10px;
  background: #25D366;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
}
.chat-whatsapp:hover {
  background: #1ebe5d;
}

/* Mobile */
@media(max-width:480px){
  .chatbox {
    width: 92%;
    right: 4%;
    bottom: 80px;
  }
  .chat-body {
    height: 200px;
  }
}




/* Contact Page */
 .container {
      max-width: 900px;
      margin: 80px auto;
      padding: 40px 20px;
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      text-align: center;
    }

    h1 {
      font-size: 34px;
      margin-bottom: 10px;
    }

    .subtitle {
      color: #64748b;
      margin-bottom: 30px;
      font-size: 16px;
    }

    .info {
      margin-bottom: 30px;
    }

    .info p {
      margin: 8px 0;
      font-size: 16px;
    }

    .btn {
      display: inline-block;
      padding: 12px 22px;
      margin: 10px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
    }

    .call {
      background: #22c55e;
      color: #fff;
    }

    .whatsapp {
      background: #25d366;
      color: #fff;
    }

    .form-btn {
      background: #2563eb;
      color: #fff;
    }

    .btn:hover {
      transform: translateY(-2px);
      opacity: 0.9;
    }

    @media (max-width: 768px) {
      .container {
        margin: 20px;
        padding: 30px 15px;
        margin-top: 150px;
      }

      h1 {
        font-size: 26px;
      }
    }