.gradient-dark-pink {
  background: linear-gradient(to right, #982a67 0%, #fe46ac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 40px;
  /* You can adjust this value as needed */
}

.slide-in {
  opacity: 0;
  transform: translateY(-100px);
  /* Start above */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in.visible {
  opacity: 1;
  transform: translateY(0);
  /* Slide to original position */
}

/* Existing styles (preserving your classes) */
.gradient-text-section {
  /* Add your existing gradient text styles here */
}

.tight-line {
  line-height: 1.2;
}

.custom-gradient-title {
  font-size: 2.5rem;
  font-weight: bold;
}

.custom-gradient-subtext {
  font-size: 1.2rem;
  color: #666;
}

.splash-entry {
  opacity: 0;
  transform: translateY(-60px) scale(0.8);
  /* Start above with slight scale down */
  transition: opacity 0.5s ease-out var(--delay),
    transform 0.5s ease-out var(--delay);
}

.splash-entry.splash-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  /* Slide to position with normal scale */
}

.highlight-blue {
  background: linear-gradient(to right, #53b1ff 100%, #326a99 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-style: italic;
}

.colloki-section p {
  font-size: 1.25rem;
  /* Adjust for readability */
}

.typewriter-container {
  font-size: 50px;
  white-space: pre-wrap;
  background: linear-gradient(180deg, #53b1ff 50%, #326a99 97%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding-bottom: 20px;
}

.cursor {
  display: inline-block;
  width: 2px;
  background-color: #326a99;
  animation: blink 0.7s steps(1) infinite;
  vertical-align: bottom;
  height: 1em;
  margin-left: 2px;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@media (max-width: 576px) {
  .colloki-section p {
    font-size: 1rem;
  }
}

.how-it-works-section {
  padding: 30px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #53b1ff;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 3rem;
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-title {
  font-size: 30px;
  font-weight: 600;
  background: linear-gradient(to right, #53b1ff 34%, #326a99 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* For Firefox */
  color: transparent;
  /* fallback */
  margin-bottom: 0.75rem;
}

.feature-description {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-image {
  border-radius: 10px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.feature-image img {
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.9;
}

.feature-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1px);
}

.tall-card .feature-image {
  height: 670px;
}

.short-card .feature-image {
  height: 150px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .feature-card {
    margin-bottom: 2rem;
  }

  .feature-image {
    height: 180px;
  }

  .tall-card .feature-image,
  .short-card .feature-image {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .feature-image {
    height: 160px;
  }
}

.features-section {
  padding: 0px 0;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #e9ecef;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #4a90e2;
  margin-bottom: 1rem;
}

.feature-description {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-image {
  border-radius: 15px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0.9;
}

.feature-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1px);
}

.full-width-card .feature-image {
  height: 280px;
}

@media (max-width: 768px) {
  .feature-card {
    margin-bottom: 1.5rem;
  }

  .feature-image {
    height: 180px;
  }

  .full-width-card .feature-image {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .feature-title {
    font-size: 1.3rem;
  }

  .feature-image {
    height: 160px;
  }

  .full-width-card .feature-image {
    height: 180px;
  }
}

.universal-agents-section {
  padding: 60px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4a90e2;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.custom-img-height {
  height: 620px;
  border-radius: 50px !important;
}

.industry-card {
  background: white;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #e9ecef;
  height: 430px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  overflow: hidden;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-header {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1px);
}

.card-body {
  padding: 2rem;
}

.industry-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #4a90e2;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  color: #495057;
  font-size: 0.95rem;
  line-height: 1.4;
  position: relative;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li:nth-child(even) {
  background-color: #f8f9fa;
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .industry-card {
    height: 500px;
  }

  .industry-card-wrapper {
    margin-bottom: 1.5rem;
  }
}

.card-header {
  height: 150px;
}

.card-body {
  padding: 1.5rem;
}


@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .card-header {
    height: 120px;
  }

  .card-body {
    padding: 1.25rem;
  }

  .industry-title {
    font-size: 1.3rem;
  }
}

.text-pink {
  color: #fe46ac;
}

.divider-pink {
  border: 0;
  height: 1px;
  background: #fe46ac;
  opacity: 0.5;
  margin: 1.5rem 0;
}

.custom-gradient-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(to bottom, #53b1ff 0%, #326a99 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.custom-gradient-subtext {
  font-size: 1rem;
  color: #5a6b7b;
  margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .custom-gradient-title {
    font-size: 1.8rem;
  }

  .custom-gradient-subtext {
    font-size: 0.9rem;
  }
}

.feature-bar-wrapper {
  background-color: #fff;
}

.feature-bar-text {
  font-size: 2.5rem;
  font-weight: 630;
  /* optional for better visibility */
  line-height: 1.6;
  /* increases vertical height */
  background: linear-gradient(to bottom, #53b1ff 34%, #326a99 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  /* fallback */
  display: inline-block;
}

.feature-bar-subtext {
  font-size: 1.25rem;
  line-height: 1.6;
  background: linear-gradient(to bottom, #53b1ff 34%, #326a99 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  /* fallback */
  display: inline-block;
}

.text-gradient-icon {
  color: #3c9df6;
  /* Or adjust for a more gradient feel using SVG if needed */
  font-size: 20px;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .feature-bar-text {
    font-size: 1rem;
  }

  .feature-bar-subtext {
    font-size: 0.9rem;
  }
}

.custom-icon {
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.custom-title {
  font-size: 15px;
  color: #1a1a1a;
  line-height: 1.4;
}

.custom-desc {
  font-size: 20px;
  color: #555;
  margin: 0;
}

.custom-row-border {
  margin-bottom: 31px;
  margin-top: 31px;
  padding-top: 0px;
  padding-bottom: 20px;
  border-bottom: 1px solid #53B1FF;
}

.object-fit-cover {
  object-fit: cover;
}

.zero-code-para {
  font-size: 30px;
  font-weight: 600;
  /* Semi-bold */
  color: #fafafa;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0.9;
}

.gradient-heading-blue {
  font-size: 1.25rem;
  /* Increase font size as needed */
  font-weight: 300;
  background: linear-gradient(to bottom, #53b1ff 34%, #326a99 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.email-form button {
  height: 50px;
  font-size: 12px;
  background-color: #53B1FF;
  color: white;
  border: none;
  border-radius: 50px 50px 50px 50px;
  padding: 10px 20px;
  font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .navbar-content {
    flex-direction: column;
    align-items: center;
  }

  .navbar-center {
    flex-direction: column;
    margin: 10px 0;
  }

  .navbar-center .nav-link {
    margin: 5px 0;
  }

  .leadership-section .overlay-text {
    top: auto;
    bottom: 5%;
    left: 5%;
    right: 5%;
    transform: none;
    text-align: center;
  }

  .leadership-section .overlay-text h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .leadership-section .overlay-text p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }

  .custom-margin {
    margin-left: 10px;
    margin-right: 10px;
  }

  .para-text {
    font-size: 0.95rem;
    margin-top: 15px;
  }

  .custom-spacing {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .custom-spacing h2 div {
    font-size: clamp(1.25rem, 3.5vw, 2rem);
  }

  .footer .row {
    text-align: center;
  }

  .footer .col-md-4,
  .footer .col-md-2 {
    margin-bottom: 20px;
  }

  .footer-logo {
    max-width: 120px;
  }
}

.container-step {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 20px auto 60px auto;
}

.main-section {
  background-image: url('./images/Lets_Talk.svg');
  /* Your SVG */
  background-repeat: no-repeat;
  background-size: 70% auto;
  /* Full width, auto height */
  background-position: center;
  background-color: #fff;
  /* White background behind the SVG */
  min-height: 100vh;
  /* Full screen height */
  /* Top and bottom padding for spacing */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Media query for tablets and smaller screens */
@media (max-width: 768px) {
  .main-section {
    background-size: 80% auto;
    min-height: 50vh;
  }
}

/* Media query for mobile devices */
@media (max-width: 480px) {
  .main-section {
    background-size: 90% auto;
    /* Larger size for small screens */
    background-position: center;
    /* Adjust position if needed */
    min-height: 70vh;
  }

  .col-3,
  .col-9 {
    width: 100%;
  }
}

.step-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0px;
  position: relative;
  width: 100%;
}

.step {
  width: 350px;
  position: relative;
  z-index: 1;
}

.step.left {
  align-self: flex-start;
}

.step.right {
  align-self: flex-end;
}

.step img {
  width: 390px;
  height: 200px;
  display: block;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.connector {
  position: absolute;
  top: 44px;
  left: 12px;
  width: 65%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.connector path,
.connector circle {
  stroke: #73baff;
  stroke-width: 2;
  fill: none;
  visibility: visible;
}

.connector circle {
  fill: #73baff;
  stroke: white;
  stroke-width: 5;
}

.gradient-heading {
  font-size: 3rem;
  font-weight: 700;
}

.gradient-subheading {
  font-size: 2rem;
  font-weight: 600;
  background: linear-gradient(to bottom, #326A99 0%, #53B1FF 66%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.zero-code-para {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
}

.custom-lead-paragraph {
  font-size: 18px;
  /* Fixed unit to px */
  font-weight: 400;
}

.custom-gradient-style {
  font-size: 2.25rem !important;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}

.tight-line {
  line-height: 1.2 !important;
}

/* Mobile Arrows */
.mobile-arrow {
  display: none;
  justify-content: center;
  align-items: center;
  margin: -10px 0 1px;
}

.vertical-connector {
  width: 20px;
  height: 60px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .step {
    width: 300px;
  }

  .step img {
    width: 330px;
    height: auto;
  }

  .gradient-heading {
    font-size: 2.5rem;
  }

  .gradient-subheading {
    font-size: 1.75rem;
  }

  .zero-code-para {
    font-size: 35px;
  }

  .custom-lead-paragraph {
    font-size: 25px;
  }

  .custom-gradient-style {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .step {
    align-self: center !important;
    width: 100%;
    max-width: 450px;
  }

  .mobile-arrow {
    display: flex;
  }

  .connector {
    display: none;
  }

  .step img {
    width: 100%;
    max-width: 450px;
    height: auto;
  }

  .gradient-heading {
    font-size: 2rem;
  }

  .gradient-subheading {
    font-size: 1.5rem;
  }

  .zero-code-para {
    font-size: 30px;
  }

  .custom-lead-paragraph {
    font-size: 20px;
  }

  .custom-gradient-style {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .gradient-text-blue {
    font-size: 30px;
  }

  .feature-title-secure,
  .feature-title-performance,
  .feature-title-api,
  .feature-title-ai,
  .feature-title-testing,
  .feature-title-deploy {
    justify-content: center;
    padding-bottom: 20px;
  }

  .feature-text-secure,
  .feature-text-api,
  .feature-text-testing,
  .feature-text-ai,
  .feature-text-deploy {
    text-align: center !important;
    padding-bottom: 20px;
  }

  .custom-row-border {
    justify-content: center !important;
  }

  .step {
    width: 100%;
    max-width: 350px;
  }

  .step img {
    width: 100%;
    max-width: 350px;
    height: auto;
  }

  .gradient-heading {
    font-size: 1.75rem;
  }

  .gradient-subheading {
    font-size: 1.25rem;
  }

  .zero-code-para {
    font-size: 25px;
  }

  .custom-lead-paragraph {
    font-size: 18px;
  }

  .custom-gradient-style {
    font-size: 1.5rem;
  }

  .mobile-arrow {
    margin: -5px 0 1px;
  }

  .vertical-connector {
    width: 15px;
    height: 50px;
  }
}

.impact-description-pink {
  background: linear-gradient(to bottom, #982A67 22%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 300;
}

.section-subtitle-universal {
  background: linear-gradient(to bottom, #53B1FF 34%, #326A99 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 300;
  font-size: 1.35rem;
}

/* Container styling */
.container.my-5.tight-line {
  padding: 0 15px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  /* Ensure all text is centered by default */
}


/* Specific element styling */
.custom-row-border {
  border-bottom: 1px solid #e0e0e0;
}

.custom-icon {
  margin: 0 auto 10px;
  display: inline-block;
}

.custom-icon img {
  height: 40px;
  width: 40px;
}

.custom-title {

  margin: 0 auto 10px;
  display: block;
}

.custom-desc {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 auto;
  display: block;
  max-width: 80%;
  /* Limit width for readability */
}


/* Hide image column on smaller screens */
@media (max-width: 1199px) {
  .col-lg-5 {
    display: none !important;
    /* Hide image column */
  }

  .col-lg-7 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .custom-title {
    font-size: 1.25rem;
  }

  .custom-desc {
    font-size: 0.9rem;
    max-width: 85%;
  }
}

@media (max-width: 576px) {
  .custom-title {
    font-size: 1.1rem;
  }

  .custom-desc {
    font-size: 0.85rem;
    max-width: 90%;
  }

  .feature-title-secure,
  .feature-title-performance,
  .feature-title-api,
  .feature-title-ai,
  .feature-title-testing,
  .feature-title-deploy {
    justify-content: center;
    padding-bottom: 20px;
  }

  .feature-text-secure,
  .feature-text-api,
  .feature-text-testing {
    padding-bottom: 20px;
  }
}

@media (max-width: 1199px) {
  .col-lg-5 {
    display: none !important;
    /* Hide image column */
  }

  .col-lg-7 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

/* Responsive adjustments including gap reduction */
@media (max-width: 1199px) {
  .custom-icon {
    margin-right: 5px !important;
    /* Reduce gap to 5px on smaller screens */
  }
}

@media (max-width: 768px) {
  .custom-title {
    font-size: 1.25rem;
  }

  .custom-desc {
    font-size: 0.9rem;
    max-width: 85%;
  }

  .custom-icon {
    margin-right: 3px !important;
    /* Further reduce gap on tablets */
  }
}

@media (max-width: 576px) {
  .custom-title {
    font-size: 1.1rem;
  }

  .custom-desc {
    font-size: 0.85rem;
    max-width: 90%;
  }

  .feature-title-secure,
  .feature-title-performance,
  .feature-title-api,
  .feature-title-ai,
  .feature-title-testing,
  .feature-title-deploy {

    padding-bottom: 20px;
  }

  .feature-text-secure,
  .feature-text-api,
  .feature-text-testing {
    padding-bottom: 20px;
  }

  .custom-icon {
    margin-right: 2px !important;
    /* Minimal gap on mobile */
  }
}