:root {
  --primary-color: #0066cc;
  --primary-dark: #0052a3;
  --secondary-color: #00a86b;
  --dark-bg: #0a0e27;
  --darker-bg: #050815;
  --light-bg: #f8f9fa;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --text-muted: #6c757d;
  --border-color: #e9ecef;
  --card-bg: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-bg);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

.navbar {
  background: transparent !important;
  /* backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-light);
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  color: var(--text-light);
  transform: translateY(-2px);
}

.brand-logo {
    background: linear-gradient(135deg, rgb(124, 58, 237) 0%, rgb(217, 70, 239) 100%);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.brand-text {
  font-size: 1rem;
}

.nav-link {
    background: none;
    border: none;
    color: #ffffffb3;
    cursor: pointer;
    font-family: Inter, -apple-system, sans-serif;
    font-size: .875rem;
    font-weight: 500;
    padding: .5rem 0;
    position: relative;
    transition: color .2s ease;
    margin: 0rem .5rem;
}
.nav-link:hover {
  color: var(--text-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

.hero-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 168, 107, 0.1) 0%, transparent 50%);
}

.hero-subtitle {
    align-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: #7c3aed26;
    border: 1px solid #7c3aed4d;
    border-radius: 100px;
    color: #c4b5fd;
    display: inline-flex;
    font-family: Inter, -apple-system, sans-serif;
    font-size: .8rem;
    font-weight: 500;
    gap: .5rem;
    letter-spacing: .02em;
    margin-bottom: 1.5rem;
    padding: .5rem 1.25rem;
}

.hero-title {
    color: #fff;
    /* color: var(--text-primary); */
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.1;
}

.hero-description {
  /* font-size: 1.25rem; */
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  /* line-height: 1.8; */
      font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 2.6rem;
  font-weight: 700;
    background: linear-gradient(135deg, rgb(124, 58, 237) 0%, rgb(217, 70, 239) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: .9rem;
}

section {
  padding: 4rem 0;
}

.section-header {
  margin-bottom: 2rem;
}

.section-subtitle {
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 0rem;
  line-height: 1.3;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.products-section {
  /* background: var(--light-bg); */
}

.product-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card.flagship {
  border: 2px solid var(--primary-color);
}

.product-badge {
    align-items: center;
    background: #7c3aed14;
    border: 1px solid #7c3aed26;
    border-radius: 100px;
    color: #7c3aed;
    cursor: pointer;
    display: inline-flex;
    font-family: Inter, -apple-system, sans-serif;
    font-size: .75rem;
    font-weight: 600;
    justify-content: center;
    letter-spacing: .08em;
    line-height: 1.2;
    padding: .5rem 1rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .2s ease;
}

.product-card.flagship .product-badge {
    background: linear-gradient(135deg, rgb(124, 58, 237) 0%, rgb(217, 70, 239) 100%);
}

.product-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066cc5e, var(--secondary-color));
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0rem;
}
.product-icon i {
  font-size: 1.75rem;
  color: white;
}

.product-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.product-tagline {
     font-size: 1rem;
    line-height: 1rem;
  margin-bottom: 1rem;
}

.product-description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  /* line-height: 1.7; */
      color: var(--text-secondary);
    font-size: .875rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.product-features {
  list-style: none;
  padding: 0;
}

.product-features li {
    padding-bottom: 0.75rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.product-features i {
  color: var(--secondary-color);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.services-section {
  background: #e7f3ff;
}

.service-card {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  background: white;
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 60px;
  height: 60px;
    background: linear-gradient(135deg, rgb(124, 58, 237) 0%, rgb(217, 70, 239) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 1.75rem;
  color: white;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.methodology-section {
    background: #fefefe;
}

.methodology-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.methodology-step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.methodology-step:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 50px;
  height: 50px;
    background: linear-gradient(135deg, rgb(124, 58, 237) 0%, rgb(217, 70, 239) 100%);

  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.methodology-step h4 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.methodology-badge {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.methodology-badge:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.methodology-badge h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.methodology-badge p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 500;
}

.about-section {
  background: white;
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.about-feature:hover {
  background: white;
  box-shadow: var(--shadow);
}

.about-feature i {
  font-size: 2rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.about-feature h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.about-feature p {
  margin: 0;
  color: var(--text-muted);
}

.about-card {
  background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
  border-radius: 16px;
  padding: 3rem 2rem;
  color: white;
  box-shadow: var(--shadow-lg);
}

.about-logo {
  width: 80px;
  height: 80px;
    background: linear-gradient(135deg, rgb(124, 58, 237) 0%, rgb(217, 70, 239) 100%);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}

.awards-section {
  background: var(--light-bg);
}

.award-card {
  background: white;
  border-radius: 12px;
  padding: .5rem;
  height: 100%;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

.award-card img {
    width: 100%;
    /* height: 300px; */
    border-radius: 15px;
    object-fit: cover;
    object-position: center;
}
.award-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.award-icon {
  width: 70px;
  height: 70px;
    background: linear-gradient(135deg, rgb(124, 58, 237) 0%, rgb(217, 70, 239) 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.award-icon i {
  font-size: 2rem;
  color: white;
}

.award-card h4 {
  font-size: 1.30rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.award-recipient {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.award-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.award-year {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
  margin: 0;
}

.clients-section {
  background: white;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.client-item {
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
  min-height: 100px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.client-item:hover {
  background: white;
  box-shadow: var(--shadow);
  transform: scale(1.05);
}

.philosophy-quote {
  background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  color: white;
}

.philosophy-quote p:first-child {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.philosophy-quote h5 {
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.contact-section {
  background: var(--light-bg);
}

.contact-form-wrapper {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
  margin-bottom: 2rem;
  font-weight: 700;
}

.form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.1);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-info-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-info-item i {
  color: var(--primary-color);
}

.contact-info-item p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-info-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-item a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.demo-cta {
    background: linear-gradient(135deg, rgb(124, 58, 237) 0%, rgb(217, 70, 239) 100%);
  border-radius: 12px;
  padding: 2rem;
  color: white;
  text-align: center;
}

.demo-cta h4 {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.demo-cta p {
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  display: inline-block;
      font-size: 0.875rem;
    line-height: 1.25rem;
}
.demo-cta .btn{
  background-color: #fff;
  color: #000;
}
.btn-primary {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-outline-light {
  border-color: white;
  color: white;
  background: transparent;
}

.btn-outline-light:hover {
  background: white;
  color: var(--primary-color);
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
}

.footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  width: 60px;
  height: 60px;
    background: linear-gradient(135deg, rgb(124, 58, 237) 0%, rgb(217, 70, 239) 100%);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.footer h5 {
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
  position: relative;
}
ul.footer-links.icn-list li{
  padding-left: 20px;
}
ul.footer-links.icn-list li::before {
    content: "";
    position: absolute;
    background: #953ded;
    left: 1px;
    width: 8px;
    height: 8px;
    border-radius: 50px;
    top: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991px) {
  .hero-stats {
    gap: 2rem;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }

  .methodology-steps {
    margin-bottom: 2rem;
  }

  nav.navbar.navbar-expand-lg.navbar-dark.fixed-topp{
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    z-index: 1030;
    width: 100%;
}
}

@media (max-width: 767px) {
  section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .brand-text {
    display: none;
  }

  .clients-grid {
    grid-template-columns: 1fr;
  }
}




/* //////////// */


.header-nav {
    align-items: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: #0a0a0fd9;
    border-bottom: 1px solid #ffffff0f;
    display: flex;
    height: 80px;
    justify-content: space-between;
    left: 0;
    padding: 0 2rem;
    position: fixed;
    right: 0;
    top: 0;
    transition: all .3s ease;
    z-index: 999;
    width: 100%;
}


/* .fixed-topp{
  position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
} */

.btn-primary:hover {
    box-shadow: 0 8px 30px #7c3aed73, 0 0 0 1px #7c3aed33;
    transform: translateY(-2px) scale(1.02);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px #7c3aed73, 0 0 0 1px #7c3aed33;
    transform: translateY(-2px) scale(1.02);
}


.btn-primary {
  font-weight: 400 !important;

  border: none;
    align-items: center;
    background: linear-gradient(135deg, #7c3aed, #d946ef 50%, #f43f5e);
}

.hero-section {
    align-items: center;
    background: linear-gradient(135deg, #0a0a0f, #1a1a2e 40%, #2d1b4e) !important;
    background: var(--gradient-hero);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    padding: 5rem 1.2rem 0rem;
    position: relative;
    text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 70%, rgba(124, 58, 237, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(217, 70, 239, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(244, 63, 94, 0.1) 0%, transparent 50%);
  animation: pulse-glow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-page) 0%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-announcement {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #C4B5FD;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-title {
  margin-bottom: 1rem;
}

.hero-subtitle {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

a.btn.btn-outline-light.btn-lg {
    border: 1px solid #ffffff40;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: #ffffff1a;
}



/* Voice Interface Cards - Premium Glassmorphism */
.voice-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      min-height: 475px;
}

.voice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.voice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.12), 0 0 0 1px rgba(124, 58, 237, 0.1);
}

.voice-card:hover::before {
  opacity: 1;
}

.accent-purple { 
  background: linear-gradient(135deg, #FAF5FF 0%, #F3E8FF 100%);
}
.accent-blue { 
  background: linear-gradient(135deg, #FFF1F2 0%, #FFE4E6 100%);
}
.accent-orange { 
  background: linear-gradient(135deg, #ECFEFF 0%, #CFFAFE 100%);
}
.accent-pink { 
  background: linear-gradient(135deg, #FDF4FF 0%, #FAE8FF 100%);
}
.accent-green { 
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
}

.voice-card-title {
  font-size: 1.25rem !important;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #000;
}

.voice-card-description {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.btn-tag.active, .btn-tag:hover {
    background: #7c3aed !important;
    border-color: #7c3aed;
    border-color: var(--accent-violet);
    box-shadow: 0 4px 12px #7c3aed40;
    color: #fff !important;
}
.btn-tag {
    align-items: center;
    background: #7c3aed14;
    border: 1px solid #7c3aed26;
    border-radius: 100px;
    color: #7c3aed !important;
    color: var(--accent-violet);
    cursor: pointer;
    display: inline-flex;
    font-family: Inter, -apple-system, sans-serif;
    font-size: .75rem;
    font-weight: 600;
    justify-content: center;
    letter-spacing: .08em;
    line-height: 1.2;
    padding: .5rem 1rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .2s ease;
}

.mb-6 {
    margin-bottom: 1.5rem;
}


.container-fluid{
      padding: 0 2rem;
}

.support_card{
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
    display: grid !important;
}

.heading-1 {
    font-size: clamp(1.2rem, 3vw, 1.875rem);
    letter-spacing: -.01em;
    line-height: 1.3;
    font-weight: 600 !important;
    color: #000 !important;
}

.bg-secondary {

    background-color: #f5f5f5 !important;
}


.rounded-xl{
  border-radius: 20px;
}

.bg-dark{
  background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
}
.abot-content{
    color: #fff;

}
.abot-content h3 {
    color: #fff;
    margin-bottom: 0px;
    background: linear-gradient(135deg, rgb(93 7 242) 0%, rgb(217, 70, 239) 100%);
    display: block;
    width: 76px;
    margin: auto;
    padding: 10px;
    text-align: center;
    border-radius: 12px;
}
.cntry_out {
    font-size: 15px !important;
    background: linear-gradient(135deg, #ffffff1a, #ffffff0d);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: inset 0 1px #fff3, inset 0 -1px #0000001a, 0 8px 32px -8px #0000001a, 0 0 0 1px #ffffff14;
    transition: all .4s cubic-bezier(.32, .72, 0, 1);
    padding: 14px;
    box-shadow: none;
    margin-bottom: 15px !important;
}


.cntry_out span{
  display: block;
  margin-bottom: 0px !important;
  font-size: 17px;
  font-weight: 600 !important;
}
.cntry_out p {
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 400 !important;
}



/* ////////// */

.menu-btn {
  font-size: 24px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #111;
  color: #fff;
  padding-top: 60px;
  transition: 0.3s ease;
  z-index: 1001;
}

.sidebar a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
}

.sidebar a:hover {
  background: #333;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}

/* Overlay */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 1000;
}

/* Active */
.sidebar.active {
  left: 0;
}

#overlay.active {
  display: block;
}

/* Desktop Hide */
@media (min-width: 768px) {
  .menu-btn {
    display: none;
  }
}

img{
  max-width: 100%;
}


