.elementor-612 .elementor-element.elementor-element-3814be5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--overlay-opacity:0.65;--overlay-mix-blend-mode:color-dodge;}.elementor-612 .elementor-element.elementor-element-3814be5::before, .elementor-612 .elementor-element.elementor-element-3814be5 > .elementor-background-video-container::before, .elementor-612 .elementor-element.elementor-element-3814be5 > .e-con-inner > .elementor-background-video-container::before, .elementor-612 .elementor-element.elementor-element-3814be5 > .elementor-background-slideshow::before, .elementor-612 .elementor-element.elementor-element-3814be5 > .e-con-inner > .elementor-background-slideshow::before, .elementor-612 .elementor-element.elementor-element-3814be5 > .elementor-motion-effects-container > .elementor-motion-effects-layer::before{--background-overlay:'';background-color:#020B1400;}.elementor-612 .elementor-element.elementor-element-3e699fb{--display:flex;--overlay-opacity:0.5;border-style:solid;--border-style:solid;border-color:#03030300;--border-color:#03030300;--border-radius:0px 0px 0px 0px;box-shadow:-9px 11px 10px 0px rgba(0,0,0,0.5);}.elementor-612 .elementor-element.elementor-element-3e699fb::before, .elementor-612 .elementor-element.elementor-element-3e699fb > .elementor-background-video-container::before, .elementor-612 .elementor-element.elementor-element-3e699fb > .e-con-inner > .elementor-background-video-container::before, .elementor-612 .elementor-element.elementor-element-3e699fb > .elementor-background-slideshow::before, .elementor-612 .elementor-element.elementor-element-3e699fb > .e-con-inner > .elementor-background-slideshow::before, .elementor-612 .elementor-element.elementor-element-3e699fb > .elementor-motion-effects-container > .elementor-motion-effects-layer::before{--background-overlay:'';}.elementor-612 .elementor-element.elementor-element-916692d{width:100%;max-width:100%;}.elementor-612 .elementor-element.elementor-element-0afde9a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-612 .elementor-element.elementor-element-5b7bf0f{width:100%;max-width:100%;}.elementor-612 .elementor-element.elementor-element-26775d5{--display:flex;}.elementor-612 .elementor-element.elementor-element-a016ef1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-612 .elementor-element.elementor-element-207d24d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-612 .elementor-element.elementor-element-758ab7a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-a497d5e *//* Global animation class for fade-slide effect */
@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  margin-top: 10px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;

  animation: slideFadeIn 0.8s ease-out both;
}

/* Logo styling */
.logo {
  font-size: 24px;
  font-weight: bold;
  color: #ccc;
}

.logo span {
  background: linear-gradient(45deg, #a66cff, #36d1dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navigation links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #eee;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #a66cff;
}

/* Call to action button */
.btn-get-started {
  padding: 10px 20px;
  border-radius: 10px;
  background: linear-gradient(to right, #a66cff, #36d1dc);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

.btn-get-started:hover {
  opacity: 0.85;
  background: linear-gradient(to right, #a66cff, #fff);
  color: #fff;
}

/* Burger button - hidden on desktop */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 20; /* above nav */
}

.burger-line {
  width: 100%;
  height: 3px;
  background: #eee;
  border-radius: 2px;
  transition: all 0.3s linear;
}

/* On smaller screens show burger */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px; /* below navbar */
    right: 0;
    height: calc(100vh - 70px);
    background: #1c1c3a;
    width: 250px;
    flex-direction: column;
    padding-top: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -3px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 15;
  }

  /* When menu is open */
  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    margin: 15px 0;
    text-align: center;
  }

  .btn-get-started {
    display: none; /* hide original button on mobile */
  }
}

/* MOBILE ADAPTATION */
@media (max-width: 1200px) {
  .navbar {
    padding: 20px 40px;
  }
  .nav-links {
    gap: 15px;
  }
  .btn-get-started {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  .hero {
    padding: 120px 20px;
    max-width: 900px;
  }
  .hero h1 {
    font-size: 3.2rem;
  }
  .hero p {
    font-size: 1.1rem;
    max-width: 600px;
  }
  .btn-consult {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 15px 20px;
  }
  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }
  .btn-get-started {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
  .hero {
    padding: 100px 15px;
    max-width: 100%;
  }
  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .hero p {
    font-size: 1rem;
    max-width: 90%;
  }
  .btn-consult {
    width: 100%;
    padding: 14px 0;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 15px;
  }
  .logo {
    font-size: 20px;
  }
  .nav-links {
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
  }
  .btn-get-started {
    padding: 10px 0;
    font-size: 0.9rem;
  }
  .hero {
    padding: 80px 10px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 0.9rem;
    max-width: 100%;
  }
  .btn-consult {
    padding: 12px 0;
    font-size: 0.9rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-916692d */@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-in {
  animation: slideFadeIn 1s ease-out;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #0f0c29, #302b63, #24243e);
  color: #fff;
  min-height: 150vh;
}



/* Hero Section */
.hero {
  text-align: center;
  max-width: 1400px;
  padding: 160px 20px; 
  margin: auto;
}

.hero h1 {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.3;
  color: #fff;
}
.hero h1 span {
  background: linear-gradient(to right, #a66cff, #36d1dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #c2d4e3;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-consult {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  border-radius: 12px;
  background: linear-gradient(to right, #a66cff, #36d1dc);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.btn-consult:hover {
  opacity: 0.9;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5b7bf0f */@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.services {
  padding: 80px 40px;
  text-align: center;
  color: #fff;
  background: radial-gradient(circle at center, #0f0c29 0%, #302b63 100%);
}


.services h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.services h2 span {
  background: linear-gradient(to right, #a66cff, #36d1dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services p {
  max-width: 800px;
  margin: 0 auto 60px;
  color: #c2d4e3;
  font-size: 1.1rem;
}



.service-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* default */
  max-width: 1300px;
  margin: 0 auto;
}

.service-card {
  background: #1c1c3a;
  padding: 30px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.icon {
  font-size: 2rem;
  margin-bottom: 15px;
}
.icon.purple { color: #a66cff; }
.icon.teal { color: #36d1dc; }
.icon.pink { color: #c679ff; }
.icon.cyan { color: #42e3e3; }

.service-card h3 {
  margin-bottom: 10px;
  color: #fff;
}

.service-card p {
  color: #aabdd4;
  margin-bottom: 20px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #a855f7;
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 2 columns on tablets */
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* 1 column on mobile */
@media (max-width: 480px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c06e982 */@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

/* Tab Buttons */
.tab-button {
  background: transparent;
  border: none;
  padding: 12px 24px;
  color: #b0b3c6;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  border-radius: 8px;
  text-transform: none;
}

.tab-button:hover {
  color: #ffffff;
  background-color: rgba(122, 91, 251, 0.1);
}

.tab-button.active {
  background-color: #7a5bfb;
  color: #ffffff;
}

/* Tab Content */
.tab-content {
  display: none;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 30px;
  text-align: left;
}

.tab-content.active {
  display: block;
}

/* Headings */
.tab-content h2 {
  color: #ffffff;
  margin-bottom: 10px;
  text-transform: none;
}

/* Intro Paragraph */
.intro-text {
  text-transform: none;
  margin-bottom: 20px;
  color: #d0d0d0;
}

/* Checklists */
.checklist {
  margin-top: 15px;
  padding-left: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 10px;
  color: #e0e0e0;
  text-align: left;
}

/* Checkmark Icons */
.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  opacity: 0.6;
  font-weight: bold;
}

/* Violet Checkmarks */
.checklist.violet li::before {
  color: #7a5bfb;
}

/* Green Checkmarks */
.checklist.green li::before {
  color: #00c776;
}

/* CTA Buttons */
.cta-button {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  color: #fff;
}

.cta-button.violet {
  background-color: #7a5bfb;
}

.cta-button.violet:hover {
  background-color: #684ae0;
}

.cta-button.green {
  background-color: #00c776;
}

.cta-button.green:hover {
  background-color: #00aa64;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-429206f */.success-stories {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 0;
  justify-content: center;
  background: radial-gradient(circle at center, #0f0c29 0%, #302b63 100%);

  text-align: center;
  width: 100%;
  
}

/* Section Heading */
.section-header {
  text-align: center;
  width: 100%;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.section-header h2 span {
  background: linear-gradient(to right, #a66cff, #36d1dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  max-width: 800px;
  color: #c2d4e3;
  font-size: 1.1rem;
}

.section-header .violet {
  color: #7A5BFB; /* Success Stories */
}

.section-subheading {
  font-size: 16px;
  color: #b0b3c6;  
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: normal;
  text-transform: none;
}



.story-card {
  background-color: #1A1E36;
  border-radius: 15px;
  padding: 25px;
  width: 100%;
  max-width: 340px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(124, 77, 255, 0.3);
}

.story-category {
  background-color: #7C4DFF;
  color: #fff;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 12px;
}

.story-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff !important; /* force white color */
  text-transform: none;
}

.story-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #dcdcdc; /* softer gray */
  text-transform: none;
}

.story-link {
  color: #7C4DFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.story-link:hover {
  text-decoration: underline;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3618354 */.services {
  padding: 80px 40px;
  text-align: center;
  color: #fff;
  background: radial-gradient(circle at center, #0f0c29 0%, #302b63 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.services-heading {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 700;
  text-transform: none; 
}


.services-heading span {
  background: linear-gradient(to right, #a66cff, #36d1dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  text-transform: none;
}

.services-intro {
  max-width: 650px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  color: #bbb;
  line-height: 1.5;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
}

.feature-card {
  background: rgba(255 255 255 / 0.08);
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 8px 20px rgba(54, 209, 220, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left; /* left aligned text */
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(166, 108, 255, 0.4);
}

/* Emoji styling — large, transparent color fill */

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 0;
  opacity: 0.6;
  /* fallback color */
  color: transparent;
  filter: drop-shadow(0 0 1px rgba(0,0,0,0.2));
}

/* Violet color for tech-stack icons */

.feature-card.tech-stack .feature-icon {
  color: #a66cff;
  opacity: 0.6;
  filter: drop-shadow(0 0 2px #a66cff88);
}

/* Green color for sales-acceleration icons */

.feature-card.sales-accel .feature-icon {
  color: #36d16d;
  opacity: 0.6;
  filter: drop-shadow(0 0 2px #36d16d88);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: #fff; /* white text for headers */
  text-transform: none; /* no caps */
}

.feature-desc {
  font-size: 1rem;
  line-height: 1.5;
  color: #bbb; /* grayish text */
  margin: 0;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3745054 */.services {
  background-color: #0B0F1F;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.services h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}

.services h2 span {
  color: #7C4DFF;
}

.services p {
  font-size: 18px;
  color: #B0B3C7;
  margin-bottom: 50px;
}

/* Testimonials Grid */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background-color: #1A1E36;
  border-radius: 15px;
  padding: 25px 20px;
  max-width: 300px;
  flex: 1 1 280px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(124, 77, 255, 0.3);
}

.testimonial-card img {
  width: 100px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonial-card h3 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 8px;
}

.testimonial-card .stars {
  color: #FFD700;
  margin-bottom: 10px;
  font-size: 18px;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #B0B3C7;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-grid {
    flex-direction: column;
    align-items: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-863b1c0 */.custom-footer {
  background-color: #0B0F1F;
  padding: 30px 20px;
  font-family: Arial, sans-serif;
  color: #fff;
  border-top: 1px solid #2D3147;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

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

.footer-logo img {
  height: 32px;
  border-radius: 4px;
}

.footer-logo span {
  font-size: 20px;
  font-weight: bold;
  color: #7C4DFF;
}

.footer-text {
  font-size: 14px;
  color: #B0B3C7;
  margin: 5px 0;
  text-align: center;
}

.footer-text.small-note {
  font-size: 13px;
  line-height: 1.5;
  max-width: 400px;
  margin: 10px auto;
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.footer-socials a {
  color: #B0B3C7;
  font-size: 18px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-socials a:hover {
  color: #7C4DFF;
}/* End custom CSS */