:root {
  --primary-gradient: linear-gradient(135deg, #0061ff 0%, #60efff 100%);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: 1px solid rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  --text-color: #ffffff;
  --text-muted: #2c2929b3;
  --accent-color: #00d4ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
  font-family: 'Poppins', sans-serif !important;
}

/* Background Animation Elements */
.bg-shape {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  animation: float 10s infinite ease-in-out alternate;
}

.shape-1 {
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(0, 212, 255, 0.4);
}

.shape-2 {
  bottom: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(0, 97, 255, 0.3);
  animation-delay: -5s;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(30px, 50px);
  }
}


/* Hero Section */

.hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  top: -400px;
  right: -400px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
   padding-top: 100px;
  padding-bottom: 80px;
  position: relative; 
  color: white;
  overflow: hidden;
}

.hero h1 {
     font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #5d4ec7, #4d586b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    animation: fadeUp 1s ease forwards;

  animation: fadeUp 1s ease forwards;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;

  animation: fadeUp 1s ease 0.3s forwards;
}

/* User Profile Card */
.user-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--glass-border);
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow: var(--glass-shadow);
 
  animation: fadeUp 1s ease 0.6s forwards;
  transition: transform 0.3s ease;
}

.user-profile:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 114, 255, 0.4);
}
.avatar img{
      height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.user-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.user-info span {
  font-size: 0.9rem;
  color: var(--text-muted);
}


/* Reset and global */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #e9f2f9;
  color: #0a2540;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #0466c8;
  text-decoration: none;
}

a:hover {
  color: #0353a4;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}


/* Typography */
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  line-height: 1.2;
  color: #0a2540;
}
[data-theme="dark"] h1,[data-theme="dark"] h2,[data-theme="dark"] h3,[data-theme="dark"] h4,[data-theme="dark"] h5
{color: #ddeeff;}
h1 {
  font-size: 28px;
  font-weight: 700;
  /* margin-bottom: 1rem; */
}

h2 {
  font-size: 24px;
  font-weight: 700;
  /* margin-bottom: 1rem; */
}


p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #3a5068;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #0466c8 0%, #0353a4 100%);
  color: white;
  padding: 14px 42px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgb(4 102 200 / 0.4);
  transition: all 0.3s ease;
  user-select: none;
}

.btn-primary:hover {
  box-shadow: 0 20px 48px rgb(4 102 200 / 0.6);
  transform: translateY(-3px);
}


/* Features Section */
.features {
  /* margin-top: -80px; */
  background: white;
  border-radius: 22px;
  box-shadow: 0 28px 64px rgb(4 102 200 / 0.15);
  padding: 60px 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 46px 36px;
  position: relative;
  z-index: 10;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.feature-icon {
  background: linear-gradient(135deg, #0466c8 0%, #48a9e6 100%);
  color: white;
  font-size: 32px;
  padding: 18px;
  border-radius: 15px;
  flex-shrink: 0;
  box-shadow: 0 8px 30px rgb(4 102 200 / 0.3);
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15);
}

.feature-text h3 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.4rem;
}

.feature-text p {
  color: #717f9a;
  font-weight: 400;
  font-size: 1rem;
  margin-top: 0;
}

/* Cards Section (Example: Call Card) */
.card-section {
  /* max-width: 1140px; */
  /* margin: 80px auto 40px; */
  /* padding: 0 20px; */
}

.section-header {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.section-header h2 {
  font-weight: 700;
  font-size: 2rem;
  color: #0a2540;
}

.section-header a {
  font-weight: 600;
  color: #0466c8;
  font-size: 1rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.section-header a:hover {
  color: #004a94;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 28px 36px;
}

/* Call Recording Card */
.call-card {
  /* background: white;
  border-radius: 20px;
  padding: 24px 30px;
  box-shadow: 0 12px 30px rgb(4 102 200 / 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px; */
      display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.call-card:hover {
  box-shadow: 0 20px 48px rgb(4 102 200 / 0.3);
  transform: translateY(-10px);
}

.call-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.call-icon {
  background: linear-gradient(135deg, #0466c8 0%, #48a9e6 100%);
  width: 56px;
  height: 56px;
  border-radius: 14px;
  color: white;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 28px rgb(4 102 200 / 0.3);
}

/* .call-info h3 {
  font-weight: 700;
  font-size: 1.125rem;
  color: #0a2540;
  margin-bottom: 6px;
} */

.call-info p {
  font-weight: 400;
  font-size: 0.9rem;
  color: #606f85;
  margin: 0;
}

/* Waveform Bar Animation */
.waveform {
  display: flex;
  gap: 4px;
  height: 32px;
  margin-top: -10px;
  border-radius: 6px;
  user-select: none;
}

.wave-bar {
  width: 6px;
  border-radius: 3px;
  background: #dbeafe;
  animation: wave 2s ease-in-out infinite alternate;
  opacity: 0.7;
}

.wave-bar:nth-child(odd) {
  animation-delay: 0.3s;
}

.wave-bar:nth-child(2) {
  animation-delay: 0s;
}

.wave-bar:nth-child(3) {
  animation-delay: 0.5s;
}

.wave-bar:nth-child(4) {
  animation-delay: 0.1s;
}

.wave-bar:nth-child(5) {
  animation-delay: 0.6s;
}

.wave-bar:nth-child(6) {
  animation-delay: 0.4s;
}

.wave-bar:nth-child(7) {
  animation-delay: 0.2s;
}

@keyframes wave {
  0% {
    height: 10px;
    background: #dbeafe;
    opacity: 0.6;
  }

  50% {
    height: 26px;
    background: #186df2;
    opacity: 1;
  }

  100% {
    height: 12px;
    background: #dbeafe;
    opacity: 0.6;
  }
}

/* Card Footer for play and duration */
.call-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.duration {
  font-weight: 700;
  font-size: 0.9rem;
  color: #0b69ff;
  background: #dbeafe;
  padding: 6px 18px;
  border-radius: 30px;
  user-select: none;
}

button.play-btn {
  background: linear-gradient(135deg, #0b69ff 0%, #004a94 100%);
  border: none;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(4 102 200 / 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}

button.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 44px rgba(4 102 200 / 0.6);
}

/* Deck Cards */
.deck-card {
  /* background: white;
  border-radius: 24px;
  box-shadow: 0 14px 40px rgb(4 102 200 / 0.18);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  user-select: none; */
      cursor: pointer;
    user-select: none;
    box-shadow: 0 12px 30px rgb(4 102 200 / 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    animation: fadeInUp 1s ease;
}

.deck-card:hover {
  box-shadow: 0 20px 60px rgb(4 102 200 / 0.28);
}

.deck-preview {
  height: 160px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(135deg, #0b69ff, #004a94);
  color: white;
  font-size: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  user-select: none;
}
.deck-preview img{
  height: 100%;
  object-fit: contain;
}
.deck-type {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  backdrop-filter: blur(6px);
  user-select: none;
}

.deck-content {
  padding: 24px 30px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.deck-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  /* color: #0a2540; */
}

.deck-desc {
  font-size: 0.95rem;
  color: #65768e;
  margin-bottom: 1.4rem;
  line-height: 1.4;
  min-height: 50px;
}

.deck-footer {
  display: flex;
  justify-content: space-between;
  color: #a0adc2;
  font-size: 0.9rem;
}

.deck-footer span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.deck-footer i {
  font-size: 14px;
  color: #0b69ff;
}

.deck-btn {
  background: transparent;
  border: none;
  font-weight: 700;
  font-size: 1.5rem;
  color: #0b69ff;
  cursor: pointer;
  transition: color 0.3s ease;
  user-select: none;
}

.deck-btn:hover {
  color: #004a94;
}

/* Blogs */
.blog-card {
  /* background: white;
  box-shadow: 0 14px 40px rgb(4 102 200 / 0.18);
  border-radius: 24px;
  overflow: hidden;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  user-select: none;
  display: flex;
  flex-direction: column; */
      cursor: pointer;
    user-select: none;
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-card:hover {
  box-shadow: 0 20px 60px rgb(4 102 200 / 0.28);
}

.blog-header {
  height: 140px;
  background: linear-gradient(135deg, #0b69ff, #004a94);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  color: white;
  border-radius: 24px 24px 0 0;
  position: relative;
  user-select: none;
}

.blog-header::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255 255 255 / 0.15);
  border-radius: 50%;
  top: -80px;
  left: -80px;
  mix-blend-mode: lighten;
}

.blog-content {
  padding: 24px 30px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-title {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #0a2540;
  line-height: 1.25;
}

.blog-desc {
  font-size: 0.9rem;
  color: #65768e;
  flex-grow: 1;
  margin-bottom: 24px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #a0adc2;
}

.blog-meta span {
  display: flex;
  gap: 6px;
  align-items: center;
}

.blog-meta i {
  color: #0b69ff;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 960px) {
  .features {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    padding: 60px 25px;
    gap: 36px 25px;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: 2.6rem;
  }
}

@media (max-width: 600px) {
  h1.hero-title {
    font-size: 2rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section {
    padding: 40px 25px;
  }

  .features {
    padding: 40px 25px;
  }
}

.navbar-expand-xl.navbar.navbar-dark.static-top {
    display: none;
}
footer.footer{
  display: none;
}

/* .container{max-width:1200px;margin:0 auto;display:flex;flex-direction:column;gap:50px} */

/* Header */
.header{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px;flex-wrap:wrap;gap:16px}
.title{display:flex;align-items:center;gap:10px}
/* .title h2{font-size:1.4rem;color:#0a2540} */
.icon{width:40px;height:40px;border-radius:10px;background:linear-gradient(135deg,#0466c8,#48a9e6);color:#fff;display:flex;align-items:center;justify-content:center;font-size:16px}
.badge{background:#dbeafe;color:#0b69ff;padding:4px 10px;border-radius:16px;font-size:0.75rem;font-weight:600}

/* Controls */
.controls{display:flex;align-items:center;gap:12px}
.toggle{display:flex;gap:4px;background:#fff;padding:4px;border-radius:8px;box-shadow:0 2px 8px rgba(0,0,0,0.08)}
.controls .btn{width:34px;height:34px;border:none;background:transparent;border-radius:6px;cursor:pointer;color:#606f85;font-size:14px;transition:all 0.2s;display:flex;align-items:center;justify-content:center}
.controls .btn:hover{background:#f0f4f8;color:#0466c8}
.controls .btn.active{background:linear-gradient(135deg,#0466c8,#48a9e6);color:#fff}

/* Navigation */
.nav{display:flex;gap:6px;align-items:center}
.nav.hidden{display:none}
.nav-btn{width:34px;height:34px;border:2px solid #e2e8f0;background:#fff;border-radius:50%;cursor:pointer;color:#0466c8;font-size:12px;transition:all 0.2s;display:flex;align-items:center;justify-content:center}
.nav-btn:hover:not(:disabled){background:#0466c8;color:#fff;border-color:#0466c8}
.nav-btn:disabled{opacity:0.4;cursor:not-allowed}
.nav span{font-size:0.8rem;color:#64748b;min-width:36px;text-align:center}

/* Slider */
.slider{overflow:hidden}
.track{display:flex;transition:transform 0.4s ease}
.slide{min-width:100%;padding:2px}

/* Grid */
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.grid.list{grid-template-columns:1fr;gap:12px}

/* Dots */
.dots{display:flex;justify-content:center;gap:6px;margin-top:16px}
.dots.hidden{display:none}
.dot{width:8px;height:8px;border-radius:50%;background:#cbd5e1;cursor:pointer;transition:all 0.3s}
.dot.active{width:22px;border-radius:4px;background:#0466c8}

/* Cards Base */

.list .card_class{flex-direction:row;align-items:center;padding:14px;gap:16px}
.list .card_class:hover{transform:translateX(4px)}

/* Call Card */
.call-card{padding:18px;gap:14px}
.call-top{display:flex;align-items:center;gap:12px}
.list .call-top{min-width:220px}
.call-icon{width:44px;height:44px;border-radius:10px;background:linear-gradient(135deg,#0466c8,#48a9e6);color:#fff;display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0}
.list .call-icon{width:38px;height:38px;font-size:16px}
.call-info h3{font-size:0.95rem;margin-bottom:2px}
.call-info p{font-size:0.8rem;color:#64748b}
.wave{display:flex;align-items:center;gap:3px;height:22px;}
.bar{width:4px;border-radius:2px;background:#dbeafe;animation:w 1.2s infinite ease-in-out alternate}
.bar:nth-child(odd){animation-duration:1.5s}
@keyframes w{0%{height:30%}100%{height:100%;background:#3b82f6}}
.call-bottom{display:flex;justify-content:space-between;align-items:center;margin-top:auto}
.list .call-bottom{margin:0 0 0 auto;gap:14px}
.dur{background:#eff6ff;color:#2563eb;padding:4px 10px;border-radius:14px;font-size:0.75rem;font-weight:600}
.play{width:36px;height:36px;border-radius:50%;background:linear-gradient(135deg,#2563eb,#1d4ed8);color:#fff;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:transform 0.2s}
.play:hover{transform:scale(1.1)}

/* Deck Card */
.deck-top{border-radius: 12px;height:120px;background:linear-gradient(135deg,#3b82f6,#1e40af);display:flex;align-items:center;justify-content:center;color:#fff;font-size:36px;position:relative}
.list .deck-top{width:100px;height:70px;border-radius:8px;flex-shrink:0;font-size:22px}
.deck-tag{position:absolute;top:10px;left:10px;background:rgba(255,255,255,0.2);padding:3px 8px;border-radius:10px;font-size:0.65rem;font-weight:700;text-transform:uppercase;backdrop-filter:blur(4px)}
.deck-body{display:flex;flex-direction:column;flex:1}
.list .deck-body{padding:0;width:100%}
.deck-body h3{font-size:1rem;margin-bottom:6px;}
.deck-body p{font-size:0.85rem;color:#64748b;margin-bottom:12px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.list .deck-body p{-webkit-line-clamp:1;margin-bottom:6px}
.deck-foot{display:flex;justify-content:space-between;align-items:center;color:#94a3b8;font-size:0.8rem;margin-top:auto}
.list .deck-foot{margin:0}

/* Blog Card */
.blog-top{height:100px;background:linear-gradient(135deg,#10b981,#059669);display:flex;align-items:center;justify-content:center;color:#fff;font-size:32px;position:relative;overflow:hidden}
.blog-top::after{content:'';position:absolute;width:80px;height:80px;background:rgba(255,255,255,0.1);border-radius:50%;top:-20px;right:-20px}
.list .blog-top{width:80px;height:60px;border-radius:8px;flex-shrink:0;font-size:20px}
.blog-body{padding:16px;display:flex;flex-direction:column;flex:1}
.list .blog-body{padding:0;width:100%}
.blog-body h3{font-size:1rem;margin-bottom:6px;}
.blog-body p{font-size:0.85rem;color:#64748b;margin-bottom:12px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.list .blog-body p{-webkit-line-clamp:1;margin-bottom:6px}
.blog-foot{display:flex;justify-content:space-between;font-size:0.75rem;color:#94a3b8;margin-top:auto}
.list .blog-foot{margin:0;gap:16px}

/* Responsive */
@media(max-width:900px){.grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){
    .grid{grid-template-columns:1fr}
    .header{flex-direction:column;align-items:flex-start}
    .controls{width:100%;justify-content:space-between}
    .list .card{flex-direction:column;align-items:flex-start}
    .list .deck-top,.list .blog-top{width:100%;height:80px}
}

.dashboard_page{
  margin-top: 30px;
}
.dashboard_page section{
  margin: 50px 0;
}

.viewer-iframe img{
      width: -webkit-fill-available;
}