/* =======================
   General Reset & Body
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0b1120;
  color: #fff;
  line-height: 1.6;
}

/* =======================
   Topbar
======================= */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  background: linear-gradient(to right, #0f1b3d, #0a1128);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand-title {
  font-size: 1.5em;
  font-weight: 700;
  color: #00d4ff;
}

.brand-sub {
  font-size: 0.9em;
  color: #a8b2d1;
}

/* =======================
   Hero Section
======================= */
.container {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.hero {
  text-align: center;
  margin-bottom: 50px;
}

.hero .eyebrow {
  font-size: 14px;
  color: #00d4ff;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 2.8em;
  margin: 15px 0;
  color: #00d4ff;
}

.hero p {
  font-size: 1.1em;
  color: #b0c4de;
}

/* =======================
   Experts Grid
======================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.3);
}

.card .head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.card .head h3 {
  color: #00d4ff;
}

.card .head p {
  color: #a8b2d1;
  font-size: 0.9em;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature strong {
  color: #00d4ff;
}

.feature span {
  color: #b0c4de;
  font-size: 0.9em;
}

/* CTA Buttons */
.btn {
  display: inline-block;
  background: #00c8ff;
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #008ac9;
  box-shadow: 0 0 15px #00c8ff;
}

/* Notes below card */
.note {
  font-size: 0.8em;
  color: #a8b2d1;
  margin-top: 5px;
}

/* =======================
   Smart Analytics Dashboard
======================= */
.analytics-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(145deg, #0f1b3d, #0a1128);
}

.analytics-section h2 {
  font-size: 2.5em;
  color: #00d4ff;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.analytics-section p {
  font-size: 1.1em;
  color: #a8b2d1;
  margin-bottom: 50px;
}

.dashboard {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.chart-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  width: 320px;
  height: 260px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.15);
  transition: 0.3s ease-in-out;
}

.chart-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 35px rgba(0, 212, 255, 0.25);
}

.chart-title {
  font-size: 1.2em;
  font-weight: 600;
  margin-top: 20px;
  color: #00d4ff;
}

.chart {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  height: 150px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.bar {
  flex: 1;
  background: linear-gradient(180deg, #00d4ff, #0066ff);
  border-radius: 10px 10px 0 0;
  animation: grow 2s ease-in-out infinite alternate;
}

.bar:nth-child(2) { animation-delay: 0.3s; }
.bar:nth-child(3) { animation-delay: 0.6s; }
.bar:nth-child(4) { animation-delay: 0.9s; }

@keyframes grow {
  from { height: 40px; }
  to { height: 140px; }
}

.stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box h3 {
  color: #00d4ff;
  font-size: 2em;
  margin: 0;
}

.stat-box p {
  color: #a8b2d1;
  font-size: 1em;
  margin: 5px 0 0;
}

/* =======================
   Why Choose Us
======================= */
.why-choose-us {  
  text-align: center;  
  padding: 80px 20px;  
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);  
}

.why-choose-us h2 {  
  font-size: 36px;  
  margin-bottom: 10px;  
  font-weight: 700;
}

.why-choose-us h2 span {  
  color: #00c8ff;
}

.subtitle {  
  font-size: 16px;  
  color: #b0c4de;  
  margin-bottom: 50px;
}

.why-choose-us .features {  
  display: grid;  
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));  
  gap: 25px;  
  justify-content: center;  
  margin-bottom: 50px;
}

.why-choose-us .feature {  
  background: rgba(255, 255, 255, 0.08);  
  border-radius: 15px;  
  padding: 25px;  
  transition: all 0.3s ease;  
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.why-choose-us .feature:hover {  
  transform: translateY(-8px);  
  background: rgba(255, 255, 255, 0.12);  
  border-color: #00c8ff;
}

.why-choose-us .feature i {  
  font-size: 36px;  
  color: #00c8ff;  
  margin-bottom: 15px;
}

.why-choose-us .feature h3 {  
  font-size: 20px;  
  margin-bottom: 10px;  
  color: #fff;
}

.why-choose-us .feature p {  
  font-size: 15px;  
  color: #bcd4e6;
}

.cta-btn {  
  display: inline-block;  
  background: #00c8ff;  
  color: #fff;  
  padding: 14px 40px;  
  border-radius: 50px;  
  text-decoration: none;  
  font-weight: 600;  
  transition: all 0.3s ease;
}

.cta-btn:hover {  
  background: #008ac9;  
  box-shadow: 0px 0px 15px #00c8ff;
}

/* =======================
   Floating WhatsApp Button
======================= */
.float-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.float-cta a {
  display: block;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: all 0.3s;
}

.float-cta a:hover {
  background: #128c7e;
}

/* =======================
   Footer
======================= */
.site-footer {
  text-align: center;
  padding: 25px 20px;
  background: #0a1128;
  color: #a8b2d1;
  font-size: 0.9em;
}






/* =====================================
   GOOGLE PLAY STYLE RATING (ISOLATED)
   ZERO EFFECT ON EXISTING UI
===================================== */

.agency-review{
  padding:80px 20px;
  background:#0b1220;
}

.agency-review .rating-summary{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  gap:40px;
  align-items:center;
  color:#fff;
}

.agency-review .rating-left h1{
  font-size:64px;
  margin:0;
}

.agency-review .stars{
  color:#fbbf24;
}

.agency-review .rating-left p{
  color:#94a3b8;
}

.agency-review .rating-right{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.agency-review .rating-bar{
  display:flex;
  align-items:center;
  gap:12px;
}

/* blue circle number */
.agency-review .rating-label{
  width:26px;
  height:26px;
  min-width:26px;
  border-radius:50%;
  background:#1a73e8;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:600;
}

/* FORCE PLAY STORE BLUE BAR VISIBLE */

.agency-review .rating-line {
  flex: 1;
  height: 10px;
  background: #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.agency-review .rating-line span {
  display: block;
  height: 100%;
  background: #1a73e8;
  width: 50; /* default */
}


/* FIX rating horizontal width issue */

.agency-review .rating-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.agency-review .rating-label {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1a73e8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}



/* ===============================
   Play Store Style Rating Bars
   (FIXED – no UI break)
================================ */

.rating-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.rating-label {
  width: 18px;              /* 🔥 FIXED WIDTH */
  text-align: right;
  font-size: 14px;
  color: #cbd5e1;
  flex-shrink: 0;           /* 🔥 MOST IMPORTANT */
}

.rating-bar .line {
  flex: 1;                  /* 🔥 FULL WIDTH BAR */
  height: 12px;
  background: #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.rating-bar .line i {
  display: block;
  height: 100%;
  background: #1a73e8;
  border-radius: 20px;
}




/* ===============================
   Responsive Rating Bars
================================ */

/* Desktop (default already ok) */

/* Tablet */
@media (max-width: 768px) {
  .rating-bar {
    gap: 10px;
  }

  .rating-label {
    width: 16px;
    font-size: 13px;
  }

  .rating-bar .line {
    height: 10px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .rating-bar {
    gap: 8px;
  }

  .rating-label {
    width: 14px;
    font-size: 12px;
  }

  .rating-bar .line {
    height: 8px;
  }
}




/* ===============================
   MOBILE FIX – RATING BARS
   NO UI / LOGIC CHANGE
================================ */

@media (max-width: 768px) {

  .agency-review .rating-summary{
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .agency-review .rating-left{
    width: 100%;
    text-align: left;
  }

  .agency-review .rating-left h1{
    font-size: 48px;
  }

  .agency-review .rating-right{
    width: 100%;
  }

  .agency-review .rating-bar{
    width: 100%;
  }

  .agency-review .rating-bar .line{
    width: 100%;
  }
}

@media (max-width: 480px){

  .agency-review{
    padding: 50px 15px;
  }

  .agency-review .rating-left h1{
    font-size: 42px;
  }

  .agency-review .rating-label{
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .agency-review .rating-bar .line{
    height: 8px;
  }
}


.agency-review-slider {
  overflow-x: auto;
  cursor: grab;
  scroll-behavior: smooth;
}

.agency-review-slider::-webkit-scrollbar {
  display: none;
}
