/* ===== ADDITIONAL CSS FOR NEW CLIENTS PAGE ===== */

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b, #334155);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    text-align: center;
    color: white;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top: 4px solid #2866c9;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Breadcrumb */
.breadcrumb-section {
    background: #f8fafc;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #2866c9;
    text-decoration: none;
}

.breadcrumb-separator {
    color: #94a3b8;
}

.breadcrumb-current {
    color: #64748b;
    font-weight: 600;
}

/* ===== CLIENTS VIDEO HERO ===== */
.clients-hero-video {
  position: relative;
  width: 100vw;
  height: 100vh;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

.clients-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0f172a;
}

.clients-hero-video-el {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(1.15) contrast(1.15) saturate(1.1);
  z-index: 1;
}

.clients-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* light gradient for readability, not too dark */
  background: radial-gradient(circle at 20% 20%, rgba(40,102,201,.25) 0%, transparent 40%),
              radial-gradient(circle at 80% 80%, rgba(249,50,55,.25) 0%, transparent 45%),
              linear-gradient(135deg, rgba(15,23,42,.35) 0%, rgba(15,23,42,.55) 100%);
  pointer-events: none;
}

.clients-hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.clients-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(40,102,201,.25);
  border: 1px solid rgba(96,165,250,.35);
  padding: 10px 18px;
  border-radius: 999px;
  color: #bfdbfe;
  font-weight: 700;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(40,102,201,.25);
}

.clients-hero-title {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 10px;
  text-shadow: 2px 2px 10px rgba(0,0,0,.6);
  background: linear-gradient(135deg, #fff, #93c5fd, #fca5a5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.clients-hero-tagline {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: #e2e8f0;
  font-weight: 600;
  text-shadow: 1px 1px 6px rgba(0,0,0,.6);
  margin-bottom: 22px;
}

.clients-hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.btn-hero-primary, .btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: all .3s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

.btn-hero-primary {
  background: linear-gradient(135deg, #f93237, #ff6b6b);
  color: #fff;
}

.btn-hero-primary:hover { transform: translateY(-2px) scale(1.03); }

.btn-hero-secondary {
  background: rgba(255,255,255,.18);
  color: #d40808;
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover { transform: translateY(-2px) scale(1.03); }

/* Stats */
.clients-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1000px;
  width: 100%;
  padding: 0 10px;
}

.stat-card {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 14px 10px;
  text-align: center;
  transition: all .3s ease;
}

.stat-card:hover { transform: translateY(-4px); }

.stat-icon { color: #bfdbfe; margin-bottom: 6px; }
.stat-icon i { font-size: 18px; }

.stat-num {
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  line-height: 1;
}

.stat-label {
  color: #e2e8f0;
  font-size: .85rem;
  margin-top: 4px;
}

/* Controls */
.clients-video-controls {
  position: absolute;
  bottom: 22px;
  right: 22px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.video-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.18);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .3s ease;
  backdrop-filter: blur(8px);
}
.video-btn:hover { transform: scale(1.08); }

/* Scroll cue */
.clients-scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: #fff;
  opacity: .85;
  animation: bounce 1.8s infinite;
}

@keyframes bounce {
  0%,100% { transform: translate(-50%,0); }
  50% { transform: translate(-50%,-8px); }
}

/* Responsive */
@media (max-width: 900px) {
  .clients-hero-stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 520px) {
  .clients-hero-stats { grid-template-columns: 1fr; }
  .clients-hero-cta { flex-direction: column; }
}


/* Highlight Text */
.highlight-text {
    background: linear-gradient(135deg, #f93237, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(40, 102, 201, 0.1);
    color: #2866c9;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Partnership Badges */
.partnership-badge.elite { background: linear-gradient(135deg, #ffd700, #ffed4e); }
.partnership-badge.premium { background: linear-gradient(135deg, #c0c0c0, #e5e5e5); }
.partnership-badge.gold { background: linear-gradient(135deg, #ffd700, #ffa500); }
.partnership-badge.platinum { background: linear-gradient(135deg, #e5e4e2, #d3d3d3); }
.partnership-badge.diamond { background: linear-gradient(135deg, #b9f2ff, #7dd3fc); }
.partnership-badge.emerald { background: linear-gradient(135deg, #6ee7b7, #34d399); }
.partnership-badge.jade { background: linear-gradient(135deg, #86efac, #22c55e); }
.partnership-badge.ruby { background: linear-gradient(135deg, #fca5a5, #ef4444); }
.partnership-badge.sapphire { background: linear-gradient(135deg, #93c5fd, #3b82f6); }
.partnership-badge.topaz { background: linear-gradient(135deg, #fde68a, #f59e0b); }

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(40, 102, 201, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2866c9, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.category-icon i {
    font-size: 32px;
    color: white;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(40, 102, 201, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f93237, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 28px;
    color: white;
}

/* CTA Background */
.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 25% 25%, rgba(40, 102, 201, 0.1) 0%, transparent 50%);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2866c9, #1e40af);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #f93237, #ff6b6b);
    transform: scale(1.1);
}

/* Testimonial Enhancements */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.rating {
    display: flex;
    gap: 4px;
}

.rating i {
    color: #fbbf24;
    font-size: 14px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2866c9, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.author-avatar i {
    color: white;
    font-size: 20px;
}

.company-tag {
    background: rgba(40, 102, 201, 0.1);
    color: #2866c9;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 8px;
    display: inline-block;
}

/* CTA Contact Info */
.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
}

.contact-item i {
    color: #f93237;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .categories-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-contact-info {
        flex-direction: column;
        gap: 20px;
    }
}
/* Secondary hero button - visible on any background */
.btn-hero-secondary{
  background: #500dec;                 /* solid white so text पढ़े */
  color: #1e293b;                      /* dark text */
  border: 2px solid #2866c9;           /* brand outline */
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(40,102,201,.15);
  transition: all .25s ease;
}

.btn-hero-secondary i{ color:#2866c9; transition: color .25s ease; }

.btn-hero-secondary:hover{
  background: linear-gradient(135deg, #2866c9, #1e40af);  /* brand fill */
  color: #2316db;
  border-color: transparent;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 30px rgba(40,102,201,.30);
}

.btn-hero-secondary:hover i{ color:#250feb; }

/* यदि किसी CSS से low-opacity/disabled लग रहा हो तो neutralize करें */
.btn-hero-secondary[disabled],
.btn-hero-secondary.is-disabled{
  opacity: 1 !important;
  filter: none !important;
  pointer-events: auto !important;
}
/* Primary hero button spacing और size match */
.btn-hero-primary{
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
}

/* CTA group spacing */
.clients-hero-cta{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  justify-content:center;
}
/* Stats हमेशा center में grid में रहें */
.clients-hero-stats{
  position: relative;
  margin: 20px auto 0;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}

/* छोटी स्क्रीन पर responsive */
@media (max-width: 900px){
  .clients-hero-stats{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 520px){
  .clients-hero-stats{ grid-template-columns: 1fr; }
}
/* Header fixed है तो नीचे gap नहीं छोड़े */
.header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(34,51,59,0.95);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Header की ऊंचाई के बराबर first section को padding-top दें ताकि content कटे नहीं */
.page-first-section{
  padding-top: 84px; /* अपने header की real height के बराबर रखें (70-90px) */
}
/* Clients video hero */
.clients-hero-video,
.home-hero-video{
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}
