:root {
  --primary: #1B5BA7;
  --secondary: #EA242B;
  --tertiary: #710E7A;
  --white: #ffffff;
  --secondary-white: #b3b3b3;
  --primary-variant: #DAF1FF;
  --title-color: #111111;
  --label-color: #757575;
  --title-font: "Sora", sans-serif;
  --body-font: "Manrope", sans-serif;
  --footer-bg: #101828;
  --body-lh: 1.7;
  --body-text-color-black: #1B1B1B;
  --body-text-color-white: #ffffff;
  --body-fs: 1rem;
  --body-fw: 400;
}

body {
  font-family: var(--body-font);
  font-size: var(--body-fs);
  line-height: var(--body-lh);
  color: var(--body-text-color-black);
  font-weight: var(--body-fw);
}

.glass-effect {
  border-radius: 15px;
  background: rgba(212, 212, 212, 0.10);
  backdrop-filter: blur(8.75px);
}

.section-head h6 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 12px;
  margin-top: 12px;
}

/* .section-head h3
{
  font-size: 40px;
} */
.btn-primary {
  background: linear-gradient(180deg,
      #338BF2,
      #175AA8);

  background-size: 300% 100%;
  animation: horizontalMove 4s linear infinite;
  border-radius: 30px;
  padding: 15px 30px;
  border: 0px;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  text-decoration: none;
}

@keyframes horizontalMove {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 300% 50%;
  }
}

@keyframes hueRotate {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(360deg);
  }
}

.btn-primary span,
.btn-outline-primary span {
  padding-left: 8px;
}

.btn-outline-primary {
  background-color: transparent;
  border-radius: 30px;
  padding: 12px 30px;
  border: 2px solid var(--white);
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  text-decoration: none;
  color: var(--white);
}

.opacity-point3 {
  opacity: 0.3;
}

/* .btn-primary
{
  border-radius: 30px !important;
  border: 3px solid #ffffff !important;
  font-size: 20px !important;
  height: 60px;
  background-color: transparent !important;
  font-weight: 700 !important;
} */
.glass-card {
  border-radius: 10px;
  background: rgba(212, 212, 212, 0.10);
  backdrop-filter: blur(8.75px);
  margin-right: 1rem;
  margin-bottom: 0.75rem;
  padding: 0.75rem 0.75rem;
  color: var(--white);
}

.glass-card .analytics-report {
  width: 280px;
}

.glass-card .analytics-report img {
  border-radius: 0px;
}

.fs-14 {
  font-size: 0.875rem;
}

.material-icons {
  font-family: 'Material Icons';
}

.rounded-radius {
  border-radius: 26px !important;
}

.custom-lh {
  line-height: 30px;
}

.text-white {
  color: var(--white) !important;
}

.text-gray {
  color: var(--label-color);
}

.text-secondary-white {
  color: var(--secondary-white);
}

.text-primary {
  color: var(--primary) !important;
  font-weight: 600;
}

.text-description {
  line-height: 32px;
  font-weight: 500;
}

.w-50px {
  width: 50px;
}

.bounce-animation {
  animation: bounce 2.5s infinite;
}

.pb-per-15 {
  padding-bottom: 15%;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.text-animation {
  font-size: clamp(2.5rem, 2.5vw, 1.4rem);
  letter-spacing: 8px;
  font-weight: bold;
  color: var(--black-dark);
}

.text-animation span {
  display: inline-block;
  animation: pop 3s ease-in-out infinite;
}

.text-animation span:nth-child(1) {
  animation-delay: 0.4s;
}

.text-animation span:nth-child(2) {
  animation-delay: 0.5s;
}

.text-animation span:nth-child(3) {
  animation-delay: 0.6s;
}

.text-animation span:nth-child(4) {
  animation-delay: 0.7s;
}

.text-animation span:nth-child(5) {
  animation-delay: 0.8s;
}

.text-animation span:nth-child(6) {
  animation-delay: 0.9s;
}

.text-animation span:nth-child(7) {
  animation-delay: 1s;
}

@keyframes pop {
  0% {
    transform: scale(1);
    /* opacity: 0; */
  }

  50% {
    transform: scale(1.5);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.circular-animation {
  width: 300px;
  animation: rotateball360 12s linear infinite;
}

@keyframes rotateball360 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.circular-animation-box {
  position: absolute;
  bottom: -100px;
  opacity: 0.2;
}

/**/
.hero-video {
  animation: rotate360 20s linear infinite;
  /* height: 100vh; */
}
.use-casescard{
  height: stretch;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to right, rgb(48 70 105), rgba(247, 25, 17, 0.6)); */
  background: #000000a8;
  pointer-events: none;
}

/**/
.feature-cards .transform-support {
  background-color: var(--primary);
  position: relative;
}

.feature-cards .card {
  min-height: 480px;
  border: 0px;
}

.feature-cards .feature-cards-img {
  position: absolute;
  right: 0px;
  top: 0;
  opacity: 0.2 !important;
}

.feature-cards .ai-solution {
  /* background-color: var(--tertiary); */
  background: linear-gradient(270deg, #710E7A 0%, #5D177A 50.48%, #282672 100%);
  overflow: hidden;
}

.feature-cards .happy-clients {
  border-radius: 25px;
  background: linear-gradient(180deg, #EC202B 0%, #861218 100%);
  min-height: 160px;
  display: flex;
  justify-content: center;
  align-items: anchor-center;
}

.feature-cards .happy-clients .count {
  font-size: 90px;
  font-weight: 700;
  letter-spacing: -5px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.72);
  text-stroke: 4px rgba(255, 255, 255, 0.72);
  display: inline-block;
}

.feature-cards .unlock-openai {
  min-height: 298px;
  background: url(../images/common/wave.png), linear-gradient(180deg, #252144 0%, #1B1C3A 100%);
  display: flex;
  justify-content: center;
  padding: 24px;
}

.feature-cards .unlock-openai .glass-card {
  margin-right: 0px;
  margin-bottom: 0px;
  padding: 1.50rem 0rem;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.logo-icon {
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 30px;
  padding: 10px;
  margin-bottom: 20px;
}

/**/
/*Nav*/
.custom-navbar {
  position: fixed !important;
  z-index: 9;
  padding: 0px !important;
  width: 100%;
  box-shadow: -1px 2px 5px 0px rgba(173, 173, 173, 0.75);
  -webkit-box-shadow: -1px 2px 5px 0px rgba(173, 173, 173, 0.75);
  -moz-box-shadow: -1px 2px 5px 0px rgba(173, 173, 173, 0.75);
}

.custom-navbar .container-fluid {
  background-color: #ffffff;
  padding: 16px;
}

.custom-navbar .navbar-collapse {
  flex-grow: initial;
}

.custom-navbar .nav-item a {
  color: var(--title-color);
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--title-font);
  padding: 8px 9px !important;
  font-size: 13px;
}

.custom-subnavbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 2px solid #ebebeb;
  padding-bottom: 12px;
}

.navbar {
  height: 92px;
}

.contact-btn {
  border-left: 1px solid #D9DBE9;
  padding-left: 24px;
}

/*Nav*/
/*Hero*/
.hero-slider .carousel-caption {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: center;
  width: 70%;
  left: 10%;
  right: initial;
  align-items: flex-start;
  padding-top: 10%;
}

.hero-slider .carousel-caption h1 {
  font-size: 62px;
  font-weight: 400;
  font-family: var(--title-font);
}

.hero-slider .carousel-caption p {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--body-font);
  line-height: 42px;
}

/*Hero*/
/*Services*/
.services .service-card {
  padding: 32px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 0px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.10);
}

.services .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  /* background: linear-gradient(127deg, #58A4FE 2.47%, #3986E3 47.08%, #1B5BA7 87.57%); */
  background-color: var(--primary);
  color: #fff;
  border: none;
}

.services .service-icon {
  width: 70px;
  height: 70px;
  border-radius: 6px;
  border: 1px solid #C2DEFF;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.service-card.active .service-icon img {
  filter: brightness(0) invert(1);
  /* makes icon white */
}

.service-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.service-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/*Services*/
/*About Us*/
.about-us {
  background-color: var(--primary-variant);
  position: relative;
  padding: 120px 0px 80px;
  border-radius: 14px;
  overflow: hidden;
}

.about-us::after {
  content: "";
  position: absolute;
  top: -40px;
  left: -2%;
  width: 104%;
  height: 100px;
  background: #ffffff;
  border-radius: 14px;
  transform-origin: left top;
  transform: rotate(-2.07deg);
}

.about-us .case-study {
  border: 0px solid #40A9FF;
  /* background: linear-gradient(180deg, #40A9FF 0%, #0079DD 100%); */
}

.case-study-preview {
  height: 200px;
}

/* .case-study-bg
{
  background: url("../images/common/home-case-study.png") , linear-gradient(180deg, #40A9FF 0%, #0079DD 100%);
  background-repeat: no-repeat;
} */
.case-study-card {
  min-height: 520px;
}

.case-study-bg {
  position: relative;
  background-color: #1B5BA7;
  /* background: linear-gradient(180deg, #40A9FF 0%, #0079DD 100%); */
  overflow: hidden;
  height: stretch;
}

.case-study-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/common/home-case-study.png") no-repeat bottom center;
  background-size: contain;
  opacity: 0.15;
  pointer-events: none;
}

.agentic-case-study .robo {
  position: absolute;
  right: 0px;
  opacity: 0.2;
}

.agentic-case-study.case-study-bg::before {
  background-image: none;
}

/*About Us*/
/*Announcement*/
.announcement {
  background: linear-gradient(90deg, #45D0BD 0%, #44B6E9 100%);
  transform: rotate(-2.07deg);
  height: 120px;
  margin: 100px 0px 40px;
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-text {
  display: inline-block;
  padding-left: 100%;
  /* start outside */
  animation: marquee 90s linear infinite;
  font-size: 50px;
  font-weight: 500;
  font-family: var(--title-font);
  color: var(--white);
  line-height: 112px;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.marquee-text:hover {
  animation-play-state: paused;
}

/*Announcement*/
/*Clients*/
.clients .item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
}

.clients .owl-carousel .owl-item img {
  width: 120px;
}

.clients .owl-theme .owl-nav {
  display: none;
}

/*Clients*/
/*Get in Touch*/
.getintouch {
  background-image: url(../images/patterenbackgrounds/getintouch.png);
  height: 320px;
  background-repeat: no-repeat;
  width: 100%;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*Get in Touch*/
/*Footer*/
footer {
  background-color: var(--footer-bg);
}

footer a {
  color: var(--secondary-white);
  text-decoration: none;
}

.footer-logo {
  width: 300px;
}

.footer-bottom {
  background-color: #1b2333;
}

/*Footer*/
@media only screen and (max-width:800px) and (min-width:280px) {
  .clients .owl-carousel .owl-item img {
    width: 80px;
  }

  .hero-video {
    height: 50vh;
    width: 100%;
    margin-top: -90px;
  }

  .navbar-brand {
    width: 170px;
  }

  .navbar-brand img {
    width: 100%;
  }
html, body {
    overflow-x: hidden;
}
  .hero-slider .carousel-caption h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .hero-slider .carousel-caption {
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    width: 90%;
    left: 5%;
    right: initial;
    align-items: flex-start;
    padding-top: 10%;
  }
}
html, body {
    overflow-x: hidden;
}
@media only screen and (max-width:1400px) and (min-width:1200px) {
  .container {
    max-width: 92%;
  }
}

/* @media (min-width: 1200px) 
{
    .container
    {
        max-width: 98%;
    }
}
@media (min-width: 1400px) 
{
    .container
    {
        max-width: 80%;
    }
} */


/*About Us*/
.section-card {
  background-color: #F2F8FD;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e2e2e2;
  position: relative;
}

.section-card-overlay {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.section-card img {
  border-radius: 14px;
}
@media (max-width: 768px) {
    .section-card {
  margin-top: 12px;

}
}
.bullet-cards {
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.10);
  border: 0px;
  padding: 0.75rem;
  min-height: 380px;
  margin-bottom: 20px;
}

.bullet-cards:hover {
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.10), inset 0 -4px 0 var(--primary);
  transition: transform 0.3s ease;
}

.bullet-cards h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.bullet-cards .bullet-icon {
  width: 50px;
  margin-bottom: 1rem;
}

.bullet-cards .btn-primary {
  padding: 6px 12px;
}

.bullet-number {
  background: linear-gradient(180deg, rgba(166, 218, 251, 0.60) 0%, rgba(205, 244, 255, 0.00) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.5rem;
}
@media (max-width: 768px) {
    .bullet-cards {
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.10);
  border: 0px;
  padding: 0.75rem;
  height: auto;
  margin-bottom: 14px;
}
}
.years {
  font-size: 40px;
  padding-right: 12px;
  margin-right: 12px;
  border-right: 2px solid #ffffff36;
}

.halcyon-video {
  background-color: var(--primary);
}

.team-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 16px;
}

.section-saperation {
  padding: 4% 0px;
}

.csr-preview {
  height: 350px;
}

.team-preview {
  height: 420px;

}

.parallax-effect {
  background-image: url(../images/patterenbackgrounds/parallax.png);
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0px;
}

.parallax-effect .section-card {
  background-color: transparent;
  border: 2px dashed #e2e2e2;
}

.lr-card-preview {
  height: 550px;
}

.list-bullet {
  float: left;
  padding-right: 8px;
}

.bullet-point-description .bullet-icon {
  width: 42px;
}

.halcyon-video-preview {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 0px;
  height: 0;
  margin-top: -20%;
}

.halcyon-video-preview iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-per-3 {
  padding: 3% 0%;
}

.internal-hero {
  background-color: #fcfcfc;
}

.internal-hero::after {
  content: "";
  background-image: url("../images/patterenbackgrounds/tech.png");
  width: 100%;
  position: fixed;
  top: 20%;
  height: 372px;
  background-repeat: no-repeat;
  z-index: -1;
  left: -160px;
  opacity: 0.4;
}

.internal-hero .glass-card {
  width: 100%;
  margin: 32px 0px;
  padding: 4% 0%;
  color: #212121;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
}

.sub-banner-preview {
  height: 200px;
  margin-bottom: 60px;
  position: relative;
}

.sub-banner-preview video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.sub-banner-preview .video-overlay {
  height: 200px;
  background: #00000040;
}

.sub-banner-preview .sub-banner-title {
  position: absolute;
  z-index: 1;
  color: #ffffff;
  height: 200px;
  top: 0px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

.moto-cards .bullet-cards {
  min-height: 280px;
}
/* .agents-cards{
  min-height: 410px;
} */
.services-preview {
  height: 400px;
}

.event-preview {
  height: 300px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 16px;
}

.event-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
}

/* background-color: #f6f9ff; */



/* HERO SECTION */
.hero-section {
  padding: 100px 0 0 0;
  background: #000000;
  /* soft gray */
  overflow: hidden;
}

/* Heading */
.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--body-text-color-white);
  line-height: 1.2;
}

/* Highlight word */
.highlight {
  background: linear-gradient(180deg,
      #166bcc,
      #449bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */
.hero-desc {
  font-size: 18px;
  color: #f8f8f8;
  max-width: 520px;
}

/* Button */
.hero-btn {
  background: linear-gradient(135deg, #4f46e5, #3b82f6);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.3);
  color: #fff;
}

/* Right Visual */
.hero-visual img {
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  animation: floatImage 6s ease-in-out infinite;
}

/* Floating animation */
@keyframes floatImage {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-desc {
    font-size: 16px;
    margin: auto;
  }
}

#ai-3d {
  width: 100%;
  height: 450px;
}

@media (max-width: 992px) {
  #ai-3d {
    height: 350px;
  }
}



/* ── Section ── */
.ai-section {
  background-color: #ffffff;
}

.ai-section::before,
.ai-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ai-section::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 87, 255, 0.06) 0%, transparent 70%);
  top: -150px;
  left: -150px;
}

.ai-section::after {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(123, 97, 255, 0.05) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
}


.btn-wrapper {
    display: flex;
    justify-content: flex-end; /* Right side for desktop */
}
@media (max-width: 768px) {
    .btn-wrapper {
        justify-content: flex-start; /* Left side for mobile */
    }
}

/* ── Base Card ── */
.ai-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  cursor: pointer;
  min-height: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.ai-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 87, 255, 0.18);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.13), 0 0 0 1px rgba(0, 87, 255, 0.07);
}

/* Accent underline that slides in on hover */
.ai-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #0057FF, #7B61FF);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ai-card:hover::after {
  transform: scaleX(1);
}


/* ── Image Card ── */
.ai-card--img {
  background-color: #dce3ef;
}

.ai-card__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ai-card--img:hover .ai-card__bg-img {
  transform: scale(1.05);
}

/* ── Softer Blue gradient overlay ── */
.ai-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(27, 91, 167, 0.85) 0%,
      rgba(27, 91, 167, 0.65) 35%,
      rgba(27, 91, 167, 0.22) 62%,
      transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 26px;
  border-radius: inherit;
  transition: background 0.4s ease;
}

.ai-card--img:hover .ai-card__overlay {
  background: linear-gradient(to top,
      rgba(27, 91, 167, 0.9) 0%,
      rgba(27, 91, 167, 0.75) 48%,
      rgba(27, 91, 167, 0.3) 74%,
      transparent 100%);
}

/* ── Frosted glass badge (top-left) ── */
.ai-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 100px;
  padding: 4px 13px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
}

/* ── Step number (top-right) ── */
.ai-card__num {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  letter-spacing: 1px;
}

/* ── Chip ── */
.ai-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(247, 247, 247, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.952);
  border-radius: 100px;
  padding: 4px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
  width: fit-content;
}

.ai-chip__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b2d5ff;
  flex-shrink: 0;
  animation: ai-pulse 2s ease-in-out infinite;
}

@keyframes ai-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(0.65);
  }
}

/* ── Card Title ── */
.ai-card__title {
  font-family: var(ai-card__title);
  font-size: 19px;
  font-weight: 700;
  color: var(--body-text-color-white);
  line-height: 1.3;
  margin-bottom: 8px;
}

/* ── Description (revealed on hover) ── */
.ai-card__desc {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.7;
  color: var(--body-text-color-white);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  margin-bottom: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.4s ease 0.05s,
    transform 0.4s ease 0.05s;
}

.ai-card--img:hover .ai-card__desc {
  max-height: 250px;
  opacity: 1;
  transform: translateY(0);
}

/* ── CTA Arrow Link ── */
.ai-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--body-text-color-white);
  text-decoration: none;
  transition: gap 0.3s ease;
}

.ai-card__cta svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.ai-card--img:hover .ai-card__cta {
  gap: 12px;
}

.ai-card--img:hover .ai-card__cta svg {
  transform: translateX(4px);
}

/* ── Staggered entrance animation ── */
@keyframes ai-fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ai-card {
  opacity: 0;
  animation: ai-fadeUp 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.col-lg-3:nth-child(1) .ai-card {
  animation-delay: 0.18s;
}

.col-lg-3:nth-child(2) .ai-card {
  animation-delay: 0.28s;
}

.col-lg-3:nth-child(3) .ai-card {
  animation-delay: 0.38s;
}

.col-lg-3:nth-child(4) .ai-card {
  animation-delay: 0.48s;
}

/* ── Responsive card height ── */
@media (max-width: 991.98px) {
  .ai-card {
    min-height: 420px;
  }
}

@media (max-width: 575.98px) {
  .ai-card {
    min-height: 360px;
  }

  .ai-section-title {
    margin-bottom: 32px !important;
  }
}

/*tabs */

/* ── Sidebar ── */
.industries-nav {
  background-color: #1a1f2e;
  padding: 0.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  height: 100%;
}

.nav-tab {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.1rem;
  border-radius: 50px;
  color: #aab0c0;
  font-size: 0.97rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: transparent;
  text-align: left;
  width: 100%;
  transition: background 0.2s, color 0.2s;
}

.nav-tab:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.nav-tab.active {
  background-color: #2b3248;
  color: #fff;
  font-weight: 700;
}

.tab-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  color: #1a1f2e;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s;
}

.nav-tab.active .tab-arrow {
  opacity: 1;
}

.chevron {
  color: var(--secondary);
  font-size: 1.05rem;
  line-height: 1;
  flex-shrink: 0;
}

.see-all {
  color: #a0a0a1;
  font-size: 0.85rem;
  padding: 9rem 0rem 0rem 1.5rem;
  cursor: pointer;
  margin-top: 0.4rem;
  transition: color 0.2s;
}

.see-all:hover {
  color: #fff;
}

/* ── Feature Panel ── */
.feature-panel {
  background-color: var(--primary);
  border-radius: 18px;
  padding: 3rem 3rem 3.5rem;
  height: 100%;
  transition: opacity 0.22s ease;
}

.feature-panel.fade-out {
  opacity: 0;
}

.category-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.4rem;
}

.feature-panel h2 {
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.4rem;
}

.feature-panel p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 2.2rem;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: gap 0.2s;
}

.feature-link:hover {
  gap: 1rem;
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .feature-panel {
    padding: 2rem 1.5rem;
    border-radius: 12px;
  }

  .industries-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.25rem;
    padding: 0.25rem;
  }

  .nav-tab {
    flex: 1 1 auto;
    justify-content: center;
    font-size: 0.82rem;
    padding: 0.5rem 0.75rem;
  }

  .tab-arrow,
  .chevron {
    display: none;
  }

  .see-all {
    width: 100%;
    text-align: center;
    padding: 1rem 0.5rem;
  }
}

/* Platforms section */
.ai-tabs {
  /* border-bottom: 1.5px solid var(--body-text-color-black); */
  justify-content: space-between;
}

.ai-tabs .nav-link {
  color: #9fa6ad;
  font-weight: 700;
  font-size: 20px;
  padding: 15px 0;
  border: none;
  position: relative;
  transition: 0.3s ease;
}

/* Top line */
.ai-tabs .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: 0.3s ease;
}

/* Hover Effect */
.ai-tabs .nav-link:hover {
  color: #fff;
}

.ai-tabs .nav-link:hover::before {
  background: var(--primary);
}

/* Active Tab */
.ai-tabs .nav-link.active {
  color: #fff;
}

.ai-tabs .nav-link.active::before {
  background: var(--primary);
}

/* Content Spacing */
.tab-content {
  padding-top: 60px;
}

/* Responsive Fix */
@media(max-width:768px) {
  .ai-tabs {
    flex-direction: column;
    gap: 10px;
  }
}

.platforms {
  /* background: linear-gradient(to bottom, #f7f7f7, #f2f8ff); */

  color: #111;

}

/* Make tab text dark */
.platforms .nav-link {
  color: #292929;
}

.platforms .nav-link.active {
  color: var(--primary);
}

.platforms .nav-link.nav-link:hover {
  color: var(--primary);
}


/* Heading color */
.platforms-title {
  color: var(--primary);
}

/* Paragraph color */
.platforms p {
  color: #434446;
}

/* Remove white text from links */
.platforms a {
  color: #111;
}

/* Responsive Fix */
@media(max-width:768px) {
  .align-center {
    text-align: center;
  }
}
@media(max-width:768px) {
.internal-hero {
  margin-top: 30px;
}
}

@media(max-width:1000px) {
.flex-rev {
  flex-direction: column-reverse;
}
}


.footer-add{
  font-size: 14px;
}
@media(max-width:800px) {
.custom-navbar .container-fluid {
  background-color: #ffffff;
  padding: 24px;
}
}

/*Tab*/
@media only screen and (max-width:1300px) and (min-width:770px) {
  .halcyon-image{
        width: 255px;
  }
}

@media only screen and (max-width:1200px) and (min-width:770px) {
  .footer-logo {
  width: 220px;
}
}

@media only screen and (max-width:990px) and (min-width:770px) {
.hero-section {
  padding: 180px 0 0 0;
}
}

.Aiservices-tab{
  display: flex;
    align-items: center;
    gap: 5px;
}

@media only screen and (max-width:1400px) and (min-width:1200px) {
  .mt-tab {
    margin-top: 0px;
  }
}

.height-auto{
  height: 100% !important;
}