/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    color: #333;
  }
  a.btn.btn-dark.px-5.py-2.fw-semibold.shadow-sm {
    background: #30296a;
}
  /* Top Contact Bar */
  .top-bar {
    background-color: #30296a;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
  }
  
  .contact-info-top {
    display: flex;
    gap: 30px;
  }
  
  .contact-item {
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .contact-item i {
    color: #ffffff;
    font-size: 12px;
  }
  
  .top-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
  }
  
  .top-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }
  
  .top-links a:hover {
    color: #30296a;
  }
  
  /* Main Header */
  .main-header {
    background: white;
    z-index: 1000;
  }
  
  .logo {
    display: flex;
    flex-direction: column;
  }
  
  .logo-text {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0;
    letter-spacing: 2px;
  }
  
  .logo-text::after {
    content: "X";
    color: #30296a;
  }
  
  .logo-subtitle {
    font-size: 11px;
    color: #666;
    letter-spacing: 1px;
    margin: 0;
  }
  
  /* Navigation */
  .main-nav {
    display: flex;
    justify-content: center;
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
  }
  
  .nav-item {
    position: relative;
  }
  
  .nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 0;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: #30296a;
  }
  
  .nav-link.blog-active {
    color: #30296a;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    list-style: none;
    padding: 10px 0;
    z-index: 1001;
  }
  
  .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .dropdown-item {
    display: block;
    padding: 8px 20px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
  }
  
  .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #30296a;
  }
  
  /* Header Actions */
  .header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
  }
  
  .quote-btn {
    background-color: #30296a;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .quote-btn:hover {
    background-color: #30296a;
    color: white;
    transform: translateY(-2px);
  }
  
  .search-btn,
  .mobile-menu-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s;
  }
  
  .search-btn:hover,
  .mobile-menu-btn:hover {
    color: #30296a;
  }
  
  /* Hero Slider */
  .hero-slider {
    position: relative;
    height: 35vh;
    overflow: hidden;
  }
  
  .slider-container {
    position: relative;
    height: 100%;
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .slide.active {
    opacity: 1;
  }
  
  .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
 
  
  .slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
  }
  
  .hero-content {
    color: white;
    animation: slideInLeft 1s ease-out;
  }
  
  .hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.1;
  }
  
  .title-main {
    display: block;
    color: white;
  }
  
  .title-outline {
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px white;
    text-stroke: 2px white;
  }
  
  .hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
  }
  
  .hero-actions {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: fadeInUp 1s ease-out 0.6s both;
  }
  
  .btn-primary {
    background-color: #30296a;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
  }
.btn-primary:hover {
    background-color: #fec601;
    color: white;
    transform: translateY(-2px);
    border: 2px solid #fdc404;
}
  
  .call-info {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .call-icon {
    width: 60px;
    height: 60px;
    background-color: #30296a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
  }
  
  .call-text {
    display: flex;
    flex-direction: column;
  }
  
  .call-label {
    font-size: 14px;
    color: #ccc;
  }
  
  .call-number {
    font-size: 18px;
    font-weight: bold;
    color: white;
  }
  
  /* Guarantee Badge */
  .guarantee-badge {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    z-index: 3;
    animation: rotateIn 1s ease-out 0.9s both;
  }
.badge-content {
  width: 100%;
  height: 100%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  animation: swing 4s ease-in-out infinite; /* slow swing */
}

@keyframes swing {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(6deg); }
  50%  { transform: rotate(0deg); }
  75%  { transform: rotate(-6deg); }
  100% { transform: rotate(0deg); }
}
  
  .badge-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  
  .badge-logo {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
  }
  
  /* Slider Navigation */
  .slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50px;
    display: flex;
    gap: 10px;
    z-index: 4;
  }
  
  .nav-btn {
    width: 50px;
    height: 50px;
    background-color:rgb(0 0 0);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-btn:hover {
    background-color: #30296a;
    border-color: #30296a;
  }
  
  /* Slider Dots */
  .slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .dot.active {
    background-color: #30296a;
  }
  
  /* Animations */
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes rotateIn {
    from {
      opacity: 0;
      transform: translateY(-50%) rotate(-180deg) scale(0.5);
    }
    to {
      opacity: 1;
      transform: translateY(-50%) rotate(0deg) scale(1);
    }
  }
  
  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  /* Footer Styles */
  .footer {
    background-color: #f5f5f5;
    padding: 40px 0 0 0;
    margin-top: 0;
  }
  
  .brand-section {
    background-color: #30296a;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
  }
  
  .brand-logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    letter-spacing: 2px;
  }
  
  .brand-subtitle {
    color: white;
    font-size: 12px;
    margin: 5px 0 0 0;
    letter-spacing: 1px;
  }
  
  .description-text {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .footer-section h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }
  
  .footer-section ul li a:hover {
    color: #30296a;
  }
  
  .contact-info {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .contact-info i {
    color: #30296a;
    margin-right: 10px;
    width: 16px;
  }
  
  .newsletter-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .power-by {
    color: #888;
    font-size: 12px;
    margin-bottom: 15px;
  }
  
  .power-by .brand-link {
    color: #30296a;
    text-decoration: none;
  }
  
  .newsletter-title {
    color: #333;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.2;
  }
  
  .email-input {
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    margin-bottom: 15px;
  }
  
  .email-input:focus {
    outline: none;
    border-color: #30296a;
    box-shadow: 0 0 0 2px rgba(230, 126, 34, 0.2);
  }
  
  .submit-btn {
    background-color: #30296a;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
  }
  
  .submit-btn:hover {
    background-color: #30296a;
  }
  
  .social-footer {
    background-color:#000000;
    padding: 20px 0;
    margin-top: 40px;
  }
  
  .social-links {
    display: flex;
    gap: 30px;
    margin-bottom: 0;
  }
  
  .social-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
  }
  
  .social-links a:hover {
    color: #30296a;
  }
  
  .social-links i {
    font-size: 16px;
  }
  
  .copyright {
    color: #bdc3c7;
    font-size: 12px;
    margin: 0;
  }
  
 
  .copyright .brand-link {
    color: #ffffff;
    text-decoration: none;
  }
  
  .scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #30296a;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
  }
  
  .scroll-top.visible {
    opacity: 1;
    visibility: visible;
  }
  
  .scroll-top:hover {
    background-color: #30296a;
    transform: translateY(-2px);
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .main-nav {
      display: none;
    }
  
    .mobile-menu-btn {
      display: block;
    }
  
    .hero-title {
      font-size: 3rem;
    }
  
    .guarantee-badge {
      display: none;
    }
  
    .hero-actions {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .contact-info-top {
      flex-direction: column;
      gap: 10px;
    }
  
    .top-links {
      justify-content: flex-start;
      margin-top: 10px;
    }
  
    .hero-title {
      font-size: 2.5rem;
    }
  
    .hero-description {
      font-size: 16px;
    }
  
    .slider-nav {
      left: 20px;
      bottom: 20px;
    }
  
    .newsletter-section {
      margin-top: 30px;
    }
  
    .social-links {
      flex-wrap: wrap;
      gap: 15px;
    }
  
    .newsletter-title {
      font-size: 24px;
    }

  }
  
  @media (max-width: 576px) {
    .hero-title {
      font-size: 2rem;
    }
  
    .call-info {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  
    .nav-btn {
      width: 40px;
      height: 40px;
      font-size: 14px;
    }
  }

  /* Heading Style with text stroke */
.process-main-heading {
    font-size: 7vw;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px #e5e5e5;
    text-stroke: 2px #e5e5e5;
    opacity: 0.8;
    margin-bottom: -2vw;
  }
  
  /* Card container styling */
  .working-process-section {
    background: #fff;
    min-height: 80vh;
    position: relative;
  }
  .process-card {
    background: rgba(20,20,20,0.98);
    border-radius: 34px;
    box-shadow: 0 4px 32px 0 rgba(30,30,30,0.14);
    padding: 2.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    min-height: 320px;
    position: relative;
    border: none;
    /* Dotted background */
    background-image: radial-gradient(circle, rgba(255,255,255,0.13) 1px, transparent 1px);
    background-size: 18px 18px;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .process-card:hover {
    box-shadow: 0 8px 32px 0 rgba(255,123,46,0.10),0 1.5px 16px rgba(255,123,46,0.09);
    transform: translateY(-6px) scale(1.03);
  }
  .process-icon svg {
    display: block;
    margin: 0 auto;
    transition: transform 0.18s;
  }
  .process-card:hover .process-icon svg {
    transform: scale(1.14) rotate(-4deg);
    filter: drop-shadow(0 0 4px #FF7B2E54);
  }
  .process-btn {
    background: #181818;
    color: #fff;
    border: none;
    border-radius: 22px;
    padding: 8px 22px;
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px 0 rgba(255,123,46,0.05);
  }
  .process-btn span {
    color: #FF7B2E;
  }
  .process-btn:hover, .process-btn:focus-visible {
    background: #FF7B2E;
    color: #fff;
    outline: none;
  }
  .process-btn:hover span {
    color: #fff;
  }
  
  /* Go-up button */
  .go-up-btn {
    background: #fff;
    width: 52px;
    height: 52px;
    border: 2px solid #FF7B2E;
    transition: box-shadow 0.2s, background 0.2s;
    z-index: 99;
  }
  .go-up-btn:hover {
    background: #FF7B2E19;
    box-shadow: 0 2px 15px #FF7B2E55;
  }
  .go-up-btn svg {
    display: block;
    margin: auto;
  }
  
  /* Responsive tweaks */
  @media (max-width: 991px) {
    .process-card { margin-bottom: 2rem; }
    .process-main-heading { font-size: 10vw; }
  }
  @media (max-width: 767px) {
    .process-main-heading { font-size: 13vw; }
    .container { padding: 0; }
    .row { flex-wrap: wrap; }
  }
  /* Section Styles */
.process-section {
  padding: 80px 0 0 0;
  background: #fff;
  text-align: center;
}
.process-heading {
  font-size: 7vw;
  font-weight: 700;
  letter-spacing: -4px;
  color: #fff;
  -webkit-text-stroke: 2px #dadada;
  text-stroke: 2px #dadada;
  margin-bottom: 60px;
  line-height: 1;
  position: relative;
  opacity: 0.7;
}
.process-cards {
  display: flex;
  justify-content: center;
  gap: 10px;
  border-radius: 40px;
  margin: 0 auto;
  max-width: 1400px;
 
}
.process-card {
  flex: 1;
  padding: 46px 34px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: repeating-linear-gradient(
    45deg, #151515, #151515 10px, #181818 10px, #181818 20px
  );
  border-right: 1px solid rgba(255,255,255,0.12);
  min-width: 230px;
  position: relative;
}
.process-card:last-child {
  border-right: none;
}
.process-icon {
  margin-bottom: 22px;
}
.process-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 10px;
  text-align: left;
}
.process-desc {
  color: #ababab;
  font-size: 1rem;
  margin-bottom: 30px;
  min-height: 50px;
  text-align: left;
}
.process-step {
  background: #181818;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 8px 22px;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-top: auto;
  transition: background 0.2s;
}
.process-step span {
  color: #30296a;
  font-weight: bold;
}
.process-step:hover {
  background: #282828;
}

/* Responsive (adjust as needed) */
@media (max-width: 900px) {
  .process-cards { flex-direction: column; }
  .process-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .process-card:last-child { border-bottom: none; }
}


.testimonials-section {
  background: #FFF7F1;
  padding: 64px 0 48px;
  font-family: 'Inter', Arial, sans-serif;
  min-height: 60vh;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 36px;
}
.testimonials-subtitle {
  font-size: 1.05rem;
  color: #A69E93;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
}
.testimonials-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #191816;
  margin-bottom: 0;
  letter-spacing: -1px;
}
/* Swiper slider */
.testimonials-swiper {
  width: 100%;
  padding: 40px 0 20px;
}
.testimonial-card {
  background: #FFF4EC;
  border-radius: 32px;
  box-shadow: 0 2px 18px 0 rgba(215,141,78,0.07);
  padding: 32px 28px 28px;
  max-width: 350px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 auto;
}
.testimonial-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.testimonial-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: #ddd;
  margin-right: 12px;
}
.testimonial-rating {
  display: inline-flex;
  align-items: center;
  background: #FF7B2E;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 8px;
  padding: 3px 11px;
  gap: 6px;
  margin-left: auto;
  box-shadow: 0 1px 6px 0 #FF7B2E33;
}
.testimonial-text {
  font-size: 1.13rem;
  color: #212019;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.42;
  letter-spacing: 0.01em;
}
.testimonial-author {
  margin-top: 8px;
}
.testimonial-author strong {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: #33312B;
  margin-bottom: 3px;
}
.testimonial-author span {
  color: #A69E93;
  font-size: 1rem;
  font-weight: 400;
}
/* Responsive cards */
@media (max-width: 768px) {
  .testimonial-card { min-width: 90vw; max-width: 95vw; }
  .testimonials-title { font-size: 2rem; }
}
.video-wrapper {
  position: relative;
  display: inline-block;
}
.btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  font-size: 36px;
  color: #30296a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}
.btn-play:hover {
  background: #30296a;
  color: #fff;
}
 /* Custom cursor container */
 .custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease-out;
  transform: translate(-50%, -50%);
}

/* Logo styling */
.cursor-logo {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid #30296a;
  transition: all 0.2s ease;
}

/* Logo text/image placeholder */
.logo-content {
  font-weight: bold;
  color: #30296a;
  font-size: 12px;
  text-align: center;
  line-height: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Added styles for logo image */
.logo-image {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 4px;
}

/* Hover effect */
.custom-cursor.hover {
  transform: translate(-50%, -50%) scale(1.5);
}

.cursor-logo.hover {
  background: #30296a;
  border-color: white;
}

.logo-content.hover {
  color: white;
}


.hero {
  text-align: center;
  padding: 4rem 0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.demo-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.demo-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.demo-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.demo-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.demo-card p {
  opacity: 0.9;
  line-height: 1.6;
}

.interactive-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: #30296a;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  margin: 1rem;
  border: none;
  cursor: none;
}

.interactive-button:hover {
  background: #4a3f8a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(48, 41, 106, 0.4);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .custom-cursor {
      display: none; /* Hide custom cursor on mobile */
  }
  
  body {
      cursor: auto; /* Restore default cursor on mobile */
  }
  
  .hero h1 {
      font-size: 2rem;
  }
  
  .demo-section {
      grid-template-columns: 1fr;
  }
}

/* Smooth animations */
@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
}

.custom-cursor.floating {
  animation: float 3s ease-in-out infinite;
}
span.violet-color {
  color: #30296a;
  border: 0px;
}
img.img-fluid.work-icon {
  width: 30%;
  float: left;
}

@media (max-width: 767.98px) {
  .top-bar {
    display: none;
  }
  .btn-play {
    
    width: 50px;
    height: 50px;
    font-size: 20px;
    
}
.process-cards {

  margin: 10px;

 
}
}



a.btn.btn-primary.ms-3:hover {
    background: #f0b80c;
    border: 1px solid #f0b80c;
}