@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  padding: 0 !important;
  margin: 0 !important;
}
/* Base Styles */
:root {
  --gradient-purple: linear-gradient(
    68deg,
    #524db1 0%,
    #7c6ae8 23%,
    #9b68eb 54%,
    #c972db 82%,
    #e879cd 100%
  );
  --accent-color: #514bb0;
  --text-color: #ffffff;
}
.logo-container {
  width: 109px;
  height: 154px;
  flex-shrink: 0;
  padding-top: 46px !important;
}

/* LOADER CSS */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black; /* Black overlay */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-content img {
  width: 150%; /* adjust size */
  height: auto;
}

.loader-content h1 {
  background: linear-gradient(
    90deg,
    #514bb0 1.02%,
    #6067e6 19.03%,
    #9667ee 36.63%,
    #cd73db 70.73%,
    #e879cd 88.16%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: Poppins, Sans-Serif;
  font-size: 46px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.contact-gradient-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    89deg,
    #e879cd -14.94%,
    /* Pink left */ #c972db 11.79%,
    #9b68eb 49.33%,
    #7c6ae8 82.32%,
    #524db1 103.36% /* Purple right */
  );
  opacity: 0;
  transition: opacity 1.6s ease; /* Slower gradient reveal */
  z-index: -1;
}

.contact-gradient-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(161, 102, 255, 0.5);
}

.contact-gradient-button:hover::before {
  opacity: 1;
}

.contact-gradient-button span {
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 15.251px;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

/* ----------  HERO SECTION  ---------- */

.hero-section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* keeps the video neatly clipped */
}

/* full‑bleed video layer */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills the container like a background image */
  z-index: 0; /* behind the foreground content */
  pointer-events: none; /* disables interaction */
}

/* ----------  HERO CONTENT  ---------- */

.hero-content {
  width: 100%;
  max-width: 1440px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2; /* above the video */
}
div#textcontainer2 {
  margin-top: -74px !important;
}

.hero-text-container {
  width: 100%;
  max-width: 1225px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.motor-display-block {
  display: block !important;
}
.hero-tagline {
  background: linear-gradient(to right, #514bb0 0%, #6067e6 4%, #e879cd 91%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: clamp(40px, 6vw, 68px);
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-weight: 700;
  margin-top: 0;
  align-self: flex-start;
  position: relative;
  left: -25px;
}

.hero-title {
  color: var(--text-color);
  font-size: clamp(48px, 7vw, 65px);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  margin: 15px 0 30px;
  text-align: center;
}

/* ----------  BUTTON  ---------- */

.hero-button {
  width: 100%;
  max-width: 318px;
  height: 57px;
  background: linear-gradient(
    89deg,
    #524db1 -14.94%,
    #7c6ae8 11.79%,
    #9b68eb 49.33%,
    #c972db 82.32%,
    #e879cd 103.36%
  );
  border-radius: 89px;
  border: none;
  color: white;
  font-size: clamp(16px, 1.8vw, 19px);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* slow gradient overlay on hover */
.hero-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    89deg,
    #e879cd -14.94%,
    #c972db 11.79%,
    #9b68eb 49.33%,
    #7c6ae8 82.32%,
    #524db1 103.36%
  );
  opacity: 0;
  z-index: -1;
  transition: opacity 1.6s ease;
}

.hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(161, 102, 255, 0.5);
}

.hero-button:hover::before {
  opacity: 1;
}

/* ----------  RESPONSIVE  ---------- */

@media (max-width: 1200px) {
  .hero-tagline {
    left: -15px;
  }
  /*.text-container { display: block !important; }*/

  .hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills the container like a background image */
    z-index: 0; /* behind the foreground content */
    pointer-events: none; /* disables interaction */
  }
  .hero-section {
    height: 100vh;
  }
  .hero-tagline,
  .hero-title {
    font-size: 40px;
  }
}

@media (max-width: 992px) {
  .hero-tagline {
    align-self: center;
    left: 0;
    margin-bottom: 5px;
  }
  /*.text-container { display: block !important; }*/
  .hero-title {
    margin: 10px 0 25px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    max-height: none;
    padding: 60px 20px;
  }
  .hero-tagline {
    font-size: clamp(36px, 8vw, 50px);
  }
  /*.text-container { display: block !important; }*/
  .hero-title {
    font-size: clamp(40px, 8vw, 50px);
  }
  .hero-button {
    height: 50px;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero-tagline {
    font-size: 40px !important;
    margin-bottom: 0;
  }
  .hero-title {
    font-size: 32px;
    margin: 8px 0 20px;
  }
  .hero-button {
    height: 48px;
    font-size: 16px;
    max-width: 260px;
    margin-top: 15px;
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Initial state */
#heroSection .hero-text-container,
#heroSection .hero-tagline,
#heroSection .hero-title {
  opacity: 0;
}

/* Only animate when .animate is added */
#heroSection.animate .hero-text-container {
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.4s;
}

#heroSection.animate .hero-tagline {
  animation: slideInLeft 1s ease-out forwards;
  animation-delay: 0.4s;
}

#heroSection.animate .hero-title {
  animation: slideInRight 1s ease-out forwards;
  animation-delay: 0.6s;
}

/* end hero section */

/***************************************************************************************************************/

/*reponsive for all laptop and mobile devices*/
/* Large Laptops */
@media (max-width: 1440px) {
  .hero-section {
    min-height: 100vh;
  }
  /* .hero-title {*/
  /*  font-size: clamp(40px, 5.8vw, 48px) !important;*/
  /*}*/
  /*.hero-tagline{*/
  /*  font-size: clamp(40px, 5.8vw, 48px) !important;*/
  /*}*/
}

/* Medium Laptops */
@media (max-width: 1200px) {
  .hero-section {
    min-height: 80vh;
    max-height: 80vh;
  }
  .hero-tagline {
    left: -10px;
    font-size: clamp(38px, 5.5vw, 62px);
  }
  .hero-title {
    font-size: clamp(40px, 5.8vw, 60px);
  }
  .line {
    width: 60%;
  }
}

/* Small Laptops / Tablets */
@media (max-width: 992px) {
  .hero-section {
    padding: 60px 15px;
    min-height: 100vh;
  }
  .hero-tagline {
    left: 0;
    align-self: center;
    font-size: clamp(34px, 6.2vw, 56px);
  }
  .hero-title {
    font-size: clamp(36px, 6.5vw, 56px);
    margin: 10px 0 25px;
  }
}

/* Phones */
@media (max-width: 480px) {
  .hero-tagline {
    font-size: clamp(26px, 9vw, 44px);
    margin-bottom: 0;
  }
  .hero-title {
    font-size: clamp(28px, 9vw, 40px);
    margin: 8px 0 18px;
  }
  .hero-button {
    height: 44px;
    max-width: 220px;
    font-size: 16px;
    margin-top: 15px;
  }
}

/***********************************************************************************/

/* Base: keep all your existing CSS exactly the same */

/* Fix text containers */
.text-container {
  display: none; /* hidden by default, JS controls them */
  justify-content: center;
  align-items: center;
}

/* First one should be visible on load */
#textcontainer1 {
  display: flex;
}

/* Mobile stacking */
@media (max-width: 480px) {
  .text-container {
    display: none; /* still hidden by default */
    flex-direction: column;
    text-align: center;
  }
  #textcontainer1,
  #textcontainer2 {
    align-items: center;
  }
  .left-part {
    max-width: 100% !important;
    width: 597px;
    padding-left: 0;
  }
  .left-part {
    margin-left: -29px;
  }
  #future1 {
    display: inline !important;
  }
  #future0 {
    display: none !important;
  }
  .LetSExploreAndCarveYourFuture,
  .AiFueled,
  .about-heading,
  .line,
  .journey-text,
  #liney,
  #linez,
  .disruption,
  .drive,
  .heading-title,
  .heading-title span {
    font-size: 26px !important;
    display: inline;
    width: 60%;
  }
  .left-part {
    width: 84%;
    max-width: 100% !important;
  }
}
.Transforming {
  /* Gradient Text Styling */
  background: linear-gradient(to right, #514bb0 10%, #6067e6 0%, #e879cd 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
/* main two parts banner */
/* Base Styles */
.main-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 55px 0% 85px 0%;
  background-image: url("./bgimage.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  gap: 0;
  max-width: 100%;
}

.left-part {
  flex: 1;
  min-width: 300px;
  max-width: 851px;
  padding: 0 0 0 0;
}

.right-part {
  flex: 1;
  min-width: 300px;
  max-width: 737px;
  padding: 0;
  display: flex;
  justify-content: center;
}

.content-wrapper {
  max-width: 890px;
}

.heading-group {
  margin-bottom: 12px;
}

.LetSExploreAndCarveYourFuture {
  text-align: start;
  font-size: clamp(28px, 4vw, 43px);
  font-weight: 700;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
  background: linear-gradient(270deg, rgb(0, 0, 0) 54%, rgb(0, 0, 0) 95%)
    text !important;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
#future1 {
  background: linear-gradient(
      270deg,
      rgb(0, 0, 0) 54%,
      rgb(0, 0, 0) 100%
    )
    text !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.AiFueled {
  text-align: start;
  font-size: clamp(30px, 4.5vw, 46px);
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.1;
  background: linear-gradient(to right, #514bb0 -10%, #6067e6 14%, #e879cd 91%)
    text;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.description {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  padding-top: 0;
  color: Black;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 176%; /* 35.2px */
}

.image-wrapper {
  width: 100%;
  max-width: 709px;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
#future0 {
  display: none;
}
#future1 {
  display: inline;
}
.ai_future {
  display: flex;
  gap: 0;
  width: 554px;
}
.AiFueled {
  display: inline;
  margin-top: 1px !important;
  width: 245px !important;
}
/* Responsive Adjustments */
@media (max-width: 1024px) {
  .ai_future {
    display: flex;
    gap: 20px;
    width: 357px;
  }
  .main-banner {
    gap: 30px;
    padding: 40px 4%;
  }
  #future0 {
    display: none;
  }
  #future1 {
    display: inline;
  }
}

@media (max-width: 480px) {
  .main-banner {
    padding: 30px 15px;
  }
  #future0 {
    display: inline;
  }
  #future1 {
    display: none;
  }
  .LetSExploreAndCarveYourFuture {
    margin-bottom: 15px;
    font-size: 28px;
  }

  .AiFueled {
    font-size: 30px;
  }

  .description {
    font-size: 16px;
    line-height: 1.6;
  }
}

@keyframes slideFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.left-part,
.right-part {
  opacity: 0;
  transform: translateX(0);
}

.animate-banner .left-part {
  animation: slideFromLeft 1s ease-out forwards;
}

.animate-banner .right-part {
  animation: slideFromRight 1s ease-out forwards;
  animation-delay: 0.3s;
}

/* end main 2 parts abnner  */

/* about section  */

/* Base Styles */
.about-section {
  width: 100%;
  padding: 0px 20px 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  width: 90%;
  max-width: 1593px;
  position: relative;
  border-radius: 53px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.about-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 53px;
}

.about-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
}

.about-heading {
  font-size: clamp(28px, 4vw, 46px);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 45px;
  background: linear-gradient(to right, #514bb0 0%, #6067e6 -21%, #e879cd 91%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  color: transparent;
}

.about-text {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 133%; /* 23.94px */
  margin-bottom: 55px;
  max-width: 1033px;
}
.who-we-are-button {
  width: 258px;
  height: 49px;
  background: white;
  border-radius: 105px;
  border: none;
  color: white;
  font-size: clamp(16px, 1.3vw, 20px);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 1;
}
button.who-we-are-button_ {
  height: 48.85px;
  flex-shrink: 0;
  width: 258.075px;
  border-radius: 105.405px;
  background: #fff;
  border: none;
}
.who-we-are-button_ span {
  background: linear-gradient(90deg, #7867e3 0%, #dd77d2 64.42%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Poppins, Sans-Serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 35.629px; /* 178.147% */
  text-transform: capitalize;
  transition: all 0.7s ease-in-out;
}
.who-we-are-button_:hover {
  background: linear-gradient(90deg, #7867e3 0%, #dd77d2 64.42%);
}

.who-we-are-button_:hover span {
  -webkit-text-fill-color: #fff;
  color: #fff;
}
/* Gradient overlay */

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .about-container {
    min-height: 450px;
  }

  .about-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 15px;
  }

  .about-container {
    min-height: 400px;
    border-radius: 40px;
  }

  .about-heading {
    margin-bottom: 20px;
  }

  .about-text {
    margin-bottom: 30px;
  }

  .who-we-are-button {
    width: 220px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .about-container {
    min-height: 350px;
    border-radius: 30px;
  }

  .about-content {
    padding: 20px;
  }

  .about-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .who-we-are-button {
    width: 200px;
    height: 42px;
    font-size: 16px;
  }
  .about-heading {
    font-size: 22px !important;
    font-weight: 800 !important;
  }
  .about-text {
    font-size: 14px !important;
  }

  .who-we-are-button {
    width: 167px;
    height: 37px;
    font-size: 14px;
  }
  .about-content {
    padding: 56px 20px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Initial state: hidden */
.about-bg-image,
.about-heading,
.about-text,
.who-we-are-button {
  opacity: 0;
}

/* Animate when visible */
.animate-about .about-bg-image {
  animation: fadeIn 1.2s ease-out forwards;
}

.animate-about .about-heading {
  animation: slideUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

.animate-about .about-text {
  animation: slideUp 0.8s ease-out forwards;
  animation-delay: 0.4s;
}

/* about end */

/* discover sec */

.DiveIntoTheFutureWith {
  font-family: Poppins;
  font-size: 30.055px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  background: linear-gradient(270deg, #000000 0%, #000000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* end desc sec  */

/* explore  */

.explore_more {
  overflow: hidden;
  padding: 90px 20px !important;
  background-image: url("/Group 1171275205.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.explore_header {
  text-align: center;
  max-width: 1200px;
  margin-bottom: 60px;
}

.explore_header h2 {
  font-size: 43px;
  font-family: Poppins;
  font-weight: 700;
  color: #5f6186;
  text-transform: capitalize;
  margin: 0;
  line-height: 1.3;
}

.explore_header span.highlight {
  color: #373c68;
}

.explore_header span.disrupt {
  color: #7767e1;
  font-family: Poppins;
  font-style: italic;
}

.explore_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1440px;
  width: 100%;
}

.explore_card {
  max-width: 420px;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  padding: 10px 22px;
}

.explore_card::before {
  content: "";
  width: 1px;
  height: 170px;
  background-color: #b6b6b6;
  transform: rotate(180deg);
  transform-origin: left center;
  position: absolute;
  left: -3px;
  top: 197px;
}
.description:nth-of-type(4) {
  margin-bottom: 20px !important;
}

/* Hide line for 1st and 4th cards */
.explore_card:nth-child(1)::before,
.explore_card:nth-child(4)::before {
  display: none;
}

.explore-button-wrapper {
  display: flex;
  justify-content: center;
  padding: 59px 10px;
}
.explore_card .number {
  font-size: 138px;
  font-family: Poppins;
  font-weight: 700;
  flex-shrink: 0;
  background: linear-gradient(164deg, #7565de 33.11%, #c972db 67.82%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.explore_card .subtitle {
  color: black;
  font-family: Poppins, Sans-Serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 142.628%; /* 28.526px */
  text-transform: capitalize;
  padding: 0px 0 13px 0;
  margin-top: -16px;
}
.main-sub-p {
  padding-left: 11px;
}

.explore_card .description {
  color: black;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.307px; /* 129.486% */
}
.who-we-serve-button {
  margin-top: 90px;
  width: 258.07px;
  height: 48.85px;
  background: linear-gradient(
    90deg,
    #524db1 -14.94%,
    #7c6ae8 11.79%,
    #9b68eb 49.33%,
    #c972db 82.32%,
    #e879cd 103.36%
  );
  border-radius: 105.4px;
  border: none;
  color: white;
  font-size: 20px;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 35.63px;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

/* Slower hover overlay */
.who-we-serve-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #e879cd -14.94%,
    #c972db 11.79%,
    #9b68eb 49.33%,
    #7c6ae8 82.32%,
    #524db1 103.36%
  );
  opacity: 0;
  transition: opacity 1.6s ease; /* Slowed down */
  z-index: 0;
  border-radius: inherit;
}

.who-we-serve-button:hover::before {
  opacity: 1;
}

.who-we-serve-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(161, 102, 255, 0.5);
}

.who-we-serve-button span {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease-in-out;
}

.who-we-serve-button:hover span {
  color: white;
}

@media (max-width: 768px) {
  .explore_card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .explore_card::before {
    display: none;
  }

  .explore_card .number {
    font-size: 96px;
  }

  .explore_header h2 {
    font-size: 32px;
  }

  .explore_more {
    padding: 42px 20px !important;
  }
}
.explore_header_ {
  width: 90%;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.explore_title_wrapper {
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 20px;
  text-align: center;
}
.line {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 43px;
  background: linear-gradient(270deg, rgb(0, 0, 0) 18%, rgb(0, 0, 0) 95%)
    text !important;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: capitalize;
  margin: 0;
  line-height: 1.3;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
h2#lineac {
  background: linear-gradient(
      270deg,
      rgb(0, 0, 0) 100%,
      rgb(0, 0, 0) 66%
    )
    text !important;
}
.drive {
  background: linear-gradient(
      270deg,
      rgb(0, 0, 0) -60%,
      rgb(0, 0, 0) 95%
    )
    text !important;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Poppins;
  font-size: 43px;
  font-style: normal;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0;
}

.disruption {
  font-family: "Poppins", sans-serif;
  font-size: 46px;
  font-style: italic;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin: 0;
  display: inline;
  background: linear-gradient(to right, #514bb0 -60%, #6067e6 14%, #e879cd 91%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.explore_header_ {
  padding: 20px;
  padding-bottom: 40px;
  min-width: 50%;
}

.explore_title_wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}
#liney {
  background: linear-gradient(270deg, #000000 0%, #000000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 43px;
}

.line1 {
  white-space: nowrap;
}

.line4 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .line,
  .drive,
  .disruption {
    font-size: 36px;
    text-align: center;
    justify-content: center;
    width: 60%;
  }
}

@media (max-width: 768px) {
  .line,
  .drive,
  .disruption {
    font-size: 28px;
    text-align: center;
    justify-content: center;
  }

  .line1 {
    white-space: normal;
  }

  .line4 {
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .line,
  .drive,
  .disruption {
    font-size: 22px;
    text-align: center;
    justify-content: center;
  }

  .explore_header_ {
    width: 100%;
    padding: 15px;
  }

  .explore_title_wrapper {
    gap: 4px;
    display: inline;
  }
  .AiConsulting {
    display: flex;
  }

  .line4 {
    flex-direction: column;
    align-items: flex-center;
    gap: 0;
  }
}

.explore_more {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.explore_more.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* end explore  */

/* ========== BASE STYLES ========== */

.additional_boxes {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.additional_boxes.visible {
  opacity: 1;
  transform: translateY(0);
}

.additional_boxes {
  max-width: 1725px;
  margin: 0 auto;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.additional_card_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
div#additional_card_1 {
  height: 500px;
  width: 20%;
}

div#additional_card_2 {
  width: 20%;
}
div#additional_card_3 {
  width: 20%;
}
div#additional_card_4 {
  width: 20%;
}

/*additioanl card 4*/
#additional_card_1 {
  height: 500px;
}
/* Base style for the image inside additional_card_4 */
#additional_card_1 .additional_top_img {
  width: 100%;
  height: 248px; /* fixed height instead of max-height for smooth container animation */
  border-radius: 23px;
  object-fit: cover;
  display: block;
  overflow: hidden;
  transition: height 0.8s ease;
}

/* Hover effect — shrink like right-card */
#additional_card_1:hover .additional_top_img {
  height: 180px; /* reduced height from top down */
}

/* Extra text reveal */
#additional_card_1 .additional_extra {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.8s ease, opacity 0.8s ease;
}

#additional_card_1:hover .additional_extra {
  max-height: 200px;
  opacity: 1;
}
/* Wrap the image in a container like right-card-image */
#additional_card_4 {
  width: 100%;
  height: 248px; /* starting height */
  overflow: hidden;
  border-radius: 23px;
  transition: height 0.8s ease; /* same timing as right-card */
}

#additional_card_4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 23px;
}

/* Hover effect — shrink height smoothly */
.additional_card:hover #additional_card_4 {
  height: 180px !important; /* reduced height, shrinks from top to bottom */
}

/* For your extra content to appear smoothly */
.additional_card .additional_extra {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.8s ease, opacity 0.8s ease;
}

.additional_card:hover .additional_extra {
  max-height: 200px;
  opacity: 1;
}

/*additioanl card 4*/
#additional_card_4 {
  height: 500px;
}
/* Base style for the image inside additional_card_4 */
#additional_card_4 .additional_top_img {
  width: 100%;
  height: 248px; /* fixed height instead of max-height for smooth container animation */
  border-radius: 23px;
  object-fit: cover;
  display: block;
  overflow: hidden;
  transition: height 0.8s ease;
}

/* Hover effect — shrink like right-card */
#additional_card_4:hover .additional_top_img {
  height: 180px; /* reduced height from top down */
}

/* Extra text reveal */
#additional_card_4 .additional_extra {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.8s ease, opacity 0.8s ease;
}

#additional_card_4:hover .additional_extra {
  max-height: 200px;
  opacity: 1;
}

/*card 4*/
/* Image in additional_card_2 */
#additional_card_2 .additional_top_img {
  width: 100%;
  height: 248px; /* fixed height for smooth animation */
  border-radius: 23px;
  object-fit: cover;
  display: block;
  overflow: hidden;
  transition: height 0.6s ease;
  transform-origin: bottom; /* anchor shrink from bottom */
}

/* Hover — shrink upwards */
#additional_card_2:hover .additional_top_img {
  height: 180px; /* reduced height */
}

/* Extra text reveal */
#additional_card_2 .additional_extra {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}

#additional_card_2:hover .additional_extra {
  max-height: 200px;
  opacity: 1;
}

/*card 3*/
/* Image in additional_card_2 */
#additional_card_3 .additional_top_img {
  width: 100%;
  height: 248px; /* fixed height for smooth animation */
  border-radius: 23px;
  object-fit: cover;
  display: block;
  overflow: hidden;
  transition: height 0.6s ease;
  transform-origin: bottom; /* anchor shrink from bottom */
}

/* Hover — shrink upwards */
#additional_card_3:hover .additional_top_img {
  height: 180px; /* reduced height */
}

/* Extra text reveal */
#additional_card_3 .additional_extra {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}

#additional_card_3:hover .additional_extra {
  max-height: 200px;
  opacity: 1;
}

.additional_title,
.additional_hero_title {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 19px;
  text-transform: capitalize;
  margin-top: 20px;
  color: black;
  margin-left: 18px;
  padding-right: 18px;
  color: white;
}
.additional_hero_desc {
  color: white !important;
}

.additional_extra {
  padding-top: 18px;
  line-height: 1.5 !important;
}
.additional_desc,
.additional_hero_desc {
  font-family: Poppins, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: black;
  margin-top: 10px;
  text-align: start;
  margin-left: 18px;
  padding-right: 18px;
}

.additional_hero {
  position: relative;
  width: 100%;
  max-width: 340px;
  height: 470px;
  border-radius: 23.8px;
  overflow: hidden;
  outline: 12px solid white;
  background: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 20px;
  color: white;
}

/* ========== HERO BACKGROUNDS ========== */

#additional_hero_1 .additional_hero_bg {
  background: url("Group11712753788.png") center/cover no-repeat !important;
}

#additional_hero_2 .additional_hero_bg {
  background: url("Group11712753783.png") center/cover no-repeat !important ;
}

#additional_hero_3 .additional_hero_bg {
  background: url("Group11712753786.png") center/cover no-repeat !important;
}

#additional_hero_4 .additional_hero_bg {
  background: url("Group11712753789.png") center/cover no-repeat !important;
}

/* ========== HERO ANIMATIONS ========== */
.additional_hero_bg {
  transform: scale(1);
  filter: blur(0px);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.additional_hero.hovered .additional_hero_bg {
  transform: scale(1.9);
  filter: blur(6px);
}

.additional_hero.hovered .additional_hero_content {
  transform: translate(0%, -20%);
  opacity: 1;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.additional_hero_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.additional_hero_static {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 36px 9px;
  z-index: 2;
  color: white;
  text-align: left;
}

.additional_hero_extra {
  font-family: Poppins, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: white;
  margin-top: 10px;
  text-align: start;
  margin-left: 18px;
  padding-right: 18px;
}

.additional_hero_content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px 20px;
  z-index: 3;
  color: white;
  text-align: left;
  width: 100%;
  transform: translate(-30%, 100%);
  opacity: 0;
  transition: none;
}

.additional_hero.hovered .additional_hero_static {
  display: none;
}

/* ========== ADDITIONAL CARD ========== */

/*.additional_card {*/
/*  background: #FAFAFA;*/
/*  border-radius: 20px;*/
/*  max-width: 346px;*/
/*  flex: 1 1 300px;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  align-items: start;*/
/*  overflow: hidden;*/
/*  position: relative;*/
/*  padding: 15px 15px 20px;*/
/*  transition: all 0.4s ease;*/
/*}*/

.additional_extra {
  font-family: "Poppins";
  font-size: 17px;
  color: black;
  text-align: start;
  line-height: 1.4;
  margin-top: -13px;
  margin-left: 18px;
  padding-right: 18px;
  padding-bottom: 10px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.1s ease-in, opacity 0.1s ease;
}

/*.additional_card:hover .additional_top_img {*/
/*  max-height: 180px;*/
/*  transition: max-height 0.5s ease-in-out;*/
/*}*/

.additional_card:hover .additional_extra {
  opacity: 1;
  max-height: 200px;
}

/* ========== BUTTON STYLES ========== */

.additional_explore_btn_container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.additional_explore_btn {
  background: linear-gradient(
    68deg,
    #524db1 0%,
    #7c6ae8 23%,
    #9b68eb 54%,
    #c972db 82%,
    #e879cd 100%
  );
  padding: 12px 40px;
  color: white;
  font-size: 20px;
  font-weight: 700;
  font-family: Poppins, sans-serif;
  text-transform: capitalize;
  border: none;
  border-radius: 105px;
  cursor: pointer;
}

#additional_id_btn {
  margin-top: 0;
  margin-bottom: 0;
}

/* ========== RESPONSIVE ========== */
/* Laptop Large - under 1400px (1440 & 1366 widths) */
@media (max-width: 1680px) {
  .bottom-text {
    padding: 30px 0px;
  }
  /* Hero section */
  .hero-tagline,
  .hero-title {
    font-size: 50px;
  }

  .hero-button {
    max-width: 280px;
    height: 52px;
    font-size: clamp(15px, 1.6vw, 18px);
    margin-top: 23px;
  }

  /* Text containers */
  div#textcontainer2 {
    margin-top: -56px !important;
  }
  button.who-we-are-button_ span {
    font-size: 18px !important;
  }

  /* Headings */
  .LetSExploreAndCarveYourFuture,
  .AiFueled,
  .about-heading,
  .line,
  .journey-text,
  #liney,
  #linez,
  .disruption,
  .drive,
  .heading-title,
  .heading-title span {
    font-size: 36px;
    display: inline;
  }

  /* Cards */
  .explore_card .subtitle,
  .additional_title,
  .additional_hero_title {
    font-size: 18px;
  }

  .explore_card .description,
  .additional_desc,
  .additional_hero_desc,
  .description,
  .about-text,
  .card-desc,
  .card-title {
    font-size: 16px;
  }
  .card-description {
    font-size: 14px;
  }

  .additional_card .additional_extra,
  #additional_card_1:hover .additional_extra {
    font-size: 16px;
  }

  .card-title__ {
    font-size: clamp(18px, 2.5vw, 18px);
  }

  /* Transform section */
  .ready-text {
    font-size: clamp(24px, 3vw, 28px);
    margin-bottom: 0;
  }

  .transform-description {
    font-size: clamp(16px, 1.8vw, 14px);
  }

  .transform-button2 {
    max-width: 348px !important;
    height: 52px;
    font-size: clamp(15px, 1.6vw, 18px);
  }

  .transform-button2::before {
    border-radius: 52px;
  }

  /* Explore button */
  .explore-button {
    max-width: 280px;
    height: 52px;
    font-size: clamp(15px, 1.6vw, 18px);
  }

  .explore-button::before {
    border-radius: 52px;
  }

  .left-part {
    width: 269px !important;
    max-width: 541px !important;
  }
  .left-part:nth-child(1) br,
  .left-part:nth-child(2) br,
  .left-part:nth-child(3) br,
  .left-part:nth-child(4) br {
    display: none !important;
  }
  .AiFueled {
    margin-top: 1px !important;
    width: 197px !important;
  }
  .image-wrapper img {
    width: 83%;
    height: auto;
    object-fit: contain;
  }
  .image-wrapper {
    width: 100%;
    max-width: 709px;
    align-items: center;
    display: flex;
    justify-content: end;
  }
  .left-part {
    width: 569px !important;
    max-width: 598px !important;
  }

  .discover-container {
    margin: auto 30px;
  }
  .right-part {
    width: 455px;
    max-width: 638px;
  }
  .card-grid .card {
    width: 286.242px;
  }

  .bottom-text-card {
    font-size: 18px;
  }
  .explore_grid {
    gap: 8px;
  }
  .about-text {
    width: 80%;
  }
  .additional_card_row {
    gap: 24px;
  }
  .additional_boxes {
    padding: 100px 42px;
  }
  .acceleration_section {
    background: #f5f5f5;
    padding: 80px 71px;
  }
  .top-heading .info-card {
    margin-top: 68px;
  }
  .top-heading .sub-title {
    font-size: clamp(24px, 4vw, 32px);
  }
  .top-heading .AiConsulting {
    font-size: clamp(26px, 4vw, 32px);
  }
  .transform-card {
    max-width: 1186px;
  }

  .left-part {
    width: 569px !important;
    max-width: 536px !important;
  }
  .main-banner {
    padding: 55px 5% 85px 5%;
  }
  /* .card-grid {*/
  /*    gap: 13px;*/
  /*}*/
  .card-grid .card {
    width: 273.242px;
  }
  .card-title br {
    display: none;
  }

  .card-grid .card {
    width: 280.242px;
  }
  .card-grid {
    justify-content: center;
    gap: 20px;
  }
  .explore_card .number {
    font-size: 113px;
  }
  .explore_card::before {
    content: "";
    width: 1px;
    height: 128px;
    background-color: #b6b6b6;
    transform: rotate(180deg);
    transform-origin: left center;
    position: absolute;
    left: 4px;
    top: 159px;
  }

  .acce-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: flex-start;
  }
  .explore_card {
    max-width: 399px;
  }
}

@media screen and (max-width: 1200px) {
  .additional_boxes {
    padding: 80px 30px;
  }
  .additional_card {
    height: 131px !important;
    min-height: 500px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    justify-content: space-around;
  }

  .additional_card,
  .additional_hero {
    max-width: 48%;
  }
  .hero-tagline,
  .hero-title {
    font-size: 35px;
  }
}

@media screen and (max-width: 992px) {
  .additional_boxes {
    padding: 60px 20px;
  }

  .additional_card,
  .additional_hero {
    max-width: 100%;
  }

  .additional_explore_btn {
    font-size: 18px;
    padding: 10px 30px;
  }
}

@media screen and (max-width: 768px) {
  .additional_card_row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .additional_card,
  .additional_hero {
    max-width: 100%;
    width: 100%;
  }

  .additional_hero_static,
  .additional_hero_content {
    padding: 24px 16px;
  }

  .additional_title,
  .additional_desc,
  .additional_extra,
  .additional_hero_title,
  .additional_hero_desc {
    margin-left: 16px;
    padding-right: 16px;
  }

  .additional_boxes {
    padding: 50px 15px;
  }

  .additional_explore_btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }
  .additional_explore_btn_container {
    display: flex;
    justify-content: center;
    margin-top: 80px;
    align-self: center;
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .additional_hero {
    height: auto;
    min-height: 400px;
  }

  .additional_hero_static,
  .additional_hero_content {
    padding: 20px 14px;
  }

  .additional_hero_title,
  .additional_title {
    font-size: 17px;
  }

  .additional_hero_desc,
  .additional_desc,
  .additional_extra {
    font-size: 15px;
  }

  .additional_card {
    padding: 12px;
  }
}

/* acceleration */

.acceleration_section {
  background: #f5f5f5;
  padding: 80px 20px;
}

.acce-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: flex-start;
}

.top-heading {
  flex: 1 1 32%;
  text-align: left;
  padding-top: 27px;
}

.top-heading .sub-title {
  font-size: clamp(24px, 4vw, 36px);
  font-family: Poppins, sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1;
  background: linear-gradient(270deg, rgb(0, 0, 0) 69%, rgb(0, 0, 0) 89%)
    text !important;

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 30px;
}

.top-heading .AiConsulting {
  font-size: clamp(26px, 4vw, 40px);
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-style: italic;
  background: linear-gradient(to right, #514bb0 0%, #6067e6 4%, #e879cd 91%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 10px;
  display: inline-block;
  padding-left: 10px;
  line-height: 45px !important;
}

.top-heading .info-card {
  margin-top: 69px;
}

.info-grid {
  flex: 1 1 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.info-card {
  flex-direction: column;
  gap: 10px;
}

.card-title__ {
  font-size: clamp(18px, 2.5vw, 20px);
  font-family: Poppins, sans-serif;
  font-weight: 700;
  color: black;
  text-transform: capitalize;
  line-height: 1.4;
}

.card-desc {
  font-size: clamp(15px, 2vw, 17px);
  font-family: Poppins, sans-serif;
  font-weight: 400;
  color: black;
  line-height: 26px;
}
.animate-left {
  opacity: 1 !important;
  transform: translateX(0) !important;
  /*padding-top: 3px !important;*/
}

/* Mobile / Tablet Responsive */
@media (max-width: 992px) {
  .card-title__ {
    text-align: center;
  }
  #Strategic {
    margin-top: 29px;
  }
  .acce-container {
    flex-direction: column;
  }

  .top-heading,
  .info-grid {
    flex: 1 1 100%;
    width: 100%;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .top-heading .sub-title {
    text-align: center;
  }

  .top-heading .AiConsulting {
    text-align: center;
    display: block;
  }

  .top-heading .info-card {
    align-items: center;
    text-align: center;
  }
  .info-card .card-title {
    align-items: center;
    text-align: center;
  }
  .info-card .card-desc {
    align-items: center;
    text-align: center;
  }
  .top-heading .sub-title {
    font-size: clamp(28px, 4vw, 36px);
    font-family: Poppins, sans-serif;
    font-weight: 700;
    color: #5f6186;
    text-transform: capitalize;
    line-height: 1.4;
  }
  .top-heading .AiConsulting {
    text-align: center;
    display: block;
    font-size: 38px;
  }

  #info-card1 {
    margin-top: 10px !important;
    padding: 0px 10px;
  }
  .acceleration_section {
    background: #f5f5f5;
    padding: 20px 37px;
  }
}
/* Initial hidden states */
.top-heading,
.info-grid {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease;
}

.top-heading {
  transform: translateX(-100px);
}

/* Animate when visible */
.animate-left {
  opacity: 1 !important;
  transform: translateX(0) !important;
  padding-top: 4px !important;
}

.animate-right {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Initial hidden states - Only for large screens */
@media (min-width: 993px) {
  .top-heading,
  .info-grid {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease;
  }

  .top-heading {
    transform: translateX(-100px);
  }

  /* Animate when visible */
  .animate-left {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }

  .animate-right {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }
}

/* Disable transform animation on smaller screens */
@media (max-width: 992px) {
  .top-heading,
  .info-grid {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* end acceleration */

/* transform last section  */

/* Base Styles */
.transform-section {
  width: 100%;
  padding: 0px 20px 60px 20px;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
}
.transform-card {
  width: 100%;
  max-width: 1546px;
  border-radius: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("<?php echo get_template_directory_uri(); ?>/abstract_last.png")
    no-repeat center center;
  background-size: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.transform-content {
  width: 90%;
  max-width: 1200px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
}

.transform-heading {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ready-text {
  color: white;
  font-size: clamp(24px, 3vw, 30px);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.journey-text {
  background: linear-gradient(to right, #514bb0 0%, #6067e6 0%, #e879cd 91%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(32px, 4.5vw, 46px);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.transform-description {
  color: white;
  font-size: clamp(16px, 1.8vw, 20px);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  max-width: 783px;
  margin: 0 auto 40px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.transform-button2 {
  width: 100%;
  max-width: 440px;
  height: 53px;
  background: linear-gradient(
    90deg,
    #524db1 -14.94%,
    #7c6ae8 11.79%,
    #9b68eb 49.33%,
    #c972db 82.32%,
    #e879cd 103.36%
  );
  border-radius: 114px;
  border: none;
  color: white;
  font-size: clamp(16px, 1.8vw, 20px);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Slower hover gradient overlay */
.transform-button2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    90deg,
    #e879cd -14.94%,
    #c972db 11.79%,
    #9b68eb 49.33%,
    #7c6ae8 82.32%,
    #524db1 103.36%
  );
  opacity: 0;
  transition: opacity 1.6s ease; /* Slowed down fade */
  z-index: 0;
  border-radius: inherit;
}

.transform-button2:hover::before {
  opacity: 1;
}

.transform-button2:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.transform-button2 span {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.transform-button2:hover span {
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .transform-card {
    min-height: 500px;
  }

  .transform-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .transform-section {
    padding: 40px 15px;
  }

  .transform-card {
    min-height: 450px;
    border-radius: 35px;
  }

  .transform-heading {
    margin-bottom: 30px;
  }

  .transform-description {
    margin-bottom: 30px;
  }
  .ready-text {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .transform-card {
    min-height: 400px;
    border-radius: 25px;
  }

  .transform-content {
    padding: 25px 20px;
  }

  .ready-text {
    font-size: 18px;
  }

  .journey-text {
    font-size: 28px;
  }

  .transform-description {
    font-size: 14px;
    line-height: 1.5;
  }

  .transform-button2 {
    height: 48px;
    font-size: 14px !important;
  }
}
/* Initial hidden states */
.transform-card {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.transform-content {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s ease;
}

/* When in viewport */
.transform-visible .transform-card {
  opacity: 1;
}

.transform-visible .transform-content {
  opacity: 1;
  transform: translateY(0);
}

/* end transform section  */

.AiConsulting {
  /* Gradient Text Styling */
  background: linear-gradient(to right, #514bb0 -10%, #6067e6 14%, #e879cd 91%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.transform-button {
  position: absolute;
  left: 780px;
  top: 404px;
  width: 439.52px;
  height: 53px;
  background: linear-gradient(
    68deg,
    #524db1 0%,
    #7c6ae8 23%,
    #9b68eb 54%,
    #c972db 82%,
    #e879cd 100%
  );
  border-radius: 114.36px;
  border: none;
  color: white;
  font-size: 20px;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 38.66px;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease-in-out;
}

.transform-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  transition: left 0.4s ease-in-out;
  z-index: 0;
  border-radius: inherit;
}

.transform-button:hover::before {
  left: 0;
}

.transform-button span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease-in-out;
}

.transform-button:hover span {
  color: #7c6ae8;
  /* or any gradient-matching color for contrast */
}

.Group1171275363 img {
  width: 100%;
  height: auto;
  border-radius: 59px;
  display: block;
}

.weare {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 133%;
  /* 23.94px */
}

.journy-btn {
  position: absolute;
  width: 318px;
  height: 57.33px;
  left: 387px;
  top: 137px;
  background: linear-gradient(
    68deg,
    #524db1 0%,
    #7c6ae8 23%,
    #9b68eb 54%,
    #c972db 82%,
    #e879cd 100%
  );
  border-radius: 89.06px;
  border: none;
  color: white;
  font-size: 19.11px;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 33.53px;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.journy-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: left 0.4s ease-in-out;
  z-index: 0;
}

.journy-btn:hover::before {
  left: 100%;
}

.journy-btn span {
  position: relative;
  z-index: 1;
}

/* desc section */

.dicover-section {
  overflow: hidden;
  padding: 90px 20px;
  background-image: url("<?php echo get_template_directory_uri(); ?>/descm.png");
  background-size: cover;
  background-position: center;
  border-radius: 52px;
  background-repeat: no-repeat;
}

.discover-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.discover-container {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.discover-container.fade-up-active {
  opacity: 1;
  transform: translateY(0);
}

.heading-title {
  text-align: center;
  font-size: 43px;
  font-family: Poppins;
  font-weight: 700;
  text-transform: capitalize;
  background: linear-gradient(
      270deg,
      rgb(0, 0, 0) 75%,
      rgb(0, 0, 0) 100%
    )
    text !important;

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading-title span {
  background: linear-gradient(to right, #514bb0 0%, #6067e6 4%, #e879cd 91%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-size: 46px;
  font-family: Poppins, sans-serif;
  font-style: italic;
  font-weight: 700;
  text-transform: capitalize;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  width: 301.242px;
  height: auto;
  padding-bottom: 10px;
  border-radius: 43.274px;
  background: linear-gradient(309deg, #f6f6f6 7.65%, #e6e6ff 91.41%);
  box-shadow: 0 3.926px 18.843px 0 rgba(0, 0, 0, 0.06);
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-align: center;
  gap: 15px;
}
.card:hover {
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
.card-title {
  line-height: 21px;
  background: #f8f8fd;
  border-radius: 30px;
  padding: 8px 24px;
  background: linear-gradient(to right, #514bb0 -38%, #6067e6 14%, #e879cd 53%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
  text-align: left;
}

.card-description {
  color: black;
  font-family: Poppins, sans-serif;
  font-size: 17.666px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.554px; /* 133.333% */
  text-align: left;
  padding-left: 20px;
  padding-right: 20px;
}

.bottom-text {
  text-align: center;
  font-size: 22px;
  font-family: Poppins;
  font-weight: 700;
  text-transform: capitalize;
  color: black;
  line-height: 28px;
}

.button-wrapper {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.explore-button {
  width: 332.703px;
  height: 52.016px;
  background: linear-gradient(
    90deg,
    #524db1 -14.94%,
    #7c6ae8 11.79%,
    #9b68eb 49.33%,
    #c972db 82.32%,
    #e879cd 103.36%
  );
  border-radius: 103px;
  border: none;
  color: #fff;
  font-size: 19px;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 39px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}

/* Slower gradient overlay on hover */
.explore-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    #e879cd -14.94%,
    #c972db 11.79%,
    #9b68eb 49.33%,
    #7c6ae8 82.32%,
    #524db1 103.36%
  );
  opacity: 0;
  z-index: -1;
  transition: opacity 1.6s ease; /* Slowed down for smoother fade */
}

.explore-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(161, 102, 255, 0.5);
}

.explore-button:hover::before {
  opacity: 1;
}

.explore-button span {
  position: relative;
  z-index: 2;
  color: #fff;
  transition: color 0.3s ease;
}

.explore-button:hover span {
  color: #fff;
}

@media (max-width: 768px) {
  .card {
    width: 100%;
    max-width: 100%;
  }
  .heading-title {
    font-size: 30px;
  }
  .heading-title span {
    font-size: 34px;
  }
  .card-title {
    text-align: center;
  }
  .card-description {
    text-align: center;
  }

  .bottom-text-card {
    font-size: 16px;
  }
  .explore-button {
    font-size: 16px !important;
    width: 237px;
    height: 47px;
  }
}

.bottom-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
}
.card-title-main {
  background: white;
  border-radius: 29.443px;
}

.card-title {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #7364dc;
  margin-bottom: 0;
}

.card-description {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  color: black;
  line-height: 1.6;
}

.bottom-text-card {
  flex: 1 1 300px;
  border-radius: 30px;
  padding: 22px;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  color: black;
  font-family: Poppins, Sans-Serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 28.248px; /* 127.778% */
  text-transform: capitalize;
  flex-direction: column;
  justify-content: end;
  text-align: center;
  gap: 15px;
  padding-left: 0px;
  padding-right: 0px;
}

.button-wrapper {
  margin-top: 20px;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .bottom-row {
    flex-direction: column;
    align-items: center;
  }

  .card,
  .bottom-text-card {
    max-width: 500px;
  }
}

.footer-right {
  display: flex;
  justify-content: end;
}

.footer {
  display: flex;
  justify-content: center;
}

.footer-section {
  width: 1768px;
  padding: 40px 115px 30px 115px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer-left,
.footer-menu,
.footer-right {
  flex: 1 1 250px;
  min-width: 250px;
}

.footer-logo {
  width: 201px;
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.footer-text h1 {
  font-family: Manrope, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: black;
  margin: 0 0 20px 0;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
  display: flex;
  flex-direction: column;
}

.footer-menu ul li {
  font-family: Poppins, sans-serif;
  font-size: 17px;
  color: black;
  margin-bottom: 10px;
}

.footer-social-icons {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
  padding-top: 48px;
}

.footer-icon {
  width: 45px;
  height: auto;
}

.footer-desc {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #030303;
  text-align: end;
  padding-top: 16px;
}

.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
  padding-top: 10px;
  gap: 20px;
}

.footer-links {
  font-size: 18px !important;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  font-family: Manrope, sans-serif;
  color: black;
  gap: 56px;
  font-weight: 400;
}

.All-right {
  font-family: Manrope, sans-serif;
  font-size: 18px;
  color: black;
  padding-left: 400px;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-left,
  .footer-menu,
  .footer-right {
    flex: 1 1 106px;
    min-width: 248px;
  }
  .footer-menu {
    padding-left: 0 !important;
  }
  .footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-section {
    padding: 40px 40px;
  }
  .footer-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-menu,
  .footer-right {
    text-align: center;
  }

  .footer-desc {
    text-align: center;
    padding-top: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    gap: 10px;
  }

  .All-right {
    padding-left: 15px;
  }
  .footer-social-icons {
    display: flex;
    justify-content: center;
  }
}
.footer-menu {
  padding-left: 210px;
  padding-top: 16px;
}

/*scroolbar*/
/* Scrollbar Track */
::-webkit-scrollbar-track {
  background-color: #cccccc;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

/* Scrollbar Thumb (gradient) */
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    #514bb0 1.02%,
    #6d6be7 19.03%,
    #9667ee 36.63%,
    #cd73db 63.86%,
    #e879cd 86.48%
  );
}

/********************************/
/*  Media queries for responsive */
/********************************/

@media (max-width: 1600px) {
  .card-grid {
    gap: 35px !important;
  }
}

/* Tablets & Large Phones */
@media (max-width: 768px) {
  .hero-section {
    max-height: none;
    padding: 60px 10px;
  }

  .hero-title,
  .hero-tagline {
    font-size: 32px;
  }
  .hero-button {
    height: 48px;
    max-width: 240px;
    font-size: clamp(15px, 4vw, 17px);
  }
  .text-container {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 1400px) {
  .bottom-text {
    justify-content: center;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 5px 5px;
  }
}
/* Laptop Medium - under 1280px */
@media (max-width: 1280px) {
  .card-grid {
    max-width: 1314px !important;
  }
  /* Buttons */
  .hero-button {
    max-width: 250px;
    height: 48px;
    font-size: clamp(14px, 1.5vw, 17px);
    margin-top: 23px;
  }
  button.who-we-are-button_ span {
    font-size: 18px !important;
  }

  .transform-button2 {
    max-width: 348px !important;
    height: 48px;
    font-size: clamp(14px, 1.5vw, 17px);
  }

  .transform-button2::before {
    border-radius: 48px;
  }

  .explore-button {
    max-width: 348px;
    height: 48px;
    font-size: clamp(14px, 1.5vw, 17px);
  }

  .explore-button::before {
    border-radius: 48px;
  }

  /* Additional card hover */
  #additional_card_1:hover .additional_extra {
    font-size: 14px;
  }

  /* Headings */
  .LetSExploreAndCarveYourFuture,
  .AiFueled,
  .about-heading,
  .line,
  .journey-text,
  #liney,
  #linez,
  .disruption,
  .drive,
  .heading-title,
  .heading-title span {
    font-size: 36px;
  }

  /* Cards */
  .explore_card .subtitle,
  .additional_title,
  .additional_hero_title,
  .bottom-text-card {
    font-size: 18px;
  }

  .explore_card .description,
  .additional_desc,
  .additional_hero_desc,
  .description,
  .about-text,
  .card-desc,
  .card-title {
    font-size: 16px;
  }
  .card-description {
    font-size: 14px;
  }
  .left-part {
    width: 269px !important;
    max-width: 541px !important;
  }
  .left-part br {
    display: none !important;
  }
  .AiFueled {
    margin-top: 1px !important;
    width: 197px !important;
  }
  .image-wrapper img {
    width: 83%;
    height: auto;
    object-fit: contain;
  }
  .image-wrapper {
    width: 100%;
    max-width: 100vw;
    align-items: center;
    display: flex;
    justify-content: end;
  }
  .left-part {
    width: 569px !important;
    max-width: 536px !important;
  }
  .main-banner {
  }
  .right-part {
    width: 400px;
    max-width: 400px;
  }

  .ai_future {
    display: flex;
    gap: 0;
    width: 554px;
    position: relative;
    top: -8px;
    left: 2px;
  }

  .about-text {
    width: 85%;
  }
  .card-grid .card {
    width: 244.242px;
    padding-bottom: 10px;
  }
  .card-description br {
    display: none;
  }
  .discover-container .card-grid .card {
    width: 244.242px;
    display: flex;
    justify-content: start;
  }
  .discover-container .card-grid .card {
    width: 244.242px;
    display: flex;
    justify-content: start;
    height: 300px;
    padding: 44px 18px;
  }
  .additional_card,
  .additional_hero {
    box-shadow: none;
  }
  .additional_hero {
    height: 388px;
  }
  #additional_card_1 .additional_top_img {
    height: 186px;
  }
  #additional_card_1:hover .additional_top_img {
    height: 119px;
  }
  #additional_card_4 .additional_top_img {
    height: 186px;
  }
  #additional_card_4:hover .additional_top_img {
    height: 119px;
  }
  .additional_extra {
    font-size: 14px !important;
  }
  .additional_hero.hovered .additional_hero_content {
    transform: translate(0%, -20%);
    opacity: 1;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    bottom: -80px;
  }
  .additional_hero_extra {
    font-size: 14px;
  }
  .additional_card .additional_top_img {
    height: 117px;
  }
  #additional_card_2:hover .additional_top_img {
    height: 131px;
  }
  #additional_card_3:hover .additional_top_img {
    height: 131px;
  }
  #additional_card_2 .additional_top_img {
    height: 214px;
  }
  #additional_card_3 .additional_top_img {
    height: 214px;
  }
  .top-heading .info-card {
    margin-top: 34px;
  }
  .explore_card {
    max-width: 352px;
  }
  .transform-card {
    max-width: 1054px;
  }
  html,
  body {
    overflow-x: hidden;
  }
  .card-grid {
    justify-content: center;
    gap: 16px !important;
  }
  .subtitle {
    font-size: 16px !important;
  }
  .additional_boxes {
    gap: 0;
  }
  #additional_id_btn {
    margin-top: 0;
    margin-top: -45px;
    margin-bottom: 0;
  }
  .card-title__ {
    font-size: 16px;
  }
  span.AiConsulting {
    padding: 0 !important;
  }
  p.card-desc br {
    display: none;
  }
  p.transform-description {
    font-size: 14px;
  }
}
html,
body {
  overflow-x: hidden;
}

/* Laptop Large - under 1400px */
@media (max-width: 1399px) {
  .additional_card,
  .additional_hero {
    flex: 0 0 23%; /* roughly 3 per row */
    max-width: 30%;
  }
}

/* Laptop Medium - under 1280px */
@media (max-width: 1279px) {
  .additional_card,
  .additional_hero {
    flex: 0 0 23%; /* 2 per row */
    max-width: 45%;
  }
}
/* Laptop Small - under 1024px */
@media (max-width: 1024px) {
  span#future1 {
    padding-left: 10px;
  }

  .bottom-text-card {
    justify-content: end;
    display: flex;
    align-items: center;
    height: auto;
    width: 400px !important;
    max-width: 389px !important;
  }

  .bottom-text-card {
    justify-content: end;
    display: flex;
    align-items: center;
    width: 200px;
    height: auto;
    max-width: 450px !important;
  }

  .additional_card,
  .additional_hero {
    flex: 0 0 23%;
    max-width: 45%;
    height: 443px !important;
  }

  /* Buttons */
  .hero-button {
    max-width: 220px;
    height: 45px;
    margin-top: 23px;
    font-size: clamp(13px, 1.4vw, 16px);
  }

  .transform-button2 {
    max-width: 348px !important;
    height: 45px;
    font-size: clamp(13px, 1.4vw, 16px);
  }

  .transform-button2::before {
    border-radius: 45px;
  }

  .explore-button {
    max-width: 220px;
    height: 45px;
    font-size: clamp(13px, 1.4vw, 16px);
  }

  .explore-button::before {
    border-radius: 45px;
  }
  button.who-we-are-button_ span {
    font-size: 18px !important;
  }

  /* Additional cards */
  .additional_card .additional_extra,
  #additional_card_1:hover .additional_extra {
    font-size: 14px;
  }
  /* Headings */
  .LetSExploreAndCarveYourFuture,
  .AiFueled,
  .about-heading,
  .line,
  .journey-text,
  #liney,
  #linez,
  .disruption,
  .drive,
  .heading-title,
  .heading-title span {
    font-size: 36px;
  }

  /* Cards */
  .explore_card .subtitle,
  .additional_title,
  .additional_hero_title,
  .bottom-text-card {
    font-size: 18px;
  }

  .explore_card .description,
  .additional_desc,
  .additional_hero_desc,
  .description,
  .about-text,
  .card-desc,
  .card-title {
    font-size: 16px;
  }
  .card-description {
    font-size: 12px;
  }
  .card-title {
    line-height: 1.2;
  }
  .card-description {
  }
  .card-title br {
    display: none;
  }
  .bottom-text-card {
    font-size: 16px;
    padding: 0;
    line-height: 1.2;
    height: 67px;
    align-items: center;
    display: flex;
  }
  .card-grid .card {
    width: 227.242px;
    align-items: start;
    display: flex;
    justify-content: start;
    height: 313px;
    padding: 57px 18px;
  }
  p.about-text {
    width: 90%;
  }
  .description br {
    display: none !important;
  }
  .LetSExploreAndCarveYourFuture {
    font-size: 32px;
  }
  .AiFueled {
    width: auto !important;
    font-size: 32px;
  }
  .ai_future {
    position: relative;
    top: -47px;
    left: 84px;
  }

  .bottom-text-card {
    justify-content: end;
    display: flex;
    align-items: center;
    height: auto;
  }
  .card-grid .card {
    width: 227.242px;
  }
  .card-grid {
    justify-content: center;
    gap: 20px;
  }
  .explore_card .number {
    font-size: 113px;
  }
  .explore_card::before {
    content: "";
    width: 1px;
    height: 128px;
    background-color: #b6b6b6;
    transform: rotate(180deg);
    transform-origin: left center;
    position: absolute;
    left: 4px;
    top: 159px;
  }
  .explore_card::before {
    display: none; /* hide for all by default */
  }

  .explore_card:nth-child(2)::before,
  .explore_card:nth-child(4)::before,
  .explore_card:nth-child(6)::before {
    display: block; /* only show for 2, 4, 6 */
  }
  .top-heading .sub-title {
    font-size: clamp(24px, 4vw, 30px);
  }
  .top-heading .info-card {
    margin-top: 36px;
    width: 88%;
    margin-left: -51px !important;
  }
  .top-heading .AiConsulting {
    font-size: clamp(24px, 4vw, 32px);
    padding-left: 0;
  }
  .top-heading .info-card {
    margin-top: 36px;
    width: 88%;
  }
  .acceleration_section {
    background: #f5f5f5;
    padding: 80px 47px;
  }
  .explore_card {
    max-width: 328px;
  }
  .discover-container .card-grid .card {
    width: 250px !important;
    height: 331px !important;
  }
  .bottom-text-card br {
    display: none !important;
  }
  .transform-card {
    max-width: 1007px !important;
  }
  .additional_boxes.visible {
    gap: 0;
  }
  .top-heading.animate-left {
    text-align: start;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .additional_card,
  .additional_hero {
    flex: 0 0 48%; /* 2 per row, slightly smaller for gaps */
    max-width: 48%;
  }
}

@media (max-width: 768px) {
  .additional_card,
  .additional_hero {
    flex: 0 0 90%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  h1.hero-title {
    font-size: 26px !important;
  }
  .hero-tagline {
    font-size: 26px !important;
  }
}

/* Mobile stacking */
@media (max-width: 480px) {
  .text-container {
    display: none; /* still hidden by default */
    flex-direction: column;
    text-align: center;
  }
  #textcontainer1,
  #textcontainer2 {
    align-items: center;
  }
  .left-part {
    max-width: 100% !important;
    width: 597px;
    padding-left: 0;
  }
  .left-part {
    margin-left: -29px;
  }
  #future1 {
    display: inline !important;
  }
  #future0 {
    display: none !important;
  }
  .LetSExploreAndCarveYourFuture,
  .AiFueled,
  .about-heading,
  .line,
  .journey-text,
  #liney,
  #linez,
  .disruption,
  .drive,
  .heading-title,
  .heading-title span {
    font-size: 26px !important;
    display: inline;
  }
  .left-part {
    width: 84%;
    max-width: 100% !important;
  }

  .image-wrapper {
    width: 100%;
    max-width: 585px;
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 0 !important;
    margin: 0;
  }
  .ai_future {
    position: relative;
    top: -13px;
    left: 0px;
  }

  .additional_card,
  .additional_hero {
    flex: 0 0 48%;
    max-width: 100%;
  }
  div#additional_card_1 {
    height: 500px;
    width: 100%;
    padding: 0;
  }
  div#additional_card_2 {
    height: 500px;
    width: 100%;
    padding: 0;
  }
  div#additional_card_3 {
    width: 100%;
    padding: 0;
  }

  div#additional_card_4 {
    width: 100%;
    padding: 0;
  }
  #additional_id_btn {
    margin-top: 0;
    margin-top: -45px;
    margin-bottom: 0;
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .content-wrapper {
    padding: 0 10px; /* reduce padding on small screens */
    box-sizing: border-box; /* include padding in width */
  }

  .content-wrapper {
    max-width: 100%; /* make sure it never exceeds screen */
    width: 100%;
    margin: 0 auto;
    padding: 0; /* remove extra horizontal padding */
    box-sizing: border-box; /* keep content inside */
  }
  .main-banner {
    flex-direction: column; /* stack in a column */
    align-items: center; /* center everything */
    justify-content: center;
    padding: 30px 15px;
    gap: 25px; /* spacing between text & image */
    text-align: start; /* center text */
  }
  .left-part .content-wrapper .description {
    text-align: start !important;
  }
  .content-wrapper {
    margin-left: 23px;
  }
  .ai_future {
    position: relative;
    top: -42px;
    left: 66px;
  }
  .left-part,
  .right-part {
    max-width: 100%;
    width: 100%; /* full width on mobile */
    padding: 0;
    display: flex;
    justify-content: center; /* center contents */
    flex-direction: column; /* make text column */
    align-items: center;
  }

  .heading-group,
  .description {
    text-align: center; /* center text on mobile */
  }

  .LetSExploreAndCarveYourFuture {
    font-size: 24px; /* scale down slightly */
    line-height: 1.3;
    display: flex;
    width: fit-content;
  }
  .heading-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .AiFueled {
    font-size: 26px;
  }

  .description {
    font-size: 16px;
    line-height: 1.6;
    padding: 0 5px; /* add safe padding */
  }

  .image-wrapper {
    width: 100%;
    max-width: 340px; /* keep image smaller for mobile */
  }

  .image-wrapper img {
    width: 100%;
    height: auto;
  }

  /* Future word toggle for mobile */
  #future0 {
    display: inline;
  }
  #future1 {
    display: none;
  }
  .about-container {
    width: 100%;
  }
}
@media (max-width: 480px) {
  /* Container adjustments */
  .dicover-section {
    padding: 50px 15px; /* smaller padding for mobile */
    border-radius: 30px; /* slightly smaller radius */
  }
  .discover-container {
    gap: 25px; /* reduce spacing between items */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  /* Heading adjustments */
  .heading-title {
    font-size: 28px;
    text-align: center;
  }
  .heading-title span {
    font-size: 30px;
    display: block; /* ensures it wraps nicely */
    text-align: center;
  }
  /* Card grid becomes 1 column */
  .card-grid {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding-left: 30px;
  }
  .card {
    width: 100%;
    max-width: 350px; /* prevent overflow */
    height: auto; /* auto height for mobile */
    padding: 15px;
    text-align: center;
  }
  .card-title {
    font-size: 16px;
    text-align: center;
  }
  .card-description {
    font-size: 14px;
    text-align: center;
    padding: 0 10px;
    line-height: 1.5;
  }

  /* Bottom row becomes 1 column */
  .bottom-row,
  .bottom-text-card,
  .button-wrapper {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 15px;
    text-align: center;
  }
  .bottom-text-card {
    font-size: 14px;
    line-height: 1.5;
    padding: 15px 45px;
    flex: 0;
    padding-left: 0;
  }
  .explore-button {
    width: 331px !important;
    height: 56px;
    font-size: 15px;
    max-width: 287px;
  }

  /* Ensure no overflow on images */
  .card img,
  .image-wrapper img {
    max-width: 100%;
    height: auto;
  }
  .discover-container {
    gap: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 30px;
  }
  .discover-container .card-grid .card {
    width: 307.242px !important;
    height: 251px !important;
  }
  .explore_card .number {
    font-size: 101px;
  }
  .explore_card:nth-child(2)::before,
  .explore_card:nth-child(4)::before,
  .explore_card:nth-child(6)::before {
    display: none;
  }
  .who-we-serve-button {
    width: 60%;
    font-size: 16px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 480px) {
  /* Container adjustments */
  .additional_boxes {
    padding: 40px 15px;
    gap: 25px;
    width: 100%;
  }

  /* Each row stacks vertically */
  .additional_card_row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* Cards full width & centered */
  .additional_card {
    width: 100%;
    max-width: 350px;
    min-height: 480px; /* set consistent height */
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: start;
    gap: 15px;
  }

  /* Heroes full width, fixed height */
  .additional_hero {
    width: 100%;
    max-width: 350px;
    height: 480px; /* fixed height for consistency */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: start;
    text-align: start;
    padding: 20px 14px;
    gap: 15px;
  }

  /* Hero content padding adjustments */
  .additional_hero_static,
  .additional_hero_content {
    padding: 20px 14px;
    text-align: start;
  }

  /* Titles and descriptions scaling */
  .additional_hero_title,
  .additional_title {
    font-size: 17px;
    text-align: start;
  }

  .additional_hero_desc,
  .additional_desc,
  .additional_extra {
    font-size: 16px;
    text-align: start;
    margin-left: 0;
    padding-right: 0;
    line-height: 1.5;
  }

  /* Card images maintain ratio */
  .additional_top_img {
    width: 100%;
    height: auto;
    max-height: 248px;
    border-radius: 23px;
  }

  /* Explore button responsive */
  .additional_explore_btn_container {
    justify-content: center;
    margin-top: 20px;
  }

  #additional_id_btn,
  .additional_explore_btn {
    width: 100%;
    max-width: 250px;
    font-size: 16px;
    padding: 10px 20px;
  }

  .additional_hero_title,
  .additional_title {
    font-size: 17px;
    text-align: start;
    margin: 0;
  }

  .additional_card-image {
    width: 100% !important;
  }
  .additional_card .additional_title {
    margin-left: 10px;
  }
  .additional_desc {
    margin-left: 10px;
  }
  .additional_card .additional_extra {
    margin-left: 10px;
  }
  .additional_hero_extra {
    margin-left: 0;
  }
  .additional_hero.hovered .additional_hero_content {
    transform: translate(0%, -20%);
    opacity: 1;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    bottom: -1px;
  }
  .additional_card {
    gap: 0 !important;
  }
}

/* Mobile / Small Screen Responsive */
@media screen and (max-width: 480px) {
  .acceleration_section {
    padding: 30px 15px;
  }

  .acce-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  /* Top Heading */
  .top-heading {
    flex: 1 1 100%;
    text-align: center;
    padding-top: 15px;
  }

  .top-heading .sub-title {
    font-size: 20px;
    line-height: 1.3;
  }

  .top-heading .AiConsulting {
    font-size: 24px;
    line-height: 1.2;
    display: block;
    margin-top: 5px;
  }

  .top-heading .info-card {
    margin-top: 20px;
    padding: 0 10px;
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto; /* center POC card */
    text-align: center;
  }

  .info-card .card-title__ {
    font-size: 16px;
    margin-top: 10px;
  }

  .info-card .card-desc {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Info Grid */
  .info-grid {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .info-grid .info-card {
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto; /* center cards */
    text-align: center;
    padding: 0 10px;
  }

  /* Animate adjustments for mobile */
  .top-heading,
  .info-grid {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .top-heading .info-card {
    margin-top: 20px;
    padding: 0 10px;
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    margin-right: -62px !important;
    text-align: center;
  }
}

/* Transform Section - Mobile Responsive (480px) */
@media (max-width: 480px) {
  .transform-section {
    padding: 20px 15px 40px 15px;
    justify-content: center;
  }

  .transform-card {
    min-height: 443px;
    border-radius: 20px;
    width: 100%;
    max-width: 100%;
    background-position: center top;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }

  .transform-content {
    width: 95%;
    max-width: 340px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .transform-heading {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ready-text {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .journey-text {
    font-size: 24px;
    line-height: 1.2;
  }

  .transform-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 100%;
    text-align: center;
  }

  .transform-button2 {
    width: 100%;
    max-width: 300px;
    height: 45px;
    font-size: 14px !important;
  }

  .transform-button2 span {
    font-size: 14px !important;
  }
}

@media (max-width: 768px) {
  .main-banner {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }
  .image-wrapper img {
    width: 100%;
  }
  #future0 {
    display: inline;
  }
  #future1 {
    display: none;
  }
  .left-part,
  .right-part {
    max-width: 100%;
    padding: 10px;
  }

  .heading-group {
    margin-bottom: 20px;
  }

  .description {
    padding-top: 16px;
  }
  .image-wrapper img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }
  .image-wrapper {
    width: 100%;
    text-align: center;
  }

  .top-heading .AiConsulting {
    display: block;
  }
}
