/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #111;
  color: #f5f5f5;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

/* Header */
/* Header Navigation */
.navbar {
  background: radial-gradient(circle at top left, #001f2f, #000);
  padding: 24px 0; /* tighter vertical space */
}

.navbar.scrolled {
  background: radial-gradient(circle at top left, #001f2f, #000);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

/* --- Logo styling --- */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 40px; /* as requested */
  width: auto;
  object-fit: contain;
  margin-right: 10px;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

/* --- Navigation Links --- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #00ffe0;
}

.main-nav a.active {
  color: #00ffe0;
  position: relative;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00ffe0;
  border-radius: 2px;
}

/* --- CTA Button --- */
.nav-cta {
  background: rgba(0, 255, 224, 0.1);
  color: #00ffe0 !important;
  padding: 8px 18px; /* smaller & balanced */
  font-size: 0.85rem;
  border-radius: 24px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(0, 255, 224, 0.5);
  box-shadow: 0 0 0 1px rgba(0, 255, 224, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: rgba(0, 255, 224, 0.15);
  box-shadow: 0 0 12px 2px rgba(0, 255, 224, 0.6), 0 0 20px rgba(0, 255, 224, 0.3);
  color: #ffffff !important;
  border-color: #00ffe0;
}



.hero-banner.no-image {
  padding: 120px 0;
  background: radial-gradient(circle at top left, #001f2f, #000);
  color: #fff;
  text-align: center;
}

.hero-text-center {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-banner.no-image .section-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.hero-banner.no-image .section-intro {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-banner.no-image .section-intro strong {
  color: #00ffe0;
  font-weight: 700;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-banner.no-image .hero-cta {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  color: #111;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 255, 224, 0.2);
}

.hero-banner.no-image .hero-cta:hover {
  background: #00ffe0;
  color: #000;
  transform: translateY(-2px);
}


.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

.scroll-arrow {
  font-size: 0.9rem;
  color: #00ffe0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  text-decoration: none;         /* REMOVE underline */
  background: none;              /* ENSURE no background */
  border: none;                  /* ENSURE no border */
  padding: 0;                    /* REMOVE extra spacing */
  animation: bounceDown 2s infinite;
}

.scroll-arrow i {
  transition: transform 0.3s ease;
  line-height: 1;                /* REMOVE space below icon */
  font-size: 1rem;
}

.scroll-arrow .second {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: -6px;              /* Tighter spacing between arrows */
}

.scroll-arrow:hover i {
  transform: translateY(3px);
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}






.all-services.section {
  background: radial-gradient(circle at center, #001a20 0%, #000 100%);
  padding: 100px 20px;
  color: #fff;
}

.all-services .section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.service-card {
  background: #0d0d0d;
  border: 1px solid rgba(0, 255, 224, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 16px rgba(0, 255, 224, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 24px rgba(0, 255, 224, 0.15);
}

.service-image {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 24px;
  flex-grow: 1;
}

.service-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #00ffe0;
  margin-bottom: 12px;
}

.service-content p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}




/* ===================== METHODOLOGY ===================== */
.methodology.section {
  padding: 100px 0;
  background: radial-gradient(circle at center, #001a20 0%, #000 100%);
}

.methodology .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: block;
  text-align: center;
}

.methodology .section-intro {
  color: #ccc;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.methodology-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  position: relative;
  margin-top: 60px;
}

/* === Step Card Wrapper with Connection Dots === */
.method-step-wrapper {
  flex: 1;
  min-width: 260px;
  position: relative;
}

.method-step-wrapper:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  width: 50px;
  height: 1px;
  background-image: radial-gradient(circle, #00ffe0 1px, transparent 1px);
  background-size: 10px 10px;
  background-repeat: repeat-x;
  transform: translateY(-50%);
  z-index: 0;
}

/* === Step Card === */
.method-step {
  background: #0c1c1c;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(0, 255, 224, 0.12);
  box-shadow: 0 0 16px rgba(0, 255, 224, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.method-step:hover {
  background: linear-gradient(to bottom right, #00242a, #000);
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(0, 255, 224, 0.2);
}

/* === Step Badge (Number) === */
.step-badge {
  background: radial-gradient(circle, #00ffe0 0%, #00b8ff 100%);
  color: #000;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 20px rgba(0, 255, 224, 0.4);
  transition: transform 0.3s ease;
}

.method-step:hover .step-badge {
  transform: scale(1.1);
}

/* === Typography === */
.method-step h3 {
  font-size: 1.25rem;
  color: #00ffe0;
  font-weight: 700;
  margin-bottom: 16px;
}

.method-step p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.7;
}




.differentiators.section {
  padding: 100px 20px;
  background: radial-gradient(circle at center, #001a20 0%, #000 100%);
  color: #fff;
}

.diff-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
}

.diff-left {
  flex: 1;
  min-width: 300px;
}

.diff-left .section-title {
  font-size: 2.5rem;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.diff-left .section-intro {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
  max-width: 500px;
  line-height: 1.6;
}

.diff-image {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 255, 224, 0.08);
}

.diff-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.diff-card {
  display: flex;
  align-items: flex-start;
  background: #0d0d0d;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 4px 14px rgba(0, 255, 224, 0.04);
  gap: 20px;
  border-left: 4px solid #00ffe0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 255, 224, 0.12);
}

.diff-icon {
  font-size: 1.6rem;
  color: #00ffe0;
  margin-top: 6px;
  flex-shrink: 0;
}

.diff-content h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 600;
}

.diff-content p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.5;
}



.newsletter {
  background: radial-gradient(circle at center, #001a20 0%, #000 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.newsletter h3 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  font-weight: 700;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.newsletter p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #ccc;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  justify-content: center;
}

/* Enhanced CTA Button */
.cta-gradient-button {
  display: inline-block;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  color: #111;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 255, 224, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-gradient-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.4s ease;
  border-radius: 50px;
}

.cta-gradient-button:hover::before {
  left: 100%;
}

.cta-gradient-button:hover {
  background: #00ffe0;
  color: #000;
  box-shadow: 0 12px 30px rgba(0, 255, 224, 0.25);
  transform: translateY(-2px);
}












/* Footer */
.footer {
  background: radial-gradient(circle at top left, #001f2f, #000);
  color: #ccc;
  padding: 60px 20px 30px;
  font-size: 0.95rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-column {
  flex: 1;
  min-width: 240px;
}

.footer-title {
  font-size: 1.2rem;
  color: #00ffe0;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #00ffe0;
}

.footer-tagline {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #aaa;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00ffe0;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 255, 224, 0.1);
  color: #00ffe0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(0, 255, 224, 0.3);
}

.social-icons a:hover {
  background-color: #00ffe0;
  color: #111;
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(0, 255, 224, 0.5);
}

.footer-newsletter {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 30px;
  border: none;
  background: #111;
  color: #fff;
}

.footer-newsletter input::placeholder {
  color: #888;
}

.footer-newsletter button {
  padding: 10px 20px;
  background: #00ffe0;
  color: #111;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-newsletter button:hover {
  background: #00b8ff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  color: #777;
  font-size: 0.85rem;
}

.footer-bottom hr {
  border: 0;
  height: 1px;
  background: rgba(0, 255, 224, 0.15);
  margin-bottom: 20px;
}

/* Chatbase bubble button */
#chatbase-bubble-button {
  background: radial-gradient(circle at top left, #001f2f, #000) !important;
  border: 2px solid #00ffe0 !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  box-shadow: 0 0 20px rgba(0, 255, 224, 0.2) !important;
  transition: all 0.3s ease !important;
  z-index: 9999 !important;
}

#chatbase-bubble-button:hover {
  transform: scale(1.1);
  background: radial-gradient(circle at center, #003f48, #000) !important;
  box-shadow: 0 0 30px rgba(0, 255, 224, 0.4) !important;
}

/* Make inner SVG icon glow slightly */
#chatbase-bubble-button svg {
  filter: drop-shadow(0 0 5px #00ffe0);
  width: 32px;
  height: 32px;
}

/* Chat bubble container (optional if you want to tweak that) */
#chatbase-message-bubbles {
  background: #001f2f !important;
  border-radius: 12px !important;
  box-shadow: 0 0 15px rgba(0, 255, 224, 0.15) !important;
  color: #fff !important;
  font-family: 'Open Sans', sans-serif;
}

/* Close button on chat bubble */
#chatbase-message-bubbles > div {
  background-color: #00ffe0 !important;
  color: #111 !important;
  font-weight: bold;
  font-size: 12px !important;
}

@media (max-width: 768px) {
  #chatbase-bubble-button {
    width: 72px !important;
    height: 72px !important;
  }

  #chatbase-bubble-button svg {
    width: 40px !important;
    height: 40px !important;
  }
}




/* === Mobile Header Styles === */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 24px;
  height: 2px;
  background: #00ffe0;
  transition: all 0.3s ease;
}

/* Toggle Animation */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-container {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 320px;
    background: #000;
    padding: 80px 24px 40px;
    box-shadow: -2px 0 10px rgba(0, 255, 224, 0.2);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1000;
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    width: 100%;
    gap: 20px;
    padding: 0;
    margin-bottom: 40px;
    list-style: none;
  }

  .main-nav a.nav-link {
    display: inline-block;
    position: relative;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #f5f5f5;
    border: none;
    text-decoration: none;
  }

  .main-nav a.nav-link.active {
    color: #00ffe0;
  }

  .main-nav a.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #00ffe0;
  }

  .nav-cta {
    display: inline-block;
    width: 100%;
    padding: 14px 0;
    text-align: center;
    font-weight: 600;
    color: #00ffe0;
    border: 2px solid #00ffe0;
    border-radius: 30px;
    background: transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
  }

  .nav-cta:hover {
    background: #00ffe0;
    color: #000;
  }
}




@media (max-width: 992px) {
  .hero-banner.no-image {
    padding: 100px 0;
  }

  .hero-banner.no-image .section-title {
    font-size: 2.4rem;
  }

  .hero-banner.no-image .section-intro {
    font-size: 1.1rem;
  }

  .hero-banner.no-image .hero-cta {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .hero-banner.no-image {
    padding: 80px 0;
  }

  .hero-banner.no-image .section-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-banner.no-image .section-intro {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 10px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-banner.no-image .hero-cta {
    width: 90%;
    padding: 14px 20px;
    font-size: 1rem;
    text-align: center;
  }

  .scroll-arrow {
    font-size: 0.85rem;
  }
}


@media (max-width: 768px) {
  .all-services .section-title {
    font-size: 1.8rem;
  }

  .services-grid {
    gap: 30px;
  }

  .service-card {
    min-height: auto;
  }

  .service-image {
    height: 160px;
  }

  .service-content h3 {
    font-size: 1.1rem;
  }

  .service-content p {
    font-size: 0.9rem;
  }
}


@media (max-width: 768px) {
  .methodology-grid {
    flex-direction: column;
    align-items: center;
  }

  .method-step-wrapper {
    width: 100%;
  }

  .method-step-wrapper:not(:last-child)::after {
    display: none;
  }
}



@media (max-width: 768px) {
  .diff-container {
    flex-direction: column;
    align-items: center;
  }

  .diff-left, .diff-right {
    width: 100%;
    text-align: center;
  }

  .diff-left .section-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .diff-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .diff-icon {
    margin-bottom: 12px;
  }
}
