@import url("https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Shanti&family=Tiro+Tamil:ital@0;1&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background-color: #000000;
  font-family: "Exo 2", sans-serif;
}

:root {
  --public-page-inline: clamp(18px, 4vw, 64px);
  --public-page-section-gap: clamp(36px, 5vw, 88px);
}

.public-page-shell {
  display: flex;
  flex-direction: column;
  gap: var(--public-page-section-gap);
  width: 100%;
}

.public-page-shell > * {
  width: 100%;
}

.public-page-shell > * + * {
  margin-top: 0 !important;
}

.public-page-shell :is(
  .career-hero,
  .high-tech-hero,
  .experience-center-hero,
  .product-hero,
  .resources-page-section,
  .insight-blogs-page-section,
  .main-industry-page-section,
  .media-kit-section,
  .blog-single-page,
  .contact-fold-section,
  .featured-fold-section,
  .cms-value-section,
  .cms-cta-strip,
  .cms-quote-band,
  .solution-we-offer,
  .staying-ahead-section,
  .in-focus,
  .latest-release,
  .coming-soon
) {
  padding-left: var(--public-page-inline);
  padding-right: var(--public-page-inline);
}

/* Remove decorative divider/underline accents across the public site */
hr,
.nav-hr-line,
.nav-hr-line-2,
.career-line,
.high-tech-line,
.lending-speed-line,
.solution-we-offer-line,
.solution-page-recommendation-line-accent3,
.roi-success-line-accent2,
.our-line-accent,
.why-line-accent,
.leadership-line-accent,
.our-story-underline,
.core-values-underline,
.tech-stack-underline,
.ui-ux-box-underline,
.industry-info-line,
.line-accent,
.line-accent2,
.line-accent3,
.hb-underline,
.the-approach-underline {
  display: none !important;
}

.nav-links .active-nav {
  border-bottom: 0 !important;
}

.nav-links li.active::after {
  display: none !important;
  content: none !important;
}

/* ============================== NAV BAR STYLING START ================================ */
.navbar-wrapper {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #00262c;
  padding: 10px;
  border-radius: 20px;
}

.navbar-wrapper .logo {
  height: 50px;
  width: 180px;
}

.navbar-wrapper .logo img {
  height: 100%;
  width: 100%;
}

.nav-links>li.active-nav>.nav-logo-dropdown>a {
  color: #00f2e2;
  font-weight: bold;
}

.nav-links .active-nav {
  border-bottom: 2px solid #00f2e2;
}

.submenu li.active-sub {
  color: #00f2e2;
  font-weight: bold;
  border: none;
}

.nav-menu {
  padding: 2px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
  transition: all 0.3s ease;
  opacity: 1;
  pointer-events: auto;
}

.nav-links {
  display: flex;
  gap: 40px;
  justify-content: space-around;
  flex-grow: 1;
  position: relative;
}

.nav-hr-line {
  display: none;
  width: 80%;
  margin: 0 auto;
  color: white;
}

.nav-hr-line-2 {
  display: none;
  width: 85%;
  margin: 10px auto;
  color: white;
}

.nav-links li {
  position: relative;
  padding: 0 5px 10px 5px;
  color: white;
  font-size: 20px;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.nav-links li a {
  color: white;
  text-decoration: none;
}

.nav-links li a:hover {
  color: #00f2e2;
}

.nav-links li i {
  margin-left: 4px;
  font-size: 10px;
}

.nav-links li.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #00f2e2;
  border-radius: 4px;
}

.nav-logo-dropdown {
  display: flex;
}

.nav-icons {
  display: none;
}

.nav-icons i {
  cursor: pointer;
  font-size: 18px;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #0b2125;
  /* slight transparency */
  padding: 10px 15px;
  border-radius: 8px;
  width: fit-content;
  white-space: nowrap;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

li.show-submenu>.submenu {
  display: block;
}

.submenu a {
  padding: 5px 10px;
  display: block;
  color: white;
  transition: color 0.3s ease;
  font-size: 16px;
}

.submenu a:hover {
  color: #00f2e2;
}

.submenu li a {
  color: white;
}

.submenu {
  display: none;
}

/* li.show-submenu > .submenu {
  display: flex;
  flex-direction: row;
  gap: 10px;
} */
.dropdown-toggle {
  cursor: pointer;
  margin-left: 2px;
  display: inline-block;
}

.nav-links li {
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 1200px) {
  .nav-links {
    gap: 16px;
  }

  .nav-menu {
    padding: 2px 0;
  }
}

@media (max-width: 992px) {
  .navbar-wrapper {
    width: 100%;
  }

  .nav-logo-dropdown {
    display: flex;
    align-items: center;
  }

  .logo img {
    height: 40px;
  }

  .nav-menu {
    padding: 0;
    margin: 0;
    flex-grow: 0;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-icons i {
    font-size: 15px;
  }

  .nav-links li {
    padding: 0 2px;
  }

  .nav-links>li:last-child .submenu {
    left: unset;
    right: 0;
  }

  .submenu li {
    padding: 8px 2px;
  }

  .nav-links li a {
    font-size: 16px;
  }

  .nav-icons {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .navbar-wrapper {
    flex-wrap: nowrap;
    justify-content: space-between;
    background-color: #00c3ff38;
    padding: 15px 20px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    border-radius: 0px;
  }

  .nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    font-size: 24px;
  }

  .nav-links .active-nav {
    border-bottom: none;
  }

  .nav-hr-line {
    display: block;
  }

  .nav-hr-line-2 {
    display: block;
  }

  .nav-icons i {
    font-size: 30px;
    cursor: pointer;
  }

  .nav-icons i.fa-globe {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 35%;
    min-width: 160px;
    background-color: #00262c;
    padding: 20px;
    border-radius: 0 0 0 15px;
    display: none;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
    transition: all 0.3s ease;
    margin: 0;
  }

  .nav-menu.mobile-open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }

  .nav-links li {
    list-style: none;
    position: relative;
    width: 100%;
    text-align: center;
    padding: 0;
    flex-direction: column;
  }

  .nav-links li a {
    color: white;
    font-size: 16px;
    text-decoration: none;
    display: block;
  }

  .submenu {
    display: none;
    flex-direction: column;
    margin-top: 0;
    background-color: transparent;
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    min-width: fit-content;
    padding: 5px;
  }

  li.show-submenu>.submenu {
    flex-direction: column;
  }

  .nav-links li.show-submenu .submenu {
    display: flex;
  }

  .submenu li a {
    font-size: 12px;
  }

  .submenu a {
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
    padding: 5px 0;
  }
}

@media (max-width: 480px) {
  .navbar-wrapper {
    padding: 15px 10px;
  }
}

.dropdown-toggle i {
  transition: transform 0.3s ease;
}

li.hovering .dropdown-toggle i {
  transform: rotate(180deg);
}

/* Rotate icon when submenu is shown */
li.show-submenu>.nav-logo-dropdown .dropdown-toggle i {
  transform: rotate(180deg);
}

/* ============================== NAV BAR STYLING END ================================ */
/* ===================== HERO SECTION STYLING START ====================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  /* background: url("../image/bg/back1.jpg") no-repeat center center; */
  background: url("../image/bg/back1.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 400;
  color: #fff;
}

.hero h1 span {
  display: block;
  font-size: 4.2rem;
  color: #00f2e2;
  font-weight: 700;
  font-family: "Orbitron", sans-serif;
}

.hero .subtitle {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #a0a0a0;
  max-width: 700px;
  border-top: 1px solid #00f2e2;
  padding-top: 10px;
  padding-bottom: 500px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h1 span {
    font-size: 3.2rem;
  }

  .hero .subtitle {
    font-size: 0.9rem;
    max-width: 90%;
    padding-bottom: 400px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero h1 span {
    font-size: 2.5rem;
  }

  .hero .subtitle {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero h1 span {
    font-size: 2rem;
  }

  .hero .subtitle {
    font-size: 0.75rem;
    padding-top: 8px;
  }
}

/* ================= FOOTER SECTION STYLING START ================== */
.incobist-footer {
  background: #000000;
  color: #fff;
  padding: 50px 0;
  font-family: sans-serif;
  border-top: 1px solid grey;
  border-bottom: 1px solid grey;
}

.footer-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

.footer-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-section {
  flex: 1 1 220px;
  min-width: 160px;
}

.footer-brand-section {
  flex: 3;
}

.footer-links-section {
  flex: 1;
}

.footer-courses-section {
  flex: 1;
}

.footer-contact-section {
  flex: 3;
}

/* Branding & Logo */
.footer-logo-image {
  width: 180px;
  height: 50px;
  margin-bottom: 10px;
  margin-left: -10px;
}

.footer-description-text {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 30px;
}

.footer-subscribe-title {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 400;
}

/* Section Titles */
.footer-section-heading {
  font-size: 16px;
  margin-bottom: 30px;
  color: #00baae;
}

.footer-section-heading a {
  text-decoration: none;
  color: #00baae;
  font-size: 16px;
  display: inline-block;
  transition: 0.3s;
}

/* Links */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-item {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  display: inline-block;
  transition: 0.3s;
  margin-bottom: 15px;
}

.footer-link-item:hover {
  color: #00f2e2;
}

/* Newsletter Form */
.footer-subscribe-form {
  display: flex;
  margin-bottom: 20px;
}

.subscribe-input {
  padding: 15px;
  border: 1px solid #ffffff;
  border-right: none;
  border-radius: 8px 0 0 8px;
  flex: 1;
  background-color: #2e2e2e;
  color: #ffffff;
}

.subscribe-input::placeholder {
  color: #ffffff;
  font-size: 16px;
}

.subscribe-button {
  padding: 10px 20px;
  background: #00baae;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  border: 1px solid #ffffff;
  border-left: none;
  border-radius: 0 8px 8px 0;
  font-weight: 400;
}

/* Social Media */
.footer-social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-heading {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-social-links .social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background-color: #ffffff;
  color: #00baae;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.footer-social-links .social-btn:hover {
  background-color: #00baae;
  color: white;
}

/* Contact Info */
.contact-description-text {
  font-size: 14px;
  color: #ffffff;
  margin: 0px 0 15px;
  line-height: 25px;
}

.footer-contact-icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.footer-contact-icons .contact-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-contact-icons .contact-btn:hover {
  color: #00baae;
}

.footer-contact-icons .icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #00baae;
  color: #ffffff;
  margin-right: 10px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-contact-icons .contact-btn:hover .icon-circle {
  background-color: #ffffff;
  color: #00baae;
}

.contact-info {
  font-size: 14px;
  color: #ccc;
  margin: 8px 0;
}

/* App Store */
.footer-app-buttons {
  margin-top: 10px;
}

.apk-store-buttons {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.apk-store-btn {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 8px;
  padding: 8px 8px;
  color: #00baae;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 145px;
}

.apk-store-btn i {
  font-size: 24px;
  margin-right: 10px;
}

.apk-store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.apk-store-text small {
  font-size: 10px;
}

.apk-store-text span {
  font-size: 12px;
  font-weight: 600;
}

.apk-store-btn:hover {
  background-color: #00baae;
  color: white;
}

.footer-divider {
  margin: 40px 0 20px;
  border-color: #ffffff;
}

.footer-copyright {
  font-size: 16px;
  text-align: center;
  color: #ffffff;
  margin: 20px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright p {}

.footer-copyright a {
  text-decoration: none;
  color: #ffffff;
}

@media (max-width: 992px) {
  .footer-sections {
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-brand-section,
  .footer-contact-section {
    flex: 1 1 45%;
  }

  .footer-links-section,
  .footer-courses-section {
    flex: 1 1 45%;
  }

  .footer-copyright {
    margin: 20px 40px;
  }
}

@media (max-width: 768px) {
  .footer-sections {
    flex-direction: column;
    gap: 30px;
  }

  .footer-subscribe-form {
    width: 50%;
  }

  .apk-store-buttons {
    align-items: flex-start;
  }

  .apk-store-btn {
    justify-content: flex-start;
  }

  .footer-copyright {
    margin: 20px;
  }
}

@media (max-width: 480px) {
  .incobist-footer {
    padding: 20px 0;
  }

  .footer-content-wrapper {
    width: 90%;
  }

  .footer-section-heading {
    font-size: 16px;
  }

  .footer-description-text {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .contact-btn {
    font-size: 14px;
  }

  .apk-store-text span {
    font-size: 10px;
  }

  .apk-store-text small {
    font-size: 9px;
  }

  .footer-contact-icons {
    gap: 15px;
  }

  .apk-store-btn i {
    font-size: 20px;
  }

  .footer-subscribe-title {
    font-size: 24px;
  }

  .subscribe-input::placeholder {
    font-size: 14px;
  }

  .footer-social-links .social-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .footer-copyright {
    font-size: 12px;
  }

  .footer-copyright {
    margin: 10px;
    flex-direction: column;
    justify-content: center;
  }
}

/* ================================================= MEDIA KIT and FAQ================================================= */

.media-kit-section {
  position: relative;
  background: url("../image/bg/faq-bg.png") no-repeat center 50px;
  min-height: 100vh;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 40px;
  overflow: hidden;
  z-index: 1;
}

.social-icons {
  position: absolute;
  top: 60%;
  left: 50px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 3;
}

.social-icons a {
  background-color: #2c2c2c;
  color: white;
  font-size: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: #4cc2c9;
  transform: scale(1.2);
}

.media-kit-content {
  max-width: 600px;
  /* background: rgba(0, 0, 0, 0.6); */
  padding: 40px;
  border-radius: 10px;
}

.media-kit-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
  color: #00baae;
}

.media-kit-content .underline {
  width: 100%;
  max-width: 700px;
  height: 2px;
  background-color: #00f2e2;
  margin: 10px 0 20px;
}

.media-kit-content p {
  font-size: 16px;
}

/* ========================= IR FAQ Section ===================== */

.ir-faq {
  max-width: 80%;
  margin: 0 auto;
  padding: 20px;
}

.about-ir-faq {
  max-width: 80%;
  margin: 40px auto;
  padding: 20px;
}

.ir-faq-heading {
  font-size: 64px;
  margin-bottom: 30px;
  color: #00baae;
  text-align: center;
  font-weight: 400;
}

.ir-faq-para {
  font-size: 20px;
  color: #ffffff;
  line-height: 26px;
  width: 80%;
  margin: 30px 0;
  max-width: 700px;
}

.ir-faq-line {
  border: none;
  height: 0.2px;
  background-color: rgb(255 255 255);
  margin: 15px auto;
}

.ir-faq-ans-line {
  border: none;
  height: 0.2px;
  background-color: rgb(255 255 255);
  margin: 35px auto;
}

.ir-faq-item {
  position: relative;
}

.ir-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  cursor: pointer;
  height: 30px;
}

.ir-faq-text {
  display: flex;
  align-items: center;
  font-size: 64px;
  color: #00baae;
}

.ir-faq-small-text {
  display: flex;
  align-items: center;
  font-size: 32px;
  color: #00baae;
}

.ir-faq-question span {
  font-weight: 400;
  color: #ffffff;
  font-size: 32px;
  margin-left: 8px;
}

.ir-faq-icon {
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 40px;
  border-radius: 50%;
  padding: 10px;
  align-items: center;
  border: 1px solid #ffffff;
}

.ir-faq-icon::before {
  content: "+";
  transition: transform 0.3s ease, color 0.3s ease;
  margin-top: -10px;
}

.ir-faq-item.active .ir-faq-icon::before {
  content: "-";
  color: #00baae;
  margin-top: -10px;
}

.ir-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), opacity 0.3s ease,
    padding 0.3s ease;
  font-size: 36px;
  color: #cfcfcf;
  padding: 0;
}

.ir-faq-ans span {
  font-size: 16px;
  color: white;
}

.ir-faq-ans {
  display: flex;
  gap: 10px;
  justify-content: start;
  align-items: center;
  color: #00baae;
}

.ir-faq-item.active .ir-faq-answer {
  max-height: 1000px;
  opacity: 1;
  padding: 0 0 20px 0;
  transition: max-height 0.5s cubic-bezier(0.5, 0, 1, 0), opacity 0.3s ease,
    padding 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
  .media-kit-section {
    min-height: 1200px;
  }

  .social-icons {
    top: 30%;
  }
}

@media (max-width: 768px) {
  .media-kit-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .media-kit-content {
    max-width: 100%;
    padding: 20px;
  }

  .social-icons {
    display: none;
  }

  .social-icons {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .media-kit-section {
    min-height: 70vh;
    padding: 40px 10px;
    background-position: -400px 80px;
  }
}

/* ==================== INDUSTY SECTION STYLING START =================== */
.main-industry-page-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("../image/indusrty/pic1.png") no-repeat center 50px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 40px;
  overflow: hidden;
  z-index: 1;
}

.industry-info-wrapper {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  color: white;
}

.industry-info-title {
  color: #00bcd4;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.industry-info-line {
  width: 200px;
  border: 0.5px solid #00bcd4;
  margin: 0 auto 2rem;
}

.industry-info-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .main-industry-page-section {
    min-height: 1200px;
  }
}

@media (max-width: 768px) {
  .industry-info-title {
    font-size: 2rem;
  }

  .industry-info-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .industry-info-line {
    width: 120px;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .main-industry-page-section {
    min-height: 70vh;
    padding: 40px 10px;
  }
}

/* ==================== INVESTOR SECTION ==================== */
.invester-update {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  background-color: #000;
  width: 80%;
  margin: 100px auto;
}

.invester-update-left-section {
  flex: 3;
  background: url("../image/media.png") no-repeat center 50px;
  background-size: cover;
  border-radius: 20px;
  position: relative;
  padding: 40px;
  min-height: 500px;
  display: flex;
}

.invester-update-overlay-content {
  position: relative;
  z-index: 2;
  color: white;
}

.invester-update-overlay-content h2 {
  font-size: 40px;
  color: #fff;
  font-weight: 500;
}

.invester-update-overlay-content h1 span {
  color: #4cc2c9;
  font-size: 64px;
  display: block;
  margin: 0;
  font-weight: 400;
}

.invester-update-overlay-content p {
  margin: 30px 0;
  font-size: 16px;
  line-height: 30px;
  color: #ccc;
}

.invester-update-cta-button {
  padding: 15px 60px;
  margin-top: 50px;
  background-color: #00baae;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
}

/* RIGHT SECTION */
.invester-update-right-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 30px;
  border-left: 1px solid #ffffff;
  justify-content: center;
}

.invester-update-learn-text {
  color: #ffffff;
  font-size: 24px;
}

.invester-update-company-name {
  font-size: 48px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 400;
}

.invester-update-info-link {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  background-color: #111;
  color: white;
  width: 80%;
  font-size: 20px;
  border: 1px solid #ffffff;
  border-radius: 30px;
  padding: 10px 20px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.invester-update-info-link:hover {
  background-color: #222;
}

.invester-update-info-link span {
  color: #00d0c4;
  font-size: 1.5rem;
}

@media (max-width: 992px) {
  .ir-faq {
    max-width: 95%;
  }

  .about-ir-faq {
    max-width: 95%;
  }

  .invester-update {
    gap: 30px;
    width: 95%;
  }

  .invester-update-left-section {
    flex: 2;
  }
}

@media (max-width: 768px) {
  .ir-faq-heading {
    font-size: 50px;
  }

  .ir-faq-text {
    font-size: 50px;
  }

  .ir-faq-question span {
    font-size: 24px;
  }

  .ir-faq-para {
    width: 100%;
    font-size: 16px;
    line-height: 22px;
  }

  .invester-update {
    gap: 20px;
  }

  .invester-update-left-section {
    flex: 3;
    padding: 20px;
    min-height: fit-content;
  }

  .invester-update-overlay-content h2 {
    font-size: 36px;
  }

  .invester-update-overlay-content h1 span {
    font-size: 50px;
    line-height: 50px;
  }

  .invester-update-cta-button {
    padding: 10px 40px;
    font-size: 20px;
  }

  .invester-update-right-section {
    padding-left: 15px;
  }

  .invester-update-learn-text {
    font-size: 18px;
  }

  .invester-update-company-name {
    font-size: 36px;
    line-height: 30px;
  }

  .invester-update-info-link {
    gap: 10px;
    width: 100%;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .ir-faq {
    max-width: 100%;
    padding: 15px;
  }

  .about-ir-faq {
    max-width: 100%;
    padding: 15px;
    margin: 10px 0;
  }

  .ir-faq-small-text {
    font-size: 20px;
    line-height: 26px;
  }

  .ir-faq-heading {
    font-size: 24px;
  }

  .ir-faq-text {
    font-size: 24px;
  }

  .ir-faq-para {
    font-size: 12px;
    line-height: 16px;
    margin: 10px 0;
  }

  .ir-faq-question span {
    font-size: 16px;
  }

  .ir-faq-question {
    padding: 30px 0;
  }

  .ir-faq-line {
    margin: 10px auto;
  }

  .ir-faq-ans-line {
    margin: 20px auto;
  }

  .ir-faq-answer {
    font-size: 24px;
  }

  .ir-faq-ans span {
    font-size: 14px;
  }

  .ir-faq-icon {
    width: 24px;
    height: 24px;
    font-size: 24px;
  }

  .ir-faq-icon::before {
    margin-left: -1px;
    margin-top: -6px;
  }

  .ir-faq-item.active .ir-faq-icon::before {
    margin-top: -6px;
  }

  .invester-update {
    gap: 10px;
    margin: 50px auto;
  }

  .invester-update-left-section {
    padding: 15px;
  }

  .invester-update-overlay-content h2 {
    font-size: 16px;
  }

  .invester-update-overlay-content h1 span {
    font-size: 24px;
    line-height: 26px;
  }

  .invester-update-overlay-content p {
    font-size: 12px;
    line-height: 20px;
  }

  .invester-update-overlay-content p br {
    display: none;
  }

  .invester-update-cta-button {
    padding: 5px 20px;
    font-size: 12px;
  }

  .invester-update-right-section {
    gap: 15px;
    padding-left: 10px;
  }

  .invester-update-learn-text {
    font-size: 12px;
  }

  .invester-update-company-name {
    font-size: 24px;
    line-height: 25px;
  }

  .invester-update-info-link {
    gap: 10px;
    width: 100%;
    font-size: 12px;
    line-height: 20px;
    padding: 5px 10px;
  }

  .invester-update-info-link i {
    font-size: 16px;
  }
}

/* ========================== RESULT PAGE ============================== */
/* ============= result home page section styling start ============= */
.dev-banner-section {
  position: relative;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../image/result/back1.png") no-repeat center center/cover;
  color: white;
  display: flex;
  align-items: center;
  padding-left: 80px;
  padding-right: 30px;
}

.dev-text-content {
  max-width: 700px;
  z-index: 2;
}

.dev-text-content h1 {
  font-size: 2.5rem;
  color: #00baae;
  margin-bottom: 10px;
}

.dev-text-content h2 {
  font-size: 2rem;
  color: #00baae;
  margin-bottom: 20px;
}

.dev-text-content p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.dev-apply-button {
  display: inline-block;
  background-color: #00baaea8;
  color: white;
  font-size: 20px;
  padding: 20px 70px;
  margin-top: 50px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dev-apply-button:hover {
  background-color: #0097a7;
}

/* Responsive */
@media (max-width: 768px) {
  .dev-text-content h1 {
    font-size: 1.8rem;
  }

  .dev-text-content h2 {
    font-size: 1.4rem;
  }

  .dev-banner-section {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 576px) {
  .dev-text-content {
    text-align: center;
    padding-left: 30px;
  }
}

/* ============ ROLE SECTIONSTYLING START ============= */
.role-container {
  max-width: 1000px;
  margin: auto;
  background-color: #000;
  color: #ccc;
  padding: 20px;
}

.role-heading {
  text-align: center;
  color: #00baae;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.role-section {
  background-color: #111;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 0 15px rgba(0, 255, 213, 0.1);
}

.role-paragraph {
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .role-heading {
    font-size: 2rem;
  }

  .role-section {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .role-heading {
    font-size: 1.5rem;
  }
}

/* ===================== CONTRIBUTION  SECTION START ==================== */
.contribution-box {
  background-color: #1a0000;
  border: 1px solid #aa0000;
  border-radius: 10px;
  max-width: 900px;
  margin: auto;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
  color: #fff;
}

.contribution-title {
  color: #ff1a1a;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.contribution-line {
  width: 60px;
  height: 2px;
  background-color: #661111;
  margin: 0 auto 20px auto;
}

.contribution-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0e0;
}

@media (max-width: 768px) {
  .contribution-box {
    padding: 20px 15px;
    margin: 20px;
  }

  .contribution-title {
    font-size: 1.5rem;
  }

  .contribution-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .contribution-title {
    font-size: 1.3rem;
  }

  .contribution-text {
    font-size: 0.85rem;
  }
}

/* ================ JOINT SECTION STYLING START ================= */
.join-us-section {
  background: url("../image/result/back2.png") no-repeat center center/cover;
  width: 80%;
  margin: 0 auto;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.join-us-box {
  background-color: rgba(128, 23, 23, 0.85);
  color: #fff;
  padding: 30px 25px;
  text-align: center;
  max-width: 600px;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.join-us-text {
  font-size: 1.2rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .join-us-section {
    height: 250px;
    width: 90%;
  }

  .join-us-box {
    padding: 20px 15px;
  }

  .join-us-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .join-us-section {
    height: 220px;
    height: 95%;
  }

  .join-us-text {
    font-size: 0.95rem;
  }
}

/* =============== GOAL SECTION STYLING START =============== */
.goal-section {
  max-width: 900px;
  margin: auto;
  background-color: #000;
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 30px 20px;
}

.goal-title {
  font-size: 1.5rem;
  color: #00d1b2;
  border-bottom: 1px solid #00baae;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.goal-description {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.problems-title {
  font-size: 1.3rem;
  color: #00baae;
  margin-bottom: 15px;
}

.problems-list {
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 30px;
}

.problems-list li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.cta-button {
  background-color: #00baae;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button a {
  text-decoration: none;
  font-size: 16px;
  color: #ffffff;
}

.cta-button:hover {
  background-color: #00a995;
}

@media (max-width: 600px) {
  .goal-title {
    font-size: 1.3rem;
  }

  .problems-title {
    font-size: 1.1rem;
  }

  .cta-button {
    width: 100%;
    font-size: 1rem;
    text-align: center;
  }
}

/* =================== RESOURCES PAGE STYLING START =================== */
.resources-page-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("../image/bg/resources-bg.png") no-repeat center 50px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 40px;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 992px) {
  .resources-page-section {
    min-height: 1200px;
  }
}

@media (max-width: 480px) {
  .resources-page-section {
    background: url("../image/bg/resources-bg.png") no-repeat -400px 80px;
    background-size: cover;
    min-height: 70vh;
    padding: 40px 10px;
  }
}

/* ==================================================== Contact Us Page Start ================================================================== */
.contact-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("../image/bg/contactUsBg.png") no-repeat center 50px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 40px;
  overflow: hidden;
  z-index: 1;
}

.contact-hero h1 {
  margin-top: 150px;
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #00f2d5;
}

/* ===================== Contact section start ====================== */
.contact-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  z-index: 3;
}

.contact-title {
  color: #00baae;
  font-size: 64px;
  font-weight: 500;
  line-height: 70px;
}

.contact-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
  flex-wrap: nowrap;
}

.contact-card-holder {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.contact-card {
  background: rgba(0, 255, 200, 0.05);
  text-align: start;
  border: 1px solid rgba(0, 255, 200, 0.2);
  border-radius: 12px;
  padding: 10px 20px;
  width: 230px;
  /* Fixed width ensures consistency */
  color: #fff;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
}

.contact-icon img {
  height: 80px;
  width: 80px;
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 600;
  color: white;
}

.contact-card p {
  margin: 0;
  color: white;
  font-size: 12px;
  font-weight: 600;
}

.contact-card a {
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  color: #00e5c0;
  font-weight: 600;
  font-size: 12px;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* ===================== Contact Us Form ====================== */
.contact-us-container {
  width: 80%;
  margin: 0 auto;
  padding: 40px;
  border: 2px solid #42c4bc;
  border-radius: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.contact-us-container .contact-left {
  flex: 1;
  padding: 50px;
}

.contact-us-container .contact-left h1 {
  font-size: 64px;
  color: #00baae;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 20px;
  font-weight: 400;
}

.contact-us-container .contact-left p {
  font-size: 14px;
  line-height: 20px;
  color: #ccc;
}

.contact-us-container .contact-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}

.contact-us-container .contact-right label {
  color: white;
  margin-bottom: 8px;
  font-size: 20px;
}

.contact-us-container .input-wrapper {
  padding: 1px;
  background: linear-gradient(to bottom, #02191b, #3a5e60);
  border-radius: 8px;
  margin-bottom: 30px;
}

.contact-us-container .input-wrapper input {
  width: 100%;
  padding: 15px;
  background: linear-gradient(to bottom, #061113, #002123);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  outline: none;
}

.contact-right .input-wrapper input::placeholder {
  color: #999;
}

.contact-us-container .contact-right button {
  padding: 12px 36px;
  width: fit-content;
  background-color: #00baae;
  border: none;
  border-radius: 6px;
  font-size: 20px;
  color: white;
  font-weight: 400;
  cursor: pointer;
  transition: 0.3s;
}

.contact-us-container .contact-right button:hover {
  background-color: #32686b;
}

/* ====================== Project Idea =====================  */
.project-idea {
  max-width: 85%;
  margin: 40px auto;
  padding: 10px;
  background-color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.project-idea-form h1 {
  text-align: center;
  font-size: 40px;
  color: white;
  font-weight: 500;
  line-height: 70px;
}

.project-idea-form h1 span {
  font-size: 96px;
  color: #4cc2c9;
}

.project-left {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.project-left img {
  height: 100%;
  width: 100%;
}

.project-experience {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background-color: #00beb1;
  width: fit-content;
  padding: 10px 30px;
  margin-top: -50px;
}

.project-experience img {
  height: 70px;
  width: auto;
}

.year-of-experience {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: self-start;
}

.year-of-experience h1 {
  font-size: 48px;
  line-height: 60px;
}

.year-of-experience h3 {
  font-size: 20px;
  color: white;
  line-height: 20px;
  font-weight: 600;
}

.year-of-experience h3 span {
  font-size: 12px;
  font-weight: 400;
}

.project-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}

.project-right .input-wrapper {
  padding: 1px;
  background: linear-gradient(to bottom, #02191b, #3a5e60);
  border-radius: 8px;
  margin-bottom: 30px;
}

.project-right .input-wrapper input {
  width: 100%;
  padding: 15px;
  background: linear-gradient(to bottom, #061113, #002123);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  outline: none;
}

.project-right .input-wrapper input::placeholder {
  color: #999;
}

.project-right label {
  color: white;
  margin-bottom: 10px;
  font-size: 20px;
}

.message-container {
  color: white;
  margin-bottom: 1rem;
}

.message-container label {
  color: white;
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.project-idea textarea {
  width: 100%;
  height: 140px;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  background: linear-gradient(to bottom, #051011, #021b1d);
  box-sizing: border-box;
  padding: 10px;
  color: white;
  resize: none;
  font-size: 20px;
}

.project-button-container {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.project-button {
  background-color: #00baae;
  padding: 10px 30px;
  border-radius: 8px;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
}

/* 
textarea::placeholder {
  color: #cccccc; 
} */
.our-location h1 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 20px;
}

.map-container {
  width: 100%;
  margin: 0 auto;
  /* Center it */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 60px;
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
  .contact-cards {
    gap: 30px;
  }

  .contact-us-container .contact-left {
    padding: 40px;
  }
}

@media (max-width: 992px) {
  .contact-hero {
    min-height: 1200px;
  }

  .contact-cards {
    flex-direction: column;
  }

  .contact-us-container .contact-left {
    padding: 40px;
  }

  .project-idea {
    flex-direction: column;
    max-width: none;
    width: 90%;
  }

  .project-left {
    width: 70%;
    justify-content: center;
  }

  .project-right {
    width: 70%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 50px;
  }

  .contact-hero h1 span {
    font-size: 2rem;
  }

  .project-left {
    width: 100%;
  }

  .project-right {
    width: 100%;
  }

  .contact-title {
    font-size: 50px;
    line-height: 48px;
  }

  .contact-card {
    border-radius: 10px;
    padding: 10px;
    width: 160px;
  }

  .contact-hero .subtitle {
    font-size: 14px;
    padding-top: 8px;
  }

  .contact-us-container {
    gap: 30px;
  }

  .contact-us-container .contact-left {
    padding: 0;
  }

  .contact-us-container .contact-left h1 {
    font-size: 50px;
  }

  .project-idea-form h1 {
    font-size: 32px;
    line-height: 50px;
  }

  .project-idea-form h1 span {
    font-size: 50px;
  }
}

@media (max-width: 576px) {
  .contact-card {
    border-radius: 10px;
    padding: 5px;
    width: 140px;
  }

  .contact-icon img {
    height: 50px;
    width: 50px;
  }

  .contact-card h3 {
    font-size: 14px;
  }

  .contact-card p {
    font-size: 10px;
  }

  .contact-card-holder {
    gap: 10px;
  }

  .contact-us-container {
    width: 95%;
    padding: 30px;
  }

  .map-container iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 40px 10px;
    min-height: 70vh;
    z-index: 1;
    background-position: center 80px;
  }

  .contact-overlay {
    margin-top: -220px;
  }

  .contact-section {
    margin-top: 150px;
    padding: 0;
    width: 100%;
  }

  .contact-card {
    width: 100%;
    padding: 10px;
    display: flex;
    gap: 20px;
    background: linear-gradient(to bottom, #000000, #022e32);
  }

  .contact-title {
    font-size: 24px;
    line-height: 30px;
  }

  .contact-icon img {
    height: 70px;
    width: 70px;
  }

  .contact-card h3 {
    font-size: 14px;
  }

  .contact-card a {
    margin-top: 5px;
  }

  .contact-card p {
    font-size: 10px;
  }

  .contact-card-holder {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: 90%;
  }

  .contact-us-container {
    width: 95%;
    padding: 20px;
    border: none;
  }

  .contact-us-container .contact-left p {
    font-size: 12px;
  }

  .contact-us-container .contact-right label {
    font-size: 16px;
  }

  .contact-us-container .input-wrapper input {
    padding: 10px;
    font-size: 16px;
  }

  .contact-us-container .contact-left {
    text-align: center;
  }

  .contact-us-container .contact-left h1 {
    font-size: 24px;
    font-weight: 600;
  }

  .contact-us-container .contact-right button {
    padding: 10px 50px;
    font-size: 18px;
    font-weight: 400;
    margin: 0 auto;
  }

  .our-location h1 {
    display: none;
  }

  .map-container iframe {
    height: 250px;
    padding: 10px;
  }

  .project-idea {
    max-width: 95%;
  }

  .project-idea-form h1 span {
    font-size: 40px;
  }

  .project-idea-form h1 {
    font-size: 24px;
    line-height: 36px;
  }

  .project-experience {
    gap: 20px;
    width: 70%;
    padding: 10px 10px;
    border-radius: 10px;
    margin-top: -40px;
  }

  .project-experience img {
    height: 50px;
    width: auto;
  }

  .year-of-experience h1 {
    font-size: 20px;
    line-height: 20px;
  }

  .year-of-experience h3 {
    font-size: 16px;
    line-height: 20px;
  }

  .project-right label {
    font-size: 16px;
  }

  .project-right .input-wrapper input {
    padding: 10px;
    font-size: 16px;
  }

  .project-idea textarea {
    font-size: 16px;
  }
}

/* ====================== Contact Us Page End =====================  */

/* ==================================================== Product Update Page Start ====================================================  */

.product-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("../image/bg/product.png") no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 40px;
  overflow: hidden;
  z-index: 1;
}

.latest-release {
  padding: 30px 120px;
}

.latest-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  flex-wrap: wrap;
}

.latest-grid-img,
.latest-heading {
  flex: 1;
  min-width: 300px;
}

.latest-grid-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.latest-heading {
  color: white;
}

.latest-heading h5 {
  font-size: 24px;
  font-style: italic;
  margin-bottom: 60px;
}

.latest-heading h1 {
  font-size: 48px;
  font-weight: 500;
  line-height: 50px;
  margin-bottom: 60px;
}

.smart-dashboard h1 {
  color: #7765f5;
}

.targeted-campaign h1 {
  color: #6fd1e7;
}

.enhanced-security h1 {
  color: #24edc5;
}

.latest-heading h6 {
  font-size: 14px;
  font-weight: 500;
  width: 85%;
}

.coming-soon {
  padding: 0 0 50px 120px;
  overflow-x: auto;
}

.coming-heading h1 {
  font-size: 64px;
  color: #00baae;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: start;
}

.coming-soon-container {
  display: flex;
  gap: 50px;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
}

/* Default cards */
.coming-soon-tech {
  width: 45%;
  transition: transform 0.4s ease;
}

.image-wrapper {
  position: relative;
  width: 100%;
}

.image-wrapper img {
  width: 100%;
  height: 400px;
  display: block;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.coming-soon-tech.zoomed img {
  transform: scale(1);
}

.coming-soon-tech.zoomed:hover img {
  transform: scale(1.15);
  cursor: pointer;
}

.img-top-text,
.img-bottom-text {
  position: absolute;
  width: 80%;
  text-align: center;
  padding: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.img-top-text {
  top: 0;
  font-size: 32px;
  font-weight: 600;
}

.img-bottom-text {
  bottom: 0;
  font-size: 18px;
  font-weight: 400;
}

/*-- Responsive Section -- */
@media (max-width: 992px) {
  .product-hero {
    min-height: 1200px;
  }

  .latest-release {
    padding: 20px;
  }

  .latest-heading h1 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 20px;
  }

  .latest-heading h5 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .coming-soon {
    padding: 50px;
    overflow-x: auto;
  }

  .image-wrapper img {
    width: 100%;
    height: 350px;
  }
}

/* 🔽 Responsive Media Query */
@media (max-width: 768px) {
  .product-update-heading {
    padding: 0 20px;
  }

  .product-hero h1 {
    margin-top: 150px;
    font-size: 50px;
    margin-bottom: 20px;
  }

  .product-hero-shadow-overlay {
    background: none;
    background: linear-gradient(to top, rgb(0, 0, 0), transparent 40%);
  }

  .best-release {
    flex-direction: column-reverse;
  }

  .latest-release {
    padding: 20px;
  }

  .latest-heading h1 {
    font-size: 32px;
    line-height: 38px;
  }

  .latest-heading h5 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .latest-heading h6 {
    width: 100%;
  }

  .coming-soon-container {
    gap: 30px;
  }

  .coming-soon {
    padding: 50px 20px;
    overflow-x: auto;
  }

  .image-wrapper img {
    width: 100%;
    height: 250px;
  }

  .img-top-text {
    font-size: 20px;
    line-height: 20px;
    padding: 10px 0;
  }

  .img-bottom-text {
    font-size: 16px;
    line-height: 14px;
    padding: 10px 0;
  }

  .coming-heading h1 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .product-hero {
    background-size: auto;
    background-repeat: no-repeat;
    background-position: top center;
    padding: 40px 10px;
    min-height: 70vh;
  }

  .product-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .product-line {
    height: 0.2px;
    margin: 0px;
  }

  .product-subtitle {
    font-size: 16px;
    margin-top: 20px;
  }

  .coming-heading h1 {
    font-size: 36px;
  }

  .coming-soon-container {
    gap: 20px;
    justify-content: center;
  }

  .coming-soon {
    padding: 40px 10px;
  }

  .image-wrapper img {
    width: 100%;
    height: 180px;
  }

  .img-top-text {
    font-size: 14px;
    line-height: 14px;
    padding: 5px 0;
  }

  .img-bottom-text {
    font-size: 10px;
    line-height: 12px;
    padding: 5px 0;
  }

  .latest-grid {
    padding: 20px 0;
  }

  .latest-release {
    padding: 20px;
  }

  .latest-heading h1 {
    font-size: 24px;
    line-height: 30px;
  }

  .latest-heading h5 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .latest-heading h6 {
    width: 100%;
    font-size: 12px;
  }

  .coming-soon-container {
    gap: 30px;
    flex-direction: column;
  }

  .coming-soon {
    padding: 50px 20px;
    overflow-x: auto;
  }

  .coming-soon-tech {
    width: 90%;
  }

  .image-wrapper img {
    width: 100%;
    height: 250px;
  }

  .img-top-text {
    font-size: 16px;
    line-height: 20px;
    padding: 10px 0;
  }

  .img-bottom-text {
    font-size: 12px;
    line-height: 14px;
    padding: 10px 0;
  }

  .coming-heading h1 {
    font-size: 24px;
  }
}

/* ==================================================== Product Update Page End ====================================================  */

/* =================================== High-Tech Industry Page Start ==========================================  */

.high-tech-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("../image/bg/high-tech-bg.png") no-repeat center 50px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  overflow: hidden;
  z-index: 1;
  opacity: 0.85;
}

.high-tech-hero .career-heading {
  width: min(1200px, calc(100% - 80px));
  padding: 0;
}

.high-tech-heading {
  width: min(1200px, 100%);
  padding: 0;
}

.high-tech-hero h1 {
  margin-top: 150px;
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #00f2d5;
}

.high-tech-subtitle {
  color: white;
  font-size: 20px;
  margin-top: 20px;
}

.high-tech-line {
  border: none;
  height: 0.2px;
  background-color: #00f2e2;
  width: 100%;
  margin: 20px 0;
}

.high-tech-hero-shadow-overlay {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgb(0, 0, 0), transparent 10%),
    linear-gradient(to bottom, rgb(0, 0, 0), transparent 10%),
    linear-gradient(to left, rgb(0, 0, 0), transparent 10%),
    linear-gradient(to right, rgb(0, 0, 0), transparent 10%);
}

.lending-speed {
  width: min(1200px, calc(100% - 40px));
  text-align: center;
  color: white;
  margin: 50px auto;
}

.lending-speed h1 {
  font-size: 64px;
  color: #00baae;
  font-weight: 500;
}

.lending-speed-line {
  border: none;
  height: 0.2px;
  background-color: #00f2e2;
  width: 90%;
  margin: 20px auto;
}

.lending-speed p {
  margin: 0 auto;
  width: min(900px, 100%);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

@media (max-width: 768px) {
  .high-tech-hero .career-heading {
    width: 100%;
  }
}

/* -----  */
.staying-ahead-section {
  margin: 50px auto;
  text-align: start;
  color: white;
  width: 85%;
}

.staying-ahead {
  width: 90%;
  margin-left: 50px;
}

.staying-ahead h2 {
  font-size: 36px;
  font-weight: 500;
}

.solv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.solv-section {
  display: flex;
  color: white;
  padding: 60px 10px;
  gap: 30px;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
}

.solv-left-column {
  flex: 5;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.solv-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 50px;
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid transparent;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}

.solv-item:hover {
  border: 1px solid rgba(0, 242, 213, 0.5);
  background: linear-gradient(to bottom,
      rgba(23, 7, 37, 0.5),
      rgba(26, 18, 84, 0.5));
}

.solv-item.solv-active {
  border: 1px solid #00f2d5;
  background: linear-gradient(to bottom, #170725, #1a1254);
}

.solv-item.solv-active .solv-bar {
  content: "";
  width: 8px;
  height: 70%;
  position: absolute;
  left: 15px;
  top: 15px;
  border-radius: 10px;
}

.solv-bar {
  width: 10px;
  height: 100%;
}

.solv-number {
  font-size: 64px;
  font-weight: 500;
}

.solv-divider {
  border: none;
  height: 0.2px;
  background-color: #00f2e2;
  width: 90%;
  margin: 0 auto;
}

.solv-item p {
  margin: 0;
  font-size: 20px;
  flex-grow: 1;
  transition: color 0.3s ease;
}

/* Simple Arrow styling */
.solv-arrow {
  position: absolute;
  right: -27px;
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  width: 20px;
  /* You can adjust this width */
  height: 20px;
}

.solv-item.solv-active .solv-arrow {
  opacity: 1;
}

/* Simple arrow using CSS */
.solv-arrow-icon {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid currentColor;
  /* Uses the color of the parent */
}

.solv-right-column {
  flex: 6;
  border: 1px solid #00f2d5;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: stretch;
  min-height: 400px;
}

.solv-content-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.solv-content-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.solv-content-box.solv-active {
  opacity: 1;
  visibility: visible;
}

.solv-content-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
}

.solv-content-header {
  position: absolute;
  top: 30px;
  left: 50px;
  right: 100px;
  z-index: 2;
}

.solv-content-header h2 {
  font-size: 48px;
  margin-bottom: 10px;
}

.solv-content-header h4 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: normal;
}

.solv-content-caption {
  position: absolute;
  left: 50px;
  right: 100px;
  bottom: 100px;
  z-index: 2;
}

/* Colors */
.solv-purple {
  color: #8e0cff;
}

.solv-purple-bg {
  background-color: #8e0cff;
  height: 0;
}

.solv-green {
  color: #00c265;
}

.solv-green-bg {
  background-color: #00c265;
  height: 0;
}

.solv-red {
  color: #e2062e;
}

.solv-red-bg {
  background-color: #e2062e;
  height: 0;
}

.solv-blue {
  color: #0069ff;
}

.solv-blue-bg {
  background-color: #0069ff;
  height: 0;
}

.solv-orange {
  color: #ffa201;
}

.solv-orange-bg {
  background-color: #ffa201;
  height: 0;
}

.solv-mobile-content {
  display: none;
}

/* Mobile styles */
@media (max-width: 992px) {
  .high-tech-hero {
    min-height: 1200px;
  }

  .staying-ahead-section {
    width: 95%;
  }

  .solv-container {
    padding: 0;
  }

  .solv-left-column {
    gap: 15px;
  }

  .solv-item {
    padding: 10px 30px;
    gap: 10px;
  }

  .solv-number {
    font-size: 40px;
    font-weight: 500;
  }

  .solv-item p {
    font-size: 18px;
  }

  .solv-content-header {
    top: 10px;
    left: 40px;
    right: 40px;
  }

  .solv-content-header h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .solv-content-header h4 {
    font-size: 20px;
  }

  .solv-content-caption {
    left: 40px;
    right: 40px;
    bottom: 70px;
  }

  .solv-content-caption p {
    font-size: 16px;
  }
}

/* ------  */
.in-focus {
  width: 80%;
  margin: 0 auto 50px;
  color: white;
}

.in-focus-heading h1 {
  font-size: 64px;
  color: #00baae;
  font-weight: 500;
}

.in-focus-heading h5 {
  font-size: 20px;
  width: 50%;
  font-weight: 400;
}

.in-focus-heading .focus-sub-heading {
  font-size: 32px;
  text-align: center;
  margin: 0 auto 80px auto;
  width: 90%;
}

/* --  */
.high-tech-service-card {
  overflow: hidden;
  width: 280px;
  height: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative;
}

.high-tech-service-card-section {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 20px;
  padding: 40px 2px;
}

/* Gradient border effect using pseudo-element */
.high-tech-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(to bottom, var(--border-color), #2be8f9);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

.high-tech-service-card-1::after {
  --border-color: #7cf95d;
}

.high-tech-service-card-2::after {
  --border-color: #ffa100;
}

.high-tech-service-card-3::after {
  --border-color: #7206b8;
}

.high-tech-service-card-4::after {
  --border-color: #7cf95d;
}

.high-tech-service-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.high-tech-service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.high-tech-service-image-wrapper h3 {
  position: absolute;
  top: 15px;
  right: 15px;
  left: 15px;
  margin: 0;
  font-size: 24px;
  color: #fff;
  z-index: 2;
}

.high-tech-service-image-wrapper p {
  position: absolute;
  bottom: 15px;
  right: 15px;
  left: 15px;
  margin: 0;
  font-size: 16px;
  color: #fff;
  z-index: 2;
}

.high-tech-carousel-container {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.high-tech-carousel-container.auto-slide .high-tech-service-card-section {
  width: max-content;
  animation: highTechAutoScroll 40s linear infinite;
}

.high-tech-carousel-container.auto-slide .high-tech-service-card-section:hover {
  animation-play-state: paused;
}

@keyframes highTechAutoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Optional dark overlay for readability */
.high-tech-service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 242, 213, 0.3);
}

/*-- Responsive Section -- */
@media (max-width: 992px) {
  .high-tech-service-card-section {
    gap: 10px;
    flex-wrap: wrap;
  }

  .high-tech-service-card {
    width: 47%;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .lending-speed h1 {
    font-size: 32px;
    line-height: 38px;
  }

  .lending-speed {
    width: 90%;
  }

  .lending-speed p {
    width: 85%;
    font-size: 16px;
    line-height: 22px;
  }

  .staying-ahead-section {
    width: 95%;
  }

  .staying-ahead {
    width: 100%;
    text-align: center;
    margin-left: 0px;
  }

  .staying-ahead h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .solv-section {
    flex-direction: column;
  }

  .solv-left-column {
    width: 100%;
  }

  .solv-item p {
    font-size: 20px;
  }

  .solv-right-column {
    display: none;
  }

  .solv-mobile-wrapper {
    display: block;
  }

  .solv-item {
    padding: 10px 30px;
    gap: 10px;
  }

  .solv-number {
    font-size: 48px;
  }

  .solv-arrow {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .solv-mobile-wrapper {
    display: block;
    width: 100%;
  }

  .solv-mobile-content {
    display: none;
    margin-top: 10px;
    margin-bottom: 20px;
    border: 1px solid #00f2d5;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    position: relative;
    min-height: 300px;
  }

  .solv-mobile-content.solv-active {
    display: block;
    width: 95%;
    margin: 10px auto;
  }

  .solv-mobile-content img {
    width: 100%;
    height: 450px;
    object-fit: cover;
  }

  .solv-content-header {
    left: 20px;
    right: 20px;
    top: 20px;
  }

  .solv-content-header h2 {
    font-size: 32px;
  }

  .solv-content-header h4 {
    font-size: 18px;
  }

  .solv-content-caption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .in-focus {
    width: 90%;
  }

  .in-focus-heading h1 {
    font-size: 32px;
    line-height: 40px;
  }

  .in-focus-heading h5 {
    font-size: 16px;
    width: 70%;
  }

  .high-tech-service-image-wrapper h3 {
    top: 10px;
    left: 10px;
    right: 5px;
    font-size: 20px;
  }

  .high-tech-service-image-wrapper p {
    bottom: 10px;
    left: 10px;
    font-size: 14px;
  }

  .in-focus-heading .focus-sub-heading {
    font-size: 24px;
    text-align: center;
    line-height: 30px;
    margin-bottom: 30px;
    width: 100%;
  }
}

@media (max-width: 567px) {
  .high-tech-hero {
    padding: 20px;
  }

  .staying-ahead-section {
    margin: 30px auto;
  }

  .our-solution-section {
    flex-direction: column;
  }

  .solv-mobile-content img {
    height: 400px;
  }

  .high-tech-service-card-section {
    gap: 10px;
    flex-wrap: wrap;
  }

  .high-tech-service-card {
    width: 47%;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .high-tech-hero {
    padding: 40px 10px;
    background-position: -540px 80px;
    min-height: 70vh;
  }

  .staying-ahead-section {
    margin: 30px auto;
  }

  .lending-speed {
    position: relative;
    width: 95%;
    margin: -70px auto 80px;
    z-index: 2;
  }

  .lending-speed-line {
    margin: 16px auto;
  }

  .lending-speed h1 {
    font-size: 24px;
    line-height: 30px;
  }

  .lending-speed p {
    width: 100%;
    font-size: 12px;
    line-height: 17px;
  }

  .solv-section {
    padding: 30px 0px;
  }

  .solv-item.solv-active .solv-bar {
    left: 8px;
    top: 10px;
  }

  .solv-item {
    padding: 10px 20px;
  }

  .solv-number {
    font-size: 32px;
  }

  .solv-item p {
    font-size: 14px;
  }

  .solv-arrow-icon {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid currentColor;
  }

  .solv-content-header h2 {
    font-size: 24px;
  }

  .solv-content-header h4 {
    font-size: 16px;
  }

  .solv-content-caption p {
    font-size: 12px;
  }

  .solv-mobile-content img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .in-focus {
    width: 95%;
  }

  .in-focus-heading h1 {
    font-size: 24px;
    line-height: 30px;
  }

  .high-tech-line {
    margin: 10px 0;
  }

  .in-focus-heading h5 {
    font-size: 12px;
    width: 100%;
  }

  .high-tech-service-card-section {
    gap: 10px;
    flex-wrap: wrap;
  }

  .high-tech-service-card {
    width: 47%;
    height: 200px;
  }

  .in-focus-heading .focus-sub-heading {
    font-size: 14px;
    line-height: 20px;
  }
}

/* ======================================= career Section Start ==================================================== */
.career-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("../image/bg/carrer.png") no-repeat center 50px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 40px;
  overflow: hidden;
  z-index: 1;
}

.career-heading h1 {
  margin-top: 150px;
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #00f2d5;
  line-height: 70px;
}

.career-hero-shadow-overlay {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgb(0, 0, 0), transparent 10%),
    linear-gradient(to bottom, rgb(0, 0, 0), transparent 50%),
    linear-gradient(to left, rgb(0, 0, 0), transparent 10%),
    linear-gradient(to right, rgb(0, 0, 0), transparent 10%);
}

.career-heading {
  width: 75%;
  padding: 0 100px;
}

.career-subtitle {
  color: white;
  font-size: 20px;
  margin-top: 20px;
}

.career-line {
  border: none;
  height: 0.2px;
  background-color: #00f2e2;
  width: 100%;
  margin: 20px 0;
}

.build-career {
  width: 80%;
  text-align: center;
  color: white;
  margin: 40px auto;
}

.build-career h1 {
  font-size: 64px;
  color: #00baae;
  font-weight: 500;
  line-height: 80px;
}

.build-career p {
  margin: 0 auto;
  width: 80%;
  font-size: 20px;
  font-weight: 400;
}

/* ------  */
.career-search-container {
  background: linear-gradient(to bottom, #060808, #021b1b);
  border: 1px solid #145c52;
  border-radius: 16px;
  padding: 40px;
  max-width: 85%;
  margin: 10px auto;
}

.career-search-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

.career-input-wrapper {
  background-color: #022c2c;
  color: white;
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 8px;
  flex: 1;
  min-width: 200px;
}

.career-search-icon {
  display: flex;
  align-items: center;
  height: 100%;
  margin-right: 8px;
}

.career-input-wrapper,
.career-input-wrapper select,
.career-search-button {
  height: 50px;
  box-sizing: border-box;
}

.career-input-wrapper select {
  background: transparent;
  border: none;
  color: white;
  width: 100%;
  font-size: 16px;
  appearance: none;
  outline: none;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  line-height: 1.5;
}

.career-input-wrapper select option {
  padding: 10px;
  margin: 4px 0;
  background-color: #022c2c;
  color: white;
  border-radius: 4px;
  font-size: 16px;
  border: 4px solid white;
}

.career-input-wrapper {
  position: relative;
}

.career-input-wrapper::after {
  content: "▼";
  position: absolute;
  right: 16px;
  font-size: 12px;
  color: white;
  pointer-events: none;
}

.career-search-button {
  background-color: #0f8a7b;
  color: white;
  font-size: 20px;
  font-weight: 500;
  padding: 12px 60px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.career-search-button:hover {
  background-color: #0c6e62;
}

/* Base container */
.career-container {
  width: 80%;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Segoe UI", sans-serif;
  color: #fff;
  background-color: #000;
}

/* Header */
.career-title {
  font-size: 48px;
  color: #00baae;
  margin-bottom: 10px;
  font-weight: 500;
}

/* Breadcrumb and filter */
.career-subheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.career-breadcrumb {
  font-size: 16px;
  color: #ddd;
}

.career-breadcrumb span {
  color: #00baae;
}

.career-filter-btn {
  background-color: #333;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

/* Job Card */
.job-card {
  border: 1px solid #00baae;
  border-radius: 16px;
  padding: 30px;
  color: #fff;
  margin-bottom: 40px;
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #ddd;
}

.job-post-date {
  color: #eee;
}

.job-card-divider {
  border: none;
  border-top: 1px solid #00baae;
  margin: 16px 0;
}

.job-card-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.apply-btn {
  background-color: #00baae;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 36px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 50px;
  transition: background-color 0.2s ease;
}

.apply-btn:hover {
  background-color: #0f8a7b;
}

.positions-left {
  color: #ce651a;
  font-size: 14px;
  margin: 0;
}

.job-card-body-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.job-info-left {
  flex: 1;
  min-width: 250px;
}

.apply-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 200px;
}

.job-title {
  font-size: 48px;
  color: #00baae;
  margin-bottom: 10px;
  font-weight: 500;
}

.job-category {
  font-size: 24px;
  color: #e5e5e5;
  margin-bottom: 16px;
}

.job-tag {
  margin-top: 40px;
  background-color: #3f3d3d;
  color: #fafbfc;
  padding: 10px 36px;
  border-radius: 25px;
  font-size: 14px;
  display: inline-block;
}

/* --- career background colour --- */
/* .career-blue {
  background-color: #0069ff;
}
.career-yellow {
  background-color: #ffa201;
}
.career-green {
  background-color: #00c265;
}
.career-purple {
  background-color: #7765f5;
}
.career-blue-border {
  border: 1px solid #0069ff;
  background-color: #060f1b;
}
.career-yellow-border {
  border: 1px solid #ffa201;
  background-color: #131508;
}
.career-green-border {
  border: 1px solid #00c265;
  background-color: #081409;
}
.career-purple-border {
  border: 1px solid #7765f5;
  background-color: #151124;
}
.career-blue-color {
  color: #0069ff;
}
.career-yellow-color {
  color: #ffa201;
}
.career-green-color {
  color: #00c265;
}
.career-purple-color {
  color: #7765f5;
}
.career-blue-top-border {
  border-top: 1px solid #0069ff;
}
.career-yellow-top-border {
  border-top: 1px solid #ffa201;
}
.career-green-top-border {
  border-top: 1px solid #00c265;
}
.career-purple-top-border {
  border-top: 1px solid #7765f5;
} */
.career-more-result {
  display: flex;
  align-items: center;
  justify-content: end;
}

.career-more-result button {
  background-color: #00baaea8;
  padding: 20px 50px;
  font-size: 20px;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.career-more-result button:hover {
  background-color: #106f69a8;
}

/*-- Responsive Section -- */
@media (max-width: 992px) {
  .career-hero {
    min-height: 1200px;
  }

  .career-hero h1 {
    margin-top: 150px;
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #00f2d5;
  }

  .career-heading {
    padding: 0 60px;
  }

  .career-hero-shadow-overlay {
    background: linear-gradient(to bottom, rgb(0, 0, 0), transparent 10%),
      linear-gradient(to top, rgb(0, 0, 0), transparent 25%);
  }

  .build-career h1 {
    font-size: 50px;
    line-height: 60px;
  }

  .career-container {
    width: 90%;
    padding: 40px 10px;
  }

  .job-card {
    padding: 20px;
  }

  .job-title {
    font-size: 24px;
  }

  .job-category {
    font-size: 16px;
  }

  .job-tag {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .apply-section {
    min-width: 0;
  }

  .career-heading {
    padding: 0 20px;
    width: 100%;
  }

  .apply-btn {
    font-size: 16px;
    padding: 10px 20px;
  }

  .job-title {
    font-size: 20px;
  }

  .job-category {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .career-hero {
    min-height: 70vh;
    background: url("../image/bg/carrer.png") no-repeat -400px 80px;
    background-size: cover;
    padding: 40px 10px;
  }

  .career-heading {
    padding: 0 10px;
  }

  .career-hero-shadow-overlay {
    background: none;
    background: linear-gradient(to top, rgb(0, 0, 0), transparent 40%),
      linear-gradient(to bottom, rgb(0, 0, 0), transparent 40%);
  }

  .career-hero h1 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .career-subtitle {
    color: white;
    font-size: 12px;
    margin-top: 10px;
  }

  .career-line {
    height: 0.2px;
    margin: 0px;
  }

  .dev-apply-button {
    position: relative;
    font-size: 16px;
    padding: 10px 40px;
    margin-top: 30px;
    border-radius: 6px;
    z-index: 4;
    font-weight: 700;
  }

  .build-career {
    width: 95%;
    margin-top: -70px;
    position: relative;
    z-index: 2;
  }

  .build-career h1 {
    font-size: 24px;
    line-height: 30px;
  }

  .build-career p {
    width: 95%;
    font-size: 12px;
  }

  .career-search-container {
    padding: 20px;
    max-width: 95%;
  }

  .career-search-button {
    width: 100%;
  }

  .career-title {
    font-size: 24px;
  }

  .career-breadcrumb {
    font-size: 14px;
  }

  .career-filter-btn {
    padding: 10px 15px;
    font-size: 12px;
  }

  .career-container {
    width: 100%;
    padding: 40px 10px;
  }

  .job-card-body-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 5px;
  }

  .job-info-left {
    min-width: 200px;
  }

  .job-title {
    font-size: 18px;
  }

  .job-category {
    font-size: 12px;
  }

  .job-card {
    padding: 15px;
  }

  .apply-btn {
    font-size: 12px;
    padding: 8px 15px;
  }

  .job-card-header {
    font-size: 10px;
  }

  .positions-left {
    font-size: 10px;
  }

  .career-more-result {
    justify-content: center;
  }

  .career-more-result button {
    padding: 10px 30px;
    font-size: 18px;
  }
}

/* ====================================== Application Form Page Start Here ================================= */
.apply-form-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("../image/bg/carrer-application.png") no-repeat center 50px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 40px;
  overflow: hidden;
  z-index: 1;
}

/* --------Apply form-------  */

.apply-form-container {
  width: 75%;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid #aaa;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.apply-form-container .form-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

.apply-form-container .form-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.apply-form-container .input-group {
  flex: 1;
  min-width: 250px;
}

.apply-form-container .input-group label {
  display: block;
  color: white;
  margin-bottom: 8px;
  font-size: 20px;
}

.apply-form-container .input-wrapper {
  padding: 1px;
  background: linear-gradient(to bottom, #202727, #14686c);
  border-radius: 8px;
  margin-bottom: 10px;
}

.apply-form-container .input-wrapper input {
  width: 100%;
  padding: 15px;
  background: linear-gradient(to bottom, #061113, #002123);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 20px;
  outline: none;
}

.apply-form-container .input-wrapper input::placeholder {
  color: #999;
}

.upload-section {
  background-color: #000;
  padding: 40px 0;
  color: white;
}

.upload-container {
  display: flex;
  justify-content: space-around;
  align-items: start;
  flex-wrap: wrap;
  padding: 40px;
  border: 1px solid #aaa;
  border-radius: 10px;
  margin: 0 auto;
  width: 75%;
}

.upload-box {
  width: 45%;
  background-color: #0e1b25;
  border: 1px solid #4f6b87;
  border-radius: 10px;
  text-align: center;
  padding: 100px 20px;
  box-shadow: 5px 5px 15px #000;
  position: relative;
}

.upload-box input[type="file"] {
  display: none;
}

.upload-label {
  display: inline-block;
  background-color: #1d3c57;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.upload-box p {
  margin-top: 15px;
  font-size: 16px;
  color: #ccc;
}

.preview-box {
  width: 45%;
  height: 200px;
  background-color: #09436d;
  border-radius: 10px;
}

.submit-button {
  margin: 20px auto;
  text-align: right;
  width: 75%;
}

.submit-button button {
  padding: 20px 40px;
  font-size: 24px;
  background-color: #00baae;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.submit-button button:hover {
  background-color: #2b7974;
}

/*-- Responsive Section -- */
@media (max-width: 992px) {
  .apply-form-hero {
    min-height: 1200px;
  }
}

@media (max-width: 768px) {
  .apply-form-heading {
    padding: 0 20px;
  }

  .apply-form-hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
  }

  .apply-form-subtitle {
    font-size: 16px;
  }

  .apply-form-container {
    width: 85%;
    gap: 20px;
  }

  .career-heading h1 {
    font-size: 32px;
    line-height: 38px;
  }

  .career-subtitle {
    font-size: 16px;
    margin-top: 20px;
  }

  .upload-container {
    justify-content: space-between;
    width: 85%;
  }

  .upload-box {
    width: 50%;
    padding: 40px 20px;
  }

  .preview-box {
    height: 130px;
  }

  .submit-button {
    width: 85%;
  }

  .submit-button button {
    padding: 15px 30px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .apply-form-hero h1 {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 36px;
    margin-top: 150px;
    font-weight: 600;
  }

  .apply-form-heading {
    padding: 0 15px;
  }

  .apply-form-hero {
    min-height: 70vh;
    padding: 40px 10px;
    background: url("../image/bg/carrer-application.png") no-repeat center 0px;
  }

  .career-heading h1 {
    position: relative;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    z-index: 4;
    line-height: 28px;
  }

  .career-subtitle {
    font-size: 12px;
    margin-top: 10px;
  }

  .apply-form-hero-shadow-overlay {
    background: none;
    background: linear-gradient(to top, rgb(0, 0, 0), transparent 40%),
      linear-gradient(to bottom, rgb(0, 0, 0), transparent 40%);
  }

  .apply-form-container {
    width: 95%;
    gap: 10px;
    padding: 20px;
  }

  .apply-form-container .form-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .apply-form-container .input-group label {
    font-size: 16px;
  }

  .apply-form-container .input-wrapper input {
    padding: 10px;
    font-size: 16px;
  }

  .apply-form-container .form-row {
    gap: 10px;
  }

  .upload-container {
    width: 95%;
    padding: 0;
    flex-direction: column;
    gap: 20px;
    border: none;
  }

  .upload-box {
    padding: 20px;
    width: 100%;
    border: 1px solid #ffffff;
  }

  .preview-box {
    height: 120px;
    width: 100%;
  }

  .upload-label {
    font-size: 14px;
  }

  .upload-box p {
    font-size: 14px;
  }

  .submit-button {
    width: 95%;
    text-align: center;
  }

  .submit-button button {
    padding: 15px 30px;
    font-size: 16px;
  }
}

/* ================================== Experience center Start ================================ */
.experience-center-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("../image/bg/experience-center.png") no-repeat center 50px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 40px;
  overflow: hidden;
  z-index: 1;
}

.experience-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.roi-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6%;
  justify-content: space-between;
  align-items: stretch;
}

.roi-form-panel {
  padding: 30px;
  border-radius: 10px;
  width: 47%;
  min-width: 320px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.roi-result-panel-container {
  width: 47%;
}

.roi-result-panel {
  padding: 30px;
  border-radius: 10px;
  min-width: 320px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.roi-form-panel {
  padding: 30px 0;
}

.roi-form-group {
  margin-bottom: 22px;
}

.roi-form-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.roi-form-group select {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  background-color: #31004f94;
  color: #ffffff7d;
  border: 1px solid #a75cff;
  border-radius: 6px;
}

.roi-button {
  width: 100%;
  padding: 15px;
  border: none;
  background-color: #8e2df0;
  color: white;
  font-size: 24px;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Tiro Tamil";
  border: 1px solid #8e2df0;
}

.roi-button:hover {
  background-color: #000000;
  color: white;
}

.roi-result-panel {
  border: 1px solid #8e2df0;
  margin-top: 64px;
}

.roi-result-panel h2 {
  color: #8e0cff;
  margin: 0 0 20px 0;
  font-size: 36px;
  font-weight: 500;
}

.roi-result-item {
  margin-bottom: 25px;
  border-bottom: 1px solid #00f2e2;
  padding-bottom: 15px;
  font-size: 16px;
}

.roi-result-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.roi-result-item h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
}

.roi-inline {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 5px;
  font-size: 14px;
  color: #ccc;
}

.roi-inline img {
  height: 40px;
  width: 40px;
}

.roi-roi {
  color: #df2828;
}

.roi-uplift {
  color: #00c265;
}

.roi-timeline {
  color: #7765f5;
}

.roi-spend {
  color: #ffa100;
}

.roi-quote {
  color: #0768ff;
}

.roi-footer-buttons {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.roi-download-button {
  width: 100%;
  padding: 15px;
  background-color: transparent;
  border: 1px solid #8e2df0;
  color: white;
  font-size: 24px;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Tiro Tamil";
}

.roi-download-button:hover {
  background-color: #8e2df0;
}

/* ----  */
.solution-strategy-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-image: url("../image/bg/solution-strategy-bg.png");
  background-size: cover;
  background-position: center;
}

.solution-strategy-box {
  background-color: rgba(0, 126, 118, 0.66);
  width: 75%;
  margin: 0 auto;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  padding: 75px;
}

.solution-strategy-text {
  text-align: center;
}

.solution-strategy-message {
  color: white;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-family: "Inter";
}

/* ---  */
.know-your-user-section {
  text-align: start;
  color: #ffffff;
  width: 80%;
  margin: 40px auto;
}

.know-your-user-heading {
  text-align: start;
  width: 80%;
}

.know-your-user-heading h2 {
  font-weight: 500;
  font-size: 48px;
  color: #00baae;
}

.know-your-user-heading p {
  font-weight: 500;
  font-size: 20px;
}

/* ============== Experience Section Start ========== */
.experience-section {
  display: flex;
  flex-direction: column;
  color: white;
  padding: 90px 10px;
  gap: 30px;
  align-items: stretch;
  position: relative;
  padding-bottom: 0;
}

.experience-left-column {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.experience-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 50px;
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid transparent;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.experience-item:hover {
  border: 1px solid rgba(0, 242, 213, 0.5);
  background: linear-gradient(to bottom,
      rgba(23, 7, 37, 0.5),
      rgba(26, 18, 84, 0.5));
}

.experience-item.experience-active {
  border: 1px solid #00f2d5;
}

.experience-item.experience-active.experience-purple-active {
  background: linear-gradient(to bottom,
      rgba(142, 12, 255, 0.3),
      rgba(142, 12, 255, 0.05));
}

.experience-item.experience-active.experience-green-active {
  background: linear-gradient(to bottom,
      rgba(0, 194, 101, 0.3),
      rgba(0, 194, 101, 0.05));
}

.experience-item.experience-active.experience-red-active {
  background: linear-gradient(to bottom,
      rgba(226, 6, 46, 0.3),
      rgba(226, 6, 46, 0.05));
}

.experience-item.experience-active.experience-blue-active {
  background: linear-gradient(to bottom,
      rgba(0, 105, 255, 0.3),
      rgba(0, 105, 255, 0.05));
}

.experience-item.experience-active.experience-orange-active {
  background: linear-gradient(to bottom,
      rgba(255, 162, 1, 0.3),
      rgba(255, 162, 1, 0.05));
}

.experience-item.experience-active .experience-bar {
  content: "";
  width: 8px;
  height: 70%;
  position: absolute;
  left: 15px;
  top: 15px;
  border-radius: 10px;
}

.experience-bar {
  width: 10px;
  height: 0;
  position: absolute;
  left: 15px;
  top: 15px;
  border-radius: 10px;
  transition: height 0.3s ease;
}

.experience-number {
  font-size: 64px;
  font-weight: 500;
  margin-left: 20px;
}

.experience-divider {
  border: none;
  height: 0.2px;
  background-color: #00f2e2;
  width: 90%;
  margin: 15px auto;
}

.textarea-experience-divider {
  border: none;
  height: 0.2px;
  background-color: #00f2e2;
  width: 100%;
  margin: 15px auto;
}

.inside-experience-divider {
  border: none;
  height: 0.2px;
  background-color: #00f2e2;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.experience-item p {
  margin: 0;
  font-size: 32px;
  flex-grow: 1;
  transition: color 0.3s ease;
}

.experience-mobile-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  padding: 0;
  opacity: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.experience-mobile-content.experience-active {
  max-height: 500px;
  padding: 0;
  margin-bottom: 20px;
  opacity: 1;
}

.experience-content-inner {
  width: 90%;
}

.experience-content-header {
  position: relative;
}

.experience-content-body {
  margin-top: 15px;
  line-height: 1.6;
}

.experience-option-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.experience-option {
  background-color: transparent;
  border-radius: 5px;
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 0 0 calc(20% - -30px);
  max-width: calc(20% - -30px);
  text-align: center;
  box-sizing: border-box;
  border: 1px solid #af58fe;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .experience-option {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

.experience-option:hover {
  background: linear-gradient(to bottom, #8e0cff, #550799);
  transform: translateY(-2px);
}

.experience-option.selected {
  background: linear-gradient(to bottom, #8e0cff, #550799);
  border: 1px solid #af58fe;
}

.experience-option-green {
  border: 1px solid #2ac465;
}

.experience-option-green:hover {
  background: linear-gradient(to bottom, #2ac465, #045d26);
  transform: translateY(-2px);
}

.experience-option-green.selected {
  background: linear-gradient(to bottom, #2ac465, #045d26);
  border: 1px solid #2ac465;
}

.experience-option-red {
  border: 1px solid #df2828;
}

.experience-option-red:hover {
  background: linear-gradient(to bottom, #df2828, #ff5f60);
  transform: translateY(-2px);
}

.experience-option-red.selected {
  background: linear-gradient(to bottom, #df2828, #ff5f60);
  border: 1px solid #df2828;
}

.experience-option-blue {
  border: 1px solid #0069ff;
}

.experience-option-blue:hover {
  background: linear-gradient(to bottom, #0069ff, #0069ff);
  transform: translateY(-2px);
}

.experience-option-blue.selected {
  background: linear-gradient(to bottom, #0069ff, #0069ff);
  border: 1px solid #0069ff;
}

.experience-textarea-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.experience-textarea {
  width: 100%;
  min-height: 120px;
  background-color: transparent;
  border: 1px solid;
  border-image: linear-gradient(to bottom, #b657ff, #7765f5);
  border-image-slice: 1;
  border-radius: 8px;
  padding: 12px;
  color: white;
  font-family: inherit;
  resize: vertical;
  margin-top: 15px;
  font-size: 16px;
}

.experience-textarea:focus {
  outline: none;
  border-color: #00f2d5;
}

.persona-button-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.persona-button {
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 15px 100px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #6e00ce;
  font-family: "Tiro Tamil";
}

.persona-button:hover {
  background-color: #00d6bc;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 242, 213, 0.4);
}

.persona-button:active {
  transform: translateY(-1px);
}

.experience-purple {
  color: #8e0cff;
}

.experience-purple-bg {
  background-color: #8e0cff;
}

.experience-green {
  color: #00c265;
}

.experience-green-bg {
  background-color: #00c265;
}

.experience-red {
  color: #e2062e;
}

.experience-red-bg {
  background-color: #e2062e;
}

.experience-blue {
  color: #0069ff;
}

.experience-blue-bg {
  background-color: #0069ff;
}

.experience-orange {
  color: #ffa201;
}

.experience-orange-bg {
  background-color: #ffa201;
}

.hidden-section {
  display: none;
  padding: 2rem;
  background: #f0f0f0;
  border-top: 2px solid #ccc;
}

/* Optional: show with animation */
.visible-section {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.persona-card-heading-section {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.persona-card-heading-section h3 {
  font-size: 32px;
  color: #7765f5;
  font-style: italic;
  padding-bottom: 10px;
  border-bottom: 1px solid #7765f5;
  font-weight: 500;
  width: 45%;
}

.persona-card-heading-section button {
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  padding: 10px 30px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #6e00ce;
  font-family: "Tiro Tamil";
}

.persona-card-heading-section button:hover {
  background-color: #b969ff;
}

.persona-card-section {
  font-family: "Inter", sans-serif;
  overflow: hidden;
  width: 80%;
  padding: 30px;
  color: #ffffff;
  margin: 0 auto;
  border: 1px solid #ffffff4a;
  border-radius: 20px;
}

.persona-card-content {
  display: flex;
}

.persona-card-photo {
  width: 40%;
  padding-right: 24px;
}

.persona-card-photo-container {
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.persona-card-photo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 2px solid #68c6df;
  border-radius: 30px;
}

.persona-card-right-section {
  width: 70%;
  display: flex;
  flex-direction: column;
}

.persona-card-about-section {
  border-radius: 30px;
  padding: 20px;
  background-color: rgba(18, 18, 43, 0.7);
  margin-bottom: 24px;
  border: 2px solid #68c6df;
}

.persona-card-header {
  display: flex;
  margin-bottom: 20px;
  align-items: end;
}

.persona-card-bio-text {
  width: 60%;
}

.persona-card-bio-text h2 {
  margin-bottom: 0;
}

.persona-card-bio-text span.persona-card-about-label {
  color: #00f0fd;
  font-weight: 400;
  font-size: 20px;
}

.persona-card-bio-text span.persona-card-name-label {
  color: #00f0fd;
  font-weight: 400;
  font-size: 16px;
}

.persona-card-progress-meters {
  width: 40%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 0;
}

.persona-card-progress-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.persona-card-semi-circle {
  position: relative;
  width: 100px;
  height: 50px;
  overflow: hidden;
}

.persona-card-semi-circle-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border: 10px solid rgba(28, 177, 245, 0.2);
  border-radius: 50%;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
  box-sizing: border-box;
}

.persona-card-semi-circle-fill-95 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border: 10px solid transparent;
  border-radius: 50%;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
  box-sizing: border-box;
  border-top: 10px solid #00f0fd;
  border-left: 10px solid #00f0fd;
  border-right: 10px solid #00f0fd;
  transform: rotate(calc(180deg * 0.95 - 180deg));
}

.persona-card-semi-circle-fill-93 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border: 10px solid transparent;
  border-radius: 50%;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
  box-sizing: border-box;
  border-top: 10px solid #00f0fd;
  border-left: 10px solid #00f0fd;
  border-right: 10px solid #00f0fd;
  transform: rotate(calc(180deg * 0.93 - 180deg));
}

.persona-card-progress-value {
  font-size: 20px;
  font-weight: 400;
  margin-top: -30px;
}

.persona-card-progress-label {
  font-size: 12px;
}

.persona-card-bio-paragraph {
  font-size: 12px;
  line-height: 16px;
  margin-top: 4px;
}

.persona-card-persona-card-feature-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.persona-card-feature-box {
  background: rgba(18, 18, 43, 0.7);
  border-radius: 30px;
  border: 2px solid #68c6df;
  padding: 20px;
  height: 100%;
}

.persona-card-feature-box h3 {
  color: #00f0fd;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 16px;
}

.persona-card-feature-box ul {
  list-style-type: none;
}

.persona-card-feature-box li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 12px;
  gap: 10px;
}

/* -------------- Every Design Section start ------------ */
.hb-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 10px 50px 50px;
  color: #ffffff;
  font-family: "Inter";
}

.know-your-user-heading .Every-design-heading {
  color: #7765f5;
  font-size: 32px;
  font-weight: 600;
  font-style: italic;
  font-family: "Inter";
  padding-bottom: 20px;
  border-bottom: 1px solid #7765f5;
  margin-bottom: 20px;
}

.know-your-user-heading .Every-design-para {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  font-family: "Inter";
}

.hb-title {
  text-align: center;
  margin-bottom: 30px;
  color: #a78bfa;
}

.hb-scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 80px 0;
  scrollbar-width: thin;
  scrollbar-color: #a78bfa #0c0c0c;
}

.hb-scroll-container::-webkit-scrollbar {
  height: 6px;
}

.hb-scroll-container::-webkit-scrollbar-track {
  background: #0c0c0c;
  border-radius: 10px;
}

.hb-scroll-container::-webkit-scrollbar-thumb {
  background-color: #a78bfa;
  border-radius: 10px;
}

.hb-card {
  flex: 0 0 350px;
  border-radius: 10px;
  padding: 20px;
  background: transparent;
  position: relative;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
}

.hb-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #7765f5, #8e2df0);
  padding: 1px;
  border-radius: 10px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  z-index: 0;
}

.hb-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(119, 101, 245, 0.3);
}

.hb-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(12, 12, 12, 0.5),
      rgba(12, 12, 12, 0.9));
  z-index: 1;
}

.hb-card-1 {
  background-image: url("../image/bg/healthyberry.png");
}

.hb-card-2 {
  background-image: url("../image/bg/eduspark.png");
}

.hb-card-3 {
  background-image: url("../image/bg/propwise.png");
}

.hb-card-4 {
  background-image: url("../image/bg/localift.png");
}

.hb-card-5 {
  background-image: url("../image/bg/healthyberry.png");
}

.hb-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hb-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hb-logo-box {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(167, 139, 250, 0.5);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}

.hb-logo-box img {
  width: 35px;
  height: 35px;
  border-radius: 8px;
}

.hb-logo-text {
  font-size: 40px;
  font-weight: 500;
  color: #7765f5;
}

.hb-description {
  font-size: 20px;
  margin: 20px 0;
  line-height: 24px;
  flex-grow: 1;
}

.hb-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.hb-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
}

.hb-author-info {
  display: flex;
  flex-direction: column;
}

.hb-author-info strong {
  font-size: 14px;
}

.hb-author-info span {
  font-size: 12px;
  color: #ccc;
}

.our-design-speaks {
  width: 80%;
  margin: 0 auto;
}

.design-speaks {
  border: 1px solid #ffffff63;
  border-radius: 5px;
  padding: 60px 100px;
  text-align: center;
  background: linear-gradient(to bottom, #0c0315, #100d21);
  margin: 80px 0;
}

.design-speaks-heading {
  font-size: 32px;
  color: #7765f5;
  font-style: italic;
  font-weight: 600;
}

/* Responsive  */
@media (max-width: 1024px) {
  .roi-footer-buttons {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .experience-center-hero {
    min-height: 1200px;
  }

  .solution-strategy-section {
    min-height: 600px;
  }

  .know-your-user-section {
    width: 90%;
    margin: 40px auto;
  }

  .know-your-user-heading {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .experience-center-hero {
    padding: 40px 20px;
  }

  .know-your-user-heading h2 {
    font-size: 32px;
  }

  .know-your-user-heading p {
    font-size: 14px;
  }

  .roi-container {
    gap: 30px;
    justify-content: center;
  }

  .roi-form-panel {
    width: 80%;
  }

  .roi-form-group {
    margin-bottom: 20px;
  }

  .roi-footer-buttons {
    margin-top: 20px;
  }

  .roi-result-panel-container {
    width: 80%;
  }

  .roi-result-panel {
    margin-top: 0px;
  }

  .solution-strategy-section {
    min-height: auto;
    padding: 80px 0;
  }

  .solution-strategy-box {
    width: 75%;
    padding: 20px;
    border-radius: 0%;
  }

  .solution-strategy-message {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 0;
  }

  .experience-container {
    padding: 0;
    width: 95%;
  }

  .experience-section {
    padding: 20px 0;
  }

  .experience-number {
    font-size: 32px;
    margin-left: 0;
  }

  .experience-item {
    padding: 20px 30px;
    gap: 15px;
  }

  .experience-item p {
    font-size: 24px;
  }

  .experience-item.experience-active .experience-bar {
    width: 5px;
    height: 70%;
    top: 10px;
  }

  .experience-option {
    font-size: 16px;
    padding: 15px;
  }

  .know-your-user-heading .Every-design-heading {
    padding-bottom: 10px;
    border-bottom: 1px solid #7765f5;
    margin-bottom: 10px;
  }

  .know-your-user-heading .Every-design-para {
    font-size: 16px;
    line-height: 20px;
  }

  .hb-scroll-container {
    padding: 30px 0;
  }

  .hb-scroll-container {
    overflow-x: hidden;
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
    scrollbar-width: none;
    width: 60%;
    margin: 0 auto;
  }

  .hb-card {
    flex: 0 0 300px;
  }

  .hb-logo-text {
    font-size: 24px;
  }

  .hb-logo-box {
    width: 25px;
    height: 25px;
  }

  .hb-logo-box img {
    width: 25px;
    height: 25px;
    border-radius: 5px;
  }

  .hb-description {
    font-size: 16px;
    line-height: 20px;
  }

  .hb-author img {
    width: 25px;
    height: 25px;
    border: 1px solid white;
  }

  .our-design-speaks {
    width: 90%;
  }

  .design-speaks {
    padding: 30px;
    margin: 40px 0;
  }

  .design-speaks-heading {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .experience-center-hero {
    min-height: 70vh;
    background: url("../image/bg/experience-center.png") no-repeat center 80px;
    background-size: cover;
    padding: 40px 10px;
  }

  .know-your-user-section {
    position: relative;
    width: 95%;
    margin-top: -70px;
    z-index: 2;
  }

  .know-your-user-heading {
    width: 95%;
  }

  .know-your-user-heading h2 {
    font-size: 24px;
  }

  .know-your-user-heading p {
    font-size: 12px;
  }

  .roi-container {
    gap: 0px;
  }

  .roi-form-panel {
    width: 100%;
  }

  .roi-result-panel-container {
    width: 100%;
  }

  .roi-form-group label {
    font-size: 16px;
  }

  .roi-form-group select {
    font-size: 12px;
  }

  .roi-form-group {
    width: 90%;
    margin: 20px auto;
  }

  .roi-button {
    width: 90%;
    font-size: 20px;
    margin: 0 auto;
  }

  .roi-result-panel {
    padding: 25px;
    width: 90%;
    margin: 0 auto;
    margin-top: 30px;
  }

  .roi-result-panel h2 {
    font-size: 24px;
  }

  .roi-result-item h3 {
    font-size: 16px;
  }

  .roi-inline img {
    height: 30px;
    width: 30px;
  }

  .roi-download-button {
    width: 90%;
    font-size: 20px;
    margin: 0 auto;
  }

  .solution-strategy-section {
    min-height: auto;
    padding: 50px 0;
  }

  .solution-strategy-box {
    width: 75%;
    padding: 20px;
    border-radius: 0%;
  }

  .solution-strategy-message {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 0;
  }

  .experience-container {
    padding: 0;
    width: 95%;
  }

  .experience-section {
    padding: 20px 0;
  }

  .experience-number {
    font-size: 32px;
    margin-left: 0;
  }

  .experience-item {
    padding: 20px 30px;
    gap: 15px;
  }

  .experience-item p {
    font-size: 16px;
  }

  .experience-item.experience-active .experience-bar {
    width: 5px;
    height: 70%;
    top: 10px;
  }

  .experience-option {
    font-size: 12px;
    padding: 10px;
  }

  .persona-button-container {
    margin-top: 0;
  }

  .persona-button {
    padding: 20px;
    font-size: 20px;
    width: 90%;
  }

  .know-your-user-heading .Every-design-heading {
    font-size: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #7765f5;
    margin-bottom: 10px;
  }

  .know-your-user-heading .Every-design-para {
    font-size: 12px;
    line-height: 16px;
  }

  .hb-scroll-container {
    padding: 30px 0;
  }

  .hb-scroll-container {
    overflow-x: hidden;
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
    scrollbar-width: none;
    width: 90%;
    margin: 0 auto;
  }

  .hb-card {
    flex: 0 0 300px;
  }

  .hb-logo-text {
    font-size: 24px;
  }

  .hb-logo-box {
    width: 25px;
    height: 25px;
  }

  .hb-logo-box img {
    width: 25px;
    height: 25px;
    border-radius: 5px;
  }

  .hb-description {
    font-size: 16px;
    line-height: 20px;
  }

  .hb-author img {
    width: 25px;
    height: 25px;
    border: 1px solid white;
  }

  .our-design-speaks {
    width: 90%;
  }

  .design-speaks {
    padding: 30px;
    margin: 40px 0;
  }

  .design-speaks-heading {
    font-size: 16px;
  }
}

/* for demo  */
/* =========================== SOLUTION PAGE STYLING START =========================== */
/* ===================== WHO WE SERVE SECTION ===================== */
/* Background and Layout */
.info-block {
  background-color: #000;
  padding: 60px 20px;
  color: #fff;
}

/* Container Styling */
.content-wrapper {
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}

/* Heading */
.highlight-title {
  font-size: 64px;
  font-weight: 500;
  color: #00baae;
  /* margin-bottom: 1rem; */
  font: Exo 2;
}

/* Line Divider */
.line-accent {
  width: 947px;
  height: 2px;
  background-color: #00f2e2;
  border: 0.5px;
  margin: 0 auto 1.5rem auto;
}

/* Paragraph */
.text-details {
  font: inter;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #ffffff;
}

/* Highlighted words inside paragraph */
.text-details strong {
  color: #fff;
}

/* Responsive Adjustment */
@media (max-width: 600px) {
  .highlight-title {
    font-size: 1.6rem;
  }

  .text-details {
    font-size: 0.95rem;
  }

  .line-accent {
    width: 60px;
  }
}

/* ==================== CARD SECTION STYLING START ====================== */
.solutions-section {
  padding: 2rem;
  background-color: #000;
  /* Optional for contrast */
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.solution-card-wrapper {
  display: flex;
  justify-content: center;
}

.solution-card-box {
  position: relative;
  width: 100%;
  max-width: 370px;
  height: 370px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease;
}

.solution-card-box:hover {
  transform: scale(1.02);
}

/* Ribbon corner */
.solution-card-box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 3;
}

/* Ribbon colors */
.ribbon-tag-red::after {
  background: radial-gradient(circle, #dc1035 66%, #76091d);
}

.ribbon-tag-purple::after {
  background: radial-gradient(circle, #9100ca 66%, #2c0d41);
}

.ribbon-tag-green::after {
  background: radial-gradient(circle, #00ce4f 66%, #045d26);
}

.ribbon-tag-blue::after {
  background: radial-gradient(circle, #064baf 66%, #003478);
}

.ribbon-tag-gray::after {
  background: radial-gradient(circle, #c3c3c3 66%, #5c5c5c);
}

.ribbon-tag-pink::after {
  background: radial-gradient(circle, #ce009b 66%, #760676);
}

/* Card content */
.solution-card-body {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  /* background: rgba(0, 0, 0, 0.65); */
  /* backdrop-filter: blur(4px); */
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.solution-card-body h3 {
  margin: 0 0 1rem 0;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.solution-card-body p {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ccc;
  line-height: 1.5;
}

/* Heading Colors */
.heading-red {
  color: #dc1035;
}

.heading-purple {
  color: #9100ca;
}

.heading-green {
  color: #00ce4f;
}

.heading-blue {
  color: #064baf;
}

.heading-gray {
  color: #a0a0a0;
}

.heading-pink {
  color: #ff02b7;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .solution-card-box {
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

/* ===================== what we offer section styling start ====================== */
.what-we-offer {
  background-color: #000;
  color: #fff;
  padding: 2rem 1rem;
  text-align: left;
  left: 124px;
  gap: 34px;
}

.what-we-offer .container {
  width: 1018px;
  height: 216px;
  /* max-width: 800px; */
  /* margin: 0 auto; */
}

.what-we-offer h2 {
  font-size: 64px;
  font-weight: 500;
  color: #00baae;
  /* margin-bottom: 1rem; */
  font: Exo 2;
}

.what-we-offer hr {
  width: 947px;
  height: 2px;
  background-color: #00f2e2;
  border: 0.5px;
  margin: 0 auto 1.5rem auto;
}

.what-we-offer p {
  font: inter;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #ffffff;
  /* padding: 0 1rem; */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .what-we-offer h2 {
    font-size: 1.5rem;
  }

  .what-we-offer p {
    font-size: 0.95rem;
  }
}

/* ============== service card section styling start ==================== */
.service-cards {
  background: #000;
  padding: 4rem 1rem;
  color: #fff;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  /* padding: 40px 2px; */
  /* max-width: 1200px; */
  margin: 0 auto;
}

.card {
  position: relative;
  background-size: cover;
  background-position: center;
  width: 279px;
  height: 314px;
  /* padding-top: 15px;
  padding-right: 21px;
  padding-bottom: 10px;
  padding-left: 18px;  */
  /* border: 1px solid transparent; */
  border-radius: 5px;
  gap: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease;
  background-color: #111;
  border: 1px solid #00f2d5;
  /* overflow: hidden; */
  /* width: 100%;
  height: 300px; */

  cursor: pointer;
}

.card:hover {
  transform: translateY(-5px);
}

.overlay {
  /* background: rgba(0, 0, 0, 0.7); */
  padding: 1.2rem;
  width: 100%;
}

.card h3 {
  position: absolute;
  top: 15px;
  left: 15px;
  margin: 0;
  font-size: 24px;
  color: #fff;
  z-index: 2;
}

.card ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0;
  position: absolute;
  bottom: 15px;
  left: 15px;
  /* margin: 0; */
  font-size: 16px;
  color: #fff;
  z-index: 2;
}

.card ul li {
  font: inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

/* Colored Borders */
.border-cyan {
  border-color: #00b6b6;
}

.border-yellow {
  border-color: #ffc107;
}

.border-purple {
  border-color: #a426f5;
}

.border-green {
  border-color: #00c265;
}

/* Responsive */
@media (max-width: 768px) {
  .card {
    height: 280px;
  }
}

/* =============================  solution finder section styling start ============================= */

.multi-step-wrapper {
  max-width: 900px;
  margin: auto;
}

.step-section {
  margin-bottom: 30px;
  border-top: 0.5px solid #00f2e2;
}

.step-header-box {
  display: flex;
  align-items: center;
  padding: 16px 0;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
}

.step-id {
  margin-right: 10px;
  font-size: 2rem;
  font-weight: bold;
}

.step-options {
  margin-top: 15px;
  display: none;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.option-card {
  background: transparent;
  color: #fff;
  border: 1px solid;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.option-card:hover,
.option-card.active-option {
  background: currentColor;
  color: #000;
}

/* Step-based color styles */
.step-section[data-step="1"] .step-id,
.step-section[data-step="1"] .option-card {
  color: #8e0cff;
  border-color: #8e0cff;
}

.step-section[data-step="1"] .step-header-box.is-open {
  background: linear-gradient(to right, #1d0932, #1b0d3a);
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(160, 32, 240, 0.3);
}

.step-section[data-step="2"] .step-id,
.step-section[data-step="2"] .option-card {
  color: #00c265;
  border-color: #00c265;
}

.step-section[data-step="2"] .step-header-box.is-open {
  background: linear-gradient(to right, #032a10, #0d3b21);
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.step-section[data-step="3"] .step-id,
.step-section[data-step="3"] .option-card {
  color: #e2062e;
  border-color: #e2062e;
}

.step-section[data-step="3"] .step-header-box.is-open {
  background: linear-gradient(to right, #330505, #4a0c0c);
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(255, 75, 75, 0.3);
}

.step-section[data-step="4"] .step-id,
.step-section[data-step="4"] .option-card {
  color: #0069ff;
  border-color: #0069ff;
}

.step-section[data-step="4"] .step-header-box.is-open {
  background: linear-gradient(to right, #0a1e35, #0f2a4d);
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(51, 154, 255, 0.3);
}

@media (max-width: 600px) {
  .option-card {
    flex: 1 1 100%;
    text-align: center;
  }
}

/* ================= recomendation section styling start ================= */
.recommendation-section {
  background-color: #000;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
}

.section-title2 {
  font: inter;
  font-weight: 600;
  font-style: italic;
  color: #7765f5;
  font-style: italic;
  margin-bottom: 5px;
  font-size: 24px;
}

.line-accent3 {
  width: 601px;
  height: 2px;
  background-color: #7765f5;
  border: 0.5px;
  margin: 0 auto 1.5rem auto;
}

.card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.recommend-card {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 20px;
  background: linear-gradient(145deg, #1e1e2f, #120b1f);
  border: 1px solid #6c5ce7;
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  box-shadow: 0 0 12px rgba(108, 92, 231, 0.2);
  transition: transform 0.3s;
}

.recommend-card:hover {
  transform: translateY(-5px);
}

.recommend-card span {
  font-size: 0.85rem;
  display: block;
  color: #ccc;
  margin-top: 4px;
}

/* ============= roi section styling start =============== */
.roi-section {
  background: #000;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.roi-title {
  line-height: 44px;
  color: #00baae;
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 64px;
  font: Exo 2;
}

.roi-subtitle {
  font: inter;
  font-weight: 600;
  font-style: italic;
  color: #7765f5;
  font-style: italic;
  margin-bottom: 5px;
  font-size: 24px;
}

.line-accent2 {
  width: 947px;
  height: 2px;
  background-color: #00f2e2;
  border: 0.5px;
  margin: 0 auto 1.5rem auto;
}

.roi-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.roi-card {
  width: 272px;
  height: 197px;
  /* opacity: 70%; */
  background-size: cover;
  background-position: center;
  border: 1px solid #00ffe7;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 255, 231, 0.2);
  transition: transform 0.3s ease;
}

.roi-card:hover {
  transform: translateY(-5px);
}

.roi-overlay {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  height: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.roi-overlay h4 {
  font: inter;
  font-weight: 500;
  font-size: 36px;
  line-height: 28px;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 600;
  padding-bottom: 65px;
}

.roi-overlay p {
  font: inter;
  font-weight: 500;
  size: 20px;
  line-height: 28px;
}

/* =============================== Company Page Start ================================ */
.company-home-page-section {
  position: relative;
  background: url("../image/bg/company-bg.png") no-repeat center -30px;
  background-size: 150%;
  min-height: 100vh;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 40px;
  overflow: hidden;
  z-index: 1;
}

.company-stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #00f2e2;
  border-bottom: 1px solid #00f2e2;
  width: 85%;
  margin: 30px auto;
  color: #ffffff;
}

.company-stat-box {
  padding: 20px;
  border-right: 1px solid #00f2e2;
}

.company-stat-box:last-child {
  border-right: none;
}

.company-stat-title {
  color: #00baae;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 6px;
}

.company-stat-subtitle {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 10px;
}

/* --- hb-challenge Section --- */
.hb-challenge-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: url("../image/bg/the-challenge.png") no-repeat right center;
  background-size: cover;
  padding: 40px 60px;
  min-height: 100vh;
  height: 100%;
  width: 85%;
  margin: 0 auto;
  color: #ffffff;
}

.hb-challenge-text {
  flex: 1;
  min-width: 320px;
  max-width: 530px;
}

.hb-challenge-heading {
  color: #00baae;
  font-size: 48px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hb-underline {
  height: 2px;
  width: 100%;
  background-color: #00f2e2;
  margin-bottom: 20px;
}

.hb-challenge-text p {
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 8px;
}

.hb-challenge-text ul {
  padding-left: 20px;
}

.hb-challenge-text ul li {
  list-style-type: disc;
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 8px;
}

/* --- the-approach Section --- */
.the-approach-section {
  padding: 60px 0;
  background-color: #000;
  width: 85%;
  margin: 0 auto;
  color: #ffffff;
}

.the-approach-title {
  width: 65%;
}

.the-approach-heading {
  font-size: 48px;
  font-weight: 500;
  color: #00baae;
  padding-bottom: 20px;
  border-bottom: 1px solid #00baae;
  margin-bottom: 20px;
}

.the-approach-quote {
  font-size: 18px;
  color: #ccc;
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 1000px;
}

.the-approach-cards {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: nowrap;
}

.the-approach-card {
  border-radius: 10px;
  padding: 10px;
  transition: transform 0.3s ease;
  max-width: 32%;
}

.the-approach-card:hover {
  transform: translateY(-5px);
}

.the-approach-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  height: 400px;
}

.the-approach-step {
  color: #00baae;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 500;
}

.the-approach-underline {
  width: 90%;
  height: 0.2px;
  background-color: #00f2e2;
  margin-bottom: 12px;
}

.the-approach-desc {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
  color: #eee;
}

/* <!-------- Checkout Redesign ---------> */
.checkout-redesign {
  width: 85%;
  margin: 0 auto;
  color: #ffffff;
}

.checkout-redesign h2 {
  color: #7765f5;
  font-size: 32px;
  font-style: italic;
  padding: 10px 0;
  font-weight: 600;
  border-bottom: 0.2px solid #7765f5;
}

.checkout-redesign-para {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.checkout-redesign-para p {
  font-size: 16px;
  font-weight: 400;
}

.checkout-redesign-image {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 30px 0;
}

.checkout-redesign-image img {
  width: 100%;
  overflow: hidden;
}

/* <!------- Added Features UI section  --------> */
.added-features-section {
  width: 85%;
  margin: 0 auto;
  color: #ffffff;
}

.added-features-section h2 {
  color: #7765f5;
  font-size: 32px;
  font-style: italic;
  padding: 20px 0;
  font-weight: 600;
  border-bottom: 0.2px solid #7765f5;
}

.added-features-ui {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.added-features-ui .ir-faq {
  flex: 4;
  padding: 0;
}

.added-features-ui .ir-faq-line {
  border: none;
  height: 0.2px;
  background-color: rgb(255 255 255 / 59%);
  margin: 15px auto;
}

.added-features-ui .ir-faq-ans-line {
  border: none;
  height: 0.2px;
  background-color: rgb(255 255 255);
  margin: 35px auto;
}

.added-features-ui .ir-faq-item {
  position: relative;
}

.added-features-ui .ir-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  cursor: pointer;
  height: 30px;
}

.added-features-ui .ir-faq-text {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: #00baae;
}

.added-features-ui .ir-faq-question span {
  font-weight: 400;
  color: #ffffff;
  font-size: 20px;
  margin-left: 8px;
}

.added-features-ui .ir-faq-icon {
  width: 35px;
  height: 35px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  border-radius: 50%;
  padding: 10px;
  align-items: center;
  border: 1px solid #ffffff;
}

.added-features-ui .ir-faq-icon::before {
  content: "+";
  transition: transform 0.3s ease, color 0.3s ease;
  margin-top: -6px;
}

.added-features-ui .ir-faq-item.active .ir-faq-icon::before {
  content: "-";
  color: #00baae;
  margin-top: -6px;
}

.added-features-ui .ir-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), opacity 0.3s ease,
    padding 0.3s ease;
  font-size: 36px;
  color: #cfcfcf;
  padding: 0;
}

.added-features-ui .ir-faq-ans span {
  font-size: 16px;
  color: white;
}

.added-features-ui .ir-faq-ans {
  display: flex;
  gap: 10px;
  justify-content: start;
  align-items: center;
  color: #00baae;
}

.added-features-ui .ir-faq-item.active .ir-faq-answer {
  max-height: 1000px;
  opacity: 1;
  padding: 0 0 20px 0;
  transition: max-height 0.5s cubic-bezier(0.5, 0, 1, 0), opacity 0.3s ease,
    padding 0.3s ease;
}

.added-feature-image {
  flex: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.added-feature-image img {
  width: 100%;
  height: 100%;
}

/* --- the-impact Section --- */
.the-impact-section {
  width: 85%;
  margin: 80px auto;
  color: #ffffff;
}

.the-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.the-impact-box {
  text-align: left;
  border-right: 1px solid #00f2e2;
  padding: 0 36px;
}

.the-impact-box:last-child {
  border-right: none;
}

.the-impact-value {
  font-size: 60px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.the-impact-green {
  color: #2ac465;
}

.the-impact-purple {
  color: #8e0cff;
}

.the-impact-red {
  color: #e2062e;
}

.the-impact-blue {
  color: #0059d9;
}

.the-impact-yellow {
  color: #ffa100;
}

.the-impact-label {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
}

.the-impact-note {
  font-size: 12px;
  margin-top: 5px;
  color: #ffffff;
  font-weight: 400;
}

/* --- Open Comment Section --- */
.open-comment-container {
  display: flex;
  background-color: #00211f;
  border: 1px solid #066;
  border-radius: 8px;
  padding: 30px 50px;
  width: 85%;
  gap: 100px;
  margin: 100px auto;
  color: #ffffff;
}

.open-comment-left-section,
.open-comment-right-section {
  flex: 1;
}

.open-comment-left-section h2 {
  color: #00baae;
  margin: 0;
  font-size: 32px;
  font-weight: 500;
}

.open-comment-left-section hr {
  border: none;
  border-top: 1px solid #00f2e2;
  margin: 10px 0 20px;
}

.open-comment-container label {
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin: 10px 0;
}

.open-comment-container input,
.open-comment-container textarea {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #ffffff82;
  border-radius: 6px;
  background-color: #143c39;
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.open-comment-container textarea {
  resize: none;
}

.open-comment-container button {
  background-color: #00baae;
  color: #ffffff;
  border: none;
  padding: 12px 40px;
  font-size: 24px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  float: right;
}

.open-comment-container button:hover {
  background-color: #00bfb6;
}

.open-comment-right-section .open-comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.open-comment-right-section h2 {
  color: #00baae;
  margin: 0;
  font-size: 32px;
  font-weight: 500;
}

.open-comment-right-section hr {
  border: none;
  border-top: 1px solid #00f2e2;
  margin: 10px 0 20px;
}

.open-comments-pagination span {
  margin: 0 5px;
  color: #00d9d0;
  cursor: pointer;
  font-size: 20px;
}

.open-comments-section {
  font-size: 20px;
  line-height: 28px;
  color: #ddd;
  margin: 48px 0;
}

.open-comments-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.open-comments-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.open-comments-author h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
}

.open-comments-author span {
  font-size: 16px;
  color: #ffffff;
}

/* ----------- Responsive ------------ */
@media (max-width: 1124px) {
  .the-impact-grid {
    gap: 0;
  }

  .the-impact-box {
    padding: 0 20px;
  }
}

@media (max-width: 992px) {
  .company-home-page-section {
    min-height: 1200px;
  }

  .company-stats-container {
    grid-template-columns: 1fr 1fr;
    border-top: none;
    width: 95%;
  }

  .company-stat-box:last-child {
    border-top: 1px solid #00f2e2;
  }

  .company-stat-box {
    border-right: 1px solid #00f2e2;
    border-top: 1px solid #00f2e2;
    text-align: center;
  }

  .company-stat-box:nth-child(2) {
    border-right: none;
  }

  .hb-challenge-section {
    min-height: 600px;
    height: 100%;
    width: 95%;
  }

  .the-approach-section {
    width: 95%;
  }

  .the-approach-title {
    width: 80%;
  }

  .the-approach-cards {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .the-approach-card {
    max-width: 370px;
  }

  .the-approach-img {
    min-width: 350px;
    max-width: 350px;
  }

  .checkout-redesign {
    width: 95%;
  }

  .added-features-section {
    width: 95%;
  }

  .the-impact-section {
    width: 95%;
  }

  .the-impact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .the-impact-box {
    padding: 40px;
    border: none;
  }

  .the-impact-box:nth-child(1) {
    border-bottom: 1px solid #00f2e2;
  }

  .the-impact-box:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid #00f2e2;
    border-left: 1px solid #00f2e2;
  }

  .the-impact-box:last-child {
    border-left: 1px solid #00f2e2;
  }

  .the-impact-value {
    justify-content: start;
    gap: 30px;
  }

  .open-comment-container {
    width: 95%;
    gap: 40px;
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .checkout-redesign-image {
    gap: 20px;
    flex-direction: column;
  }

  .hb-challenge-section {
    background-position: center;
    text-align: left;
  }

  .open-comment-container {
    flex-direction: column;
  }

  .added-features-ui {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .the-impact-value {
    font-size: 32px;
  }

  .the-impact-value img {
    height: 30px;
    width: 30px;
  }
}

@media (max-width: 480px) {
  .company-home-page-section {
    min-height: 70vh;
    padding: 40px 10px;
    background: url("../image/bg/company-bg.png") no-repeat -480px 80px;
    background-size: cover;
  }

  .company-stat-box {
    padding: 15px;
  }

  .company-stat-title {
    font-size: 20px;
  }

  .company-stat-subtitle {
    font-size: 12px;
    color: #ffffff;
    margin-bottom: 10px;
  }

  .hb-challenge-section {
    padding: 30px;
    min-height: fit-content;
  }

  .hb-challenge-heading {
    font-size: 24px;
  }

  .hb-challenge-text {
    flex: 1;
    min-width: fit-content;
    max-width: fit-content;
  }

  .hb-challenge-text p {
    font-size: 12px;
    line-height: 18px;
  }

  .hb-challenge-text ul li {
    font-size: 12px;
    line-height: 18px;
  }

  .hb-challenge-text ul {
    padding-left: 14px;
  }

  .the-approach-title {
    width: 90%;
  }

  .the-approach-heading {
    font-size: 24px;
    padding-bottom: 10px;
  }

  .the-approach-quote {
    font-size: 12px;
    max-width: none;
  }

  .the-approach-card {
    max-width: none;
    padding: 0;
    width: 90%;
    background: none;
    box-shadow: none;
  }

  .the-approach-img {
    max-width: none;
    width: 100%;
    padding: 10px 0;
    height: 350px;
    min-width: auto;
  }

  .the-approach-step {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .the-approach-desc {
    font-size: 12px;
    line-height: 16px;
  }

  .the-approach-underline {
    width: 100%;
    margin-bottom: 10px;
  }

  .checkout-redesign h2 {
    font-size: 20px;
  }

  .checkout-redesign-para p {
    font-size: 12px;
  }

  .added-features-section h2 {
    font-size: 20px;
  }

  .added-features-ui .ir-faq-ans {
    font-size: 20px;
  }

  .added-features-ui .ir-faq-question span {
    font-size: 16px;
  }

  .added-features-ui .ir-faq-question {
    padding: 20px 0;
  }

  .added-features-ui .ir-faq-ans span {
    font-size: 12px;
  }

  .added-features-ui .ir-faq-icon {
    width: 25px;
    height: 25px;
    font-size: 25px;
  }

  .the-impact-box {
    padding: 20px;
  }

  .the-impact-value {
    justify-content: start;
    gap: 20px;
  }

  .the-impact-value img {
    margin-top: 10px;
  }

  .the-impact-label {
    font-size: 16px;
  }

  .open-comment-left-section h2 {
    font-size: 20px;
  }

  .open-comment-container label {
    font-size: 16px;
  }

  .open-comment-container input,
  .open-comment-container textarea {
    padding: 10px 15px;
    font-size: 14px;
  }

  .open-comment-container button {
    padding: 10px 40px;
    font-size: 20px;
  }

  .open-comment-right-section h2 {
    font-size: 20px;
  }

  .open-comments-section {
    font-size: 16px;
    line-height: 20px;
    color: #ddd;
    margin: 10px 0;
  }

  .open-comments-author img {
    width: 45px;
    height: 45px;
  }

  .open-comments-author h3 {
    font-size: 16px;
  }

  .open-comments-author span {
    font-size: 12px;
  }
}

/* =========================== Insights and Blogs page Start ============================ */
.insight-blogs-page-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("../image/bg/insight-blog-bg.png") no-repeat center 50px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 40px;
  overflow: hidden;
  z-index: 1;
}

.extend-ordinary-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
}

.extend-ordinary-section .extend-ordinary-image {
  width: 35%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.extend-ordinary-section .extend-ordinary-image img {
  flex: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.extend-ordinary-section .extend-ordinary-text {
  width: 60%;
  color: #ffffff;
  font-size: 20px;
  line-height: 24px;
}

.extend-ordinary-section .extend-ordinary-text p {
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 26px;
}

.extend-ordinary-section .extend-ordinary-text p:last-child {
  margin-bottom: 0;
}

.extend-ordinary-section h4 {
  color: #7765f5;
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 500;
}

.high-lights-section {
  width: 85%;
  margin: 0 auto;
}

.high-lights-section-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 40px 0;
  flex-wrap: wrap;
}

.high-lights-section-grid-img,
.high-lights-section-heading {
  flex: 1;
  min-width: 300px;
}

.high-lights-section-grid-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.high-lights-section-heading {
  color: #ffffff;
}

.high-lights-section-heading h5 {
  font-size: 24px;
  font-style: italic;
  margin-bottom: 30px;
  color: #7765f5;
}

.high-lights-section-heading p {
  font-size: 20px;
  font-weight: 400;
  width: 100%;
  margin-bottom: 20px;
  line-height: 26px;
}

.high-lights-section h2 {
  font-size: 48px;
  color: #7765f5;
  font-weight: 500;
}

.high-lights-section hr {
  margin: 40px auto;
}

/* ------- othe domain ------  */

.other-domain-section-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 40px;
  color: #ffffff;
}

.other-domain-section-grid-img {
  width: 35%;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.other-domain-section-grid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.other-domain-section-heading {
  width: 60%;
}

.other-domain-section-heading p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 26px;
}

.high-lights-section .effective-strategy-para {
  width: 75%;
  margin: 100px auto;
  text-align: center;
}

.high-lights-section .effective-strategy-para p {
  font-size: 36px;
  color: #ffffff;
  line-height: 65px;
  font-weight: 500;
}

.high-lights-section .effective-strategy-para p span {
  font-size: 64px;
  color: #00f2e2;
  line-height: 65px;
}

@media (max-width: 992px) {
  .insight-blogs-page-section {
    min-height: 1200px;
  }

  .highlight-section,
  .extend-ordinary-section,
  .extend-ordinary-section.reverse {
    flex-direction: column;
    align-items: center;
  }

  .highlight-section img,
  .extend-ordinary-section .extend-ordinary-image,
  .extend-ordinary-section .extend-ordinary-text,
  .highlight-text {
    width: 100%;
  }

  .extend-ordinary-section,
  .other-domain-section-grid {
    flex-direction: column;
  }

  .extend-ordinary-section .extend-ordinary-image,
  .extend-ordinary-section .extend-ordinary-text,
  .other-domain-section-grid-img,
  .other-domain-section-heading {
    width: 100%;
    height: auto;
  }

  .extend-ordinary-section .extend-ordinary-image img,
  .other-domain-section-grid-img img {
    height: auto;
  }
}

@media (max-width: 768px) {
  .high-lights-section-grid {
    padding-bottom: 20px;
  }

  .high-lights-section-heading p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 22px;
  }

  .high-lights-section h2 {
    font-size: 32px;
  }

  .high-lights-section hr {
    margin: 20px auto;
  }

  .other-domain-section-heading p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 22px;
  }

  .other-domain-section-grid {
    gap: 20px;
  }

  .extend-ordinary-section .extend-ordinary-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 22px;
  }

  .high-lights-section .effective-strategy-para {
    width: 100%;
    margin: 50px auto;
    text-align: center;
  }

  .high-lights-section .effective-strategy-para p span {
    font-size: 32px;
    line-height: 36px;
  }

  .high-lights-section .effective-strategy-para p {
    font-size: 24px;
    line-height: 36px;
  }
}

@media (max-width: 480px) {
  .insight-blogs-page-section {
    min-height: 70vh;
    background-position: -650px 80px;
    background-size: cover;
    padding: 40px 10px;
  }

  .high-lights-section-grid {
    position: relative;
    z-index: 2;
    padding: 0;
  }

  .high-lights-section .effective-strategy-para {
    width: 100%;
  }

  .high-lights-section .effective-strategy-para p {
    font-size: 16px;
    line-height: 30px;
  }

  .high-lights-section .effective-strategy-para p span {
    font-size: 24px;
    line-height: 30px;
  }

  .high-lights-section {
    width: 95%;
    margin: -70px auto 0;
  }
}

/* ====================================== MEDIA PAGE SECTION STYLING START============================================ */

/* ======================== COMPANY LOGO SECTION STYLING START====================== */
.media-kit-logos-container {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  justify-content: center;
  gap: 80px;
  max-width: 1200px;
  margin: 100px auto;
  color: white;
}

.media-kit-logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  flex: 1 1 350px;
  max-width: 538px;
}

.media-kit-logo-image-box {
  width: 100%;
  height: 264px;
  border-radius: 25px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background-color: #f5f5f5;
}

.media-kit-logo-image-box.dark {
  background-color: #1e1e1e;
}

.media-kit-logo-image-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.media-kit-logo-description {
  text-align: start;
  width: 100%;
  margin-left: 40px;
}

.media-kit-logo-description h3 {
  font-family: "Exo 2", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 68px;
  margin-bottom: 8px;
}

.media-kit-logo-description hr {
  width: 85%;
  border: 0.5px solid #00f2e2;
  margin: 10px 0;
}

.media-kit-logo-description ul {
  list-style-type: disc;
  text-align: left;
  padding-left: 36px;
}

.media-kit-logo-description li {
  margin-bottom: 8px;
  font-family: "Exo 2", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 43px;
}

.media-kit-logo-description a {
  color: #ffffff;
  text-decoration: none;
}

.media-kit-logo-description a span {
  color: #00baae;
}

.media-kit-logo-description a:hover {
  color: #00baae;
}

/* ==================== TEAM SECTION STYLING START =================== */
.media-kit-team-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  width: 80%;
  max-width: 1200px;
  margin: 50px auto;
}

.media-kit-profile-card {
  flex: 1 1 calc(50% - 20px);
  max-width: calc(50% - 20px);
  background: linear-gradient(to bottom, #0f0f0f, #002828);
  border: 1px solid #005f5f;
  border-radius: 8px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
  transition: all 0.3s ease;
}

.media-kit-profile-card:hover {
  background-color: #002d2d;
  border-color: #00c0c0;
}

.media-kit-profile-card h4 {
  color: #00baae;
  font-size: 32px;
  margin-bottom: 10px;
  border-bottom: 1px solid #00f2e2;
  padding-bottom: 10px;
  font-weight: 500;
}

.media-kit-profile-card h2 {
  font-size: 48px;
  margin-bottom: 5px;
  color: #ffffff;
  font-weight: 500;
}

.media-kit-profile-card p {
  font-size: 32px;
  color: #939393;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 20px;
}

.media-kit-founder-arrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.media-kit-founder-arrow i {
  color: #00baae;
  font-size: 32px;
}

.media-kit-profile-card:hover .arrow {
  transform: translateX(5px);
}

/* ===================== MEDIA CONTACT STYLING START ====================== */
.media-kit-contact-container {
  max-width: 1200px;
  width: 80%;
  margin: 100px auto;
  text-align: start;
}

.media-kit-contact-container h2 {
  color: #00baae;
  font-size: 64px;
  margin-bottom: 10px;
  font-weight: 500;
}

.media-kit-contact-container hr {
  border: 0.2px solid #00f2e2;
  margin: 20px 0;
  width: 80%;
}

.media-kit-contact-container p {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 50px;
  max-width: 80%;
}

.media-kit-section-title {
  text-align: left;
  font-size: 36px;
  margin-top: 70px;
  margin-bottom: 30px;
  border-bottom: 2px solid #00f2e2;
  padding-bottom: 20px;
  color: white;
  width: 80%;
}

.media-kit-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
  width: 80%;
  margin: 0 auto;
  margin-top: 1rem;
}

.media-kit-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 20px;
  color: #e0e0e0;
  word-break: break-word;
  line-height: 26px;
}

.media-kit-contact-item i {
  color: #00baae;
  font-size: 20px;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .media-kit-logos-container {
    flex-direction: column;
    width: 90%;
    justify-content: center;
    align-items: center;
    gap: 80px;
  }

  .media-kit-logo-block {
    max-width: none;
    width: 80%;
  }
}

@media (max-width: 768px) {
  .media-kit-team-section {
    justify-content: center;
    gap: 40px;
    width: 90%;
  }

  .media-kit-logo-block {
    width: 100%;
  }

  .media-kit-contact-container {
    width: 90%;
  }

  .media-kit-logo-description {
    margin-left: 0;
  }

  .media-kit-logo-description hr {
    width: 100%;
    border: 0.5px solid #00f2e2;
    margin: 10px auto;
  }

  .media-kit-profile-card {
    flex: 1 1 calc(90%);
    max-width: calc(100%);
    padding: 30px 20px;
    min-height: 120px;
  }

  .media-kit-contact-container hr {
    width: 100%;
  }

  .media-kit-section-title {
    width: 100%;
  }

  .media-kit-contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .media-kit-logos-container {
    width: 95%;
    gap: 0;
    margin-bottom: 10px;
  }

  .media-kit-logo-block {
    max-width: none;
    width: 90%;
  }

  .media-kit-logo-image-box {
    width: 100%;
    height: auto;
    border-radius: 10px;
    padding: 40px;
  }

  .media-kit-logo-description {
    text-align: center;
  }

  .media-kit-logo-description h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 8px;
    text-align: center;
  }

  .media-kit-logo-description ul {
    text-align: center;
    padding-left: 0;
    list-style-position: inside;
  }

  .media-kit-logo-description li {
    font-size: 12px;
    line-height: 20px;
  }

  .media-kit-team-section {
    gap: 20px;
    margin-top: 0px;
  }

  .media-kit-profile-card {
    padding: 15px;
  }

  .media-kit-profile-card h4 {
    font-size: 16px;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .media-kit-profile-card h2 {
    font-size: 24px;
    margin-bottom: 5px;
  }

  .media-kit-profile-card p {
    font-size: 16px;
    margin-bottom: 0;
    line-height: 20px;
  }

  .media-kit-founder-arrow i {
    font-size: 20px;
  }

  .media-kit-contact-container {
    width: 90%;
    margin: 50px auto;
  }

  .media-kit-contact-container h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .media-kit-contact-container p {
    font-size: 16px;
    margin-bottom: 50px;
    max-width: 100%;
  }

  .media-kit-section-title {
    font-size: 16px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    width: 100%;
  }

  .media-kit-contact-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
    width: 100%;
  }

  .media-kit-contact-item i {
    font-size: 12px;
  }

  .media-kit-contact-item {
    gap: 10px;
    font-size: 12px;
    line-height: 16px;
  }
}

/* ======================================================== SOLUTION PAGE STYLING START ======================================================== */

/* ==================== CARD SECTION STYLING START ====================== */
.solution-box-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 100px auto;
  width: 80%;
}

@media (max-width: 992px) {
  .solution-box-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .solution-box-grid-container {
    grid-template-columns: 1fr;
  }
}

.solution-box {
  position: relative;
  height: 340px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Gradient border effect using pseudo-element */
.solution-box::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(to bottom, var(--border-color), #2be8f9);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

.solution-box-1::after {
  --border-color: #ff002e;
}

.solution-box-2::after {
  --border-color: #a426f5;
}

.solution-box-3::after {
  --border-color: #2ac465;
}

.solution-box-4::after {
  --border-color: #006bff;
}

.solution-box-5::after {
  --border-color: #939393;
}

.solution-box-6::after {
  --border-color: #ff02b7;
}

.solution-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.solution-box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Larger triangle clip path in the background */
.solution-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 1;
  opacity: 0.7;
}

/* Smaller triangle clip path in the foreground */
.solution-box .solution-box-triangle {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 2;
}

/* Background triangle colors (slightly different) */
.solution-box-1::before {
  background-color: rgba(255, 0, 46, 0.7);
}

.solution-box-2::before {
  background-color: rgba(164, 38, 245, 0.7);
}

.solution-box-3::before {
  background-color: rgba(42, 196, 101, 0.7);
}

.solution-box-4::before {
  background-color: rgba(0, 107, 255, 0.7);
}

.solution-box-5::before {
  background-color: rgba(147, 147, 147, 0.7);
}

.solution-box-6::before {
  background-color: rgba(255, 2, 183, 0.7);
}

/* Foreground triangle colors */
.solution-box-1 .solution-box-triangle {
  background-color: #ff002e;
}

.solution-box-2 .solution-box-triangle {
  background-color: #a426f5;
}

.solution-box-3 .solution-box-triangle {
  background-color: #2ac465;
}

.solution-box-4 .solution-box-triangle {
  background-color: #006bff;
}

.solution-box-5 .solution-box-triangle {
  background-color: #939393;
}

.solution-box-6 .solution-box-triangle {
  background-color: #ff02b7;
}

.solution-box-content {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 1;
  /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%); */
}

.solution-box-heading-container {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
}

.solution-box-content-container {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 30px;
  z-index: 2;
}

.solution-box-heading {
  font-size: 32px;
  font-weight: bold;
  line-height: 40px;
  margin: 0;
}

.solution-box-heading-1 {
  color: #ff002e;
}

.solution-box-heading-2 {
  color: #a426f5;
}

.solution-box-heading-3 {
  color: #2ac465;
}

.solution-box-heading-4 {
  color: #006bff;
}

.solution-box-heading-5 {
  color: #ffffff;
}

.solution-box-heading-6 {
  color: #ff02b7;
}

.solution-box-content {
  color: #ffffff;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}

/* ===================== what we offer section styling start ====================== */
.solution-we-offer {
  width: min(1200px, calc(100% - 40px));
  margin: 30px auto;
  color: white;
}

.solution-we-offer-heading {
  max-width: 1200px;
  margin: 0 auto;
}

.solution-we-offer-heading h1 {
  font-size: 64px;
  color: #00baae;
  font-weight: 500;
}

.solution-we-offer-heading h5 {
  font-size: 20px;
  width: min(960px, 100%);
  font-weight: 400;
}

.solution-we-offer-line {
  border: none;
  height: 0.2px;
  background-color: #00f2e2;
  width: min(960px, 100%);
  margin: 20px 0 0;
}

/* ========================= solution-page-service-card-section styling start ======================== */

.solution-page-service-card-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 40px 0;
}

.solution-page-service-card {
  overflow: hidden;
  width: 100%;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative;
}

/* Gradient border effect using pseudo-element */
.solution-page-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(to bottom, var(--border-color), #2be8f9);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

.solution-page-service-card-1::after {
  --border-color: #7cf95d;
}

.solution-page-service-card-2::after {
  --border-color: #ffa100;
}

.solution-page-service-card-3::after {
  --border-color: #7206b8;
}

.solution-page-service-card-4::after {
  --border-color: #7cf95d;
}

.solution-page-service-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.solution-page-service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.solution-page-service-image-wrapper h3 {
  position: absolute;
  top: 15px;
  right: 15px;
  left: 15px;
  margin: 0;
  font-size: 24px;
  color: #fff;
  z-index: 2;
}

.solution-page-service-image-wrapper ul {
  position: absolute;
  bottom: 15px;
  left: 35px;
  right: 15px;
  margin: 0;
  font-size: 16px;
  color: #fff;
  z-index: 2;
}

.solution-page-service-image-wrapper p {
  position: absolute;
  bottom: 15px;
  right: 15px;
  left: 15px;
  margin: 0;
  font-size: 16px;
  color: #fff;
  z-index: 2;
}

/* Optional dark overlay for readability */
.solution-page-service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 242, 213, 0.3);
}

/* ========================= recomendation section styling start ======================== */
.solution-page-recommendation-section {
  background-color: #000;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
}

.solution-page-recommendation-container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.solution-page-recommendation-section-title2 {
  font-weight: 600;
  color: #7765f5;
  font-style: italic;
  margin-bottom: 5px;
  font-size: 24px;
}

.solution-page-recommendation-line-accent3 {
  width: 50%;
  height: 0.2px;
  background-color: #7765f5;
  border: 0.5px;
  margin: 10px auto;
}

.solution-page-recommendation-card-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  justify-content: center;
  margin: 0 auto;
  margin-top: 60px;
  width: 100%;
}

.solution-page-recommendation-card {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: none;
  width: 100%;
  padding: 20px;
  background: linear-gradient(145deg, #1e1e2f, #120b1f);
  border: 1px solid #6c5ce7;
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  box-shadow: 0 0 12px rgba(108, 92, 231, 0.2);
  transition: transform 0.3s;
}

.solution-page-recommendation-card p {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}

.solution-page-recommendation-card:hover {
  transform: translateY(-5px);
}

.solution-page-recommendation-card span {
  font-size: 0.85rem;
  display: block;
  color: #ccc;
  margin-top: 4px;
}

/* ============= roi section styling start =============== */
.roi-success-section {
  background: #000;
  text-align: center;
  color: #fff;
  width: 90%;
  margin: 0 auto;
}

.roi-success-title {
  line-height: 70px;
  color: #00baae;
  font-weight: 500;
  margin-bottom: 40px;
  font-size: 64px;
}

.roi-success-subtitle {
  font-weight: 600;
  font-style: italic;
  color: #7765f5;
  margin-bottom: 5px;
  font-size: 24px;
}

.roi-success-line-accent2 {
  width: 50%;
  height: 0.2px;
  background-color: #00f2e2;
  border: 0.5px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.roi-success-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.roi-success-card {
  width: 270px;
  height: 200px;
  background-size: cover;
  background-position: center;
  border: 1px solid #00ffe7;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 255, 231, 0.2);
  transition: transform 0.3s ease;
}

.roi-success-card:hover {
  transform: translateY(-5px);
}

.roi-success-overlay {
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  height: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  position: relative;
}

.roi-success-overlay h4 {
  position: absolute;
  top: 15px;
  left: 20px;
  font-weight: 500;
  font-size: 36px;
  line-height: 28px;
  color: #ffffff;
}

.roi-success-overlay p {
  position: absolute;
  bottom: 15px;
  left: 20px;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
}

/*-- Responsive Section -- */
@media (max-width: 992px) {
  .high-tech-hero {
    padding: 36px 16px;
  }

  .high-tech-heading {
    width: min(980px, 100%);
  }

  .lending-speed,
  .solution-we-offer,
  .solution-page-recommendation-container {
    width: min(980px, calc(100% - 32px));
  }

  .solution-page-service-card-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .solution-page-service-card {
    height: 260px;
  }

  .solution-page-recommendation-card-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .solution-box-grid-container {
    width: 90%;
  }

  .solution-page-service-image-wrapper h3 {
    top: 10px;
    left: 10px;
    right: 5px;
    font-size: 24px;
  }

  .solution-page-service-image-wrapper p {
    bottom: 10px;
    left: 10px;
    font-size: 14px;
  }

  .solution-page-service-image-wrapper ul {
    bottom: 10px;
    left: 20px;
    right: 10px;
    font-size: 12px;
  }

  .solution-page-recommendation-section {
    padding: 60px 0;
  }

  .solution-page-recommendation-card-wrapper {
    width: 100%;
    gap: 20px;
  }

  .roi-success-line-accent2 {
    width: 80%;
  }

  .roi-success-title {
    line-height: 46px;
    margin-bottom: 20px;
    font-size: 32px;
  }
}

@media (max-width: 567px) {
  .solution-page-service-card-section {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .solution-page-service-card {
    width: 100%;
    height: 240px;
  }

  .solution-page-recommendation-line-accent3 {
    width: 80%;
  }

  .solution-page-recommendation-card {
    flex-direction: column;
    max-width: unset;
    width: 100%;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .solution-box-grid-container {
    width: min(1200px, calc(100% - 24px));
  }

  .solution-page-line {
    margin: 10px 0;
  }

  .solution-page-service-card {
    width: 100%;
    height: 250px;
  }

  .solution-page-service-image-wrapper ul {
    bottom: 20px;
    left: 30px;
    right: 10px;
    font-size: 16px;
  }

  .solution-page-recommendation-section {
    padding-top: 0;
  }

  .solution-page-recommendation-section-title2 {
    font-size: 16px;
  }

  .solution-page-recommendation-card-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
    width: 100%;
  }

  .solution-page-recommendation-card {
    flex-direction: column;
    max-width: unset;
    width: 100%;
    padding: 20px;
  }

  .solution-page-recommendation-card p {
    font-size: 12px;
    line-height: 16px;
  }

  .roi-success-title {
    line-height: 30px;
    margin-bottom: 10px;
    font-size: 24px;
  }

  .roi-success-line-accent2 {
    width: 95%;
    margin-bottom: 10px;
  }

  .roi-success-subtitle {
    margin-bottom: 5px;
    font-size: 16px;
  }
}

/* ======================================================== Industry PAGE STYLING START ======================================================== */

/* ==================== INDUSTRY PAGE CARD SECTION STYLING START ====================== */
.industry-box-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 100px auto;
  width: 80%;
  padding: 0 40px;
}

.industry-box {
  position: relative;
  height: 410px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-box-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  text-decoration: none;
  color: inherit;
}

/* Gradient border effect using pseudo-element */
.industry-box::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(to bottom, var(--border-color), #2be8f9);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

.industry-box-1::after {
  --border-color: #72049f;
}

.industry-box-2::after {
  --border-color: #00c265;
}

.industry-box-3::after {
  --border-color: #ffffff;
}

.industry-box-4::after {
  --border-color: #a7a6a7;
}

.industry-box-5::after {
  --border-color: #ff02b7;
}

.industry-box-6::after {
  --border-color: #ffa201;
}

.industry-box-7::after {
  --border-color: #72049f;
}

.industry-box-8::after {
  --border-color: #00c265;
}

.industry-box-9::after {
  --border-color: #0be6d8;
}

.industry-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.industry-box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Larger triangle clip path in the background */
.industry-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 1;
  opacity: 0.7;
}

/* Smaller triangle clip path in the foreground */
.industry-box .industry-box-triangle {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 2;
}

/* Background triangle colors (slightly different) */
.industry-box-1::before {
  background: linear-gradient(to bottom, #9100ca, #2c0d41);
}

.industry-box-2::before {
  background: linear-gradient(to bottom, #00ce4f, #045d26);
}

.industry-box-3::before {
  background: linear-gradient(to bottom, #ffff34, #8d6603);
}

.industry-box-4::before {
  background: linear-gradient(to bottom, #c3c3c3a8, #5c5c5c);
}

.industry-box-5::before {
  background: linear-gradient(to bottom, #ce009b, #760676);
}

.industry-box-6::before {
  background: linear-gradient(to bottom, #dd9c2b, #8d6603);
}

.industry-box-7::before {
  background: linear-gradient(to bottom, #9100ca, #2c0d41);
}

.industry-box-8::before {
  background: linear-gradient(to bottom, #00ce4f, #045d26);
}

.industry-box-9::before {
  background: linear-gradient(to bottom, #11edb9, #1d9e93);
}

/* Foreground triangle colors */
.industry-box-1 .industry-box-triangle {
  background-color: #72049f;
}

.industry-box-2 .industry-box-triangle {
  background-color: #00c265;
}

.industry-box-3 .industry-box-triangle {
  background-color: #ffffff;
}

.industry-box-4 .industry-box-triangle {
  background-color: #a7a6a7;
}

.industry-box-5 .industry-box-triangle {
  background-color: #ff02b7;
}

.industry-box-6 .industry-box-triangle {
  background-color: #ffa201;
}

.industry-box-7 .industry-box-triangle {
  background-color: #72049f;
}

.industry-box-8 .industry-box-triangle {
  background-color: #00c265;
}

.industry-box-9 .industry-box-triangle {
  background-color: #0be6d8;
}

.industry-box-content {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 1;
  /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%); */
}

.industry-box-heading-container {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
}

.industry-box-content-container {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
}

.industry-box-heading {
  font-size: 32px;
  font-weight: bold;
  line-height: 40px;
  margin: 0;
  color: #ffffff;
}

.industry-box-heading-container p {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  margin-top: 30px;
  color: #ffffff;
}

.industry-box-content {
  color: #ffffff;
  font-size: 12px;
  line-height: 16px;
  margin: 0;
}

/* Industry page capability cards section  */

.industry-capability-box-container {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.industry-capability-card-section {
  display: flex;
  gap: 20px;
  padding: 40px 2px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  width: max-content;
  animation: autoScroll 30s linear infinite;
}

.industry-capability-card-section::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for Chrome/Safari */
}

@keyframes autoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% + 100vw));
  }
}

/* Pause animation on hover */
.industry-capability-card-section:hover {
  animation-play-state: paused;
}

.industry-capability-service-card {
  overflow: hidden;
  min-width: 250px;
  width: 280px;
  height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative;
}

/* Gradient border effect using pseudo-element */
.industry-capability-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(to bottom, var(--border-color), #2be8f9);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

.industry-capability-service-card-1::after {
  --border-color: #7cf95d;
}

.industry-capability-service-card-2::after {
  --border-color: #ffa100;
}

.industry-capability-service-card-3::after {
  --border-color: #7206b8;
}

.industry-capability-service-card-4::after {
  --border-color: #7cf95d;
}

.industry-capability-service-card-5::after {
  --border-color: #ff3e7f;
}

.industry-capability-service-card-6::after {
  --border-color: #00d9ff;
}

.industry-capability-service-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.industry-capability-service-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.industry-capability-service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.industry-capability-service-image-wrapper h3 {
  position: absolute;
  top: 15px;
  left: 15px;
  margin: 0;
  font-size: 24px;
  color: #fff;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.industry-capability-service-image-wrapper p {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  margin: 0;
  font-size: 16px;
  color: #fff;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.industry-capability-service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 242, 213, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .industry-box-grid-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }
}

@media (max-width: 768px) {
  .industry-box-grid-container {
    width: 90%;
  }

  .industry-capability-service-card {
    min-width: 250px;
    width: 250px;
  }

  .solution-we-offer {
    width: 90%;
    margin: 30px auto;
  }

  .solution-we-offer-line {
    margin: 10px 0;
  }

  .solution-we-offer-line {
    width: 100%;
  }

  .solution-we-offer-heading h1 {
    font-size: 32px;
  }

  .solution-we-offer-heading h5 {
    width: 100%;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .industry-box-grid-container {
    grid-template-columns: 1fr;
  }

  .industry-capability-service-image-wrapper h3 {
    font-size: 16px;
  }

  .industry-capability-service-image-wrapper p {
    font-size: 12px;
  }

  .industry-capability-service-card {
    min-width: unset;
    width: 170px;
    height: 160px;
  }
}

@media (max-width: 480px) {
  .industry-box {
    height: 350px;
  }

  .industry-box-heading {
    font-size: 24px;
    line-height: 30px;
  }

  .industry-box-heading-container p {
    font-size: 20px;
    line-height: 24px;
    margin-top: 20px;
  }

  .solution-we-offer {
    width: 90%;
    margin: 30px auto;
  }

  .solution-we-offer-heading h1 {
    font-size: 24px;
  }

  .solution-we-offer-heading h5 {
    font-size: 12px;
  }

  .solution-we-offer-line {
    margin: 10px 0;
  }

  .industry-capability-card-section .industry-capability-service-card:nth-child(n + 7) {
    display: none;
  }

  .industry-capability-card-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 95%;
    overflow: hidden;
    animation: none;
    margin: 0 auto;
    padding-top: 10px;
  }

  .industry-capability-service-card {
    min-width: unset;
    width: 100%;
    height: 160px;
  }

  .project-button {
    font-size: 20px;
  }
}

/* ========================================================================================================================
========================================================================================================================
========================================================================================================================
======================================================================================================================== */
/* about page  */
.anniversary-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  font-family: "Exo 2", sans-serif;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

.about-page-background-image {
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  z-index: 1;
  justify-content: center;
  width: 100%;
  margin-top: 200px;
}

.about-hero-shadow-overlay {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgb(0, 0, 0), transparent 10%),
    linear-gradient(to left, rgb(0, 0, 0), transparent 10%),
    linear-gradient(to right, rgb(0, 0, 0), transparent 10%);
}

/* Centered Text */
.banner-text {
  position: absolute;
  z-index: 2;
  text-align: center;
  color: white;
  top: 100px;
}

.banner-heading {
  font-size: 104px;
  color: #00baae;
  font-weight: 500;
  margin: 0;
  line-height: 100px;
}

.banner-subtext {
  font-size: 64px;
  color: #ffffff;
  font-weight: 500;
  margin: 0;
}

.social-icons a {
  color: #00f2e2;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #00f2e2;
  color: #000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .banner-heading {
    font-size: 48px;
    line-height: 56px;
  }

  .banner-subtext {
    font-size: 24px;
    line-height: 30px;
  }

  .social-icons {
    left: 10px;
    top: auto;
    bottom: 20px;
    transform: none;
    flex-direction: row;
  }

  .social-icons a {
    font-size: 14px;
    width: 36px;
    height: 36px;
  }
}

/* ==================== ACHIEVEMENT SECTION STYLING START ==================== */
.achievement-section {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 60px 0;
  font-family: "Exo 2", sans-serif;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.achievement-subtitle {
  font-family: inter;
  font-size: 40px;
  font-weight: 500;
  color: #fffafa;
  line-height: 50px;
  margin-bottom: 10px;
}

.achievement-title {
  font-family: inter;
  font-size: 64px;
  line-height: 64px;
  color: #00baae;
  font-weight: 500;
}

.achievement-cards {
  margin-top: 40px;
  display: flex;
  gap: 24px;
  width: 100%;
  justify-content: space-between;
  align-items: stretch;
}

.achievement-card {
  flex: 1;
  min-width: 200px;
  background: linear-gradient(to bottom, #010d0c42, #08898144);
  padding: 40px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease;
}

.achievement-number {
  font-size: 64px;
  line-height: 1;
  margin: 0;
  font-weight: 700;
  color: #00baae;
}

.achievement-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 186, 174, 0.3);
  background: linear-gradient(to bottom, #010d0c60, #08898160);
}

.achievement-label {
  font-size: 18px;
  margin: 12px 0 6px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.achievement-note {
  font-size: 12px;
  font-family: inter;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 20px;
}

/* Color Classes */
.stat-red .achievement-number {
  color: #e2062e;
}

.stat-purple .achievement-number {
  color: #8306d3;
}

.stat-green .achievement-number {
  color: #00c265;
}

.stat-blue .achievement-number {
  color: #0059d9;
}

.view-achievement-section {
  display: none;
}

/* Responsive */
@media (max-width: 992px) {
  .anniversary-hero {
    height: 1200px;
  }

  .about-page-background-image {
    height: 45%;
  }

  .banner-text {
    top: 200px;
  }

  .achievement-cards {
    gap: 20px;
  }

  .achievement-section {
    width: 90%;
  }

  .achievement-card {
    padding: 20px 10px;
  }
}

@media (max-width: 768px) {
  .view-achievement-section {
    display: block;
  }

  .achievement-cards {
    display: none;
  }

  .achievement-section {
    padding: 10px 0;
  }

  .achievement-subtitle {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 10px;
  }

  .achievement-title {
    font-size: 42px;
    line-height: 46px;
  }
}

@media (max-width: 480px) {
  .anniversary-hero {
    width: 100%;
    height: 50vh;
  }

  .achievement-section {
    width: 95%;
  }

  .achievement-subtitle {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 0;
  }

  .achievement-title {
    font-size: 32px;
    line-height: 36px;
  }

  .about-page-background-image {
    width: 100%;
    height: 50vw;
    object-fit: contain;
  }

  .banner-heading {
    font-size: 32px;
    line-height: 36px;
  }

  .banner-subtext {
    font-size: 12px;
    line-height: 20px;
  }
}

/* ==================== INCLUSION SECTION STYLING START ==================== */
.inclusion-section {
  max-width: 1400px;
  padding: 40px 20px;
  margin: 0 auto;
  background-color: #000;
  overflow: hidden;
}

.inclusion-header {
  margin: 0 auto 60px;
  text-align: center;
}

.inclusion-header p {
  font-size: 40px;
  font-weight: 500;
  color: #ffffff;
  line-height: 60px;
}

.inclusion-header h6 {
  font-size: 20px;
  color: #ffffff;
  margin: 40px 0;
  font-weight: 400;
}

.inclusion-header .highlight {
  font-weight: 500;
  font-size: 64px;
  line-height: 64px;
  color: #00baae;
}

/* === CARD STYLES (Unchanged) === */
.inclusion-cards {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 600px;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: autoScroll 30s linear infinite;
}

.inclusion-card {
  padding: 30px;
  width: 800px;
  height: 550px;
  color: #fff;
  position: relative;
  border: 1px solid #e2062e;
  background-color: #1a000a;
  flex: 0 0 auto;
  overflow: hidden;
}

.inclusion-card h3 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 50px;
  font-family: "Exo 2", sans-serif;
}

.inclusion-card hr {
  border: none;
  height: 1px;
  background-color: #aaa;
  margin: 15px 0 60px;
  border-radius: 1px;
}

.inclusion-card p {
  font-size: 16px;
  margin-bottom: 50px;
  line-height: 1.6;
  text-align: justify;
}

/* Card 1 - Innovation Card */
.innovation-card {
  background-color: #1a000a;
  border-color: #e2062e;
}

.innovation-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at top left, #dc1035, #76091d);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  z-index: 2;
}

.innovation-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at top left,
      rgba(220, 16, 53, 0.3),
      rgba(118, 9, 29, 0.3));
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  z-index: 1;
}

.innovation-card h3 {
  color: #e2062e;
}

.innovation-card hr {
  background-color: #e2062e;
}

/* Card 2 - Security Card */
.security-card {
  background-color: #2d0030;
  border-color: #660066;
}

.security-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at top left, #9933cc, #4d1a66);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  z-index: 2;
}

.security-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at top left,
      rgba(153, 51, 204, 0.3),
      rgba(77, 26, 102, 0.3));
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  z-index: 1;
}

.security-card h3 {
  color: #d633ff;
}

.security-card hr {
  background-color: #a44ccf;
}

/* Card 3 - Growth Card */
.growth-card {
  background-color: #003333;
  border-color: #008080;
}

.growth-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at top left, #00cccc, #004d4d);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  z-index: 2;
}

.growth-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at top left,
      rgba(0, 204, 204, 0.3),
      rgba(0, 77, 77, 0.3));
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  z-index: 1;
}

.growth-card h3 {
  color: #33ffff;
}

.growth-card hr {
  background-color: #33cccc;
}

/* Auto-scroll animation */
@keyframes autoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 20px));
    /* Dynamically scroll half the track + half the gap */
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .inclusion-cards {
    height: 580px;
  }

  .inclusion-card {
    width: 600px;
    height: 520px;
    padding: 25px;
  }

  .inclusion-card h3 {
    font-size: 1.8em;
  }

  .inclusion-card p {
    font-size: 0.9em;
  }

  .slider-track {
    gap: 30px;
  }

  @keyframes autoScroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-50% - 15px));
    }
  }
}

@media (max-width: 768px) {
  .inclusion-cards {
    height: 400px;
  }

  .inclusion-card {
    width: 500px;
    height: 350px;
    padding: 20px;
  }

  .inclusion-card h3 {
    font-size: 1.6em;
    margin-bottom: 12px;
  }

  .inclusion-card p {
    font-size: 0.85em;
    margin-bottom: 12px;
  }

  .slider-track {
    gap: 25px;
  }

  @keyframes autoScroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-50% - 12.5px));
    }
  }
}

@media (max-width: 480px) {
  .inclusion-cards {
    height: 350px;
  }

  .inclusion-card {
    width: 250px;
    height: 250px;
    padding: 18px;
  }

  .inclusion-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .inclusion-card p {
    font-size: 10px;
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .inclusion-card hr {
    margin: 10px 0 15px;
  }

  .inclusion-card::before {
    width: 50px;
    height: 50px;
  }

  .inclusion-card::after {
    width: 70px;
    height: 70px;
  }

  @keyframes autoScroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1110px);
    }
  }
}

@media (max-width: 768px) {
  .inclusion-section {
    padding: 40px 20px;
  }

  .inclusion-header {
    margin: 0 auto 60px;
  }

  .inclusion-header p {
    font-size: 30px;
    line-height: 46px;
  }

  .inclusion-header .highlight {
    font-size: 42px;
    line-height: 46px;
  }

  .inclusion-header h6 {
    font-size: 16px;
    margin: 20px 0;
    line-height: 20px;
  }
}

@media (max-width: 480px) {
  .inclusion-section {
    padding: 30px 10px;
  }

  .inclusion-header {
    margin: 0 auto 40px;
  }

  .inclusion-header p {
    font-size: 20px;
    line-height: 36px;
  }

  .inclusion-header .highlight {
    font-size: 32px;
    line-height: 36px;
  }

  .inclusion-header h6 {
    font-size: 12px;
    margin: 10px 0;
    line-height: 16px;
  }
}

/* ========================== OPTIMIZE SECTION STYLING START ========================== */
.optimize-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.optimize-left {
  flex: 1 1 480px;
}

.optimize-heading {
  text-align: center;
  margin-bottom: 40px;
}

.optimize-heading h2 {
  font-family: Exo 2;
  font-size: 32px;
  line-height: 64px;
  font-weight: 500;
  color: #fffafa;
}

.optimize-heading h2 span {
  font-family: Exo 2;
  font-weight: 500;
  font-size: 64px;
  line-height: 64px;
  color: #00baae;
}

.optimize-heading p {
  font-family: Exo 2;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: #ffffff;
  margin-top: 10px;
}

/* .procedure-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.procedure-box {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: #002626;
  padding: 20px;
  color: #fff;
  clip-path: polygon(44px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 49px);
  transition: transform 0.3s ease;
  overflow: hidden;
  z-index: 1;
}

.procedure-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(44px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 49px);
  background: linear-gradient(to right, #00baae, #606060);
  z-index: -2;
}

.procedure-box::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  clip-path: polygon(44px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 49px);
  background-color: #002626;
  z-index: -1;
}

.procedure-icon-line {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 60px;
}

.procedure-icon-line img {
  width: 40px;
  height: 40px;
}

.icon-divider {
  width: 1px;
  height: 105px;
  background-color: #00f2e2a8;
}

.procedure-info h4 {
  margin: 0 0 10px;
  font-weight: 500;
  color: #ffffff;
  font-size: 20px;
  font-family: Inter;
  line-height: 22px;
}

.procedure-info p {
  font-family: inter;
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  color: #ffffff;
}

.procedure-info a {
  font-family: Fira Code;
  font-size: 12px;
  color: #00baae;
  line-height: 22px;
  font-weight: 450;
  text-decoration: none;
}

.procedure-info a:hover {
  text-decoration: underline;
}

.optimize-right {
  flex: 1 1 500px;
}

.image-container {
  overflow: hidden;
  border: 2px solid #00baae;
  border-radius: 8px;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .optimize-section {
    align-items: center;
  }

  .image-container {
    clip-path: none;
    border-radius: 12px;
  }
  .optimize-heading h2 span {
    font-size: 32px;
    line-height: 26px;
  }
  .optimize-heading h2 {
    font-size: 12px;
    line-height: 26px;
  }
} */
.about-page-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.about-page-container .about-page-left-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.about-page-box {
  padding: 25px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
  position: relative;
  text-align: center;
  font-weight: 600;
  color: #333;
}

.about-page-box:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.about-page-box.active::after {
  color: white;
  background: #003330;
}

.about-page-right-section {
  margin: 50px 0;
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #00baae;
  border-radius: 12px;
}

.about-page-image-section {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about-page-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.about-page-image-section img.active {
  opacity: 1;
}

.about-page-arrow-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.about-arrow {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-arrow.active {
  opacity: 1;
}

.about-arrow-line {
  stroke: #00baae;
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 5, 5;
}

.arrow-head {
  fill: #00baae;
}

@keyframes dash {
  to {
    stroke-dashoffset: -10;
  }
}

@media (max-width: 992px) {
  .about-page-container {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .about-page-arrow-section {
    display: none;
  }

  .about-page-container {
    flex-direction: column;
    gap: 20px;
  }

  .about-page-container .workflow-procedure-list {
    gap: 10px;
  }

  .about-page-right-section {
    margin: 20px 0;
  }

  .about-page-box {
    padding: 20px;
  }

  .about-page-image-section {
    height: 300px;
  }
}

/* ========================================================================================================================
========================================================================================================================
========================================================================================================================
======================================================================================================================== */

/* ==================== RESOURCES SECTION STYLING START ===================== */
.resources-box-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 100px auto;
  width: 80%;
}

.resources-box {
  position: relative;
  height: 400px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  filter: brightness(80%);
}

.resources-box::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(to bottom, var(--border-color), #2be8f9);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

.resources-box-1::after {
  --border-color: #c70404;
}

.resources-box-2::after {
  --border-color: #7206b8;
}

.resources-box-3::after {
  --border-color: #7cf95d;
}

.resources-box-4::after {
  --border-color: #ffa100;
}

.resources-box-5::after {
  --border-color: #006bff;
}

.resources-box-6::after {
  --border-color: #b1b1b1;
}

.resources-box-7::after {
  --border-color: #f565d3;
}

.resources-box-8::after {
  --border-color: #ffa100;
}

.resources-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  filter: brightness(100%);
}

.resources-box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Larger triangle clip path in the background */
.resources-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 1;
  opacity: 0.7;
}

/* Move the ::before triangle to bottom right on hover */
.resources-box:hover::before {
  top: auto;
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
}

/* Smaller triangle clip path in the foreground */
.resources-box .resources-box-triangle {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 2;
}

/* Move the triangle to bottom right on hover */
.resources-box:hover .resources-box-triangle {
  top: auto;
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
}


/* Background triangle colors (slightly different) */
.resources-box-1::before {
  background: linear-gradient(to bottom, #dc1035, #76091d);
}

.resources-box-2::before {
  background: linear-gradient(to bottom, #9100ca, #2c0d41);
}

.resources-box-3::before {
  background: linear-gradient(to bottom, #00ce4f, #045d26);
}

.resources-box-4::before {
  background: linear-gradient(to bottom, #ffff34, #8d6603);
}

.resources-box-5::before {
  background: linear-gradient(to bottom, #064baf, #003478);
}

.resources-box-6::before {
  background: linear-gradient(to bottom, #c3c3c3a8, #5c5c5c);
}

.resources-box-7::before {
  background: linear-gradient(to bottom, #ce009b, #760676);
}

.resources-box-8::before {
  background: linear-gradient(to bottom, #dd9c2b, #8d6603);
}

/* Foreground triangle colors */
.resources-box-1 .resources-box-triangle {
  background-color: #e2062e;
}

.resources-box-2 .resources-box-triangle {
  background-color: #72049f;
}

.resources-box-3 .resources-box-triangle {
  background-color: #00c265;
}

.resources-box-4 .resources-box-triangle {
  background-color: #ffffff;
}

.resources-box-5 .resources-box-triangle {
  background-color: #0059d9;
}

.resources-box-6 .resources-box-triangle {
  background-color: #a7a6a7;
}

.resources-box-7 .resources-box-triangle {
  background-color: #ff02b7;
}

.resources-box-8 .resources-box-triangle {
  background-color: #ffa201;
}

.resources-box-content {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.resources-box-heading-container {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  transition: opacity 0.3s;
}

.resources-box-content-container {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  transition: opacity 0.3s;
}

.resources-box-heading {
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
  margin: 0;
  color: #ffffff;
}

/* heading colours */
.resources-box-heading-1 {
  color: #e2062e;
}

.resources-box-heading-2 {
  color: #a426f5;
}

.resources-box-heading-3 {
  color: #2ac465;
}

.resources-box-heading-4 {
  color: #00f2e2;
}

.resources-box-heading-5 {
  color: #006bff;
}

.resources-box-heading-6 {
  color: #939393;
}

.resources-box-heading-7 {
  color: #ff02b7;
}

.resources-box-heading-8 {
  color: #ffbd4c;
}

.resources-box-heading-container p {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-top: 30px;
  color: #ffffff;
}

.resources-box-content {
  color: #ffffff;
  font-size: 12px;
  line-height: 16px;
  margin: 0;
}

/* Hide original content on hover */
.resources-box:hover .resources-box-heading-container,
.resources-box:hover .resources-box-content-container {
  opacity: 0;
}

/* Hover content styling */
.hover-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.resources-box:hover .hover-content {
  opacity: 1;
}

.hover-content-top {
  margin-bottom: 10px;
}

.hover-content-middle {
  flex-grow: 1;
  overflow-y: auto;
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.4;
}

.hover-content-bottom {
  margin-top: 10px;
  text-align: left;
}

.hover-content p {
  color: #ffffff;
  margin: 0;
}

.hover-content-top h2 {
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
  margin: 0;
  color: #ffffff;
}

.hover-content-middle p {
  font-size: 12px;
  line-height: 16px;
}

.hover-content-bottom p {
  font-size: 16px;
  font-weight: bold;
}

/* ============= BLOG SECTION STYLING START ============= */
.resources-page-blog-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  width: 80%;
}

.resources-page-blog-section {
  background-color: #000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0 auto;
  padding: 40px 0;
  position: relative;
}

.resources-page-blog-heading {
  font-weight: 500;
  font-size: 64px;
  line-height: 44px;
  color: #00baae;
  margin-bottom: 40px;
  padding-left: 20px;
}

.blog-carousel-container {
  position: relative;
  overflow: hidden;
  max-width: none;
  scroll-padding: 0 calc(50% - 325px);
  /* Half of container width minus half of card width */
}

.resources-page-blog-carousel {
  display: flex;
  gap: 80px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 40px;
  align-items: center;
  height: 480px;
  max-width: 100%;
  scrollbar-width: none;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.resources-page-blog-carousel::-webkit-scrollbar {
  display: none;
}

/* Base Card Styling */
.resources-page-blog-card {
  position: relative;
  border: 1px solid transparent;
  border-image: linear-gradient(to bottom, #ffa100, #2be8f9) 1;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.5s ease;
  flex: 0 0 650px;
  height: 400px;
  transform-origin: center;
}

.resources-page-blog-card.active {
  transform: scale(1.1);
  z-index: 10;
}

.resources-page-blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay content */
.resources-page-blog-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 40px 60px;
  color: white;
}

/* Author section */
.resources-page-blog-author {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 60px;
  display: flex;
  align-items: center;
}

.resources-page-blog-author img {
  width: 44px;
  height: 47px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.resources-page-blog-author p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.resources-page-blog-author span {
  font-size: 12px;
  color: #ccc;
  font-weight: 500;
}

/* Labels and Titles */
.resources-page-blog-label {
  font-size: 16px;
  color: #ffbd4c;
  font-weight: 700;
}

.resources-page-blog-title {
  font-size: 36px;
  font-weight: 500;
  margin: 40px 0 10px 0;
  line-height: 1.3;
}

/* Navigation buttons */
.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffa100, #2be8f9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  border: none;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-button i,
.testimonial-pagination .arrow i {
  font-size: inherit;
  line-height: 1;
}

.prev-button {
  left: 20px;
}

.next-button {
  right: 20px;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .resources-page-blog-card {
    flex: 0 0 600px;
  }
}

@media (max-width: 992px) {
  .resources-page-blog-container {
    width: 90%;
  }

  .resources-page-blog-card {
    flex: 0 0 500px;
    height: 350px;
  }

  .resources-page-blog-carousel {
    gap: 60px;
    height: 430px;
  }

  .resources-page-blog-heading {
    font-size: 54px;
  }

  .resources-page-blog-title {
    font-size: 30px;
  }

  .resources-page-blog-content,
  .resources-page-blog-author {
    padding: 30px 40px;
  }
}

@media (max-width: 768px) {
  .resources-page-blog-container {
    width: 95%;
    margin: 20px auto;
  }

  .resources-page-blog-card {
    flex: 0 0 400px;
    height: 300px;
  }

  .resources-page-blog-carousel {
    gap: 40px;
    height: 380px;
    padding: 30px;
  }

  .resources-page-blog-heading {
    font-size: 44px;
    line-height: 36px;
  }

  .resources-page-blog-title {
    font-size: 24px;
    margin: 20px 0 5px 0;
  }

  .resources-page-blog-content,
  .resources-page-blog-author {
    padding: 20px 30px;
  }

  .nav-button {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .resources-page-blog-container {
    width: 100%;
    padding: 10px;
  }

  .resources-page-blog-card {
    flex: 0 0 300px;
    height: 250px;
  }

  .resources-page-blog-carousel {
    gap: 30px;
    height: 330px;
    padding: 20px;
  }

  .resources-page-blog-heading {
    font-size: 36px;
    line-height: 30px;
    margin-bottom: 20px;
  }

  .resources-page-blog-title {
    font-size: 20px;
    margin: 15px 0 5px 0;
  }

  .resources-page-blog-content,
  .resources-page-blog-author {
    padding: 15px 20px;
  }

  .resources-page-blog-label {
    font-size: 14px;
  }

  .resources-page-blog-author img {
    width: 36px;
    height: 36px;
  }

  .resources-page-blog-author p {
    font-size: 14px;
  }

  .resources-page-blog-author span {
    font-size: 10px;
  }

  .nav-button {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .resources-page-blog-card {
    flex: 0 0 260px;
    height: 220px;
  }

  .resources-page-blog-carousel {
    gap: 20px;
    height: 300px;
    padding: 15px;
  }

  .resources-page-blog-heading {
    font-size: 32px;
    line-height: 28px;
  }

  .resources-page-blog-title {
    font-size: 18px;
    margin: 10px 0 5px 0;
  }

  .resources-page-blog-content,
  .resources-page-blog-author {
    padding: 10px 15px;
  }

  .nav-button {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}

/* ============= CAPABILITIES SECTION STYLING START ============ */
.capabilities-section {
  max-width: 1200px;
  margin: 0 auto;
  width: 80%;
  margin: 40px auto;
}

.capabilities-title {
  font-family: "Exo 2", sans-serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 44px;
  color: #00baae;
  margin-bottom: 20px;
  text-align: left;
  padding-bottom: 30px;
  border-bottom: 0.2px solid #00f2e2;
  width: 80%;
}

.capabilities-subtitle {
  font-family: "Exo 2", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #ffffff;
  margin-bottom: 32px;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 1024px) {
  .capabilities-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.accordion-item {
  margin-bottom: 24px;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.accordion-header h3 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  color: #00baae;
}

.accordion-header span {
  font-size: 24px;
  color: #00baae;
}

.accordion-description,
.accordion-list {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 23px;
  color: #b5b5b5;
}

.accordion-list {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 0;
}

.accordion-group button {
  width: 100%;
  padding: 20px 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #00baae;
  background: linear-gradient(to top, #00544e02, #00baae59);
  border: 1px solid #155e75;
  border-radius: 6px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.accordion-group button:hover {
  background-color: #083344;
}

.capabilities-right {
  width: 96%;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.testimonial-header h4 {
  font-family: "Exo 2", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 44px;
  color: #00baae;
}

.testimonial-pagination {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #00baae;
  display: flex;
  align-items: center;
  gap: 8px;
}

.arrow {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 1rem;
}

.testimonial-quote {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #b5b5b5;
  margin: 60px 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 77px;
  height: 83px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 16px;
  color: #ffffff;
  margin-bottom: 6px;
}

.author-meta {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 29px;
  color: #ffffff;
}

/* Responsive Styling  */
@media (max-width: 1200px) {
  .resources-box-grid-container {
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
  }
}

@media (max-width: 768px) {
  .resources-box-grid-container {
    width: 90%;
    grid-template-columns: repeat(2, 1fr);
  }

  .accordion-item {
    margin-bottom: 24px;
    border: 1px solid #f4f4f4a8;
    border-radius: 10px;
    padding: 10px;
    background: linear-gradient(to bottom, #000000, #022220);
  }
}

@media (max-width: 576px) {
  .resources-box-grid-container {
    position: relative;
    grid-template-columns: 1fr;
    margin-top: -70px;
    z-index: 2;
  }

  .resources-box {
    height: 400px;
    max-width: 320px;
    width: 90%;
    margin: 0 auto;
  }

  .hover-content-middle p {
    font-size: 10px;
    line-height: 14px;
  }
}

@media (max-width: 480px) {
  .resources-box {
    height: 350px;
    max-width: 280px;
    width: 95%;
    margin: 0 auto;
  }

  .capabilities-section {
    width: 90%;
  }

  .capabilities-title {
    font-size: 24px;
    line-height: 30px;
    width: 100%;
    padding-bottom: 10px;
  }

  .capabilities-subtitle {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .accordion-header h3 {
    font-size: 16px;
  }

  .accordion-description,
  .accordion-list {
    font-size: 12px;
  }

  .accordion-header {
    padding: 0;
    margin-bottom: 8px;
  }

  .accordion-group button {
    padding: 16px;
    font-size: 16px;
    margin-bottom: 16px;
  }

  .testimonial-header {
    margin-bottom: 0;
  }

  .testimonial-header h4 {
    font-size: 16px;
    line-height: 44px;
  }

  .testimonial-pagination {
    font-size: 16px;
  }

  .testimonial-quote {
    font-size: 12px;
    line-height: 16px;
    margin: 5px 0;
  }

  .testimonial-author {
    margin-top: 20px;
  }

  .testimonial-author img {
    width: 45px;
    height: 45px;
  }

  .author-name {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 0px;
  }

  .author-meta {
    font-size: 12px;
    line-height: 16px;
  }
}

/* ========================================================================================================================
========================================================================================================================
========================================================================================================================
======================================================================================================================== */

/* =================== TAIORED SECTION STYLING STAT ================== */
.tailored-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 138px 24px 88px;
  overflow: hidden;
}

.tailored-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.tailored-section-inner {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 36px;
  align-items: center;
}

.tailored-content {
  z-index: 1;
  text-align: left;
  max-width: 690px;
}

.tailored-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 242, 226, 0.18);
  background: rgba(7, 16, 22, 0.72);
  color: #00f2e2;
  font-family: "Exo 2";
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(0, 242, 226, 0.06);
}

.tailored-content h1 {
  font-family: "Exo 2";
  font-size: clamp(54px, 5vw, 88px);
  margin: 0;
  line-height: 0.94;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.tailored-content h1 .tailored-highlight {
  color: #00f2e2;
  font-family: "Exo 2";
  font-weight: 600;
  display: block;
  font-size: clamp(30px, 3.5vw, 54px);
  line-height: 1.05;
  padding-top: 14px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 242, 226, 0.3);
}

.tailored-content .tailored-subtext {
  max-width: 600px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 28px;
}

.tailored-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.tailored-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: "Exo 2";
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.tailored-btn:hover {
  transform: translateY(-1px);
}

.tailored-btn-primary {
  color: #001215;
  background: linear-gradient(135deg, #00f2e2, #00baae);
  box-shadow: none;
}

.tailored-btn-primary:hover {
  box-shadow: none;
}

.tailored-btn-secondary {
  color: #ffffff;
  border: 1px solid rgba(0, 242, 226, 0.24);
  background: rgba(9, 18, 24, 0.64);
  box-shadow: none;
}

.tailored-btn-secondary:hover {
  border-color: rgba(0, 242, 226, 0.42);
  background: rgba(9, 18, 24, 0.86);
  box-shadow: none;
}

.tailored-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tailored-trust-chip {
  min-width: 170px;
  flex: 1 1 170px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(0, 242, 226, 0.12);
  background: rgba(7, 14, 19, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.tailored-trust-chip strong {
  display: block;
  color: #00f2e2;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 6px;
  font-family: "Exo 2";
}

.tailored-trust-chip span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.5;
}

.tailored-hero-visual {
  position: relative;
  z-index: 1;
}

.tailored-visual-card {
  position: relative;
  min-height: 520px;
  border-radius: 34px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(0, 242, 226, 0.16);
  background:
    radial-gradient(circle at 20% 18%, rgba(0, 242, 226, 0.14), transparent 22%),
    radial-gradient(circle at 84% 24%, rgba(0, 186, 174, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(14, 21, 27, 0.98), rgba(4, 9, 12, 0.98));
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tailored-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 242, 226, 0.06), transparent 28%),
    linear-gradient(315deg, rgba(0, 242, 226, 0.04), transparent 24%);
  pointer-events: none;
}

.tailored-visual-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.tailored-visual-orb-a {
  width: 180px;
  height: 180px;
  top: 32px;
  right: -34px;
  background: radial-gradient(circle, rgba(0, 242, 226, 0.2), rgba(0, 242, 226, 0.02) 68%, transparent 72%);
}

.tailored-visual-orb-b {
  width: 130px;
  height: 130px;
  bottom: 10px;
  left: -18px;
  background: radial-gradient(circle, rgba(0, 186, 174, 0.16), rgba(0, 186, 174, 0.02) 72%, transparent 76%);
}

.tailored-visual-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.tailored-visual-kicker {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}

.tailored-visual-header strong {
  display: block;
  color: #ffffff;
  font-family: "Exo 2";
  font-size: 24px;
  line-height: 1.25;
  max-width: 320px;
}

.tailored-visual-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 242, 226, 0.28);
  background: rgba(0, 242, 226, 0.08);
  color: #00f2e2;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tailored-visual-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.tailored-visual-metric {
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(7, 14, 19, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tailored-visual-metric span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tailored-visual-metric strong {
  display: block;
  color: #00f2e2;
  font-size: 28px;
  line-height: 1;
  font-family: "Exo 2";
}

.tailored-visual-board {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(0, 242, 226, 0.12);
  background: rgba(4, 9, 13, 0.72);
}

.tailored-visual-board-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tailored-visual-board-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tailored-visual-board-row:first-child {
  padding-top: 0;
}

.tailored-visual-board-row span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.tailored-visual-board-row strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.tailored-visual-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tailored-visual-footer span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 242, 226, 0.12);
  background: rgba(0, 242, 226, 0.04);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.index-hero-shadow-overlay {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent 18%);
}

@media (max-width: 992px) {
  .tailored-section {
    min-height: auto;
    padding: 124px 20px 72px;
  }

  .tailored-section-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tailored-content {
    max-width: 100%;
  }

  .tailored-hero-visual {
    max-width: 760px;
    width: 100%;
  }

  .tailored-visual-card {
    min-height: 460px;
  }
}

@media (max-width: 768px) {
  .tailored-section {
    padding: 110px 16px 64px;
  }

  .tailored-content h1 {
    font-size: clamp(40px, 8vw, 54px);
  }

  .tailored-content h1 .tailored-highlight {
    font-size: clamp(24px, 5vw, 36px);
  }

  .tailored-subtext {
    font-size: 16px;
  }

  .tailored-visual-card {
    min-height: auto;
    padding: 22px;
  }

  .tailored-visual-header {
    flex-direction: column;
  }

  .tailored-visual-metrics {
    grid-template-columns: 1fr;
  }

  .tailored-visual-footer {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .tailored-section {
    padding: 96px 14px 54px;
  }

  .tailored-eyebrow {
    font-size: 12px;
    padding: 8px 12px;
  }

  .tailored-content h1 {
    font-size: 38px;
  }

  .tailored-content h1 .tailored-highlight {
    font-size: 22px;
    padding-top: 10px;
    padding-bottom: 18px;
    margin-bottom: 18px;
  }

  .tailored-subtext {
    font-size: 15px;
    line-height: 1.7;
  }

  .tailored-btn {
    width: 100%;
  }

  .tailored-trust-chip {
    min-width: 100%;
  }

  .tailored-visual-card {
    padding: 18px;
    border-radius: 28px;
  }

  .tailored-visual-header strong {
    font-size: 20px;
  }

  .tailored-visual-metric strong {
    font-size: 24px;
  }
}

/* ======================== RECOGNITION SECTION STYLING START ========================== */
.recognition-section {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

.recognition-header {
  font-family: "Exo 2";
  font-size: 104px;
  line-height: 77px;
  color: #00baae;
  font-weight: 600;
  margin: 50px 0;
}

.recognition-link {
  display: inline-block;
  font-family: Inter;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 30px;
}

.recognition-box-container {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  gap: 0;
  max-width: 1200px;
  width: 100%;
}

.recognition-box-text-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 20px;
  color: #fff;
  clip-path: polygon(80px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 80px);
  transition: transform 0.3s ease;
  overflow: hidden;
  z-index: 1;
  margin-top: 100px;
}

.recognition-box-text-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(80px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 80px);
  background: linear-gradient(to bottom, #606060, #3f7893);
  z-index: -2;
  border-radius: 10px;
}

.recognition-box-text-card::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  clip-path: polygon(80px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 80px);
  background: linear-gradient(to bottom, #051514, #031311);
  z-index: -1;
  border-radius: 10px;
}

@keyframes scan {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.recognition-box-mission-text {
  color: #e0e0e0;
  line-height: 20px;
  font-size: 14px;
  font-weight: 300;
  text-align: justify;
  height: fit-content;
  padding-left: 60px;
  border-radius: 10px;
}

.recognition-box-company-name {
  color: #40e0d0;
  font-weight: 600;
}

/* ------  */
.recognition-box-card {
  position: relative;
  transition: all 0.3s ease;
}

.recognition-box-image-card {
  background: #00baae;
  clip-path: polygon(80px 0%,
      100% 0%,
      100% calc(100% - 80px),
      calc(100% - 80px) 100%,
      0% 100%,
      0% 80px);
  padding: 1px;
  border-radius: 15px;
  position: relative;
  height: fit-content;
  transition: all 0.3s ease;
}

.recognition-box-card:hover .recognition-box-image-card {
  background: linear-gradient(45deg, #00baae, #00f2e2, #40e0d0);
  box-shadow: 0 0 30px rgba(0, 186, 174, 0.6);
  transform: scale(1.02);
}

.image-inner-container {
  background: #000;
  clip-path: polygon(80px 0%,
      100% 0%,
      100% calc(100% - 80px),
      calc(100% - 80px) 100%,
      0% 100%,
      0% 80px);
  border-radius: 16px;
  overflow: hidden;
}

.recognition-box-image-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

@media (max-width: 992px) {
  .recognition-section {
    width: 90%;
  }

  .recognition-link {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .recognition-box-mission-text {
    line-height: 18px;
    font-size: 14px;
    padding-left: 40px;
  }
}

@media (max-width: 768px) {
  .recognition-box-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-bottom: 20px;
  }

  .recognition-box-image-card,
  .recognition-box-text-card {
    padding: 1.5rem;
  }

  .recognition-box-mission-text {
    font-size: 1rem;
  }

  .recognition-header {
    font-size: 64px;
    line-height: 64px;
    margin: 20px 0;
  }

  .recognition-box-image-card {
    padding: 1px;
    width: 70%;
    clip-path: polygon(60px 0%,
        100% 0%,
        100% calc(100% - 60px),
        calc(100% - 60px) 100%,
        0% 100%,
        0% 60px);
    border-radius: 8px;
  }

  .recognition-box-image-card img {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
  }

  .image-inner-container {
    clip-path: polygon(60px 0%,
        100% 0%,
        100% calc(100% - 60px),
        calc(100% - 60px) 100%,
        0% 100%,
        0% 60px);
    border-radius: 8px;
  }

  .recognition-box-text-card {
    padding: 10px;
    margin-top: 0;
    margin-left: 25%;
    clip-path: polygon(60px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 60px);
  }

  .recognition-box-mission-text {
    line-height: 18px;
    font-size: 14px;
    padding-left: 60px;
  }
}

@media (max-width: 480px) {
  .recognition-section {
    position: relative;
    width: 95%;
    padding: 20px 0;
    margin-top: -70px;
  }

  .recognition-header {
    font-size: 32px;
    line-height: 36px;
    margin: 10px 0;
  }

  .recognition-link {
    font-size: 10px;
    margin-bottom: 0;
  }

  .recognition-box-container {
    gap: 10px;
  }

  .recognition-box-image-card img {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
  }

  .recognition-box-text-card {
    padding: 10px;
    margin-top: 0;
    margin-left: 25%;
    clip-path: polygon(60px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 60px);
  }

  .recognition-box-mission-text {
    line-height: 15px;
    font-size: 10px;
    padding-left: 45px;
    border-radius: 10px;
  }

  .recognition-box-text-card::after {
    clip-path: polygon(60px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 60px);
  }

  .recognition-box-text-card::before {
    clip-path: polygon(60px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 60px);
  }
}

/* ======================== RECOGNITION SECTION BOXES ========================== */
.our-experience-grid {
  max-width: 1200px;
  margin: 50px auto;
  width: 80%;
}

.recognition-box-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-top: 100px;
  font-family: "Inter";
}

.recognition-box-content {
  text-align: left;
  border-right: 1px solid #00f2e2;
}

.recognition-box-content:last-child {
  border-right: none;
}

.recognition-box-value {
  font-size: 60px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.recognition-box-label {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 10px;
}

.recognition-box-note {
  font-size: 12px;
  margin-top: 5px;
  color: #ffffff;
  font-weight: 400;
}

@media (max-width: 992px) {
  .our-experience-grid {
    width: 90%;
  }

  .recognition-box-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 20px;
  }

  .recognition-box-content {
    border: none;
    padding: 20px;
    position: relative;
    background-color: #000;
  }

  .recognition-box-content:nth-child(1)::after,
  .recognition-box-content:nth-child(2)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background-color: #00f2e2;
  }

  .recognition-box-content:nth-child(2)::before,
  .recognition-box-content:nth-child(4)::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 0;
    width: 1px;
    background-color: #00f2e2;
  }

  .recognition-box-content:nth-child(2) {
    border-right: none;
  }

  .recognition-box-value {
    justify-content: start;
    gap: 30px;
  }
}

/* ======================== RECOGNITION MODERN SECTION START ========================== */
.recognition-modern.recognition-section {
  width: min(1360px, calc(100% - 40px));
  max-width: none;
  margin: 0 auto;
  padding: 92px 0 80px;
  background: #000000;
}

.recognition-modern {
  position: relative;
}

.recognition-modern::before {
  display: none;
}

.recognition-modern::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 60px));
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 242, 226, 0.16), transparent 72%);
  filter: blur(18px);
  opacity: 0.55;
  pointer-events: none;
}

.recognition-modern-shell {
  position: relative;
  z-index: 1;
  border-radius: 34px;
  padding: 36px;
  background: #050505;
  border: 1px solid rgba(0, 242, 226, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.recognition-modern-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 38%);
  pointer-events: none;
}

.recognition-modern-head {
  display: grid;
  gap: 14px;
  max-width: 1080px;
  margin-bottom: 26px;
}

.recognition-modern-eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 242, 226, 0.10);
  color: #00f2e2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.recognition-modern-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.recognition-modern-title-row h2 {
  margin: 0;
  max-width: 820px;
  color: #ffffff;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.05em;
}

.recognition-modern-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 12px 16px;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 242, 226, 0.14);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.recognition-modern-link:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 242, 226, 0.28);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.recognition-modern-head p {
  margin: 0;
  max-width: 900px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.8;
}

.recognition-modern-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(380px, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.recognition-modern-visual,
.recognition-modern-story {
  min-width: 0;
}

.recognition-modern-frame {
  position: relative;
  height: 100%;
  min-height: 420px;
  border-radius: 28px;
  padding: 18px;
  background:
    radial-gradient(circle at top, rgba(0, 242, 226, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(12, 12, 14, 0.98), rgba(6, 6, 8, 0.98));
  border: 1px solid rgba(0, 242, 226, 0.10);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.recognition-modern-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 30%);
  pointer-events: none;
}

.recognition-modern-image-wrap {
  height: calc(100% - 108px);
  border-radius: 22px;
  overflow: hidden;
  background: #06080d;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.recognition-modern-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.recognition-modern-chip {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(0, 242, 226, 0.10), transparent 34%),
    rgba(6, 8, 12, 0.94);
  border: 1px solid rgba(0, 242, 226, 0.16);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.recognition-modern-chip-label {
  display: inline-block;
  margin-bottom: 8px;
  color: #00f2e2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.recognition-modern-chip strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
}

.recognition-modern-story-card {
  height: 100%;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(0, 242, 226, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(12, 12, 14, 0.98), rgba(6, 6, 8, 0.98));
  border: 1px solid rgba(0, 242, 226, 0.10);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.recognition-modern-story-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 242, 226, 0.10);
  color: #00f2e2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.recognition-modern-story-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.9;
}

.recognition-modern-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.recognition-modern-points li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.6;
}

.recognition-modern-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 242, 226, 0.12);
  color: #00f2e2;
  font-size: 12px;
  font-weight: 800;
}

.recognition-modern-metrics {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.recognition-modern-metric {
  padding: 18px 16px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(0, 242, 226, 0.06), transparent 42%),
    linear-gradient(180deg, rgba(14, 14, 16, 0.98), rgba(6, 6, 8, 0.98));
  border: 1px solid rgba(0, 242, 226, 0.08);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  text-align: center;
}

.recognition-modern-metric strong {
  display: block;
  color: #00f2e2;
  font-size: clamp(1.7rem, 2.4vw, 2.7rem);
  line-height: 1;
  margin-bottom: 8px;
}

.recognition-modern-metric span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .recognition-modern-grid {
    grid-template-columns: 1fr;
  }

  .recognition-modern-frame {
    min-height: 360px;
  }

  .recognition-modern-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .recognition-modern.recognition-section {
    width: min(100% - 28px, 1360px);
    padding: 66px 0 56px;
  }

  .recognition-modern-shell {
    padding: 24px;
    border-radius: 26px;
  }

  .recognition-modern-title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .recognition-modern-head p {
    font-size: 15px;
  }

  .recognition-modern-story-card {
    padding: 22px;
  }

  .recognition-modern-frame {
    min-height: 300px;
  }

  .recognition-modern-image-wrap {
    height: calc(100% - 92px);
  }

  .recognition-modern-chip {
    left: 16px;
    right: 16px;
    bottom: 14px;
    padding: 14px 16px;
  }

  .recognition-modern-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .recognition-box-value {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .our-experience-grid {
    width: 95%;
    margin-top: -70px;
    position: relative;
    z-index: 2;
  }

  .recognition-box-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 20px;
  }

  .recognition-box-content {
    padding: 20px;
  }

  .recognition-box-value {
    justify-content: start;
    gap: 20px;
  }

  .recognition-box-label {
    font-size: 16px;
  }
}

/* ======================= OUR SERVICE SECTION STYLING START ==================== */
.contact-fold-section {
  padding: 34px 20px 82px;
  background: #000;
  overflow: hidden;
}

.contact-fold-shell {
  max-width: 1600px;
  margin: 0 auto;
}

.contact-fold-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(620px, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.contact-fold-map {
  position: relative;
  min-height: 820px;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 38% 38%, rgba(0, 242, 226, 0.12), transparent 20%),
    linear-gradient(135deg, #071f21 0%, #061214 45%, #041012 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 60px rgba(0, 0, 0, 0.28);
}

.contact-fold-map::before,
.contact-fold-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-fold-map::before {
  background:
    repeating-linear-gradient(110deg, transparent 0 16px, rgba(10, 42, 45, 0.28) 16px 18px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.06));
  opacity: 0.5;
}

.contact-fold-map::after {
  background: radial-gradient(circle at center, rgba(0, 242, 226, 0.05), transparent 55%);
}

.contact-fold-map img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92%;
  height: 92%;
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -50%);
  opacity: 0.78;
  filter: saturate(1.05) contrast(1.05);
}

.contact-fold-map-glow {
  position: absolute;
  left: 12%;
  top: 15%;
  width: 36%;
  height: 36%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 242, 226, 0.14), transparent 70%);
  filter: blur(18px);
  opacity: 0.55;
}

.contact-map-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.06);
  animation: pinPulse 2.8s ease-in-out infinite;
}

.contact-map-pin-one {
  left: 24%;
  top: 42%;
}

.contact-map-pin-two {
  left: 48%;
  top: 41%;
}

.contact-map-pin-three {
  left: 34%;
  top: 68%;
}

.contact-map-pin-four {
  left: 63%;
  top: 36%;
}

.contact-map-pin-five {
  left: 73%;
  top: 55%;
}

.contact-country-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(6, 20, 24, 0.85);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.24);
}

.contact-country-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #29a3a3;
  box-shadow: 0 0 12px rgba(41, 163, 163, 0.9);
}

.contact-country-usa {
  left: 14%;
  top: 27%;
}

.contact-country-uk {
  left: 45%;
  top: 21%;
}

.contact-country-uae {
  left: 57%;
  top: 40%;
}

.contact-country-india {
  left: 63%;
  top: 50%;
}

.contact-country-aus {
  left: 78%;
  top: 67%;
}

.contact-country-can {
  left: 22%;
  top: 18%;
}

.contact-country-ger {
  left: 48%;
  top: 27%;
}

.contact-fold-card {
  position: relative;
  min-height: 820px;
  padding: 50px 54px 44px;
  border-radius: 20px;
  background: rgba(40, 53, 59, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.contact-fold-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 242, 226, 0.10), transparent 18%),
    radial-gradient(circle at 50% 55%, rgba(0, 242, 226, 0.05), transparent 22%);
  pointer-events: none;
}

.contact-fold-card > * {
  position: relative;
  z-index: 1;
}

.contact-fold-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
}

.contact-fold-eyebrow i {
  color: #2aa4a8;
  font-size: 14px;
}

.contact-fold-card h2 {
  margin: 0 0 36px;
  color: #ffffff;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3rem, 3.8vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.contact-fold-card h2 span {
  color: #2aa4a8;
}

.contact-fold-details {
  display: grid;
  gap: 14px;
  margin: -14px 0 30px;
}

.contact-fold-details article {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.075);
}

.contact-fold-details strong {
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-fold-details span,
.contact-fold-details a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.45;
  text-decoration: none;
}

.contact-fold-form {
  margin-top: 0;
}

.contact-fold-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 22px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.contact-field span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.2;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #ffffff;
  font-family: "Exo 2", sans-serif;
  font-size: 16px;
  padding: 12px 0 14px;
  outline: none;
  resize: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.contact-field select {
  appearance: none;
  padding-right: 28px;
  background-image: linear-gradient(45deg, transparent 50%, #ffffff 50%), linear-gradient(135deg, #ffffff 50%, transparent 50%);
  background-position: calc(100% - 8px) calc(50% - 2px), calc(100% - 2px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-field textarea {
  min-height: 84px;
}

.contact-field-message {
  grid-column: 1 / -1;
  margin-top: 6px;
}

.contact-fold-submit {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 44px;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  background: #25969c;
  color: #ffffff;
  font-family: "Exo 2", sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.16);
}

.contact-fold-submit span {
  padding: 16px 26px;
}

.contact-fold-submit i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #071114;
  font-size: 16px;
}

@media (max-width: 1200px) {
  .contact-fold-grid {
    grid-template-columns: 1fr;
  }

  .contact-fold-map,
  .contact-fold-card {
    min-height: 720px;
  }
}

@media (max-width: 768px) {
  .contact-fold-section {
    padding: 24px 16px 72px;
  }

  .contact-fold-card {
    padding: 34px 24px 30px;
  }

  .contact-fold-card h2 {
    font-size: clamp(2.4rem, 8vw, 3.4rem);
    margin-bottom: 26px;
  }

  .contact-fold-form-grid {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .contact-fold-submit {
    margin-top: 32px;
  }
}

@media (max-width: 480px) {
  .contact-fold-map,
  .contact-fold-card {
    min-height: 560px;
  }

  .contact-fold-map img {
    width: 96%;
    height: 96%;
  }

  .contact-country-badge {
    font-size: 10px;
    min-height: 26px;
    padding: 0 10px;
  }
}

@keyframes pinPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.06);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.03);
  }
}

.featured-fold-section {
  padding: 22px 32px 78px;
  background: #000;
  overflow: hidden;
}

.featured-fold-shell {
  max-width: 1600px;
  margin: 0 auto;
}

.featured-fold-grid {
  display: grid;
  grid-template-columns: repeat(2, 628px);
  gap: 20px;
  align-items: stretch;
  justify-content: center;
}

.featured-fold-copy {
  position: relative;
  width: 100%;
  height: 640px;
  min-height: 640px;
  padding: 40px 34px 36px;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 16% 18%, rgba(0, 242, 226, 0.14), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(135deg, #071d1f 0%, #081316 56%, #061013 100%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.featured-fold-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, transparent 76%, rgba(255, 255, 255, 0.06) 76%, rgba(255, 255, 255, 0.06) 77%, transparent 77.5%),
    linear-gradient(115deg, transparent 0%, transparent 82%, rgba(255, 255, 255, 0.05) 82%, rgba(255, 255, 255, 0.05) 83%, transparent 83.5%);
  opacity: 0.7;
  pointer-events: none;
}

.featured-fold-copy > * {
  position: relative;
  z-index: 1;
}

.featured-fold-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 242, 226, 0.16);
  background: rgba(7, 16, 22, 0.62);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-self: flex-start;
}

.featured-fold-eyebrow i {
  color: #00f2e2;
  font-size: 12px;
}

.featured-fold-copy h2 {
  max-width: 600px;
  margin: 0 0 28px;
  color: #ffffff;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3rem, 3.6vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.featured-fold-copy h2 span {
  color: #00f2e2;
}

.featured-fold-copy > p {
  max-width: 520px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.7;
}

.featured-fold-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.featured-fold-arrow {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 36px;
  line-height: 1;
  flex-shrink: 0;
}

.featured-fold-meta-copy {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 1.6;
}

.featured-fold-visual {
  min-width: 0;
}

.featured-fold-image-wrap {
  position: relative;
  width: 100%;
  height: 640px;
  min-height: 640px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02)),
    #e6e6e6;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.featured-fold-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-fold-stat-card {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: min(320px, calc(100% - 40px));
  padding: 20px 20px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
}

.featured-fold-avatar-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.featured-fold-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffffff;
  margin-right: -10px;
  background: #dfe6e6;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.featured-fold-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-fold-avatar-plus {
  display: grid;
  place-items: center;
  margin-left: 4px;
  margin-right: 0;
  border: none;
  background: #29a3a3;
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
}

.featured-fold-stat-card strong {
  display: block;
  margin-bottom: 10px;
  color: #081114;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3rem, 3vw, 4rem);
  line-height: 1;
}

.featured-fold-stat-card p {
  margin: 0;
  max-width: 220px;
  color: rgba(8, 17, 20, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .featured-fold-grid {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .featured-fold-copy,
  .featured-fold-image-wrap {
    width: 100%;
    height: auto;
    min-height: 620px;
  }
}

@media (max-width: 768px) {
  .featured-fold-section {
    padding: 12px 16px 72px;
  }

  .featured-fold-copy {
    min-height: 0;
    width: 100%;
    height: auto;
    padding: 24px 20px 20px;
    border-radius: 24px;
  }

  .featured-fold-copy h2 {
    font-size: 1.85rem;
    margin-bottom: 16px;
  }

  .featured-fold-copy > p {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .featured-fold-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .featured-fold-arrow {
    width: 68px;
    height: 68px;
    font-size: 30px;
  }

  .featured-fold-image-wrap {
    width: 100%;
    height: auto;
    min-height: 560px;
    border-radius: 24px;
  }

  .featured-fold-stat-card {
    width: calc(100% - 24px);
    left: 12px;
    bottom: 12px;
    padding: 16px;
  }

  .featured-fold-avatar {
    width: 38px;
    height: 38px;
  }

  .featured-fold-stat-card strong {
    font-size: 2.6rem;
  }
}

@media (max-width: 480px) {
  .featured-fold-copy {
    padding: 20px 16px 18px;
  }

  .featured-fold-copy h2 {
    font-size: 1.85rem;
  }

  .featured-fold-copy > p,
  .featured-fold-meta-copy,
  .featured-fold-stat-card p {
    font-size: 15px;
  }

  .featured-fold-copy,
  .featured-fold-image-wrap {
    min-height: 400px;
  }

  .featured-fold-stat-card strong {
    font-size: 2.2rem;
  }
}

.services-section {
  background-color: #000;
  color: #fff;
  padding: 96px 20px 88px;
  font-family: "Exo 2", sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 60px));
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 242, 226, 0.10), transparent 72%);
  filter: blur(16px);
  opacity: 0.5;
  pointer-events: none;
}

.our-line-accent {
  width: min(240px, 28vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 242, 226, 0.9), transparent);
  border: none;
  margin: 18px auto 0;
}

.our-subtitle {
  width: min(820px, 100%);
  font-weight: 400;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  margin: 18px auto 56px;
}

.services-impact-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 242, 226, 0.18);
  color: #00f2e2;
  background: rgba(7, 16, 22, 0.72);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-section h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0;
}

.services-ellipse-shell {
  position: relative;
  width: min(1200px, 100%);
  margin: 0 auto;
  aspect-ratio: 2.1 / 1.15;
  min-height: 520px;
}

.services-ellipse-frame {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px solid rgba(0, 242, 226, 0.16);
  background:
    radial-gradient(circle at center, rgba(0, 242, 226, 0.05), transparent 46%),
    radial-gradient(circle at 50% 50%, rgba(0, 242, 226, 0.04), transparent 64%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 24px 70px rgba(0, 0, 0, 0.28);
}

.services-ellipse-frame::before,
.services-ellipse-frame::after {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  border: 1px dashed rgba(0, 242, 226, 0.10);
}

.services-ellipse-frame::after {
  inset: 18%;
}

.services-ellipse-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(280px, 25vw);
  aspect-ratio: 1 / 1.08;
  border-radius: 50%;
  border: 1px solid rgba(0, 242, 226, 0.18);
  background:
    radial-gradient(circle at 50% 40%, rgba(0, 242, 226, 0.18), transparent 52%),
    linear-gradient(180deg, rgba(9, 18, 24, 0.96), rgba(4, 8, 10, 0.98));
  box-shadow:
    inset 0 0 40px rgba(0, 242, 226, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px;
  z-index: 2;
}

.services-ellipse-core-orb {
  position: absolute;
  width: 68%;
  height: 68%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 242, 226, 0.14), transparent 72%);
  filter: blur(10px);
  pointer-events: none;
}

.services-ellipse-core strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 20px;
  line-height: 1.2;
  color: #ffffff;
  font-family: "Exo 2";
  text-align: center;
}

.services-ellipse-core span {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.services-core-badges {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 6px;
}

.services-core-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 242, 226, 0.14);
  background: rgba(0, 242, 226, 0.05);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-ellipse-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 242, 226, 0.16);
  background: rgba(9, 18, 24, 0.86);
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.03em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  z-index: 3;
}

.services-ellipse-node {
  position: absolute;
  width: min(260px, 24vw);
  padding: 18px 18px 16px;
  border-radius: 24px;
  border: 1px solid rgba(0, 242, 226, 0.14);
  background:
    linear-gradient(180deg, rgba(10, 18, 24, 0.95), rgba(5, 9, 12, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 40px rgba(0, 0, 0, 0.26);
  z-index: 3;
  text-align: left;
}

.services-ellipse-node::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00f2e2;
  box-shadow: 0 0 18px rgba(0, 242, 226, 0.5);
}

.services-ellipse-node strong {
  display: block;
  padding-left: 24px;
  color: #ffffff;
  font-family: "Exo 2";
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.services-ellipse-node span {
  display: block;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.6;
}

.services-node-top,
.services-pill-top {
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.services-node-top-right,
.services-pill-top-right {
  top: 16%;
  right: 5%;
}

.services-node-right,
.services-pill-right {
  top: 50%;
  right: -1%;
  transform: translateY(-50%);
}

.services-node-bottom-right,
.services-pill-bottom-right {
  bottom: 16%;
  right: 5%;
}

.services-node-bottom,
.services-pill-bottom {
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.services-node-bottom-left,
.services-pill-bottom-left {
  bottom: 16%;
  left: 5%;
}

.services-node-left,
.services-pill-left {
  top: 50%;
  left: -1%;
  transform: translateY(-50%);
}

.services-node-top-left,
.services-pill-top-left {
  top: 16%;
  left: 5%;
}

@media (max-width: 992px) {
  .services-section {
    padding: 84px 20px 72px;
  }

  .services-ellipse-shell {
    aspect-ratio: 1.6 / 1.4;
    min-height: 620px;
  }

  .services-ellipse-core {
    width: min(280px, 40vw);
  }

  .services-ellipse-node {
    width: min(240px, 26vw);
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 72px 16px 60px;
  }

  .services-ellipse-shell {
    aspect-ratio: 1 / 1.55;
    min-height: 760px;
  }

  .services-ellipse-core {
    width: min(250px, 70vw);
  }

  .services-ellipse-node {
    width: min(230px, 34vw);
  }
}

@media (max-width: 520px) {
  .services-ellipse-shell {
    aspect-ratio: 1 / 1.85;
    min-height: 820px;
  }

  .services-ellipse-core {
    width: min(220px, 78vw);
    padding: 22px;
  }

  .services-ellipse-core strong {
    font-size: 18px;
  }

  .services-ellipse-core span {
    font-size: 12px;
  }

  .services-node-top {
    top: 2%;
  }

  .services-node-top-right {
    top: 18%;
    right: 4%;
  }

  .services-node-right {
    right: -2%;
  }

  .services-node-bottom-right {
    bottom: 18%;
    right: 4%;
  }

  .services-node-bottom {
    bottom: 2%;
  }

  .services-node-bottom-left {
    bottom: 18%;
    left: 4%;
  }

  .services-node-left {
    left: -2%;
  }

  .services-node-top-left {
    top: 18%;
    left: 4%;
  }
}

/* =================== WORKING PROCESS SECTION STYLING START ================== */
.workflow-section {
  position: relative;
  padding: 92px 20px 76px;
  margin-top: 56px;
  background: #000000;
  overflow: hidden;
}

.workflow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(0, 242, 226, 0.08) 0%, rgba(255, 255, 255, 0) 38%),
    repeating-linear-gradient(115deg, rgba(0, 242, 226, 0.08) 0 2px, transparent 2px 16px);
  pointer-events: none;
  opacity: 0.4;
}

.workflow-shell {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}

.workflow-copy {
  max-width: 1440px;
  margin: 0 auto 46px;
  text-align: left;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr) auto;
  grid-template-areas:
    "eyebrow eyebrow eyebrow"
    "title copy cta";
  column-gap: 34px;
  row-gap: 18px;
  align-items: start;
}

.workflow-eyebrow {
  grid-area: eyebrow;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: fit-content;
  padding: 14px 34px;
  border-radius: 999px;
  background: rgba(8, 26, 26, 0.96);
  color: #00f2e2;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 242, 226, 0.16);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  line-height: 1;
}

.workflow-copy h2 {
  grid-area: title;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3rem, 4.2vw, 4.45rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
  max-width: 720px;
}

.workflow-copy p {
  grid-area: copy;
  margin: 0;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Inter";
  font-size: 17px;
  line-height: 1.65;
  padding-top: 22px;
}

.workflow-cta {
  grid-area: cta;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 6px;
  background-color: #00baae;
  color: #ffffff;
  text-decoration: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  border: none;
  box-shadow: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.workflow-cta span {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}

.workflow-cta:hover {
  transform: translateY(-1px);
  background-color: #00a995;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.workflow-step-card {
  position: relative;
  overflow: hidden;
  padding: 28px 26px 30px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.96) 0%, rgba(8, 8, 8, 0.98) 100%);
  border: 1px solid rgba(0, 242, 226, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  min-height: 360px;
}

.workflow-step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(0, 242, 226, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 34%);
  pointer-events: none;
}

.workflow-step-number {
  margin: 20px 0 28px;
  font-size: 102px;
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.08em;
  background: linear-gradient(180deg, #00f2e2 0%, rgba(0, 242, 226, 0.14) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.95;
}

.workflow-step-card h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.workflow-step-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-family: "Inter";
  font-size: 16px;
  line-height: 1.7;
}

@media screen and (max-width: 1200px) {
  .workflow-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "copy"
      "cta";
    gap: 16px;
  }

  .workflow-copy p {
    padding-top: 0;
    max-width: 700px;
  }

  .workflow-cta {
    justify-self: start;
    margin-top: 6px;
  }

  .workflow-grid {
    gap: 14px;
  }

  .workflow-step-card {
    padding: 28px 22px 26px;
  }
}

@media (max-width: 992px) {
  .workflow-section {
    padding-top: 70px;
  }

  .workflow-copy {
    margin-bottom: 34px;
    text-align: left;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
    max-width: 740px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .workflow-section {
    padding: 60px 16px 20px;
  }

  .workflow-copy h2 {
    font-size: 2.4rem;
  }

  .workflow-copy p {
    font-size: 16px;
    line-height: 1.7;
  }

  .workflow-cta {
    font-size: 15px;
  }

  .workflow-cta span {
    font-size: 16px;
  }

  .workflow-step-card {
    padding: 24px 20px 22px;
    min-height: 0;
    border-radius: 18px;
  }

  .workflow-step-number {
    margin: 16px 0 20px;
    font-size: 78px;
  }

  .workflow-step-card h3 {
    font-size: 22px;
  }

  .workflow-step-card p {
    font-size: 14px;
  }

}

@media screen and (max-width: 480px) {
  .workflow-section {
    padding: 50px 12px 10px;
  }

  .workflow-copy {
    margin-bottom: 26px;
  }

  .workflow-copy h2 {
    font-size: 1.7rem;
  }

  .workflow-copy p {
    font-size: 15px;
  }

  .workflow-cta {
    width: 100%;
    justify-content: center;
  }

  .workflow-step-card {
    border-radius: 16px;
  }

}

/* ============================ WHY INCOBIST SECTION STYLING START ============================= */
.why-incobist {
  text-align: center;
  padding: 50px 20px;
  position: relative;
  background: #000;
  font-family: "Exo 2", sans-serif;
}

.why-line-accent {
  width: 60%;
  height: 0.2px;
  background-color: #00f2e2;
  border: none;
  margin: 0 auto;
}

.why-subtitle {
  width: 60%;
  font-weight: 500;
  font-size: 20px;
  color: #fffafa;
  margin: 20px auto 100px auto;
}

.why-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.why-image {
  position: relative;
  z-index: 2;
}

.why-image img {
  width: 450px;
  height: auto;
}

.new-line-img {
  display: none;
}

.why-item {
  position: absolute;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
}

.why-item .why-text {
  position: absolute;
  z-index: 2;
  width: 270px;
  color: white;
}

.why-text-top-left {
  left: 0;
  top: 70px;
}

.why-text-top-right {
  right: -60px;
  top: 70px;
}

.why-text-mid-left {
  left: 0;
  top: 10px;
}

.why-text-mid-right {
  right: -110px;
  top: 10px;
}

.why-text-bottom-left {
  left: 70px;
  top: -30px;
}

.why-text-bottom-right {
  right: 100px;
  top: -30px;
}

.why-item span {
  font-size: 24px;
}

.why-text p {
  font-size: 14px;
  line-height: 20px;
}

.why-line-img {
  position: absolute;
  width: 330px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.why-line-mid-img {
  position: absolute;
  width: 210px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.why-line-bottom-img {
  position: absolute;
  width: 210px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

/* Specific Positions */
.why-top-left {
  top: 2px;
  left: 70px;
}

.why-mid-left {
  top: 37%;
  left: 70px;
}

.why-bottom-left {
  bottom: 70px;
  left: 70px;
}

.why-top-right {
  top: 2px;
  right: 120px;
}

.why-mid-right {
  top: 37%;
  right: 120px;
}

.why-bottom-right {
  bottom: 70px;
  right: 120px;
}

/* Position the PNG lines correctly for each label */
.why-top-left .why-line-img {
  top: 0px;
  left: 150px;
}

.why-mid-left .why-line-mid-img {
  top: 0px;
  left: 250px;
}

.why-bottom-left .why-line-bottom-img {
  top: 20px;
  left: 260px;
}

.why-top-right .why-line-img {
  top: 0;
  right: 150px;
}

.why-mid-right .why-line-mid-img {
  top: 0;
  right: 180px;
}

.why-bottom-right .why-line-bottom-img {
  top: 20px;
  right: 320px;
}

/* Highlight colors */
.why-magenta {
  color: #f565d3;
}

.why-blue {
  color: #0059d9;
}

.why-green {
  color: #00c265;
}

.why-indigo {
  color: #958dfd;
}

.why-red {
  color: #e2062e;
}

.why-yellow {
  color: #ffa100;
}

/* Responsive: stack layout for mobile */
@media (max-width: 1200px) {
  .why-image img {
    width: 400px;
  }

  .why-line-img {
    width: 250px;
  }

  .why-line-mid-img {
    width: 120px;
  }

  .why-line-bottom-img {
    width: 150px;
  }

  .why-top-left {
    left: 120px;
  }

  .why-mid-left {
    left: 120px;
  }

  .why-mid-left .why-line-mid-img {
    top: 10px;
    left: 250px;
  }

  .why-bottom-left {
    left: 120px;
  }

  .why-bottom-left .why-line-bottom-img {
    top: 30px;
    left: 260px;
  }

  .why-top-right {
    right: 160px;
  }

  .why-mid-right {
    top: 40%;
    right: 160px;
  }

  .why-mid-right .why-line-mid-img {
    top: 0;
    right: 200px;
  }

  .why-text-mid-right {
    right: -90px;
  }

  .why-bottom-right .why-line-bottom-img {
    top: 30px;
    right: 340px;
  }

  .why-bottom-right {
    bottom: 70px;
    right: 120px;
  }
}

@media (max-width: 1100px) {
  .why-image img {
    width: 350px;
  }

  .why-top-left {
    left: 50px;
  }

  .why-line-img {
    width: 250px;
  }

  .why-mid-left {
    top: 40%;
    left: 40px;
  }

  .why-mid-left .why-line-mid-img {
    left: 250px;
  }

  .why-line-mid-img {
    width: 120px;
  }

  .why-bottom-left {
    left: 50px;
  }

  .why-top-right {
    right: 80px;
  }

  .why-top-right .why-line-img {
    right: 150px;
  }

  .why-mid-right {
    top: 40%;
    right: 100px;
  }

  .why-mid-right .why-line-mid-img {
    top: 0;
    right: 180px;
  }

  .why-bottom-right {
    bottom: 70px;
    right: 80px;
  }

  .why-bottom-left .why-line-bottom-img {
    top: 30px;
    left: 250px;
  }

  .why-line-bottom-img {
    width: 150px;
  }

  .why-bottom-right .why-line-bottom-img {
    top: 30px;
    right: 300px;
  }
}

@media (max-width: 480px) {
  .why-incobist {
    padding: 20px 0;
    position: relative;
    margin: 0 auto;
    width: 95%;
    min-height: 400px;
  }

  .why-line-accent {
    width: 90%;
  }

  .why-subtitle {
    width: 100%;
    font-size: 12px;
    margin: 10px auto 70px auto;
  }

  .why-image {
    position: absolute;
    left: 125px;
  }

  .line-img {
    display: none;
  }

  .new-line-img {
    display: block;
  }

  .why-line-new-img {
    position: absolute;
    width: 100px;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }

  .why-line-new-mid-img {
    position: absolute;
    width: 80px;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }

  .why-line-new-bot-img {
    position: absolute;
    width: 100px;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }

  .why-top-left .why-line-new-img {
    top: -25px;
    left: 90px;
  }

  .why-top-right .why-line-new-img {
    top: -25px;
    right: 100px;
  }

  .why-mid-left .why-line-new-mid-img {
    top: 0;
    left: 10px;
  }

  .why-mid-right .why-line-new-mid-img {
    top: 0;
    right: 10px;
  }

  .why-bot-left .why-line-new-mid-img {
    top: 0;
    left: 10px;
  }

  .why-top-left {
    left: -10px;
  }

  .why-mid-left {
    top: 60px;
    left: 65px;
  }

  .why-bottom-left {
    left: 75px;
    bottom: -140px;
  }

  .why-top-right {
    right: auto;
    left: 410px;
  }

  .why-mid-right {
    top: 60px;
    right: auto;
    left: 290px;
  }

  .why-bottom-right {
    bottom: -140px;
    right: auto;
    left: 190px;
  }

  .why-image img {
    width: 150px;
  }

  .why-text-top-left {
    left: 20px;
    top: 0px;
  }

  .why-text-top-right {
    right: 10px;
    top: 0px;
  }

  .why-text-mid-left {
    left: -55px;
    top: 30px;
  }

  .why-text-mid-right {
    right: -100px;
    top: 30px;
  }

  .why-text-bottom-left {
    left: -65px;
    top: 35px;
  }

  .why-text-bottom-right {
    right: auto;
    top: 35px;
    left: 60px;
  }

  .why-top-right .why-line-img {
    right: 70px;
  }

  .why-line-img {
    width: 100px;
  }

  .why-item .why-text {
    width: 140px;
  }

  .why-text p {
    font-size: 10px;
    line-height: 16px;
  }

  .why-item span {
    font-size: 14px;
  }
}

@media (max-width: 410px) {
  .why-image {
    position: absolute;
    left: 100px;
  }

  .why-image img {
    width: 130px;
  }

  .why-line-new-img {
    position: absolute;
    width: 100px;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }

  .why-line-new-mid-img {
    position: absolute;
    width: 80px;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }

  .why-line-new-bot-img {
    position: absolute;
    width: 80px;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }

  .why-top-right .why-line-new-img {
    top: -25px;
    right: 100px;
  }

  .why-mid-left .why-line-new-mid-img {
    top: 0;
    left: 10px;
  }

  .why-mid-right .why-line-new-mid-img {
    top: 0;
    right: 10px;
  }

  .why-bot-left .why-line-new-mid-img {
    top: 0;
    left: 10px;
  }

  .why-top-left {
    left: -30px;
  }

  .why-mid-left {
    top: 50px;
    left: 45px;
  }

  .why-bottom-left {
    left: 60px;
    bottom: -120px;
  }

  .why-top-right {
    right: auto;
    left: 370px;
  }

  .why-mid-right {
    top: 50px;
    right: auto;
    left: 260px;
  }

  .why-bottom-right {
    bottom: -120px;
    right: auto;
    left: 160px;
  }

  .why-text-top-left {
    left: 25px;
    top: 0px;
  }

  .why-text-top-right {
    right: 10px;
    top: 0px;
  }

  .why-text-mid-left {
    left: -50px;
    top: 30px;
  }

  .why-text-mid-right {
    right: -80px;
    top: 30px;
  }

  .why-text-bottom-left {
    left: -65px;
    top: 30px;
  }

  .why-text-bottom-right {
    right: auto;
    top: 30px;
    left: 40px;
  }

  .why-top-right .why-line-img {
    right: 70px;
  }

  .why-line-img {
    width: 100px;
  }

  .why-item .why-text {
    width: 140px;
  }

  .orbit-globe {
    left: 18%;
  }

  .ring-primary {
    left: 18%;
  }

  .ring-secondary {
    left: 10%;
  }

  .ring-radial {
    top: -7%;
    left: 18%;
  }
}

/* ============================== LEADERSHIP CONTAINER SECTION STYLING START ============================= */
.leadership-section-container {
  background: #000;
  padding: 0 20px 80px;
  text-align: center;
  color: white;
  font-family: "Exo 2", sans-serif;
  position: relative;
  z-index: 1;
}

.leadership-section-container .leadership-container {
  position: relative;
  background-image: url("../image/bg/back4.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center 70%;
}

/* .leadership-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  z-index: 1;
} */

.leadership-container h2 {
  position: relative;
  font-size: 104px;
  line-height: 130px;
  font-weight: 500;
  color: #00baae;
  margin-bottom: 10px;
  z-index: 2;
}

.leadership-container .leadership-line-accent {
  position: relative;
  z-index: 2;
  width: 75%;
  height: 0.2px;
  background-color: #00f2e2;
  border: none;
  margin: 0 auto;
}

.leadership-container .leadership-subtitle {
  position: relative;
  z-index: 2;
  font-weight: 500;
  font-size: 20px;
  color: #fffafa;
  margin: 20px 0;
}

.leadership-carousel-section {
  position: relative;
  margin-top: 150px;
  width: 100%;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 100px 0;
  z-index: 2;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 70px;
  height: 100%;
  width: max-content;
  position: absolute;
  left: 0;
  top: 0;
}

.carousel-card {
  width: 300px;
  color: #fff;
  font-family: "Exo 2", sans-serif;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  margin: 20px auto;
  transition: all 0.5s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
  position: absolute;
  top: 0;
  /* Ensure smooth repositioning */
  transition: left 0.1s linear, transform 0.5s ease-in-out,
    box-shadow 0.5s ease-in-out;
}

.carousel-card:hover {
  transform: scale(1.05);
}

.carousel-card.centered {
  transform: scale(1.1) translateY(-10px);
  z-index: 10;
  animation: centerGlow 2s ease-in-out infinite;
}

@keyframes centerGlow {

  0%,
  100% {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 186, 174, 0.3);
  }

  50% {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 186, 174, 0.5);
  }
}

.leadership-profile-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 40px;
}

.leadership-img-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.leadership-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.leadership-profile-info {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #00baae;
  padding: 16px;
  border-radius: 999px;
  width: calc(100% - 40px);
  max-width: 220px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.leadership-name {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

.leadership-title {
  font-size: 12px;
  margin: 0;
  color: #fff;
}

.leadership-profile-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 50px;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .leadership-container h2 {
    font-size: 64px;
    line-height: 70px;
  }

  .leadership-container .leadership-subtitle {
    width: 90%;
    margin: 20px auto;
  }

  .leadership-container .leadership-line-accent {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .leadership-container h2 {
    font-size: 48px;
    line-height: 56px;
  }

  .leadership-container .leadership-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .leadership-section-container {
    padding: 20px 0;
    width: 95%;
    margin: 0 auto;
  }

  .leadership-container .leadership-line-accent {
    width: 70%;
  }

  .leadership-container {
    background-position: center !important;
    background-size: 180% !important;
  }

  .leadership-container h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .leadership-container .leadership-subtitle {
    font-size: 12px;
    margin: 10px auto;
  }

  .leadership-carousel-section {
    margin: 0;
    margin-top: -100px;
    padding: 0 0 50px;
    height: 500px;
    align-items: flex-start;
  }

  .carousel-track {
    gap: 30px;
  }

  .carousel-card {
    width: 160px;
    height: 150px;
    padding: 0;
  }

  .leadership-img-wrapper {
    padding: 20px;
  }

  .leadership-profile-info {
    bottom: -30px;
    left: 50%;
    padding: 5px 5px;
    width: 100%;
  }

  .leadership-name {
    font-size: 16px;
    line-height: 20px;
  }

  .leadership-profile-desc {
    font-size: 10px;
    line-height: 12px;
    height: fit-content;
    margin-top: 25px;
  }
}

/* ========================================================COMPANY PAGE STYLING START ========================================================================== */

/* <!-- ======================== OUR STORY SECTION  ========================== --> */
.our-story-section-container {
  width: 80%;
  max-width: 1200px;
  margin: 100px auto;
}

.our-story-section {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
}

.our-story-show {
  display: none;
}

.our-story-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  min-height: 380px;
}

.our-story-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.our-story-section-container h2 {
  color: #7765f5;
  font-weight: 600;
  font-size: 24px;
  font-style: italic;
}

.our-story-section-container .our-story-underline {
  width: 100%;
  height: 0.5px;
  background-color: #00f2e2;
  margin: 20px 0;
}

.our-story-text p {
  color: #ffffff;
  line-height: 26px;
  font-size: 20px;
}

@media (max-width: 992px) {
  .our-story-section {
    gap: 20px;
  }

  .our-story-section-container {
    width: 90%;
    margin: 50px auto;
  }
}

@media (max-width: 768px) {
  .our-story-show {
    display: block;
  }

  .our-story-hide {
    display: none;
  }

  .our-story-section {
    flex-direction: column;
    margin: 30px auto;
    gap: 40px;
  }

  .our-story-reverse {
    flex-direction: column-reverse;
  }

  .our-story-image {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .our-story-section {
    gap: 20px;
  }

  .our-story-image {
    min-height: 220px;
  }

  .our-story-text h2 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
  }

  .our-story-text .our-story-underline {
    margin-bottom: 0px;
  }

  .our-story-text p {
    line-height: 16px;
    font-size: 12px;
  }
}

/* <!-- ======================== ABOUT US ACCORDION SECTION  ========================== --> */

.about-us-accordian-container {
  max-width: 1200px;
  margin: 50px auto;
  width: 80%;
}

/* Section title - Now outside the section */
.about-us-accordion-section-title {
  font-size: 48px;
  font-weight: 600;
  color: #00baae;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid #00f2e2;
  width: 49%;
}

/* About Us section */
.about-us-accordion-section {
  display: flex;
  /* Changed to flex for better height control */
  gap: 30px;
  position: relative;
  margin-top: 20px;
}

/* Left column - Accordion */
.about-us-accordion-column {
  flex: 1;
  /* Take up equal space */
  padding: 0;
  position: relative;
  z-index: 10;
}

/* Accordion styles */
.about-us-accordion {
  width: 100%;
}

.about-us-accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(to bottom, #020606, #021a18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 229, 204, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.about-us-accordion-header {
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-us-accordion-header:hover {
  background-color: rgba(0, 229, 204, 0.1);
}

.about-us-accordion-title {
  font-size: 20px;
  font-weight: 600;
  color: #00baae;
}

.about-us-accordion-icon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s ease;
}

.about-us-accordion-icon::before,
.about-us-accordion-icon::after {
  content: "";
  position: absolute;
  background-color: #00e5cc;
  transition: all 0.3s ease;
}

.about-us-accordion-icon::before {
  width: 2px;
  height: 16px;
  top: 4px;
  left: 11px;
}

.about-us-accordion-icon::after {
  width: 16px;
  height: 2px;
  top: 11px;
  left: 4px;
}

.about-us-accordion-item.active .about-us-accordion-icon::before {
  transform: rotate(90deg);
  opacity: 0;
}

.about-us-accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.about-us-accordion-item.active .about-us-accordion-content {
  max-height: 300px;
  padding: 0 25px 20px 25px;
}

/* Content styling */
.about-us-content-title {
  font-size: 14px;
  padding-left: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.about-us-content-list {
  list-style-type: none;
  padding-left: 5px;
}

.about-us-content-list li {
  font-size: 14px;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  color: #c5c5c5;
}

.about-us-content-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 8px;
  width: 5px;
  height: 5px;
  background-color: #00baae;
  border-radius: 50%;
}

.about-us-accordion-image-column {
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: height 0.5s ease;
}

.about-us-content-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.thematic-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive styles */
@media (max-width: 992px) {
  .about-us-accordian-container {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .about-us-accordion-section {
    flex-direction: column-reverse;
    gap: 20px;
    margin-top: 0;
  }

  .about-us-accordion-section-title {
    font-size: 24px;
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .about-us-accordion-image-column {
    position: relative;
    height: 350px;
    flex: none;
  }
}

@media (max-width: 480px) {
  .about-us-accordian-container {
    width: 95%;
  }

  .about-us-accordion-section-title {
    font-size: 1.8rem;
  }

  .about-us-accordion-title {
    font-size: 16px;
  }

  .about-us-content-title {
    font-size: 12px;
    padding-left: 10px;
    margin: 10px 0;
  }

  .about-us-accordion-header {
    padding: 15px;
  }

  .about-us-accordion-item.active .about-us-accordion-content {
    padding: 15px;
    padding-top: 0;
  }

  .about-us-content-list li::before {
    left: 10px;
    top: 8px;
  }

  .about-us-content-list li {
    font-size: 12px;
    padding-left: 25px;
    margin-bottom: 5px;
  }

  .about-us-accordion-title {
    font-size: 1.1rem;
  }

  .about-us-accordion-icon::before {
    width: 2px;
    height: 10px;
    top: 7px;
    left: 8px;
  }

  .about-us-accordion-icon::after {
    width: 10px;
    height: 2px;
    top: 11px;
    left: 4px;
  }

  .about-us-accordion-image-column {
    height: 250px;
  }
}

/* <!-- ======================== WHY CHOOSE US SECTION  ========================== --> */

.why-choose-us-main-container {
  margin: 100px 0;
  background-color: #001413;
  padding: 80px 0;
}

.why-choose-us-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

.company-why-us {
  display: none;
}

/* Main layout */
.why-choose-us-section {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 20px;
  position: relative;
}

/* Left column - Images grid */
.why-choose-us-images-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.75fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  height: 500px;
  position: relative;
}

.why-choose-us-image-container {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.why-choose-us-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.why-choose-us-image-container:hover img {
  transform: scale(1.05);
}

.why-choose-us-image-left-top {
  grid-column: 1;
  grid-row: 1;
}

.why-choose-us-image-left-bottom {
  grid-column: 1;
  grid-row: 2;
}

.why-choose-us-image-right-tall {
  grid-column: 2;
  grid-row: 1 / span 2;
}

/* Right column - Content */
.why-choose-us-content-column {
  display: flex;
  flex-direction: column;
}

.why-choose-us-section-title {
  font-size: 32px;
  font-weight: 400;
  color: #00baae;
  padding-bottom: 20px;
  position: relative;
  display: inline-block;
  border-bottom: 1px solid #00f2e2;
  width: 80%;
}

/* Floating content card with overlap */
.why-choose-us-content-card {
  background: #007870;
  padding: 50px 40px;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 10;
  margin-top: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-left: -80px;
  transition: transform 0.5s ease;
  opacity: 0.8;
}

.why-choose-us-content-card:hover {
  transform: scale(1.05);
}

.why-choose-us-card-title {
  font-size: 32px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 36px;
}

.why-choose-us-highlight {
  font-weight: 500;
  color: #1ec0cb;
}

.why-choose-us-card-description {
  font-size: 16px;
  color: #ffffff;
  line-height: 20px;
  font-weight: 400;
}

/* Responsive styles */
@media (max-width: 1010px) {
  .why-choose-us-section-title {
    width: 100%;
  }

  .why-choose-us-container {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .company-why-us {
    display: block;
    font-size: 32px;
    font-weight: 400;
    color: #00baae;
    padding-bottom: 10px;
    margin: 20px 0;
    border-bottom: 1px solid #00f2e2;
    width: 100%;
  }

  .why-choose-us-main-container {
    margin: 40px 0;
  }

  .why-choose-us-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Move title to the top */
  .why-choose-us-section-title {
    display: none;
  }

  .why-choose-us-section-title::after {
    left: 0;
    transform: none;
  }

  .why-choose-us-images-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    height: auto;
    gap: 10px;
  }

  .why-choose-us-content-card {
    margin: 0 auto;
    margin-top: -80px;
    padding: 25px;
    z-index: 20;
    width: 90%;
  }

  .why-choose-us-content-card:hover {
    transform: scale(1.02);
  }

  .why-choose-us-card-title {
    font-size: 24px;
  }

  .why-choose-us-card-description {
    font-size: 16px;
  }

  .why-choose-us-content-column {
    order: 3;
  }
}

@media (max-width: 480px) {
  .why-choose-us-container {
    width: 95%;
  }

  .why-choose-us-company-why-us {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .why-choose-us-card-title {
    font-size: 20px;
    line-height: 24px;
  }

  .why-choose-us-card-description {
    font-size: 12px;
    line-height: 16px;
  }

  .why-choose-us-content-card {
    margin-top: -50px;
  }
}

/* <!-- ======================== OUR CORE VALUES SECTION  ========================== --> */
.core-values-section {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  width: 80%;
}

.core-values-title {
  font-size: 48px;
  font-weight: 600;
  color: #00c3b0;
  margin-bottom: 10px;
}

.core-values-underline {
  width: 100%;
  max-width: 500px;
  height: 1px;
  background-color: #00c3b0;
  margin-bottom: 40px;
}

.core-values-scroll {
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.core-values-grid {
  display: flex;
  gap: 24px;
  flex-wrap: nowrap;
}

.core-value-card {
  flex: 0 0 auto;
  width: 185px;
  background: linear-gradient(145deg, #020e0e, #061c1c);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.core-value-card:hover {
  background: linear-gradient(145deg, #051c1c, #0a4343);
  box-shadow: 0 8px 20px rgba(0, 255, 255, 0.05);
}

.icon-placeholder {
  width: 60px;
  height: 60px;
  margin: 0 auto;
}

.core-value-title {
  font-size: 20px;
  font-weight: 600;
  margin: 8px 0;
}

.core-value-subtext {
  font-size: 12px;
  color: #ffffff;
}

/* Color Overrides */
.integrity {
  color: #e2062e;
}

.collaboration {
  color: #8306d3;
}

.innovation {
  color: #00c265;
}

.user-centric {
  color: #0059d9;
}

.transparency {
  color: #ffa100;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .core-values-section {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .core-value-card {
    width: 170px;
  }

  .core-values-title {
    font-size: 36px;
  }

  .core-values-underline {
    max-width: none;
    width: 80%;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .core-values-title {
    font-size: 20px;
  }

  .core-value-card {
    width: 150px;
    padding: 20px 15px;
  }

  .core-values-scroll {
    padding-bottom: 20px;
  }

  .core-value-title {
    font-size: 16px;
  }

  .core-value-subtext {
    font-size: 10px;
  }
}

/* Optional scrollbar styling (WebKit) */
.core-values-scroll::-webkit-scrollbar {
  height: 6px;
}

.core-values-scroll::-webkit-scrollbar-thumb {
  background: #00c3b0;
  border-radius: 4px;
}

.core-values-scroll::-webkit-scrollbar-track {
  background: #111;
}

/*========================================== UI-UX-DESIGN PAGE START ==================================================== */
.tech-stack-section {
  margin: 0 auto;
  width: 80%;
}

.tech-stack-heading h2 {
  color: #7765f5;
  font-weight: 600;
  font-size: 24px;
  font-style: italic;
}

.tech-stack-underline {
  width: 100%;
  max-width: 700px;
  height: 0.5px;
  margin: 20px 0;
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.tech-stack-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.tech-stack-grid img {
  height: 65px;
  width: 100%;
  transform: scale(1.35);
  transition: all 0.3s ease;
}

.tech-stack-icon:hover {
  transform: scale(1.2);
}

@media (max-width: 992px) {
  .tech-stack-section {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
  }

  .tech-stack-grid img {
    height: 90px;
  }
}

@media (max-width: 480px) {
  .tech-stack-section {
    width: 95%;
  }

  .tech-stack-heading h2 {
    font-size: 16px;
    line-height: 22px;
  }

  .tech-stack-grid {
    gap: 10px;
  }

  .tech-stack-grid img {
    height: 60px;
    transform: scale(1.15);
  }
}

/*===================================== UI-UX-BOX GRID CONTAINER ================================ */
.key-services-section {
  max-width: 1200px;
  margin: 100px auto;
  width: 80%;
}

.ui-ux-box-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0 40px;
}

.key-services-header {
  color: #7765f5;
  font-weight: 600;
  font-size: 24px;
  font-style: italic;
}

.key-services-section .ui-ux-box-underline {
  width: 100%;
  max-width: 700px;
  height: 0.5px;
  margin: 20px 0;
}

.ui-ux-box {
  position: relative;
  height: 250px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ui-ux-box-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  text-decoration: none;
  color: inherit;
}

/* Gradient border effect using pseudo-element */
.ui-ux-box::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(to bottom, var(--border-color), #2be8f9);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

.ui-ux-box-1::after {
  --border-color: #72049f;
}

.ui-ux-box-2::after {
  --border-color: #00c265;
}

.ui-ux-box-3::after {
  --border-color: #ffffff;
}

.ui-ux-box-4::after {
  --border-color: #a7a6a7;
}

.ui-ux-box-5::after {
  --border-color: #ff02b7;
}

.ui-ux-box-6::after {
  --border-color: #ffa201;
}

.ui-ux-box-7::after {
  --border-color: #72049f;
}

.ui-ux-box-8::after {
  --border-color: #00c265;
}

.ui-ux-box-9::after {
  --border-color: #0be6d8;
}

.ui-ux-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.ui-ux-box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Larger triangle clip path in the background */
.ui-ux-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 1;
  opacity: 0.7;
}

/* Smaller triangle clip path in the foreground */
.ui-ux-box .ui-ux-box-triangle {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 2;
}

/* Background triangle colors (slightly different) */
.ui-ux-box-1::before {
  background: linear-gradient(to bottom, #9100ca, #2c0d41);
}

.ui-ux-box-2::before {
  background: linear-gradient(to bottom, #00ce4f, #045d26);
}

.ui-ux-box-3::before {
  background: linear-gradient(to bottom, #ffff34, #8d6603);
}

.ui-ux-box-4::before {
  background: linear-gradient(to bottom, #c3c3c3a8, #5c5c5c);
}

.ui-ux-box-5::before {
  background: linear-gradient(to bottom, #ce009b, #760676);
}

.ui-ux-box-6::before {
  background: linear-gradient(to bottom, #dd9c2b, #8d6603);
}

.ui-ux-box-7::before {
  background: linear-gradient(to bottom, #9100ca, #2c0d41);
}

.ui-ux-box-8::before {
  background: linear-gradient(to bottom, #00ce4f, #045d26);
}

.ui-ux-box-9::before {
  background: linear-gradient(to bottom, #11edb9, #1d9e93);
}

/* Foreground triangle colors */
.ui-ux-box-1 .ui-ux-box-triangle {
  background-color: #72049f;
}

.ui-ux-box-2 .ui-ux-box-triangle {
  background-color: #00c265;
}

.ui-ux-box-3 .ui-ux-box-triangle {
  background-color: #ffffff;
}

.ui-ux-box-4 .ui-ux-box-triangle {
  background-color: #a7a6a7;
}

.ui-ux-box-5 .ui-ux-box-triangle {
  background-color: #ff02b7;
}

.ui-ux-box-6 .ui-ux-box-triangle {
  background-color: #ffa201;
}

.ui-ux-box-7 .ui-ux-box-triangle {
  background-color: #72049f;
}

.ui-ux-box-8 .ui-ux-box-triangle {
  background-color: #00c265;
}

.ui-ux-box-9 .ui-ux-box-triangle {
  background-color: #0be6d8;
}

.ui-ux-box-content {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 1;
  /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%); */
}

.ui-ux-box-heading-container {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
}

.ui-ux-box-content-container {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
}

.ui-ux-box-heading {
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  margin: 0;
  color: #ffffff;
}

.ui-ux-box-heading-container p {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  margin-top: 30px;
  color: #ffffff;
}

.ui-ux-box-content {
  color: #ffffff;
  font-size: 12px;
  line-height: 16px;
  margin: 0;
}

.product-button-container {
  display: flex;
  width: 100%;
}

.product-button {
  width: 100%;
  background-color: #00baae;
  padding: 20px 30px;
  border-radius: 8px;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 992px) {
  .ui-ux-box-grid-container {
    gap: 30px;
    padding: 0;
    margin: 0 auto;
  }

  .key-services-section {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .key-services-section {
    margin: 50px auto;
  }

  .ui-ux-box-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .ui-ux-box-heading {
    font-size: 24px;
    line-height: 30px;
  }

  .ui-ux-box {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .key-services-header {
    font-size: 16px;
    line-height: 20px;
  }

  .ui-ux-box-grid-container {
    gap: 16px;
  }

  .ui-ux-box-heading-container {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }

  .ui-ux-box-heading {
    font-size: 16px;
    line-height: 22px;
  }

  .ui-ux-box {
    height: 160px;
  }

  .product-button {
    font-size: 16px;
    padding: 16px;
  }
}

/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
.nav-links li,
.nav-links a,
.dropdown-toggle,
.dropdown-toggle i,
.nav-icons i {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.circle-globe-container {
  margin: 0 auto;
  max-width: 1400px;
  height: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #000;
  overflow: hidden;
}

.container {
  position: relative;
  width: 1100px;
  height: 650px;
}

.outer-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1100px;
  height: 650px;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(0, 242, 226, 0.4);
  border-radius: 50%;
  background: transparent;
}

.inner-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 750px;
  height: 450px;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(0, 242, 226, 0.3);
  border-radius: 50%;
}

.center-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 26px;
  font-weight: bold;
  color: #00f2e2;
  text-align: center;
  z-index: 10;
  text-shadow: 0 0 20px rgba(0, 242, 226, 0.4);
  text-transform: uppercase;
  letter-spacing: 4px;
}

.globe-orbit-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1100px;
  height: 1100px;
  transform: translate(-50%, -50%) scaleY(0.59);
  pointer-events: none;
  z-index: 10;
}

.globe-mover {
  position: relative;
  width: 100%;
  height: 100%;
  animation: orbit-rotate 30s linear infinite;
}

.globe {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%) scaleY(1.69);
  width: 130px;
  height: 130px;
}

@keyframes orbit-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}



.globe img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 50px rgba(0, 242, 226, 0.7));
}

.globe::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 20;
  pointer-events: none;
}

.service-item {
  position: absolute;
  background: rgba(31, 49, 48, 0.85);
  color: #e0e0e0;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
  white-space: nowrap;
  border: 1px solid rgba(0, 242, 226, 0.15);
  backdrop-filter: blur(5px);
}

.service-item:hover {
  background: #00f2e2;
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 242, 226, 0.5);
}

/* Service positions in horizontal elliptical layout */
.web-dev {
  top: 0;
  left: 45%;
}

.seo {
  top: 15%;
  right: 10%;
}

.graphic {
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
}

.uiux {
  bottom: 15%;
  right: 10%;
}

.erp {
  bottom: 0;
  left: 45%;
}

.cyber {
  bottom: 15%;
  left: 10%;
}

.hrms {
  top: 50%;
  left: -2%;
  transform: translateY(-50%);
}

.digital {
  top: 15%;
  left: 10%;
}

.branding {
  top: 140px;
  left: 45%;
}

.crm {
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
}

.finance {
  bottom: 140px;
  left: 45%;
}

.mater-area1 {
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
}

.mater-area2 {
  top: 28%;
  left: 32%;
}


.service-card {
  position: absolute;
  background: linear-gradient(135deg, #4caf50, #2196f3);
  color: white;
  padding: 20px;
  border-radius: 15px;
  width: 280px;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: all 0.4s ease-in-out;
  z-index: 10;
  pointer-events: none;
  text-align: start;
}

.service-card h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: bold;
}

.service-card p {
  margin: 0;
}

/* Different card colors */
.seo-card {
  background: linear-gradient(135deg, #ff9800, #ff5722);
}

.graphic-card {
  background: linear-gradient(135deg, #9c27b0, #e91e63);
}

.uiux-card {
  background: linear-gradient(135deg, #2196f3, #3f51b5);
}

.erp-card {
  background: linear-gradient(135deg, #607d8b, #455a64);
}

.cyber-card {
  background: linear-gradient(135deg, #f44336, #d32f2f);
}

.hrms-card {
  background: linear-gradient(135deg, #795548, #5d4037);
}

.digital-card {
  background: linear-gradient(135deg, #00bcd4, #0097a7);
}

.branding-card {
  background: linear-gradient(135deg, #ffeb3b, #ffc107);
  color: #333;
}

.crm-card {
  background: linear-gradient(135deg, #8bc34a, #689f38);
}

.finance-card {
  background: linear-gradient(135deg, #ff6f61, #d84315);
}

.mater-area1-card {
  background: linear-gradient(135deg, #5c258d, #4389a2);
}

.mater-area2-card {
  background: linear-gradient(135deg, #f7971e, #ffd200);
}

/* Card positions */
.web-dev-card {
  top: 130px;
  left: 230px;
}

.seo-card {
  top: 80px;
  left: 520px;
}

.graphic-card {
  top: 280px;
  left: 560px;
}

.uiux-card {
  top: 480px;
  left: 520px;
}

.erp-card {
  top: 600px;
  left: 240px;
}

.cyber-card {
  top: 470px;
  left: 0px;
}

.hrms-card {
  top: 300px;
  left: 0px;
}

.digital-card {
  top: 100px;
  left: 0px;
}

.branding-card {
  top: 300px;
  left: 230px;
}

.crm-card {
  top: 450px;
  left: 390px;
}

.finance-card {
  top: 650px;
  left: 380px;
}

.mater-area1-card {
  top: 650px;
  left: 130px;
}

.mater-area2-card {
  top: 450px;
  left: 70px;
}

/* Show cards on hover */
.web-dev:hover~.web-dev-card,
.seo:hover~.seo-card,
.graphic:hover~.graphic-card,
.uiux:hover~.uiux-card,
.erp:hover~.erp-card,
.cyber:hover~.cyber-card,
.hrms:hover~.hrms-card,
.digital:hover~.digital-card,
.branding:hover~.branding-card,
.crm:hover~.crm-card,
.mater-area1:hover~.mater-area1-card,
.mater-area2:hover~.mater-area2-card,
.finance:hover~.finance-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Responsive design */
@media (max-width: 992px) {
  .circle-globe-container {
    align-items: center;
    height: 650px;
  }

  .container {
    width: 700px;
    height: 700px;
  }

  .outer-circle {
    width: 600px;
    height: 600px;
    left: 50px;
  }

  .inner-circle {
    width: 400px;
    height: 400px;
    top: 150px;
    left: 150px;
  }

  .center-title {
    top: 50%;
  }

  .globe-container {
    left: 150px;
    top: 150px;
    width: 400px;
    height: 400px;
  }

  .service-card {
    width: 220px;
    font-size: 12px;
  }

  .web-dev {
    top: 90px;
    left: 280px;
  }

  .seo {
    top: 200px;
    left: 530px;
  }

  .graphic {
    top: 350px;
    left: 530px;
  }

  .uiux {
    top: 500px;
    left: 480px;
  }

  .erp {
    top: 580px;
    left: 300px;
  }

  .cyber {
    top: 500px;
    left: 100px;
  }

  .hrms {
    top: 350px;
    left: 40px;
  }

  .digital {
    top: 200px;
    left: 70px;
  }

  .branding {
    top: 180px;
    left: 310px;
  }

  .crm {
    top: 300px;
    left: 420px;
  }

  .mater-area1 {
    top: 450px;
    left: 200px;
  }

  .mater-area2 {
    top: 300px;
    left: 170px;
  }

  .finance {
    top: 450px;
    left: 420px;
  }

  /* card  */
  .web-dev-card {
    top: 130px;
    left: 220px;
  }

  .seo-card {
    top: 40px;
    left: 370px;
  }

  .graphic-card {
    top: 190px;
    left: 400px;
  }

  .uiux-card {
    top: 360px;
    left: 370px;
  }

  .erp-card {
    top: 425px;
    left: 220px;
  }

  .cyber-card {
    top: 340px;
    left: 5px;
  }

  .hrms-card {
    top: 190px;
    left: 5px;
  }

  .digital-card {
    top: 40px;
    left: 5px;
  }

  .branding-card {
    top: 220px;
    left: 220px;
  }

  .crm-card {
    top: 340px;
    left: 345px;
  }

  .finance-card {
    top: 295px;
    left: 325px;
  }

  .mater-area1-card {
    top: 295px;
    left: 125px;
  }

  .mater-area2-card {
    top: 340px;
    left: 100px;
  }
}

@media (max-width: 768px) {
  .circle-globe-container {
    height: 60vh;
  }

  .container {
    width: 600px;
    height: 600px;
  }

  .outer-circle {
    width: 400px;
    height: 400px;
    top: 100px;
    left: 100px;
  }

  .inner-circle {
    width: 250px;
    height: 250px;
    top: 175px;
    left: 175px;
  }

  .center-title {
    top: 55%;
  }

  .globe-container {
    width: 250px;
    height: 250px;
    top: 175px;
    left: 175px;
  }

  .globe {
    top: -25px;
  }

  .globe img {
    width: 50px;
    height: 50px;
  }

  .service-item {
    font-size: 10px;
    padding: 8px;
  }

  .center-title {
    font-size: 22px;
  }

  .web-dev {
    top: 130px;
    left: 250px;
  }

  .seo {
    top: 200px;
    left: 420px;
  }

  .graphic {
    top: 300px;
    left: 420px;
  }

  .uiux {
    top: 400px;
    left: 380px;
  }

  .erp {
    top: 460px;
    left: 260px;
  }

  .cyber {
    top: 400px;
    left: 140px;
  }

  .hrms {
    top: 300px;
    left: 100px;
  }

  .digital {
    top: 200px;
    left: 120px;
  }

  .branding {
    top: 180px;
    left: 275px;
  }

  .crm {
    top: 250px;
    left: 340px;
  }

  .mater-area1 {
    top: 350px;
    left: 190px;
  }

  .mater-area2 {
    top: 250px;
    left: 185px;
  }

  .finance {
    top: 350px;
    left: 360px;
  }

  /* card  */
  .service-card {
    padding: 10px 15px;
    border-radius: 10px;
    width: 190px;
  }

  .service-card h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
  }

  .service-card p {
    font-size: 12px;
  }

  .web-dev-card {
    top: 160px;
    left: 190px;
  }

  .seo-card {
    top: 70px;
    left: 270px;
  }

  .graphic-card {
    top: 170px;
    left: 300px;
  }

  .uiux-card {
    top: 275px;
    left: 270px;
  }

  .erp-card {
    top: 335px;
    left: 180px;
  }

  .cyber-card {
    top: 270px;
    left: 60px;
  }

  .hrms-card {
    top: 170px;
    left: 40px;
  }

  .digital-card {
    top: 70px;
    left: 60px;
  }

  .branding-card {
    top: 210px;
    left: 190px;
  }

  .crm-card {
    top: 280px;
    left: 260px;
  }

  .finance-card {
    top: 380px;
    left: 260px;
  }

  .mater-area1-card {
    top: 380px;
    left: 120px;
  }

  .mater-area2-card {
    top: 280px;
    left: 110px;
  }
}

@media (max-width: 600px) {
  .container {
    width: 500px;
    height: 500px;
  }

  .outer-circle {
    width: 400px;
    height: 400px;
    top: 100px;
    left: 50px;
  }

  .inner-circle {
    width: 250px;
    height: 250px;
    top: 175px;
    left: 125px;
  }

  .center-title {
    top: 60%;
  }

  .globe-container {
    left: 125px;
  }

  .service-item {
    font-size: 10px;
    padding: 8px;
  }

  .center-title {
    font-size: 22px;
  }

  .web-dev {
    top: 130px;
    left: 210px;
  }

  .seo {
    top: 200px;
    left: 375px;
  }

  .graphic {
    top: 300px;
    left: 370px;
  }

  .uiux {
    top: 400px;
    left: 340px;
  }

  .erp {
    top: 460px;
    left: 220px;
  }

  .cyber {
    top: 400px;
    left: 90px;
  }

  .hrms {
    top: 300px;
    left: 45px;
  }

  .digital {
    top: 200px;
    left: 70px;
  }

  .branding {
    top: 180px;
    left: 230px;
  }

  .crm {
    top: 250px;
    left: 300px;
  }

  .mater-area1 {
    top: 350px;
    left: 150px;
  }

  .mater-area2 {
    top: 250px;
    left: 140px;
  }

  .finance {
    top: 350px;
    left: 310px;
  }

  /* card  */
  .web-dev-card {
    top: -30px;
    left: 130px;
  }

  .seo-card {
    top: 40px;
    left: 265px;
  }

  .graphic-card {
    top: 140px;
    left: 280px;
  }

  .uiux-card {
    top: 260px;
    left: 250px;
  }

  .erp-card {
    top: 300px;
    left: 130px;
  }

  .cyber-card {
    top: 240px;
    left: 0px;
  }

  .hrms-card {
    top: 140px;
    left: 0px;
  }

  .digital-card {
    top: 40px;
    left: 0px;
  }

  .branding-card {
    top: 220px;
    left: 130px;
  }

  .crm-card {
    top: 280px;
    left: 210px;
  }

  .finance-card {
    top: 380px;
    left: 210px;
  }

  .mater-area1-card {
    top: 380px;
    left: 60px;
  }

  .mater-area2-card {
    top: 280px;
    left: 50px;
  }
}

@media (max-width: 480px) {
  .circle-globe-container {
    height: 50vh;
  }

  .container {
    width: 100%;
    height: 500px;
  }

  .outer-circle {
    width: 300px;
    height: 300px;
    top: 100px;
    left: 50px;
    border: 2px dashed #00f2e2;
  }

  .inner-circle {
    width: 180px;
    height: 180px;
    top: 160px;
    left: 110px;
    border: 2px dashed #00f2e2;
  }

  .center-title {
    top: 50%;
    left: 200px;
  }

  .globe-container {
    width: 180px;
    height: 180px;
    top: 160px;
    left: 110px;
  }

  .service-item {
    font-size: 10px;
    padding: 6px 10px;
  }

  .service-card {
    width: 180px;
    font-size: 11px;
    padding: 15px;
  }

  .center-title {
    font-size: 18px;
  }

  .globe {
    top: -20px;
  }

  .globe img {
    width: 40px;
    height: 40px;
  }

  .web-dev {
    top: 120px;
    left: 155px;
  }

  .seo {
    top: 170px;
    left: 280px;
  }

  .graphic {
    top: 240px;
    left: 280px;
  }

  .uiux {
    top: 320px;
    left: 250px;
  }

  .erp {
    top: 365px;
    left: 160px;
  }

  .cyber {
    top: 320px;
    left: 65px;
  }

  .hrms {
    top: 240px;
    left: 40px;
  }

  .digital {
    top: 170px;
    left: 55px;
  }

  .branding {
    top: 170px;
    left: 175px;
  }

  .crm {
    top: 220px;
    left: 220px;
  }

  .finance {
    top: 290px;
    left: 220px;
  }

  .mater-area1 {
    top: 290px;
    left: 120px;
  }

  .mater-area2 {
    top: 220px;
    left: 110px;
  }

  .service-card {
    padding: 10px;
    border-radius: 10px;
  }

  .service-card h3 {
    margin: 0 0 5px 0;
    font-size: 12px;
  }

  .service-card p {
    font-size: 10px;
  }

  .web-dev-card {
    top: 150px;
    left: 100px;
  }

  .seo-card {
    top: 60px;
    left: 170px;
  }

  .graphic-card {
    top: 135px;
    left: 170px;
  }

  .uiux-card {
    top: 230px;
    left: 170px;
  }

  .erp-card {
    top: 260px;
    left: 100px;
  }

  .cyber-card {
    top: 210px;
    left: 5px;
  }

  .hrms-card {
    top: 135px;
    left: 5px;
  }

  .digital-card {
    top: 65px;
    left: 5px;
  }

  .branding-card {
    top: 200px;
    left: 110px;
  }

  .crm-card {
    top: 250px;
    left: 160px;
  }

  .finance-card {
    top: 320px;
    left: 150px;
  }

  .mater-area1-card {
    top: 320px;
    left: 60px;
  }

  .mater-area2-card {
    top: 245px;
    left: 50px;
  }
}

/* Keep existing hover behavior for desktop */
.service-item:hover~.service-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* On mobile, hide all cards until tapped */
@media (max-width: 768px) {
  .service-card {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.9);
  }

  .service-card.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 400px) {
  .container {
    width: 100%;
    height: 500px;
  }

  .outer-circle {
    width: 300px;
    height: 300px;
    top: 100px;
    left: 15px;
  }

  .inner-circle {
    width: 180px;
    height: 180px;
    top: 160px;
    left: 75px;
  }

  .center-title {
    top: 50%;
    left: 170px;
  }

  .globe-container {
    width: 180px;
    height: 180px;
    top: 160px;
    left: 80px;
  }

  .service-item {
    font-size: 8px;
    padding: 6px 10px;
  }

  .service-card {
    width: 150px;
    font-size: 10px;
    padding: 10px;
  }

  .center-title {
    font-size: 16px;
  }

  .globe {
    top: -20px;
  }

  .globe img {
    width: 40px;
    height: 40px;
  }

  .web-dev {
    top: 120px;
    left: 125px;
  }

  .seo {
    top: 170px;
    left: 245px;
  }

  .graphic {
    top: 240px;
    left: 250px;
  }

  .uiux {
    top: 320px;
    left: 225px;
  }

  .erp {
    top: 365px;
    left: 135px;
  }

  .cyber {
    top: 320px;
    left: 40px;
  }

  .hrms {
    top: 240px;
    left: 10px;
  }

  .digital {
    top: 170px;
    left: 30px;
  }

  .branding {
    top: 170px;
    left: 175px;
  }

  .crm {
    top: 220px;
    left: 190px;
  }

  .finance {
    top: 290px;
    left: 195px;
  }

  .mater-area1 {
    top: 290px;
    left: 95px;
  }

  .mater-area2 {
    top: 220px;
    left: 80px;
  }

  .service-card {
    padding: 8px;
    border-radius: 8px;
  }

  .service-card h3 {
    margin: 0 0 3px 0;
    font-size: 10px;
  }

  .service-card p {
    font-size: 9px;
  }

  .web-dev-card {
    top: 150px;
    left: 90px;
  }

  .seo-card {
    top: 80px;
    left: 160px;
  }

  .graphic-card {
    top: 130px;
    left: 170px;
  }

  .uiux-card {
    top: 230px;
    left: 160px;
  }

  .erp-card {
    top: 270px;
    left: 80px;
  }

  .cyber-card {
    top: 210px;
    left: 5px;
  }

  .hrms-card {
    top: 130px;
    left: 5px;
  }

  .digital-card {
    top: 60px;
    left: 5px;
  }

  .branding {
    top: 170px;
    left: 145px;
  }

  .branding-card {
    top: 200px;
    left: 90px;
  }

  .crm-card {
    top: 245px;
    left: 140px;
  }

  .finance-card {
    top: 310px;
    left: 140px;
  }

  .mater-area1-card {
    top: 315px;
    left: 50px;
  }

  .mater-area2-card {
    top: 245px;
    left: 35px;
  }
}

.service-card {
  display: none;
}

.label:hover+.service-card {
  display: block;
}

/*--------------------global trust section---------------------  */
body.home-gradient-page {
  background: #000000;
  background-image: none !important;
}

body.home-gradient-page .recognition-section,
body.home-gradient-page .services-section,
body.home-gradient-page .featured-fold-section,
body.home-gradient-page .contact-fold-section,
body.home-gradient-page .workflow-section,
body.home-gradient-page .why-incobist-modern,
body.home-gradient-page .global-trust-section,
body.home-gradient-page .carousel-container {
  background-color: transparent !important;
}

body.home-gradient-page .recognition-box-content,
body.home-gradient-page .recognition-box-text-card::after,
body.home-gradient-page .recognition-box-image-card,
body.home-gradient-page .workflow-procedure-box::after,
body.home-gradient-page .global-trust-card,
body.home-gradient-page .global-network-active,
body.home-gradient-page .testimonial-carousel-card {
  backdrop-filter: blur(10px);
}

body.home-gradient-page .recognition-modern,
body.home-gradient-page .recognition-modern::after,
body.home-gradient-page .global-trust-section,
body.home-gradient-page .global-trust-section::before,
body.home-gradient-page .services-section,
body.home-gradient-page .featured-fold-section,
body.home-gradient-page .contact-fold-section,
body.home-gradient-page .workflow-section,
body.home-gradient-page .tailored-section,
body.home-gradient-page .tailored-section::before {
  background-color: #000 !important;
  background-image: none !important;
}

body.home-gradient-page .workflow-section {
  background: linear-gradient(180deg, #dfeaec 0%, #d7e4e5 100%) !important;
  background-color: #dfeaec !important;
  background-image: none !important;
}

body.home-gradient-page .workflow-section::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 38%),
    repeating-linear-gradient(115deg, rgba(115, 146, 150, 0.08) 0 2px, transparent 2px 16px) !important;
  opacity: 0.8 !important;
}

.global-trust-section {
  padding: 80px 20px;
  margin-top: 30px;
  background: #000000;
  overflow: hidden;
}

.global-trust-shell {
  position: relative;
}

.global-trust-copy {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.global-trust-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(0, 242, 226, 0.10);
  color: #00f2e2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.global-trust-copy h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.global-trust-copy p {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.75;
}

.global-trust-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(340px, 540px) minmax(260px, 1fr);
  gap: 22px;
  align-items: center;
}

.global-trust-stack {
  display: grid;
  gap: 18px;
}

.global-trust-card {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.96), rgba(8, 8, 8, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(12px);
}

.global-trust-card strong {
  display: block;
  margin-bottom: 10px;
  color: #00f2e2;
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  line-height: 1;
}

.global-trust-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.70);
  font-size: 14px;
  line-height: 1.7;
}

.global-trust-card-accent {
  background: linear-gradient(135deg, rgba(0, 242, 226, 0.08), rgba(149, 141, 253, 0.05));
  border-color: rgba(0, 242, 226, 0.16);
}

.global-trust-map-panel {
  position: relative;
  min-height: 420px;
  display: grid;
  gap: 16px;
}

.global-trust-map-shell {
  position: relative;
  min-height: 360px;
  border-radius: 32px;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.global-network-map {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  height: 360px;
  margin: 0 auto;
  padding: 0;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  transform-origin: center center;
  animation: globeSpin 24s linear infinite;
}

.global-network-map:hover {
  animation-play-state: paused;
}

.global-network-map .jvectormap-container {
  width: 100%;
  height: 100%;
}

.global-network-map .jvectormap-zoomin,
.global-network-map .jvectormap-zoomout,
.global-network-map .jvectormap-goback {
  display: none !important;
}

.global-network-map .jvectormap-tip {
  border-radius: 999px;
  background: #07111f;
  color: #fff;
  border: 1px solid rgba(0, 242, 226, 0.18);
  padding: 8px 12px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
  font-size: 13px;
  line-height: 1.4;
}

.global-network-map .jvectormap-tip strong {
  color: #00f2e2;
}

.global-network-map .jvectormap-region {
  transition: fill .18s ease, stroke .18s ease, opacity .18s ease;
}

.global-network-map::before {
  content: none;
}

.global-network-meta {
  display: grid;
  gap: 12px;
}

.global-network-active {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(8, 8, 8, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.global-network-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: #00f2e2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.global-network-active strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 8px;
}

.global-network-active p {
  margin: 0;
  color: rgba(255, 255, 255, 0.70);
  font-size: 14px;
  line-height: 1.65;
}

.global-network-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 13px;
}

.global-network-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.global-network-legend i {
  font-size: 11px;
}

.global-network-legend .outline {
  color: transparent;
  -webkit-text-stroke: 1px #68bfff;
}

.global-network-legend .fa-circle {
  color: #00f2e2;
}

.global-network-map-panel:hover .global-trust-map-shell {
  animation-play-state: paused;
}

@keyframes globeSpin {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(360deg) scale(1); }
}

.global-trust-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.global-trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
}

.global-trust-badge i {
  color: #00f2e2;
  font-size: 18px;
}

@media (max-width: 1100px) {
  .global-trust-grid {
    grid-template-columns: 1fr;
  }

  .global-trust-map-panel {
    min-height: auto;
  }

  .global-network-map {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .global-trust-section {
    padding: 60px 16px;
  }

  .global-trust-copy p {
    font-size: 15px;
  }

  .global-trust-footer {
    grid-template-columns: 1fr;
  }

  .global-network-map {
    height: 280px;
  }
}

/* <!-- ======================= Testimonial Sectiob ======================= --> */
.carousel-container {
  max-width: 70rem;
  width: 90%;
  margin: 50px auto;
}

.carousel-wrapper {
  position: relative;
}

/* Desktop Navigation Dots */
.carousel-dots-desktop {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.testimonial-dots-container {
  display: flex;
  gap: 0.5rem;
}

.carousel-navigation-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-navigation-dot.dot-active {
  background-color: #00baae;
  transform: scale(1.2);
}

/* Cards Container */
.testimonial-cards-container {
  position: relative;
  min-height: 450px;
}

.testimonial-carousel-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #000000;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 32px;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #00baae;
}

.testimonial-carousel-card.carousel-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 10;
}

.testimonial-carousel-card.carousel-inactive {
  opacity: 0;
  z-index: 1;
}

.testimonial-content-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.testimonial-profile-section {
  flex-shrink: 0;
}

.testimonial-profile-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-profile-image img {
  width: 300px;
  height: 300px;
  border-radius: 20px;
}

.testimonial-text-content {
  flex: 1;
}

.testimonial-company-logo-section {
  margin-bottom: 1.5rem;
}

.testimonial-company-logo-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  color: white;
}

.bits-pilani {
  background-color: #2563eb;
}

.techcorp {
  background-color: #059669;
}

.edutech {
  background-color: #7c3aed;
}

.healthcare {
  background-color: #dc2626;
}

.retailmax {
  background-color: #ea580c;
}

.financeflow {
  background-color: #4f46e5;
}

.startuphub {
  background-color: #0d9488;
}

.testimonial-quote-text {
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author-info {
  color: #6b7280;
}

.testimonial-author-name {
  font-weight: 600;
  color: #ffffff96;
  margin-bottom: 0.25rem;
}

.testimonial-author-title {
  font-size: 0.875rem;
  color: #ffffff8a;
}

/* Tablet and Mobile Dots */
.carousel-dots-tablet,
.carousel-dots-mobile {
  display: none;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .carousel-dots-desktop {
    display: none;
  }

  .carousel-dots-tablet {
    display: flex;
  }
}

@media (max-width: 768px) {
  .carousel-dots-tablet {
    display: none;
  }

  .carousel-dots-mobile {
    display: flex;
  }

  .testimonial-content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .testimonial-profile-image img {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .carousel-container {
    width: 95%;
  }

  .testimonial-carousel-card {
    padding: 1.5rem;
  }

  .testimonial-quote-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .testimonial-author-name {
    font-size: 0.875rem;
  }

  .testimonial-author-title {
    font-size: 0.75rem;
  }

  .testimonial-company-logo-badge {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
  }

  .testimonial-profile-image img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
  }

  .carousel-navigation-dot {
    width: 8px;
    height: 8px;
  }

  .profile-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

/* updated  */
/*------------------ Case Studies Page ----------------------- */
.roi-blogs-container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 50px;
  width: 80%;
  margin: 50px auto;
}

.roi-blogs-section {
  width: 70%;
}

.roi-blogs-container .resources-box-grid-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  max-width: 260px;
}

.roi-blogs-top h2,
.roi-subtitle-unique {
  color: #7765f5;
  font-size: 24px;
  line-height: 26px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 20px;
}

.roi-blogs-top p,
.roi-top-wrapper-unique p,
.roi-full-width-unique p {
  color: #ffffff;
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 30px;
}

.roi-section-container-unique {
  max-width: 900px;
  padding: 20px 0;
}

.roi-section-title-unique {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
}

.roi-divider-unique {
  border: 0;
  height: 1px;
  background: #ffffff;
  margin: 15px 0;
}

/* Top section with image and text */
.roi-top-wrapper-unique {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.roi-image-unique {
  height: 350px;
  width: 350px;
}

.roi-image-unique img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.roi-intro-text-unique {
  flex: 2 1 500px;
}

/* Full-width content */
.roi-full-width-unique {
  margin-top: 20px;
}

.roi-key-strategies-unique {
  margin: 15px 0;
  padding-left: 20px;
  color: #ffffff;
}

.roi-key-strategies-unique li {
  margin-bottom: 5px;
  font-size: 20px;
  line-height: 26px;
}

.roi-final-thought-unique {
  margin-top: 20px;
  color: #7765f5;
  font-size: 24px;
  line-height: 26px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .roi-blogs-container {
    flex-direction: column;
  }

  .roi-blogs-section {
    width: 100%;
  }

  .roi-blogs-container .resources-box-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .roi-blogs-container {
    width: 90%;
  }

  .roi-top-wrapper-unique {
    flex-direction: column;
    align-items: center;
  }

  .roi-intro-text-unique {
    flex: 2 1 fit-content;
  }

  .roi-blogs-container .resources-box-grid-container {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .roi-blogs-container {
    position: relative;
    margin-top: -70px;
    width: 95%;
    z-index: 2;
  }

  .roi-blogs-top h2,
  .roi-subtitle-unique {
    color: #7765f5;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 10px;
  }

  .roi-blogs-top p,
  .roi-top-wrapper-unique p,
  .roi-full-width-unique p {
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 10px;
  }

  .roi-section-title-unique {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
  }

  .roi-image-unique {
    height: 200px;
    width: 280px;
  }

  .roi-key-strategies-unique li {
    margin-bottom: 2px;
    font-size: 12px;
    line-height: 18px;
  }

  .roi-blogs-container .resources-box-grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
}


/*--------------------- Product Details Page ------------------ */
.product-details-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1200px;
  border-top: 1px solid #ffffff;
}

.product-details-grid-img {
  flex: 1;
  min-width: 300px;
}

.product-details-grid-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.release-section-unique {
  max-width: 1200px;
  margin: 50px auto;
}

.smart-dashboard h3 {
  color: #7765f5;
  font-size: 24px;
  font-style: italic;
  margin-bottom: 20px;
}

.smart-dashboard p {
  color: #ffffff;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 20px;
}

.release-title-unique {
  font-size: 48px;
  font-weight: 500;
  color: #7765F5;
  margin-bottom: 30px;
  line-height: 48px;
}

.release-divider-unique {
  border: 0;
  height: 1px;
  background: #ffffff;
  margin: 20px 0 40px 0;
  width: 60%;
}

/* Features grid */
.features-grid-unique {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.feature-card-unique img {
  width: 100%;
  margin-bottom: 10px;
}

.feature-card-unique p {
  font-weight: bold;
  font-size: 20px;
  line-height: 26px;
  color: #ffffff;
}

/* Smarter Dashboard section */
.dashboard-section-unique {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: stretch;
  margin: 0 auto;
  max-width: 1200px;
}

.dashboard-image-unique {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.dashboard-image-unique img {
  width: 100%;
  object-fit: cover;
}

.dashboard-text-unique {
  flex: 2 1 500px;
}

.dashboard-text-unique h2 {
  font-size: 48px;
  font-weight: 500;
  color: #7765F5;
  margin-bottom: 30px;
  line-height: 48px;
}

.dashboard-divider-unique {
  border: 0;
  height: 1px;
  background: #ffffff;
  margin: 20px 0;
}

.dashboard-text-unique p {
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 20px;
  line-height: 26px;
}

.dashboard-text-unique ul {
  margin: 0;
  padding-left: 30px;
  color: #ffffff;
  font-size: 20px;
  line-height: 26px;
}

.dashboard-text-unique ul li {
  margin-bottom: 5px;
}

@media (max-width: 992px) {
  .smart-dashboard p {
    color: #ffffff;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
  }

  .release-divider-unique {
    border: 0;
    height: 1px;
    background: #ffffff;
    margin: 20px 0 40px 0;
    width: 90%;
  }
}

@media (max-width: 768px) {
  .dashboard-section-unique {
    flex-direction: column;
  }

  .product-details-grid {
    flex-direction: column-reverse;
  }

  .dashboard-text-unique {
    flex: 2 1 fit-content;
  }

  .dashboard-text-unique p {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 16px;
    line-height: 20px;
  }

  .dashboard-text-unique ul li {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 20px;
  }

  .dashboard-text-unique h2 {
    font-size: 32px;
    line-height: 36px;
  }

  .release-title-unique {
    font-size: 32px;
    line-height: 36px;
  }

  .features-grid-unique {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .product-details-grid {
    padding: 10px 0 40px 0;
    border-top: none;
    position: relative;
    z-index: 2;
    margin-top: -70px;
  }

  .smart-dashboard h3 {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
  }

  .smart-dashboard p {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 10px;
  }

  .dashboard-text-unique h2,
  .release-title-unique {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
  }

  .dashboard-text-unique p,
  .dashboard-text-unique ul li,
  .feature-card-unique p {
    font-size: 12px;
    line-height: 16px;
  }

  .dashboard-text-unique ul {
    padding-left: 15px;
  }

  .features-grid-unique {
    gap: 20px 10px;
  }

  .release-section-unique {
    max-width: 1200px;
    margin: 50px auto 0;
  }
}

/* ============================ WHY INCOBIST MODERN SECTION START ============================= */
.why-incobist-modern {
  background: #000000;
  padding: 84px 20px;
  position: relative;
  overflow: hidden;
}

.why-incobist-modern::before,
.why-incobist-modern::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.why-incobist-modern::before {
  display: none;
}

.why-incobist-modern::after {
  display: none;
}

.why-modern-shell {
  position: relative;
  z-index: 1;
}

.why-modern-header {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.why-modern-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(0, 242, 226, 0.10);
  color: #00f2e2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.why-modern-header h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}

.why-modern-header p {
  margin: 0 auto;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.75;
}

.why-modern-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 380px) 1fr;
  gap: 24px;
  align-items: center;
}

.why-modern-stack {
  display: grid;
  gap: 16px;
}

.why-modern-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 18px 18px 16px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(0, 242, 226, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(18, 18, 20, 0.98), rgba(8, 8, 10, 0.98));
  border: 1px solid rgba(0, 242, 226, 0.10);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.why-modern-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 32%);
  pointer-events: none;
}

.why-modern-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 242, 226, 0.24), transparent 60%),
    linear-gradient(135deg, rgba(0, 242, 226, 0.10), rgba(22, 30, 44, 0.95));
  color: #00f2e2;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(0, 242, 226, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.why-modern-card h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.2;
}

.why-modern-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.why-modern-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.why-modern-orb {
  position: absolute;
  inset: 36px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 242, 226, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 30px 90px rgba(0, 0, 0, 0.25);
}

.why-modern-hero-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  padding: 20px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(0, 242, 226, 0.10), transparent 42%),
    linear-gradient(180deg, rgba(18, 18, 20, 0.98), rgba(6, 6, 8, 0.98));
  border: 1px solid rgba(0, 242, 226, 0.12);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.why-modern-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 38%);
  pointer-events: none;
}

.why-modern-hero-card img {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
}

.why-modern-hero-badge {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(0, 242, 226, 0.08), transparent 45%),
    rgba(2, 4, 13, 0.88);
  border: 1px solid rgba(0, 242, 226, 0.16);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-modern-hero-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 36%);
  pointer-events: none;
}

.why-modern-hero-badge strong,
.why-modern-hero-badge span {
  display: block;
}

.why-modern-hero-badge strong {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 4px;
}

.why-modern-hero-badge span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.why-modern-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.why-modern-stat {
  padding: 18px 16px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(0, 242, 226, 0.06), transparent 44%),
    linear-gradient(180deg, rgba(16, 16, 18, 0.98), rgba(8, 8, 10, 0.98));
  border: 1px solid rgba(0, 242, 226, 0.08);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  text-align: center;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.why-modern-stat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 42%);
  pointer-events: none;
}

.why-modern-stat strong {
  display: block;
  color: #00f2e2;
  font-size: clamp(1.7rem, 2vw, 2.4rem);
  line-height: 1;
  margin-bottom: 8px;
}

.why-modern-stat span {
  color: rgba(255, 255, 255, 0.70);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .why-modern-grid {
    grid-template-columns: 1fr;
  }

  .why-modern-hero {
    min-height: 340px;
  }

  .why-modern-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .why-incobist-modern {
    padding: 56px 16px;
  }

  .why-modern-header {
    margin-bottom: 22px;
  }

  .why-modern-header p {
    font-size: 15px;
  }

  .why-modern-card {
    grid-template-columns: 1fr;
  }

  .why-modern-hero {
    min-height: 280px;
  }

  .why-modern-orb {
    inset: 22px;
  }

  .why-modern-stats {
    grid-template-columns: 1fr;
  }
}

/* ==================== RESOURCES MAIN PAGE (FIGMA-STYLE) ==================== */
.resources-page-shell {
  position: relative;
  background: #040506;
  color: #ffffff;
  overflow: hidden;
}

.resources-hero,
.resources-library-section,
.resources-blogs-section,
.resources-capabilities-section {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.resources-hero {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: center 50px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  overflow: hidden;
  opacity: 0.85;
}

.resources-kicker,
.resources-section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 242, 226, 0.2);
  background: rgba(0, 242, 226, 0.05);
  color: #00f2e2;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 700;
}

.resources-section-kicker--alt {
  padding: 8px 16px;
  letter-spacing: 0.18em;
}

.resources-hero-banner .career-heading {
  width: min(1200px, calc(100% - 80px));
  padding: 0;
}

.resources-hero-banner .career-heading h1 {
  color: #00f2d5;
}

.resources-hero-banner .career-line {
  width: 100%;
}

.resources-hero-banner .career-subtitle,
.resources-section-head p {
  margin: 0;
  color: #b5bcbc;
  font-size: 18px;
  line-height: 1.85;
}

.resources-section-link,
.resources-blog-featured-content a,
.resources-blog-card-content a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.resources-hero-link,
.resources-section-link,
.resources-blog-featured-content a,
.resources-blog-card-content a {
  color: #00f2e2;
  font-size: 15px;
  font-weight: 600;
}

.resources-hero-link:hover,
.resources-section-link:hover,
.resources-blog-featured-content a:hover,
.resources-blog-card-content a:hover {
  color: #ffffff;
}

.resources-library-section {
  margin-top: 12px;
}

.resources-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.resources-section-head-copy h2 {
  margin: 16px 0 0;
  color: #ffffff;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(40px, 4vw, 68px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.resources-section-head p {
  max-width: 560px;
  padding-top: 24px;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.resources-card {
  position: relative;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  background: #0b0d0f;
  border: 1px solid rgba(0, 242, 226, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  isolation: isolate;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.resources-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 242, 226, 0.24);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.5);
}

.resources-card-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  transition: transform 0.5s ease;
}

.resources-card:hover .resources-card-media {
  transform: scale(1.08);
}

.resources-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.44) 58%, rgba(0, 0, 0, 0.9) 100%);
}

.resources-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 22px;
}

.resources-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #00f2e2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.resources-card-copy {
  margin-top: auto;
  padding-top: 130px;
}

.resources-card-copy h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 500;
  max-width: 92%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.resources-card-copy p {
  margin: 0;
  color: #c3c7c7;
  font-size: 14px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.resources-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resources-empty-state {
  color: #ffffff;
  text-align: center;
  padding: 40px 0;
}

.resources-blogs-section {
  margin-top: 100px;
}

.resources-section-head--blogs,
.resources-section-head--capabilities {
  margin-bottom: 30px;
}

.resources-blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.82fr);
  gap: 24px;
}

.resources-blog-featured,
.resources-blog-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #0b0d0f;
  border: 1px solid rgba(0, 242, 226, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
}

.resources-blog-featured {
  min-height: 620px;
}

.resources-blog-card {
  min-height: 298px;
}

.resources-blog-featured img,
.resources-blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.resources-blog-featured::after,
.resources-blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.68) 72%, rgba(0, 0, 0, 0.92));
}

.resources-blog-featured-content,
.resources-blog-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 30px;
}

.resources-blog-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 242, 226, 0.16);
  background: rgba(0, 242, 226, 0.06);
  color: #00f2e2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.resources-blog-featured-content h3 {
  margin: 16px 0 12px;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 500;
  max-width: 90%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.resources-blog-featured-content p {
  margin: 0 0 18px;
  color: #c3c7c7;
  font-size: 16px;
  line-height: 1.8;
  max-width: 90%;
}

.resources-blog-stack {
  display: grid;
  gap: 24px;
}

.resources-blog-card-content h4 {
  margin: 14px 0 10px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.resources-blog-card-content p {
  margin: 0 0 14px;
  color: #c3c7c7;
  font-size: 14px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.resources-capabilities-section {
  margin-top: 100px;
  padding-bottom: 120px;
}

.resources-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.resources-capability-panel,
.resources-comment-card {
  background: rgba(11, 14, 16, 0.92);
  border: 1px solid rgba(0, 242, 226, 0.12);
  border-radius: 30px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
}

.resources-capability-panel {
  padding: 28px;
}

.resources-capability-panel.is-active {
  background: linear-gradient(180deg, rgba(10, 18, 20, 0.96), rgba(7, 10, 12, 0.96));
}

.resources-capability-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.resources-capability-panel-header h3 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
}

.resources-capability-panel-header span {
  color: #00f2e2;
  font-size: 34px;
  line-height: 1;
}

.resources-capability-copy {
  margin: 16px 0 0;
  color: #b5bcbc;
  font-size: 15px;
  line-height: 1.8;
}

.resources-capability-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #b5bcbc;
  line-height: 1.9;
}

.resources-capability-accordion {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.resources-capability-button {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 18px;
  border: 1px solid rgba(0, 242, 226, 0.14);
  background: rgba(0, 242, 226, 0.06);
  color: #00f2e2;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.resources-comment-card {
  padding: 28px;
}

.resources-comment-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.resources-comment-head h3 {
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 500;
}

.resources-comment-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #00f2e2;
  font-size: 14px;
}

.resources-comment-quote {
  margin: 54px 0;
  color: #c3c7c7;
  font-size: 18px;
  line-height: 1.8;
}

.resources-comment-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.resources-comment-author img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
}

.resources-comment-author strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.resources-comment-author span {
  color: #b5bcbc;
  font-size: 13px;
}

@media (max-width: 1200px) {
  .resources-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resources-blog-layout,
  .resources-capabilities-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .resources-hero,
  .resources-library-section,
  .resources-blogs-section,
  .resources-capabilities-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .resources-hero-banner .career-heading {
    width: 100%;
  }

  .resources-hero-banner .career-heading h1 {
    font-size: 44px;
    line-height: 1.08;
    margin-top: 110px;
  }

  .resources-hero-banner .career-subtitle,
  .resources-section-head p {
    font-size: 16px;
  }

  .resources-section-head {
    flex-direction: column;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .resources-card-copy {
    padding-top: 96px;
  }

  .resources-blog-featured {
    min-height: 420px;
  }

  .resources-blog-card {
    min-height: 250px;
  }

  .resources-capabilities-section {
    padding-bottom: 88px;
  }

  .resources-capability-panel,
  .resources-comment-card {
    padding: 22px;
  }

.resources-comment-quote {
    margin: 34px 0;
    font-size: 16px;
  }
}

/* ======================= CMS PAGES: ABOUT / COMPANY / CONTACT ==================== */
.cms-premium-page {
  background: #000;
  overflow: hidden;
}

.cms-premium-page .career-heading {
  width: min(1200px, calc(100% - 80px));
}

.cms-premium-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 242, 226, 0.2);
  background: rgba(7, 16, 22, 0.62);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cms-story-section {
  padding-top: 18px;
}

.cms-inline-button {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-radius: 999px;
  overflow: hidden;
  text-decoration: none;
  background: #25969c;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.16);
}

.cms-inline-button span {
  padding: 14px 24px;
}

.cms-inline-button i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #071114;
  font-size: 15px;
}

.cms-value-section,
.cms-contact-info-section,
.cms-quote-band,
.cms-cta-strip {
  padding-left: 32px;
  padding-right: 32px;
}

.cms-section-heading {
  max-width: 1280px;
  margin: 0 auto 24px;
}

.cms-section-heading h2 {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.cms-section-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.65;
  max-width: 860px;
}

.cms-value-grid,
.cms-contact-info-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.cms-value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cms-contact-info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cms-value-card,
.cms-contact-info-card {
  min-height: 260px;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(0, 242, 226, 0.08);
  background:
    radial-gradient(circle at 16% 20%, rgba(0, 242, 226, 0.12), transparent 28%),
    linear-gradient(135deg, #071d1f 0%, #081316 56%, #061013 100%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cms-value-card-media,
.cms-contact-info-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(0, 242, 226, 0.12);
  overflow: hidden;
}

.cms-value-card-media img,
.cms-contact-info-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cms-value-card h3,
.cms-contact-info-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.1;
}

.cms-value-card p,
.cms-contact-info-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.65;
  white-space: pre-line;
}

.cms-story-section .featured-fold-copy,
.cms-story-section .featured-fold-image-wrap {
  height: 640px;
  min-height: 640px;
}

.cms-story-section .featured-fold-copy {
  width: 100%;
}

.cms-quote-band-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 44px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 242, 226, 0.12), transparent 28%),
    linear-gradient(135deg, #071d1f 0%, #081316 56%, #061013 100%);
  border: 1px solid rgba(0, 242, 226, 0.08);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cms-quote-mark {
  margin: 0 0 10px;
  color: #00f2e2;
  font-family: "Exo 2", sans-serif;
  font-size: 54px;
  line-height: 1;
}

.cms-quote-band blockquote {
  margin: 0;
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.5rem, 2.3vw, 2.5rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.cms-quote-attribution {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.cms-quote-attribution strong {
  color: #fff;
  font-size: 16px;
}

.cms-cta-strip {
  max-width: 1280px;
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 242, 226, 0.12), transparent 28%),
    linear-gradient(135deg, #071d1f 0%, #081316 56%, #061013 100%);
  border: 1px solid rgba(0, 242, 226, 0.08);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cms-cta-strip-copy h2 {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.8rem, 2.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.cms-cta-strip-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.6;
}

.cms-contact-info-heading {
  text-align: center;
}

.cms-contact-info-card {
  display: flex;
  flex-direction: column;
}

.cms-contact-fold .contact-fold-subtitle {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.65;
}

.cms-premium-about .high-tech-hero {
  min-height: 88vh;
}

.cms-premium-about .featured-fold-section {
  padding: 8px 32px 62px;
}

.cms-premium-about .cms-value-section {
  padding-top: 0;
  padding-bottom: 4px;
}

.cms-premium-about .cms-cta-strip {
  margin-top: 18px;
  margin-bottom: 10px;
}

.cms-premium-about .cms-section-heading {
  margin-bottom: 18px;
}

.cms-premium-about .featured-fold-copy h2 {
  max-width: 560px;
}

.cms-premium-company {
  padding-bottom: 24px;
}

.cms-premium-company .cms-cta-strip {
  margin-bottom: 24px;
}

.cms-premium-company .cms-value-section {
  padding-bottom: 4px;
}

@media (max-width: 1200px) {
  .cms-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cms-contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cms-story-section .featured-fold-grid {
    grid-template-columns: 1fr;
  }

  .cms-story-section .featured-fold-copy,
  .cms-story-section .featured-fold-image-wrap {
    height: auto;
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .cms-premium-page .career-heading {
    width: calc(100% - 32px);
  }

  .cms-value-section,
  .cms-contact-info-section,
  .cms-quote-band,
  .cms-cta-strip {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cms-value-grid,
  .cms-contact-info-grid {
    grid-template-columns: 1fr;
  }

  .cms-cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .cms-quote-band-inner {
    padding: 28px 24px;
  }

  .cms-story-section {
    padding-top: 12px;
  }

  .cms-premium-about .featured-fold-section {
    padding: 8px 16px 56px;
  }

  .cms-premium-about .cms-value-section {
    padding-top: 4px;
  }

  .cms-premium-about .cms-cta-strip {
    margin-top: 18px;
  }

  .cms-premium-company {
    padding-bottom: 20px;
  }

  .cms-premium-company .cms-cta-strip {
    margin-bottom: 20px;
  }
}
