 :root {
   --bg-deep: #050d1a;
   --bg-dark: #080f1e;
   --bg-card: #0b1628;
   --bg-card2: #0d1930;
   --accent: #6647FD;
   --accent2: #4facfe;
   --text-white: #ffffff;
   --section-color: #0F1128;
   --border: rgba(255, 255, 255, 0.07);
   --font-head: 'Space Grotesk', sans-serif;
   --font-body: 'Roboto', sans-serif;
 }

 *,
 *::before,
 *::after {
   box-sizing: border-box;
 }

 html {
   scroll-behavior: smooth;
 }

 body {
   background: var(--bg-deep);
   color: var(--text-white);
   font-family: var(--font-body);
   font-size: 15px;
   line-height: 1.65;
   overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
   font-family: var(--font-head);
   color: var(--text-white);
 }

 a {
   text-decoration: none;
 }

 /* ── Utility ── */
 .text-accent {
   color: var(--accent);
 }

 .text-blue {
   color: var(--blue-core);
 }

 .section-label {
   font-family: var(--font-head);
   font-size: 11px;
   font-weight: 700;
   letter-spacing: 3px;
   text-transform: uppercase;
   color: var(--accent);
 }

 .section-title {
   font-size: 32px;
   font-weight: 400;
   line-height: 1.2;
 }

 .section-title span {
   color: var(--accent);
   font-weight: 700;
 }

 .divider-glow {
   width: 60px;
   height: 3px;
   background: linear-gradient(90deg, var(--blue-core), var(--accent));
   border-radius: 2px;
   margin: 0 auto 1.5rem;
 }

 /* ── Gradient noise overlay ── */
 /* body::before {
      content: '';
      position: fixed; inset: 0;
      background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(26,106,255,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 90% 50%, rgba(0,212,255,0.06) 0%, transparent 60%);
      pointer-events: none;
      z-index: 0;
    } */

 /* ══════════ NAVBAR ══════════ */
 .navbar {
   /* background: #0B0F1E; */
   backdrop-filter: blur(14px);
   /* border-bottom: 1px solid var(--border); */
   padding: 0.85rem 0;
   position: sticky;
   top: 0;
   z-index: 1030;
 }

 .navbar-brand {
   font-family: var(--font-head);
   font-weight: 800;
   font-size: 1.15rem;
   color: var(--text-white) !important;
 }

 .navbar-brand .brand-dot {
   color: var(--accent);
 }

 .navbar-brand small {
   display: block;
   font-size: 9px;
   letter-spacing: 2px;
   color: var(--text-white);
   font-weight: 400;
   text-transform: uppercase;
 }

 .navbar-nav .nav-link {
   color: var(--text-white) !important;
   font-size: 13.5px;
   font-weight: 500;
   padding: 0.4rem 0.9rem !important;
   transition: color .2s;
 }

 .navbar-nav .nav-link:hover {
   color: var(--accent) !important;
 }

 .navbar-toggler {
   border-color: var(--border);
 }

 .navbar-toggler-icon {
   filter: invert(1);
 }

 .btn-dtalent {
   background: linear-gradient(135deg, #1a6aff, #00d4ff);
   color: #fff;
   border: none;
   font-size: 12px;
   font-weight: 600;
   letter-spacing: .5px;
   padding: 6px 16px;
   border-radius: 20px;
 }

 .btn-dtalent:hover {
   opacity: .85;
   color: #fff;
 }

 /* ══════════ HERO ══════════ */
 .hero {
   min-height: 90vh;
   position: relative;
   overflow: hidden;
   display: flex;
   align-items: center;
   /* padding: 6rem 0 4rem; */
 }

 /* .hero::after {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 70% at 70% 50%, rgba(26,106,255,0.15) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 80% 20%, rgba(0,212,255,0.08) 0%, transparent 60%);
      pointer-events: none;
    } */
 .hero-img-wrap {
   position: absolute;
   right: 0;
   top: 0;
   bottom: 0;
   /* width: 55%; */
   overflow: hidden;
 }

 .hero-img-wrap img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: top center;
   mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .6) 30%, #000 70%);
 }

 .hero-content {
   position: relative;
   z-index: 2;
 }

 .hero-eyebrow {
   font-size: 18px;
   color: #fff;
   font-weight: 400;
   margin-bottom: 16px;
   background-color: var(--accent);
   width: fit-content;
   padding: 4px 16px;
   border-radius: 30px;
   font-family: 'Roboto', sans-serif;
 }

 .hero h1 {
   font-size: 48px;
   font-weight: 800;
   line-height: 1.1;
   margin-bottom: 1.2rem;
 }

 .highlight {
   color: var(--accent);
 }

 .hero-sub {
   font-size: 15px;
   color: var(--text-white);
   max-width: 460px;
   margin-bottom: 2rem;
   line-height: 1.7;
 }

 .btn-primary-glow {
   background: linear-gradient(135deg, #1a6aff, #00d4ff);
   border: none;
   color: #fff;
   font-family: var(--font-head);
   font-weight: 700;
   font-size: 13px;
   padding: 12px 26px;
   border-radius: 6px;
   letter-spacing: .5px;
   box-shadow: 0 0 20px rgba(26, 106, 255, 0.4);
   transition: all .3s;
 }

 .btn-primary-glow:hover {
   box-shadow: 0 0 32px rgba(26, 106, 255, 0.6);
   transform: translateY(-1px);
   color: #fff;
 }

 .btn-ghost {
   background: transparent;
   border: 1px solid rgba(255, 255, 255, 0.2);
   color: var(--text-white);
   font-size: 13px;
   font-weight: 500;
   padding: 11px 22px;
   border-radius: 6px;
   transition: all .3s;
 }

 .btn-ghost:hover {
   border-color: var(--accent);
   color: var(--accent);
 }

 /* ══════════ SECTIONS common ══════════ */
 section {
   position: relative;
   z-index: 1;
 }

 .section-pad {
   padding: 80px 0;
 }

 .section-pad-sm {
   padding: 60px 0;
 }

 /* ══════════ WHO WE ARE ══════════ */
 .who-img-grid img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   filter: brightness(.7) saturate(1.2);
 }

 .who-img-grid .img-brand {
   background: linear-gradient(135deg, #0a1830, #1a3a70);
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .who-img-grid .img-brand .brand-icon {
   width: 60px;
   height: 60px;
   background: linear-gradient(135deg, var(--blue-core), var(--accent));
   border-radius: 14px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.8rem;
   color: #fff;
 }

 .who-text p {
   color: var(--text-white);
   font-size: 14.5px;
 }

 .who-text .highlight-link {
   color: var(--accent);
   font-weight: 500;
 }

 .mission-box {
   border-left: 3px solid var(--blue-core);
   padding-left: 1rem;
   margin-top: 1.5rem;
 }

 .mission-box .label {
   font-size: 11px;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: var(--accent);
   font-weight: 700;
 }

 .mission-box p {
   font-size: 14px;
   color: var(--text-white);
   margin: 0;
 }

 /* ══════════ INDUSTRIES ══════════ */
 .ind-wrap {
   background: var(--bg-deep);
 }

 .ind-card {
   position: relative;
   border-radius: 12px;
   overflow: hidden;
   height: 315px;
   cursor: default;
 }

 .ind-card img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   filter: brightness(.5) saturate(1.3);
   transition: transform .5s, filter .5s;
 }

 .ind-card:hover img {
   transform: scale(1.06);
   filter: brightness(.4) saturate(1.5);
 }

 .ind-card .overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(to top, rgb(6 17 37 / 83%) 0%, transparent 60%);
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   padding: 1rem;
 }

 .ind-card:has(.serve-content) .overlay {
   justify-content: flex-end;
 }

 .ind-card:has(.serve-content) h5 {
   margin-top: auto;
   transition: margin-top 0.45s ease;
 }

 .ind-card:has(.serve-content):hover h5 {
   margin-top: 0;
 }

 .ind-card:has(.serve-content):hover .serve-content {
   opacity: 1;
   max-height: 120px;
   margin-top: 12px !important;
 }

 .ind-card h5 {
   font-size: 24px;
   font-weight: 700;
   margin: 0;
   line-height: 1.3;
   text-align: center;
 }

 .ind-card p {
   font-size: 11.5px;
   color: var(--text-white);
   margin: 0;
 }

 /* ══════════ WHY CHOOSE US ══════════ */
 .why-wrap {
   background: var(--bg-dark);
   overflow: hidden;
 }

 .why-visual {
   border-radius: 14px;
   overflow: hidden;
   position: relative;
 }

 .why-visual img {
   width: 100%;
   border-radius: 14px;
   filter: brightness(.6) saturate(1.4);
 }

 .why-visual::after {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(135deg, rgba(26, 106, 255, 0.2), rgba(0, 212, 255, 0.1));
   border-radius: 14px;
 }

 .why-point {
   display: flex;
   gap: .85rem;
   align-items: flex-start;
   margin-bottom: 1.4rem;
 }

 .why-point-icon {
   flex-shrink: 0;
   margin-top: 2px;
   width: 36px;
   height: 36px;
   background: rgba(26, 106, 255, 0.12);
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: .9rem;
   color: var(--blue-glow);
 }

 .why-point h6 {
   font-size: 14px;
   font-weight: 700;
   margin-bottom: .2rem;
 }

 .why-point p {
   font-size: 13px;
   color: var(--text-white);
   margin: 0;
 }

 /* ══════════ STATS ══════════ */
 .stats-wrap {
   background: var(--bg-deep);
 }

 .stat-card {
   text-align: center;
   padding: 2rem 1rem;
 }

 .stat-num {
   font-family: var(--font-head);
   font-size: 48px;
   font-weight: 700;
   background: linear-gradient(135deg, #fff 30%, var(--accent));
   -webkit-background-clip: text;
   line-height: 1;
   margin-bottom: .25rem;
 }

 .stat-label {
   font-size: 18px;
   color: var(--text-white);
   font-weight: 500;
   font-family: var(--font-body);
 }

 .stat-divider {
   width: 1px;
   background: var(--border);
   align-self: stretch;
 }

 /* ══════════ CONTACT ══════════ */
 .contact-wrap {
   background: var(--section-color);
 }

 .contact-form-wrap {
   background: var(--bg-card);
   border: 1px solid var(--accent);
   border-radius: 16px;
   padding: 2rem 2.5rem;
 }

 .form-control,
 .form-select {
   background: rgba(255, 255, 255, 0.05) !important;
   border: 1px solid var(--accent) !important;
   color: var(--text-white) !important;
   font-size: 14px;
   padding: .65rem 1rem;
   border-radius: 8px;
 }

 .form-control::placeholder {
   color: var(--text-white) !important;
 }

 .form-control:focus,
 .form-select:focus {
   box-shadow: 0 0 0 3px rgba(26, 106, 255, 0.2) !important;
   border-color: var(--blue-core) !important;
 }

 .form-control::placeholder {
   color: #9CA3AF !important;
 }

 .form-label {
   font-size: 13px;
   font-weight: 500;
   color: var(--accent);
   margin-bottom: .4rem;
 }

 .btn-submit {
   background: var(--accent);
   border: none;
   color: #fff;
   font-family: var(--font-body);
   font-weight: 500;
   font-size: 16px;
   padding: 12px 24px;
   border-radius: 8px;
   width: 100%;
   letter-spacing: .5px;
   transition: opacity .2s;
 }

 .btn-submit:hover {
   color: var(--text-white);
   background-color: #3d17fa;
 }

 .download-link {
   display: block;
   text-align: center;
   margin-top: .75rem;
   font-size: 13px;
   color: var(--text-white);
 }

 .download-link:hover {
   color: var(--accent);
 }

 /* ══════════ FOOTER ══════════ */
 .footer {
   background: #030810;
   border-top: 1px solid var(--border);
   padding: 60px 0 24px;
 }

 .footer-brand {
   font-family: var(--font-head);
   font-size: 1.1rem;
   font-weight: 800;
   color: var(--text-white);
 }

 .footer-brand small {
   display: block;
   font-size: 8px;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: var(--text-white);
   font-weight: 400;
 }

 .footer-tagline {
   font-size: 1rem;
   font-weight: 700;
   color: var(--text-white);
   font-family: var(--font-head);
 }

 .footer-tagline span {
   color: var(--blue-core);
 }

 .footer h6 {
   font-size: 14px;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: var(--accent);
   font-weight: 700;
   margin-bottom: 1rem;
 }

 .footer ul {
   list-style: none;
   padding: 0;
   margin: 0;
 }

 .footer ul li {
   margin-bottom: .5rem;
 }

 .footer ul li a {
   font-size: 13.5px;
   color: var(--text-white);
   transition: color .2s;
 }

 .footer ul li a:hover {
   color: var(--accent);
 }

 .footer-contact li {
   font-size: 14px;
   color: var(--text-white);
   display: flex;
   gap: .5rem;
   margin-bottom: .6rem;
   font-weight: 400;
 }

 .footer-contact li i {
   color: var(--blue-core);
   flex-shrink: 0;
   margin-top: 3px;
 }

 .footer-bottom {
   border-top: 1px solid var(--border);
   margin-top: 2.5rem;
   padding-top: 1.25rem;
 }

 .footer-bottom p {
   font-size: 14px;
   font-weight: 400;
   color: #6B7280;
   margin: 0;
 }


 .btn-purple {
   background-color: var(--accent);
   /* Matches the vibrant purple in the image */
   border-color: var(--accent);
   color: white;
   padding: 0.6rem 2rem;
   /* Adjusts the internal spacing */
   font-size: 16px;
   font-weight: 500;
   transition: all 0.3s ease;
   font-family: var(--font-body);
 }

 .btn-purple:hover {
   background-color: #5236e6;
   /* Slightly darker shade for hover effect */
   border-color: #5236e6;
   color: white;
 }

 .para-text {
   max-width: 720px;
   font-size: 18px;
 }

 .wb-section {
   background: var(--section-color);
   padding: 80px 0 96px;
   position: relative;
   overflow: hidden;
 }


 /* ── item ── */
 .wb-item {
   display: flex;
   flex-direction: column;
   align-items: center;
   padding: 0 8px;
   position: relative;
   gap: 12px;

 }


 .wb-item:hover::before {
   width: 64px;
 }


 .wb-item-title {
   font-size: 18px;
   font-weight: 700;
   color: var(--accent);
   margin-bottom: 0px;
   line-height: 1.3;
   font-family: var(--font-head);
 }

 .wb-item-text {
   font-size: 14px;
   font-weight: 300;
   color: var(--text-white);
   text-align: center;
 }

 /* ── divider between columns ── */
 .wb-row-inner {
   position: relative;
 }

 .wb-col {
   position: relative;
 }


 .built-section {
   background-color: #0a0c1b;
   padding: 60px 0;
   font-family: 'Segoe UI', sans-serif;
 }

 .built-inner {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 24px;
   display: flex;
   gap: 48px;
   align-items: center;
 }

 /* LEFT COLUMN */
 .built-left {
   flex: 0 0 48%;
 }

 .built-left h2 {
   font-size: 32px;
   font-weight: 700;
   color: var(--accent);
   margin: 0 0 12px;
   line-height: 1.2;
 }

 .built-left p {
   color: var(--text-white);
   font-size: 16px;
   font-weight: 500;
   line-height: 1.6;
 }

 .built-image {
   width: 100%;
   border-radius: 14px;
   overflow: hidden;
   max-height: 300px;
 }

 .built-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   max-height: 228px;
 }

 /* RIGHT COLUMN */
 .built-right {
   flex: 0 0 48%;
   align-self: flex-start;
   overflow: hidden;
   max-height: calc((112px * 3) + (16px * 2));
   position: relative;
   -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
   mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
 }

 .feature-cards-track {
   display: flex;
   flex-direction: column;
   gap: 16px;
   will-change: transform;
 }

 .built-right.is-playing .feature-cards-track {
   animation: featureMarquee var(--marquee-duration, 32s) linear infinite;
 }

 .built-right.is-playing:hover .feature-cards-track {
   animation-play-state: paused;
 }

 @keyframes featureMarquee {
   from {
     transform: translateY(0);
   }

   to {
     transform: translateY(calc(-1 * var(--marquee-distance, 0px)));
   }
 }

 .feature-card {
   background-color: #121428;
   border-radius: 12px;
   padding: 20px 22px;
   display: flex;
   align-items: flex-start;
   gap: 18px;
   border: 1px solid rgba(102, 71, 253, 0.15);
   transition: border-color 0.2s;
   flex-shrink: 0;
 }

 .feature-card:hover {
   border-color: rgba(102, 71, 253, 0.45);
 }

 .feature-icon {
   flex-shrink: 0;
   width: 52px;
   height: 52px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--accent);
   font-size: 1.8rem;
 }

 .feature-icon svg {
   width: 36px;
   height: 36px;
   fill: var(--accent);
 }

 .feature-text h6 {
   color: #ffffff;
   font-size: 0.95rem;
   font-weight: 700;
   margin: 0 0 6px;
   font-family: var(--font-body);
 }

 .feature-text p {
   color: var(--accent);
   font-size: 0.85rem;
   margin: 0;
   line-height: 1.55;
 }

 .social-link:hover svg path {
   fill: var(--accent);
 }

 .serve-content {
   font-size: 16px !important;
   font-weight: 400;
   opacity: 0;
   max-height: 0;
   overflow: hidden;
   text-align: center;
   color: white !important;
   margin-top: 0 !important;
   transition: opacity 0.45s ease, max-height 0.45s ease, margin-top 0.45s ease;
 }

 /* vertical separator between cols on md+ */
 @media (min-width: 768px) {
   .wb-col:not(:last-child)::after {
     content: '';
     position: absolute;
     right: 0;
     top: 24px;
     bottom: 0;
     width: 1px;
     background: linear-gradient(to bottom, var(--accent-mid), transparent);
   }
 
 }

 @media (max-width: 768px){
  .navbar-btn {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 16px;
}

.btn-purple{
      padding: 0.3rem 2rem;
 }
 }

 /* horizontal divider between the two rows */
 .wb-divider {
   border: none;
   border-top: 1px solid rgba(102, 71, 253, 0.18);
   margin: 52px 0;
 }

 /* ══════════ ANIMATIONS ══════════ */
 @keyframes fadeUp {
   from {
     opacity: 0;
     transform: translateY(28px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 .fade-up {
   animation: fadeUp .7s ease both;
 }

 .fade-up-1 {
   animation-delay: .1s;
 }

 .fade-up-2 {
   animation-delay: .22s;
 }

 .fade-up-3 {
   animation-delay: .34s;
 }

 .fade-up-4 {
   animation-delay: .46s;
 }

 /* ══════════ RESPONSIVE ══════════ */
 @media (max-width: 991.98px) {
   .hero {
     min-height: auto;
     padding: 5rem 0 3rem;
   }

   .hero-img-wrap {
     display: none;
   }

   .hero h1 {
     font-size: 2.2rem;
   }

   .who-img-grid {
     grid-template-rows: 140px 140px;
   }
 }

 @media (max-width: 767.98px) {
   .hero {
     padding: 4rem 0 2.5rem;
   }

   .built-inner {
     flex-direction: column;
   }

   .stat-num {
     font-size: 32px;
   }

   .stat-label {
     font-size: 14px;
   }

   .section-pad {
     padding: 56px 0;
   }

   .stat-divider {
     display: none !important;
   }

   .contact-form-wrap {
     padding: 1.5rem;
   }
 }

 @media (max-width: 575.98px) {
   .hero h1 {
     font-size: 1.8rem;
   }

   .who-img-grid {
     grid-template-columns: 1fr;
     grid-template-rows: 200px 140px 140px;
   }

   .who-img-grid .img-large {
     grid-row: 1;
   }
 }

 /* ************************** */
 /* dtalent CSS Start  */
 /* ************************** */

 .navbar-btn {
   display: flex;
   justify-content: flex-end;
   gap: 12px;
 }

 .global-partners h2 {
   font-size: 18px;
   font-weight: 500;
   text-transform: uppercase;
 }

 /* Partners marquee */
 .partners-marquee-wrapper {
   overflow: hidden;
   width: 100%;
   position: relative;
 }

 .partners-marquee-track {
   display: flex;
   align-items: center;
   gap: 0;
   width: max-content;
   animation: partners-scroll 10s linear infinite;
 }

 /* Pause on hover */
 .partners-marquee-track:hover {
   animation-play-state: paused;
 }

 /* Pause for users who prefer reduced motion */
 @media (prefers-reduced-motion: reduce) {
   .partners-marquee-track {
     animation: none;
     flex-wrap: wrap;
     width: 100%;
     justify-content: center;
   }
 }

 .partner-logo-item {
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 1rem 2.5rem;
   flex-shrink: 0;
 }

 .partner-logo-item img {
   height: 48px;
   width: auto;
   max-width: 140px;
   object-fit: contain;
   filter: grayscale(100%);
   opacity: 0.6;
   transition: filter 0.3s ease, opacity 0.3s ease;
 }

 .partner-logo-item img:hover {
   filter: grayscale(0%);
   opacity: 1;
 }

 @keyframes partners-scroll {
   0% {
     transform: translateX(0);
   }

   100% {
     transform: translateX(-50%);
   }
 }

 /* ── Feature cards ── */
 .talent-features-grid {
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   gap: 20px;
 }

 .talent-feature-card {
   border-radius: 4px;
   padding: 60px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
   gap: 1.5rem;
 }

 .talent-feature-card--purple {
   background-color: var(--accent);
 }

 .talent-feature-card--white {
   background-color: #ffffff;
   border: 1px solid #ede9ff;
 }

 .talent-feature-icon {
   width: 60px;
   height: 60px;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .talent-feature-icon svg {
   width: 52px;
   height: 52px;
 }

 .talent-feature-label {
   font-size: 18px;
   font-weight: 700;
   line-height: 1.45;
   margin: 0;
 }

 .talent-feature-card--purple .talent-feature-label {
   color: #ffffff;
 }

 .talent-feature-card--white .talent-feature-label {
   color: #1a1033;
 }

 /* ── Responsive ── */
 @media (max-width: 1100px) {
   .talent-features-grid {
     grid-template-columns: repeat(3, 1fr);
   }
 }

 @media (max-width: 700px) {
   .talent-features-grid {
     grid-template-columns: repeat(2, 1fr);
     gap: 14px;
   }
 }

 @media (max-width: 420px) {
   .talent-features-grid {
     grid-template-columns: 1fr;
   }

   .talent-feature-card {
     flex-direction: row;
     text-align: left;
     padding: 1.25rem 1.5rem;
     gap: 1rem;
   }

   .talent-feature-icon {
     flex-shrink: 0;
   }
 }

 /* Capabilites section Start  */

 .capable-container {
   border: 2px solid var(--accent);
   padding: 30px;
   border-radius: 4px;
 }

 .capabilites-grid {
   display: grid;
   grid-template-columns: repeat(6, 1fr);
   gap: 24px;
 }

 .capability-box {
   background-color: var(--accent);
   padding: 24px;
   display: flex;
   justify-content: flex-start;
   align-items: center;
   gap: 12px;
   border-radius: 8px;
   color: #fff;
   grid-column: span 2;
 }

 .capability-box:nth-child(4) {
   grid-column: 2 / span 2;
 }

 .capability-box:nth-child(5) {
   grid-column: 4 / span 2;
 }

 /* Tablet: 2 columns */
 @media (max-width: 900px) {
   .capabilites-grid {
     grid-template-columns: repeat(2, 1fr);
     gap: 16px;
   }

   .capability-box,
   .capability-box:nth-child(4),
   .capability-box:nth-child(5) {
     grid-column: span 1;
   }
 }

 /* Mobile: 1 column */
 @media (max-width: 540px) {
   .capabilites-grid {
     grid-template-columns: 1fr;
     gap: 12px;
   }

   .capability-box,
   .capability-box:nth-child(4),
   .capability-box:nth-child(5) {
     grid-column: span 1;
   }
 }

 /* Felxible Engagement CSS Starts  */

 .engagement-section .section-title span {
   color: #6647FD;
 }

 .ideal-label {
   font-size: 20px;
   font-weight: 700;
   color: #6647FD;
   margin-top: 1rem;
 }

 .engagement-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
 }

 .engagement-card {
   position: relative;
   border-radius: 4px;
   overflow: hidden;
   height: 360px;
   background-color: #1a0f50;
   /* fallback if no image */
   background-size: cover;
   background-position: center;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   border: 1px solid var(--accent);
 }

 /* Purple gradient overlay — sits on top of the photo */
 .engagement-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(to bottom, rgb(102 71 253 / 0%) 60%, rgba(102, 71, 253, 1) 100%);
   border-radius: 4px;
 }

 .engagement-content {
   position: relative;
   z-index: 2;
   padding: 1.5rem;
 }

 .engagement-icon {
   margin-bottom: 1rem;
 }

 .engagement-icon svg {
   width: 52px;
   height: 52px;
   display: block;
 }

 .engagement-title {
   font-size: 20px;
   font-weight: 700;
   color: #ffffff;
   margin: 0 0 0.5rem;
 }

 .engagement-desc {
   font-size: 14px;
   color: rgba(255, 255, 255, 0.8);
   margin: 0;
   line-height: 1.6;
   width: 230px;
 }

 /* ── Responsive ── */
 @media (max-width: 1100px) {
   .engagement-grid {
     grid-template-columns: repeat(2, 1fr);
   }
 }

 @media (max-width: 600px) {
   .engagement-grid {
     grid-template-columns: 1fr;
     gap: 14px;
   }

   .engagement-card {
     height: 280px;
   }
 }


 /* How it Works CSS  */

 .how-it-works-section .section-title span {
   color: var(--accent);
 }

 .hiw-wrapper {
   position: relative;
   display: flex;
   align-items: center;
 }

 .hiw-line {
   position: absolute;
   top: 45px;
   left: calc(10% - 10px);
   right: calc(10% - 10px);
   border-top: 2.5px dashed var(--accent);
   z-index: 0;
 }

 .hiw-steps {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   width: 100%;
   position: relative;
   z-index: 1;
 }

 .hiw-step {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 1.25rem;
   flex: 1;
 }

 .hiw-circle {
   width: 90px;
   height: 90px;
   border-radius: 50%;
   border: 2px solid var(--accent);
   background-color: #12102a;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 26px;
   font-weight: 700;
   color: #6647FD;
   flex-shrink: 0;
 }

 .hiw-circle--active {
   background-color: var(--accent);
   color: #ffffff;
 }

 .hiw-label {
   text-align: center;
   font-size: 18px;
   font-weight: 500;
   color: #ffffff;
   line-height: 1.5;
   margin: 0;
 }

 /* ── Tablet & Mobile: vertical layout ── */
 @media (max-width: 860px) {
   .hiw-line {
     display: none;
   }

   .hiw-steps {
     flex-direction: column;
     align-items: center;
     gap: 0;
     width: 100%;
   }

   .hiw-step {
     flex-direction: row;
     align-items: center;
     justify-content: flex-start;
     gap: 1.5rem;
     width: 260px;
     /* fixed width so all steps are same size and centered */
     padding: 1rem 0;
     position: relative;
   }

   /* Connector sits exactly under the circle (circle is 90px wide, line at 45px = center) */
   .hiw-step:not(:last-child)::after {
     content: '';
     position: absolute;
     left: 44px;
     /* half of 90px circle = 45px, minus 1px for border */
     top: calc(50% + 45px);
     height: calc(100% - 45px);
     border-left: 2.5px dashed #6647FD;
   }

   .hiw-label {
     text-align: left;
     flex: 1;
   }
 }

 /* ── Mobile ── */
 @media (max-width: 480px) {
   .hiw-circle {
     width: 68px;
     height: 68px;
     font-size: 20px;
   }

   .hiw-step {
     width: 220px;
   }

   /* Recalculate: half of 68px = 34px */
   .hiw-step:not(:last-child)::after {
     left: 33px;
     top: calc(50% + 34px);
     height: calc(100% - 34px);
   }

   .hiw-label {
     font-size: 14px;
   }
 }

 /* Contact Tabs CSS Start  */
 /* ── Talent Form Wrap ── */
 .talent-form-wrap {
   background: var(--bg-card);
   border: 1px solid var(--accent);
   border-radius: 16px;
   overflow: hidden;
   position: relative;
 }

 /* ── Success Overlay ── */
 .talent-success {
   display: none;
   position: absolute;
   inset: 0;
   background: #07070f;
   border-radius: 16px;
   z-index: 10;
   align-items: center;
   justify-content: center;
 }

 .talent-success.show {
   display: flex;
 }

 .talent-success-close {
   position: absolute;
   top: 1.25rem;
   right: 1.25rem;
   width: 38px;
   height: 38px;
   border-radius: 50%;
   border: 1.5px solid rgba(255, 255, 255, 0.35);
   background: transparent;
   color: #ffffff;
   font-size: 22px;
   line-height: 1;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: border-color 0.2s;
 }

 .talent-success-close:hover {
   border-color: #ffffff;
 }

 .talent-success-body {
   text-align: center;
   padding: 2rem;
 }

 .talent-success-icon {
   width: 100px;
   height: 100px;
   display: block;
   margin: 0 auto 2rem;
 }

 .talent-success-title {
   font-size: 32px;
   font-weight: 700;
   color: #6647FD;
   margin: 0 0 0.75rem;
 }

 .talent-success-msg {
   font-size: 16px;
   color: #ffffff;
   margin: 0;
   opacity: 0.8;
 }

 /* ── Nav Tabs ── */
 .talent-nav-tabs {
   border-bottom: none !important;
   display: flex;
 }

 .talent-nav-link {
   background: var(--bg-card) !important;
   border: none !important;
   border-radius: 0 !important;
   color: #ffffff !important;
   font-size: 16px;
   font-weight: 700;
   padding: 1.1rem;
   letter-spacing: 0.3px;
   transition: background 0.2s;
 }

 .talent-nav-link.active {
   background: var(--accent) !important;
   color: #ffffff !important;
 }

 .talent-nav-link:hover:not(.active) {
   background: rgba(102, 71, 253, 0.15) !important;
 }

 /* ── Tab Content ── */
 .talent-tab-content {
   padding: 2rem 2.5rem;
 }

 /* ── Form Layout ── */
 .talent-form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 1.25rem;
   margin-bottom: 1rem;
 }

 .talent-form-group {
   display: flex;
   flex-direction: column;
   gap: 0.4rem;
 }

 /* ── Label ── */
 .talent-form-label {
   font-size: 13px;
   font-weight: 500;
   color: var(--accent);
   margin-bottom: 0.1rem;
   font-family: var(--font-head);
 }

 /* ── Input ── */
 .talent-form-control {
   background: rgba(255, 255, 255, 0.05) !important;
   border: 1px solid var(--accent) !important;
   color: #ffffff !important;
   font-size: 14px;
   padding: 0.75rem 1rem;
   border-radius: 8px;
   outline: none;
   width: 100%;
   box-sizing: border-box;
   font-family: var(--font-body);
   transition: box-shadow 0.2s, border-color 0.2s;
 }

 .talent-form-control::placeholder {
   color: #9CA3AF !important;
 }

 .talent-form-control:focus {
   box-shadow: 0 0 0 3px rgba(102, 71, 253, 0.25) !important;
   border-color: #8b6fff !important;
 }

 /* ── Select ── */
 .talent-select-wrap {
   position: relative;
 }

 .talent-select-wrap::after {
   content: '';
   position: absolute;
   right: 1rem;
   top: 50%;
   transform: translateY(-50%);
   width: 0;
   height: 0;
   border-left: 5px solid transparent;
   border-right: 5px solid transparent;
   border-top: 6px solid #ffffff;
   pointer-events: none;
 }

 .talent-form-select {
   background: rgba(255, 255, 255, 0.05) !important;
   border: 1px solid var(--accent) !important;
   color: #ffffff !important;
   font-size: 14px;
   padding: 0.75rem 1rem;
   border-radius: 8px;
   outline: none;
   width: 100%;
   box-sizing: border-box;
   appearance: none;
   -webkit-appearance: none;
   cursor: pointer;
   font-family: var(--font-body);
   transition: box-shadow 0.2s;
 }

 .talent-form-select:focus {
   box-shadow: 0 0 0 3px rgba(102, 71, 253, 0.25) !important;
   border-color: #8b6fff !important;
 }

 .talent-form-select option {
   color: #222222;
 }

 /* ── File Upload ── */
 .talent-file-wrap {
   position: relative;
 }

 .talent-file-wrap input[type="file"] {
   position: absolute;
   inset: 0;
   opacity: 0;
   cursor: pointer;
   width: 100%;
   height: 100%;
 }

 .talent-file-display {
   background: rgba(255, 255, 255, 0.05);
   border: 1px solid var(--accent);
   font-size: 14px;
   padding: 0.75rem 1rem;
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   cursor: pointer;
 }

 .talent-file-display span:first-child {
   color: #9CA3AF;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
 }

 .talent-file-display span:first-child.has-file {
   color: #ffffff;
 }

 .talent-file-icon {
   font-size: 14px;
   color: #ffffff;
   flex-shrink: 0;
 }

 /* ── Submit Button ── */
 .talent-btn-submit {
   background: var(--accent);
   border: none;
   color: #ffffff;
   font-size: 16px;
   font-weight: 700;
   padding: 14px 24px;
   border-radius: 8px;
   width: 100%;
   cursor: pointer;
   margin-top: 0.25rem;
   transition: background 0.2s;
   letter-spacing: 0.5px;
   font-family: var(--font-body);
 }

 .talent-btn-submit:hover {
   background: #3d17fa;
   color: #ffffff;
 }

 /* ── Responsive ── */
 @media (max-width: 600px) {
   .talent-form-row {
     grid-template-columns: 1fr;
   }

   .talent-tab-content {
     padding: 1.5rem 1.25rem;
   }

   .talent-nav-link {
     font-size: 14px;
     padding: 0.9rem 0.5rem;
   }

   .talent-success-title {
     font-size: 26px;
   }
 }

 .flex-fill button {
   border-bottom: 1px solid var(--accent) !important;
   font-family: var(--font-head);
 }

 /* Talent Hero animation Starts  */

 .scene {
   position: relative;
   width: 480px;
   height: 340px;
 }

 .bg-circle-outer {
   position: absolute;
   width: 300px;
   height: 300px;
   border-radius: 50%;
   border: 1.5px solid rgba(120, 100, 220, 0.3);
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%) scale(0);
   animation: circleGrow 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
 }

 .bg-circle-inner {
   position: absolute;
   width: 220px;
   height: 220px;
   border-radius: 50%;
   background: var(--accent);
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%) scale(0);
   animation: circleGrow 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s forwards;
 }

 @keyframes circleGrow {
   to {
     transform: translate(-50%, -50%) scale(1);
   }
 }

 .card {
   position: absolute;
   background: #ffffff;
   border-radius: 14px;
   padding: 14px 18px;
   box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
   opacity: 0;
 }

 .card-efficiency {
   top: 30px;
   right: 20px;
   width: 220px;
   animation: slideInRight 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
 }

 .card-team {
   bottom: 30px;
   left: 20px;
   width: 220px;
   animation: slideInLeft 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s forwards;
 }

 @keyframes slideInRight {
   from {
     opacity: 0;
     transform: translateX(40px) rotate(3deg);
   }

   to {
     opacity: 1;
     transform: translateX(0) rotate(0deg);
   }
 }

 @keyframes slideInLeft {
   from {
     opacity: 0;
     transform: translateX(-40px) rotate(-3deg);
   }

   to {
     opacity: 1;
     transform: translateX(0) rotate(0deg);
   }
 }

 .eff-header {
   display: flex;
   align-items: center;
   gap: 8px;
   margin-bottom: 10px;
 }

 .check-icon {
   width: 20px;
   height: 20px;
   border-radius: 50%;
   background: #7B6EE8;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   opacity: 0;
   animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.35s forwards;
 }

 .check-icon svg {
   width: 11px;
   height: 11px;
 }

 .eff-label {
   font-size: 14px;
   font-weight: 600;
   color: #1a1a2e;
   font-family: sans-serif;
 }

 .progress-track {
   height: 5px;
   background: #ece9fb;
   border-radius: 99px;
   overflow: hidden;
 }

 .progress-fill {
   height: 100%;
   width: 0%;
   background: linear-gradient(90deg, #7B6EE8, #a89cf5);
   border-radius: 99px;
   animation: progressGrow 1.1s cubic-bezier(0.4, 0, 0.2, 1) 1.5s forwards;
 }

 @keyframes progressGrow {
   to {
     width: 72%;
   }
 }

 .team-header {
   display: flex;
   align-items: center;
   gap: 8px;
   margin-bottom: 12px;
 }

 .team-label {
   font-size: 14px;
   font-weight: 600;
   color: #1a1a2e;
   font-family: sans-serif;
 }

 .avatars {
   display: flex;
   align-items: center;
 }

 .avatar {
   width: 32px;
   height: 32px;
   border-radius: 50%;
   border: 2px solid #fff;
   margin-left: -8px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 12px;
   font-weight: 600;
   opacity: 0;
   transform: scale(0.5);
 }

 .avatar:first-child {
   margin-left: 0;
 }

 .avatar:nth-child(1) {
   animation: avatarPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.15s forwards;
   background: #f9c5d1;
   color: #a3002e;
 }

 .avatar:nth-child(2) {
   animation: avatarPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.25s forwards;
   background: #ffd59e;
   color: #7a4400;
 }

 .avatar:nth-child(3) {
   animation: avatarPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.35s forwards;
   background: #2c2c2a;
   color: #fff;
 }

 .avatar:nth-child(4) {
   animation: avatarPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.45s forwards;
   background: rgba(55, 65, 81, 1);
   color: #fff;
   font-size: 11px;
 }

 @keyframes avatarPop {
   to {
     opacity: 1;
     transform: scale(1);
   }
 }

 @keyframes popIn {
   from {
     opacity: 0;
     transform: scale(0);
   }

   to {
     opacity: 1;
     transform: scale(1);
   }
 }

 /* Talent Hero animation Ends  */

.navbar-collapse.collapsing {
  transition: none !important;
}