   /* ============================================================
   UTILITY
   ============================================================ */


   .tag {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     font-family: var(--font-head);
     font-size: 11px;
     font-weight: 600;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: var(--color-teal);
     background: rgba(26, 171, 186, 0.08);
     border: 1px solid rgba(26, 171, 186, 0.2);
     padding: 6px 14px;
     border-radius: 100px;
   }

   .tag::before {
     content: '';
     width: 6px;
     height: 6px;
     background: var(--color-teal);
     border-radius: 50%;
     animation: pulse 2s ease infinite;
   }

   @keyframes pulse {

     0%,
     100% {
       opacity: 1;
       transform: scale(1);
     }

     50% {
       opacity: 0.5;
       transform: scale(1.4);
     }
   }

   .section-title {
     font-family: var(--font-head);
     font-size: clamp(28px, 4vw, 48px);
     font-weight: 700;
     color: var(--color-navy);
     line-height: 1.2;
   }

   .section-title span {
     background: linear-gradient(135deg, var(--color-teal), var(--color-indigo));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
   }

   .section-sub {
     font-size: clamp(15px, 2vw, 17px);
     color: var(--color-text-mid);
     max-width: 600px;
     line-height: 1.75;
   }

   /* ============================================================
   HERO / ABOUT HEADER
   ============================================================ */
   .hero {
     position: relative;
     background: var(--color-navy);
     overflow: hidden;
     padding: clamp(80px, 12vh, 130px) 0 clamp(80px, 12vh, 120px);
   }

   .hero-bg {
     position: absolute;
     inset: 0;
     pointer-events: none;
   }

   .hero-bg-grid {
     position: absolute;
     inset: 0;
     background-image:
       linear-gradient(rgba(26, 171, 186, .06) 1px, transparent 1px),
       linear-gradient(90deg, rgba(26, 171, 186, .06) 1px, transparent 1px);
     background-size: 60px 60px;
   }

   .hero-bg-glow {
     position: absolute;
     border-radius: 50%;
     filter: blur(80px);
   }

   .glow-1 {
     width: 600px;
     height: 600px;
     top: -200px;
     right: -100px;
     background: radial-gradient(circle, rgba(91, 94, 232, 0.25) 0%, transparent 70%);
   }

   .glow-2 {
     width: 400px;
     height: 400px;
     bottom: -100px;
     left: -80px;
     background: radial-gradient(circle, rgba(26, 171, 186, 0.2) 0%, transparent 70%);
   }

   .hero-inner {
     position: relative;
     z-index: 2;
   }

   .hero .container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
     max-width: 90%;
     margin: 0 auto;
   }

   .hero-left .tag {
     margin-bottom: 24px;
   }

   .hero-headline {
     font-family: var(--font-head);
     font-size: clamp(32px, 5vw, 60px);
     font-weight: 800;
     color: var(--color-white);
     line-height: 1.1;
     margin-bottom: 22px;
   }

   .hero-headline .accent {
     background: linear-gradient(90deg, var(--color-teal-light), var(--color-indigo));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
   }

   .hero-desc {
     font-size: clamp(15px, 2vw, 17px);
     color: rgba(255, 255, 255, 0.72);
     max-width: 520px;
     margin-bottom: 36px;
     line-height: 1.75;
   }

   .hero-stats {
     display: grid;
     grid-template-columns: repeat(12, 1fr);
     gap: 20px;
   }

   .stat {
     display: flex;
     flex-direction: column;
     gap: 2px;
     grid-column: span 3;
   }

   .stat-val {
     font-family: var(--font-head);
     font-size: clamp(26px, 3vw, 36px);
     font-weight: 800;
     color: var(--color-white);
     line-height: 1;
   }

   .stat-val .unit {
     font-size: 0.6em;
     color: var(--color-teal-light);
   }

   .stat-label {
     font-size: 14px;
     line-height: 17px;
     font-weight: 500;
     color: rgba(255, 255, 255, 0.5);
     letter-spacing: 0.05em;
     text-transform: uppercase;
   }

   /* Hero visual card */
   .hero-visual {
     position: relative;
   }

   .hero-card {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: var(--radius-xl);
     padding: 36px;
     backdrop-filter: blur(12px);
     position: relative;
     overflow: hidden;
   }

   .hero-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 2px;
     background: linear-gradient(90deg, var(--color-teal), var(--color-indigo));
   }

   .hero-card-logo {
     display: flex;
     align-items: center;
     gap: 14px;
     margin-bottom: 28px;
   }

   .logo-mark {
     width: 128px;
     height: 52px;
     background: linear-gradient(135deg, var(--color-teal), var(--color-indigo));
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
   }

   .logo-mark svg {
     width: 28px;
     height: 28px;
   }

   .logo-text {
     font-family: var(--font-head);
     font-size: 18px;
     font-weight: 700;
     color: var(--color-white);
     line-height: 1.2;
   }

   .logo-text small {
     display: block;
     font-size: 11px;
     font-weight: 400;
     color: rgba(255, 255, 255, 0.45);
     letter-spacing: 0.08em;
     text-transform: uppercase;
   }

   .hero-card-services {
     display: flex;
     flex-direction: column;
     gap: 12px;
   }

   .service-pill {
     display: flex;
     align-items: center;
     gap: 12px;
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 12px;
     padding: 14px 16px;
     transition: var(--tr-base);
   }

   .service-pill:hover {
     background: rgba(26, 171, 186, 0.12);
     border-color: rgba(26, 171, 186, 0.25);
     transform: translateX(4px);
   }

   .pill-icon {
     width: 36px;
     height: 36px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
   }

   .pill-icon.teal {
     background: rgba(26, 171, 186, 0.2);
     color: var(--color-teal-light);
   }

   .pill-icon.indigo {
     background: rgba(91, 94, 232, 0.2);
     color: #9b9df5;
   }

   .pill-icon.navy {
     background: rgba(255, 255, 255, 0.08);
     color: rgba(255, 255, 255, 0.6);
   }

   .pill-info {
     flex: 1;
   }

   .pill-name {
     font-family: var(--font-head);
     font-size: 14px;
     font-weight: 600;
     color: var(--color-white);
   }

   .pill-desc {
     font-size: 12px;
     color: rgba(255, 255, 255, 0.45);
   }

   .pill-arrow {
     color: rgba(255, 255, 255, 0.25);
     font-size: 14px;
   }

   /* Floating badge */
   .float-badge {
     position: absolute;
     bottom: 90px;
     right: 28px;
     background: linear-gradient(135deg, var(--color-teal), var(--color-teal-dark));
     border-radius: 12px;
     padding: 12px 18px;
     box-shadow: var(--shadow-lg);
     display: flex;
     align-items: center;
     gap: 10px;
     z-index: 3;
   }

   .float-badge-icon {
     font-size: 20px;
   }

   .float-badge-text {
     font-family: var(--font-head);
     font-size: 13px;
     font-weight: 600;
     color: var(--color-white);
     line-height: 1.3;
   }

   .float-badge-text small {
     display: block;
     font-size: 11px;
     font-weight: 400;
     opacity: 0.75;
   }

   /* ============================================================
   SECTION 1 — MISSION & VISION
   ============================================================ */
   .mv-section {
     background: linear-gradient(135deg, #f4fafc 0%, #e8f4f8 50%, #eaf0fb 100%);
     padding: 80px 60px;
     font-family: var(--font-body);
     position: relative;
     overflow: hidden;
   }


   .mv-header {
     text-align: center;
     margin-bottom: 70px;
   }

   .mv-header .tag {
     margin-bottom: 20px;
   }

   .mv-header .section-title {
     margin-bottom: 16px;
   }

   /* Tabs */
   .mv-tabs {
     display: flex;
     justify-content: center;
     gap: 8px;
     margin-bottom: 56px;
   }

   .mv-tab {
     font-family: var(--font-head);
     font-size: 14px;
     font-weight: 600;
     padding: 12px 28px;
     border-radius: 100px;
     border: 2px solid var(--color-border);
     background: var(--color-white);
     color: var(--color-text-muted);
     cursor: pointer;
     transition: var(--tr-base);
     letter-spacing: 0.02em;
   }

   .mv-tab:hover {
     border-color: var(--color-teal);
     color: var(--color-teal);
   }

   .mv-tab.active {
     background: linear-gradient(135deg, var(--color-teal), var(--color-teal-dark));
     border-color: transparent;
     color: var(--color-white);
     box-shadow: 0 6px 20px rgba(26, 171, 186, 0.35);
   }

   /* Panel */
   .mv-panel {
     display: none;
     animation: panelIn 0.45s ease forwards;
   }

   .mv-panel.active {
     display: grid;
   }

   @keyframes panelIn {
     from {
       opacity: 0;
       transform: translateY(20px);
     }

     to {
       opacity: 1;
       transform: translateY(0);
     }
   }

   .mv-panel {
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
   }

   .mv-panel.reverse {
     direction: rtl;
   }

   .mv-panel.reverse>* {
     direction: ltr;
   }

   .mv-content .tag {
     margin-bottom: 20px;
   }

   .mv-content .section-title {
     margin-bottom: 20px;
   }

   .mv-body {
     font-size: 16px;
     color: var(--color-text-mid);
     line-height: 1.8;
     margin-bottom: 32px;
   }

   .mv-points {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 14px;
   }

   .mv-points li {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     font-size: 15px;
     color: var(--color-text-mid);
   }

   .mv-points li::before {
     content: '';
     width: 20px;
     height: 20px;
     min-width: 20px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--color-teal), var(--color-indigo));
     display: flex;
     align-items: center;
     justify-content: center;
     margin-top: 2px;
     background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
     background-repeat: no-repeat;
     background-position: center;
     background-color: var(--color-teal);
   }

   .mv-visual {
     position: relative;
   }

   .mv-illus {
     position: relative;
     border-radius: var(--radius-xl);
     overflow: hidden;
     aspect-ratio: 4/3;
     background: linear-gradient(135deg, var(--color-navy) 0%, #162d5a 50%, #1a3a70 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: var(--shadow-lg);
   }

   .mv-illus-inner {
     position: relative;
     z-index: 2;
     text-align: center;
     padding: 40px;
   }

   .mv-illus-icon {
     font-size: 80px;
     margin-bottom: 20px;
     display: block;
     animation: floatIcon 3s ease-in-out infinite;
   }

   @keyframes floatIcon {

     0%,
     100% {
       transform: translateY(0);
     }

     50% {
       transform: translateY(-12px);
     }
   }

   .mv-illus-title {
     font-family: var(--font-head);
     font-size: 22px;
     font-weight: 700;
     color: var(--color-white);
     margin-bottom: 10px;
   }

   .mv-illus-body {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.55);
     max-width: 260px;
     margin: 0 auto;
     line-height: 1.65;
   }

   /* Decorative rings */
   .mv-ring {
     position: absolute;
     border-radius: 50%;
     border: 1px solid rgba(26, 171, 186, 0.18);
     pointer-events: none;
   }

   .ring-1 {
     width: 160px;
     height: 160px;
     top: -30px;
     right: -30px;
   }

   .ring-2 {
     width: 280px;
     height: 280px;
     top: -80px;
     right: -80px;
   }

   .ring-3 {
     width: 80px;
     height: 80px;
     bottom: 30px;
     left: 20px;
     border-color: rgba(91, 94, 232, 0.2);
   }

   /* Corner stat */
   .mv-corner-stat {
     position: absolute;
     bottom: 20px;
     right: 20px;
     background: rgba(255, 255, 255, 0.08);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: var(--radius-md);
     padding: 14px 18px;
     text-align: center;
     z-index: 5;
   }

   .mv-corner-stat .val {
     font-family: var(--font-head);
     font-size: 24px;
     font-weight: 800;
     color: var(--color-white);
     line-height: 1;
   }

   .mv-corner-stat .lbl {
     font-size: 11px;
     color: rgba(255, 255, 255, 0.5);
     text-transform: uppercase;
     letter-spacing: 0.08em;
   }

   /* ============================================================
   SECTION 2 — HOW WE WORK
   ============================================================ */
   .howwe-section {
     background: linear-gradient(135deg, #f4fafc 0%, #e8f4f8 50%, #eaf0fb 100%);
     padding: 80px 60px;
     font-family: var(--font-body);
     position: relative;
     overflow: hidden;
   }

   .howwe-header {
     text-align: center;
     margin-bottom: 70px;
   }

   .howwe-header .tag {
     margin-bottom: 20px;
   }

   .howwe-header .section-title {
     margin-bottom: 16px;
   }

   .howwe-header .section-sub {
     margin: 0 auto;
   }

   /* Steps */
   .howwe-steps {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 0;
     position: relative;
     margin-bottom: 80px;
   }

   /* connecting line */
   .howwe-steps::before {
     content: '';
     position: absolute;
     top: 52px;
     left: 12.5%;
     width: 75%;
     height: 2px;
     background: linear-gradient(90deg, var(--color-teal), var(--color-indigo));
     z-index: 0;
   }

   .step-card {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     padding: 0 20px;
     position: relative;
     z-index: 1;
   }

   .step-num {
     width: 56px;
     height: 56px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: var(--font-head);
     font-size: 20px;
     font-weight: 700;
     color: var(--color-white);
     background: var(--color-navy);
     border: 3px solid var(--color-white);
     box-shadow: 0 0 0 3px var(--color-teal);
     margin-bottom: 24px;
     transition: var(--tr-base);
     position: relative;
   }

   .step-card:hover .step-num {
     background: linear-gradient(135deg, var(--color-teal), var(--color-indigo));
     transform: scale(1.1);
   }

   .step-icon {
     width: 60px;
     height: 60px;
     border-radius: var(--radius-md);
     background: var(--color-off-white);
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 16px;
     font-size: 26px;
     box-shadow: var(--shadow-sm);
     transition: var(--tr-base);
   }

   .step-card:hover .step-icon {
     background: rgba(26, 171, 186, 0.1);
     transform: translateY(-4px);
     box-shadow: var(--shadow-md);
   }

   .step-title {
     font-family: var(--font-head);
     font-size: 16px;
     font-weight: 700;
     color: var(--color-navy);
     margin-bottom: 10px;
   }

   .step-body {
     font-size: 14px;
     color: var(--color-text-muted);
     line-height: 1.65;
   }

   /* Domain cards */
   .howwe-domains {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 32px;
   }

   .domain-card {
     background: var(--color-off-white);
     border: 1px solid var(--color-border);
     border-radius: var(--radius-lg);
     padding: 36px;
     position: relative;
     overflow: hidden;
     transition: var(--tr-base);
   }

   .domain-card:hover {
     transform: translateY(-6px);
     box-shadow: var(--shadow-lg);
     border-color: transparent;
   }

   .domain-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 3px;
     opacity: 0;
     transition: var(--tr-base);
   }

   .domain-card.talent::before {
     background: linear-gradient(90deg, var(--color-teal), var(--color-teal-light));
   }

   .domain-card.it::before {
     background: linear-gradient(90deg, var(--color-indigo), var(--color-teal));
   }

   .domain-card:hover::before {
     opacity: 1;
   }

   .domain-card-head {
     display: flex;
     align-items: center;
     gap: 16px;
     margin-bottom: 20px;
   }

   .domain-icon {
     width: 56px;
     height: 56px;
     border-radius: var(--radius-md);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 26px;
     flex-shrink: 0;
   }

   .domain-card.talent .domain-icon {
     background: rgba(26, 171, 186, 0.12);
   }

   .domain-card.it .domain-icon {
     background: rgba(91, 94, 232, 0.12);
   }

   .domain-title {
     font-family: var(--font-head);
     font-size: 20px;
     font-weight: 700;
     color: var(--color-navy);
     margin-bottom: 4px;
   }

   .domain-sub {
     font-size: 13px;
     color: var(--color-text-muted);
   }

   .domain-body {
     font-size: 15px;
     color: var(--color-text-mid);
     line-height: 1.75;
     margin-bottom: 24px;
   }

   .domain-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
   }

   .dtag {
     font-size: 12px;
     font-weight: 500;
     padding: 5px 12px;
     border-radius: 100px;
   }

   .domain-card.talent .dtag {
     background: rgba(26, 171, 186, 0.1);
     color: var(--color-teal-dark);
     border: 1px solid rgba(26, 171, 186, 0.2);
   }

   .domain-card.it .dtag {
     background: rgba(91, 94, 232, 0.1);
     color: var(--color-indigo);
     border: 1px solid rgba(91, 94, 232, 0.2);
   }

   /* ============================================================
   SECTION 3 — WORKS / SHOWCASE
   ============================================================ */
   .works-section {
     background: linear-gradient(135deg, #f4fafc 0%, #e8f4f8 50%, #eaf0fb 100%);
     padding: 80px 60px;
     font-family: var(--font-body);
     position: relative;
     overflow: hidden;
   }



   .works-header {
     display: flex;
     align-items: flex-end;
     justify-content: space-between;
     gap: 40px;
     margin-bottom: 56px;
     flex-wrap: wrap;
   }

   .works-header-left .tag {
     margin-bottom: 20px;
   }

   .works-header-left .section-title {
     margin-bottom: 12px;
   }

   .works-filter {
     display: flex;
     gap: 8px;
     flex-wrap: wrap;
   }

   .wf-btn {
     font-family: var(--font-head);
     font-size: 13px;
     font-weight: 600;
     padding: 10px 20px;
     border-radius: 100px;
     border: 1.5px solid var(--color-border);
     background: var(--color-white);
     color: var(--color-text-muted);
     cursor: pointer;
     transition: var(--tr-base);
   }

   .wf-btn:hover,
   .wf-btn.active {
     border-color: var(--color-teal);
     color: var(--color-teal);
     background: rgba(26, 171, 186, 0.05);
   }

   .wf-btn.active {
     background: var(--color-teal);
     color: var(--color-white);
     border-color: var(--color-teal);
   }

   /* Works grid */
   .works-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 28px;
   }

   .work-card {
     background: var(--color-white);
     border-radius: var(--radius-lg);
     overflow: hidden;
     box-shadow: var(--shadow-sm);
     border: 1px solid var(--color-border);
     transition: var(--tr-base);
     cursor: pointer;
   }

   .work-card:hover {
     transform: translateY(-8px);
     box-shadow: var(--shadow-lg);
     border-color: transparent;
   }

   .work-thumb {
     aspect-ratio: 16/9;
     position: relative;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
   }

   /* Varied gradient backgrounds per card */
   .work-card:nth-child(1) .work-thumb {
     background: linear-gradient(135deg, #0e2d66 0%, #1aabba 100%);
   }

   .work-card:nth-child(2) .work-thumb {
     background: linear-gradient(135deg, #5b5ee8 0%, #1aabba 100%);
   }

   .work-card:nth-child(3) .work-thumb {
     background: linear-gradient(135deg, #0e8a97 0%, #0e2d66 100%);
   }

   .work-card:nth-child(4) .work-thumb {
     background: linear-gradient(135deg, #1a1d2e 0%, #5b5ee8 100%);
   }

   .work-card:nth-child(5) .work-thumb {
     background: linear-gradient(135deg, #1aabba 0%, #2dcad9 100%);
   }

   .work-card:nth-child(6) .work-thumb {
     background: linear-gradient(135deg, #0e2d66 0%, #5b5ee8 100%);
   }

   .work-thumb-icon {
     font-size: 56px;
     z-index: 2;
     filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
     transition: var(--tr-slow);
   }

   .work-card:hover .work-thumb-icon {
     transform: scale(1.15);
   }

   .work-thumb-overlay {
     position: absolute;
     inset: 0;
     background: rgba(14, 45, 102, 0.5);
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: var(--tr-base);
   }

   .work-card:hover .work-thumb-overlay {
     opacity: 1;
   }

   .work-thumb-overlay-text {
     font-family: var(--font-head);
     font-size: 14px;
     font-weight: 600;
     color: var(--color-white);
     border: 1.5px solid rgba(255, 255, 255, 0.5);
     padding: 8px 20px;
     border-radius: 100px;
     backdrop-filter: blur(4px);
   }

   .work-badge {
     position: absolute;
     top: 12px;
     right: 12px;
     font-size: 11px;
     font-weight: 600;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     padding: 4px 10px;
     border-radius: 100px;
     z-index: 3;
   }

   .badge-talent {
     background: rgba(26, 171, 186, 0.9);
     color: #fff;
   }

   .badge-it {
     background: rgba(91, 94, 232, 0.9);
     color: #fff;
   }

   .work-body {
     padding: 22px 24px 24px;
   }

   .work-title {
     font-family: var(--font-head);
     font-size: 17px;
     font-weight: 700;
     color: var(--color-navy);
     margin-bottom: 8px;
     line-height: 1.3;
   }

   .work-desc {
     font-size: 14px;
     color: var(--color-text-muted);
     line-height: 1.65;
     margin-bottom: 18px;
   }

   .work-meta {
     display: flex;
     align-items: center;
     justify-content: space-between;
   }

   .work-tags {
     display: flex;
     gap: 6px;
     flex-wrap: wrap;
   }

   .wtag {
     font-size: 11px;
     font-weight: 500;
     padding: 3px 10px;
     border-radius: 100px;
     background: var(--color-off-white);
     color: var(--color-text-muted);
     border: 1px solid var(--color-border);
   }

   .work-link {
     width: 34px;
     height: 34px;
     border-radius: 50%;
     background: var(--color-off-white);
     border: 1px solid var(--color-border);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--color-navy);
     font-size: 14px;
     transition: var(--tr-base);
     flex-shrink: 0;
   }

   .work-link:hover {
     background: var(--color-teal);
     border-color: var(--color-teal);
     color: var(--color-white);
   }

   /* Works CTA */
   .works-cta {
     text-align: center;
     margin-top: 56px;
   }





   .works-cta-btns {
     display: flex;
     justify-content: center;
     gap: 16px;
     flex-wrap: wrap;
   }

   /* ============================================================
   FOOTER STRIP
   ============================================================ */
   .footer-strip {
     background: var(--color-navy);
     padding: 32px 0;
     text-align: center;
   }

   .footer-strip p {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.45);
   }

   .footer-strip strong {
     color: rgba(255, 255, 255, 0.75);
     font-weight: 600;
   }

   /* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
   .reveal {
     opacity: 0;
     transform: translateY(30px);
     transition: opacity 0.65s ease, transform 0.65s ease;
   }

   .reveal.visible {
     opacity: 1;
     transform: translateY(0);
   }

   .reveal-delay-1 {
     transition-delay: 0.1s;
   }

   .reveal-delay-2 {
     transition-delay: 0.2s;
   }

   .reveal-delay-3 {
     transition-delay: 0.3s;
   }

   .reveal-delay-4 {
     transition-delay: 0.4s;
   }

   /* REVEAL ANIMATIONS */


   /* SERVICE PAGE  */

   .services-section {
     background: linear-gradient(135deg, #f4fafc 0%, #e8f4f8 50%, #eaf0fb 100%);
     padding: 80px 60px;
     font-family: var(--font-body);
     position: relative;
     overflow: hidden;
   }


   .section-header {
     text-align: center;
     margin-bottom: 80px;
     animation: fadeInUp 0.8s var(--tr-slow);
   }

   .section-header h2 {
     font-family: var(--font-head);
     font-size: 44px;
     font-weight: 700;
     margin-bottom: 15px;
     color: var(--color-text-dark);
   }

   .section-header p {
     font-size: 16px;
     color: var(--color-text-mid);
     max-width: 600px;
     margin: 0 auto;
   }

   .services-grid {
     display: grid;
     grid-gap: 20px;
   }

   .service-card-3d {
     display: grid;
     grid-template-columns: repeat(12, 2fr);
     border-radius: 10px;
     background: rgba(255, 255, 255, 0.65);
     backdrop-filter: blur(18px);
     border: 1px solid rgba(255, 255, 255, 0.3);
     box-shadow: var(--shadow-md);
     padding: 5px;
     gap: 10px;


   }

   .card-right::before {
     content: "";
     position: absolute;
     inset: -1px;
     border-radius: inherit;

     background: linear-gradient(120deg,
         var(--color-indigo),
         var(--color-teal),
         var(--color-indigo));

     background-size: 200% 200%;
     animation: borderFlow 4s linear infinite;

     opacity: 0;
     transition: opacity var(--tr-base);
     z-index: 0;
   }

   .card-right:hover::before {
     opacity: 1;
   }

   @keyframes borderFlow {
     0% {
       background-position: 0% 50%;
     }

     100% {
       background-position: 200% 50%;
     }
   }

   /* Lift + smooth scale */
   .card-right:hover {
     transform: translateY(1px) scale(1);
     box-shadow: var(--shadow-lg);
   }

   /* Glow */


   /* LEFT SIDE SVG */
   .card-left {
     grid-column: span 4;
     background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-indigo) 55%, var(--color-teal-dark) 100%);
     border-radius: 10px;
     padding: 10px;
   }

   .card-left svg {
     width: 100%;
     height: 100%;
     /* max-width: 500px; */
     /* min-width: 500px; */
     display: block;
     margin: auto;
     filter: drop-shadow(0 20px 40px rgba(91, 94, 232, 0.25));
     animation: floatSvg 6s ease-in-out infinite;
   }

   /* Floating animation */
   @keyframes floatSvg {

     0%,
     100% {
       transform: translateY(0px);
     }

     50% {
       transform: translateY(-10px);
     }
   }

   /* RIGHT SIDE */
   .card-right {
     position: relative;
     transition: all var(--tr-base);
     grid-column: span 8;
     padding: 20px;
     border-radius: 10px;
     background: radial-gradient(circle at 25% 30%, rgba(26, 171, 186, 0.18), transparent 55%), radial-gradient(circle at 75% 80%, rgba(91, 94, 232, 0.18), transparent 60%);
   }

   .service-card-heading {
     font-family: var(--font-head);
     font-size: 22px;
     font-weight: 700;
     color: var(--color-text-dark);
     margin-bottom: 12px;
   }

   .service-card-para {
     color: var(--color-text-mid);
     font-size: 14px;
     line-height: 1.7;
   }

   .service-card-subheading {
     font-family: var(--font-head);
     font-size: 18px;
     font-weight: 700;
     line-height: 1;
     padding: 10px 0px 0px 0px;
   }

   .service-features {
     list-style: none;
     margin-bottom: 10px;
     position: relative;
     z-index: 2;
     padding-top: 5px;
   }

   .service-features li {
     color: var(--color-text-mid);
     font-size: 13px;
     padding: 8px 0;
     padding-left: 24px;
     position: relative;
   }

   .service-features li::before {
     content: '✓';
     position: absolute;
     left: 0;
     color: var(--color-teal);
     font-weight: bold;
     font-size: 16px;
   }

   .card-right:hover .service-card-heading {
     color: var(--color-white);
     transform: translateY(-2px);
   }

   .card-right:hover .service-card-para {
     color: var(--color-white);
     transform: translateY(-2px);
   }

   .card-right:hover .service-card-subheading {
     color: var(--color-white);
     transform: translateY(-2px);
   }

   .card-right:hover .service-features li {
     color: var(--color-white);
     transform: translateX(4px);
   }

   .card-right:hover .service-features li::before {
     color: var(--color-teal-light);
   }

   /* ============================================================
       FEATURES SECTION
       ============================================================ */
   .features-modern {
     background: linear-gradient(135deg, #f4fafc 0%, #e8f4f8 50%, #eaf0fb 100%);
     padding: 80px 60px;
     font-family: var(--font-body);
     position: relative;
     overflow: hidden;
   }

   /* Layout */
   .features-wrapper {
     display: grid;
     grid-template-columns: 1.1fr 1fr;
     gap: 60px;
     align-items: center;
   }

   /* LEFT */
   .features-left h2 {
     font-family: var(--font-head);
     font-size: 42px;
     color: var(--color-text-dark);
     margin-bottom: 20px;
   }

   .features-left p {
     color: var(--color-text-muted);
     font-size: 16px;
     margin-bottom: 25px;
     line-height: 1.7;
   }

   .features-points {
     list-style: none;
     margin-bottom: 30px;
   }

   .features-points li {
     margin-bottom: 12px;
     padding-left: 28px;
     position: relative;
     color: var(--color-text-mid);
   }

   .features-points li::before {
     content: "✔";
     position: absolute;
     left: 0;
     color: var(--color-indigo);
     font-size: 14px;
   }

   /* CTA */
   .features-btn {
     display: inline-block;
     padding: 12px 24px;
     background: linear-gradient(135deg, var(--color-indigo), var(--color-teal));
     color: white;
     border-radius: 8px;
     font-weight: 600;
     text-decoration: none;
     transition: var(--tr-base);
   }

   .features-btn:hover {
     transform: translateY(-3px);
     box-shadow: var(--shadow-md);
   }

   /* RIGHT CARDS */
   .features-cards {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
   }

   /* Card Style */
   .feature-card {
     padding: 25px;
     border-radius: 16px;
     background: rgba(255, 255, 255, 0.7);
     backdrop-filter: blur(12px);
     border: 1px solid var(--color-border);
     box-shadow: var(--shadow-sm);
     transition: var(--tr-base);
   }

   .feature-card:hover {
     transform: translateY(-8px) scale(1.02);
     box-shadow: var(--shadow-lg);
   }

   /* Card Text */
   .feature-card h4 {
     font-size: 18px;
     margin-bottom: 8px;
     color: var(--color-text-dark);
   }

   .feature-card p {
     font-size: 14px;
     color: var(--color-text-muted);
   }

   /* Floating Animation */
   .feature-card:nth-child(1) {
     transform: translateY(20px);
   }

   .feature-card:nth-child(2) {
     transform: translateY(-10px);
   }

   .feature-card:nth-child(3) {
     transform: translateY(10px);
   }

   .feature-card:nth-child(4) {
     transform: translateY(-20px);
   }

   /* BACKGROUND BLOBS */
   .bg-blob {
     position: absolute;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, var(--color-teal-light), transparent);
     filter: blur(80px);
     opacity: 0.4;
   }

   .blob-1 {
     top: -50px;
     left: -50px;
   }

   .blob-2 {
     bottom: -80px;
     right: -50px;
   }

   /* /SERVICE PAGE */


   /* ========== HERO SECTION ========== */
   .career-hero {
     position: relative;
     background: var(--color-navy);
     overflow: hidden;
     padding: clamp(80px, 12vh, 130px) 0 clamp(80px, 12vh, 120px);
   }

   @keyframes float {

     0%,
     100% {
       transform: translateY(0px);
     }

     50% {
       transform: translateY(20px);
     }
   }



   .hero-buttons {
     display: flex;
     gap: 15px;
     animation: slideInUp 0.8s ease-out 0.2s backwards;
   }

   .hero-visual {
     position: relative;
     height: 500px;
     animation: slideInRight 0.8s ease-out;
   }

   .floating-card {
     background: rgba(255, 255, 255, 0.8);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(26, 171, 186, 0.2);
     border-radius: 16px;
     padding: 30px;
     position: absolute;
     animation: float 6s ease-in-out infinite;
     box-shadow: var(--shadow-md);
   }

   .card-1 {
     width: 280px;
     top: 20px;
     left: 0;
     animation-delay: 0s;
   }

   .card-2 {
     width: 280px;
     bottom: 60px;
     right: 0;
     animation-delay: 2s;
   }

   .floating-card-icon {
     font-size: 3rem;
     margin-bottom: 15px;
   }

   .floating-card h3 {
     font-size: 1.2rem;
     margin-bottom: 8px;
     color: var(--color-teal);
   }

   .floating-card p {
     font-size: 0.95rem;
     color: var(--color-text-mid);
   }

   /* ========== ROLES SECTION ========== */
   .roles-section {
     background: linear-gradient(135deg, #f4fafc 0%, #e8f4f8 50%, #eaf0fb 100%);
     padding: 80px 60px;
     font-family: var(--font-body);
     position: relative;
     overflow: hidden;
   }

   .section-header {
     text-align: center;
     margin-bottom: 80px;
     animation: fadeInUp 0.8s ease-out;
   }

   .section-tag {
     display: inline-block;
     padding: 8px 16px;
     background: rgba(26, 171, 186, 0.1);
     border: 1px solid var(--color-teal);
     border-radius: 20px;
     color: var(--color-teal);
     font-size: 0.9rem;
     font-weight: 600;
     margin-bottom: 20px;
   }

   .section-header h2 {
     font-size: 2.8rem;
     font-weight: 800;
     margin-bottom: 15px;
     color: var(--color-text-dark);
   }

   .section-header p {
     font-size: 1.1rem;
     color: var(--color-text-mid);
     max-width: 600px;
     margin: 0 auto;
   }

   .roles-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     margin-bottom: 60px;
   }

   .role-card {
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(244, 250, 252, 0.8));
     border: 1px solid var(--color-border);
     border-radius: 16px;
     padding: 40px;
     cursor: pointer;
     transition: all var(--tr-base);
     position: relative;
     overflow: hidden;
     animation: slideInUp 0.6s ease-out;
   }

   .role-card:hover {
     transform: translateY(-8px);
     border-color: var(--color-indigo);
     background: linear-gradient(135deg, rgba(91, 94, 232, 0.08), rgba(91, 94, 232, 0.05));
     box-shadow: var(--shadow-lg);
   }

   .role-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(26, 171, 186, 0.2), transparent);
     transition: left 0.5s ease;
     z-index: -1;
   }

   .role-card:hover::before {
     left: 100%;
   }

   .role-icon {
     font-size: 2.5rem;
     margin-bottom: 15px;
   }

   .role-title {
     font-size: 1.4rem;
     font-weight: 700;
     margin-bottom: 10px;
     color: var(--color-text-dark);
   }

   .role-dept {
     font-size: 0.9rem;
     color: var(--color-teal);
     margin-bottom: 15px;
     font-weight: 600;
   }

   .role-badge {
     display: inline-block;
     padding: 4px 12px;
     background: rgba(26, 171, 186, 0.15);
     border: 1px solid rgba(26, 171, 186, 0.3);
     border-radius: 20px;
     color: var(--color-teal);
     font-size: 0.75rem;
     font-weight: 600;
     margin-bottom: 15px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
   }

   .role-desc {
     font-size: 0.95rem;
     color: var(--color-text-mid);
     margin-bottom: 20px;
     line-height: 1.5;
   }

   .role-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     margin-bottom: 20px;
   }

   .tag {
     display: inline-block;
     padding: 6px 12px;
     background: rgba(26, 171, 186, 0.1);
     border: 1px solid rgba(26, 171, 186, 0.3);
     border-radius: 12px;
     font-size: 0.8rem;
     color: var(--color-teal);
   }

   .role-btn {
     display: inline-block;
     color: var(--color-indigo);
     font-weight: 600;
     text-decoration: none;
     transition: all var(--tr-base);
   }

   .role-btn:hover {
     color: var(--color-teal);
     transform: translateX(5px);
   }

   /* ========== WHY JOIN SECTION ========== */
   .why-join-section {
     background: linear-gradient(135deg, #f4fafc 0%, #e8f4f8 50%, #eaf0fb 100%);
     padding: 80px 60px;
     font-family: var(--font-body);
     position: relative;
     overflow: hidden;
   }



   .why-join-benefits {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 30px;
   }

   .benefit-card {
     background: rgba(255, 255, 255, 0.7);
     border: 1px solid rgba(26, 171, 186, 0.2);
     border-radius: 12px;
     padding: 25px;
     transition: all var(--tr-base);
     animation: slideInUp 0.6s ease-out;
   }

   .benefit-card:hover {
     transform: translateY(-5px);
     background: rgba(255, 255, 255, 0.95);
     border-color: var(--color-teal);
     box-shadow: var(--shadow-md);
   }

   .benefit-icon {
     font-size: 2rem;
     margin-bottom: 12px;
   }

   .benefit-title {
     font-size: 1.1rem;
     font-weight: 700;
     margin-bottom: 8px;
     color: var(--color-text-dark);
   }

   .benefit-desc {
     font-size: 0.9rem;
     color: var(--color-text-mid);
   }

   .why-join-content h2 {
     font-size: 2.5rem;
     font-weight: 800;
     margin-bottom: 30px;
     line-height: 1.3;
     color: var(--color-text-dark);
   }

   .why-join-content p {
     font-size: 1.05rem;
     color: var(--color-text-mid);
     margin-bottom: 25px;
     line-height: 1.7;
   }

   /* ========== CULTURE SECTION ========== */
   .culture-section {
     background: linear-gradient(135deg, #f4fafc 0%, #e8f4f8 50%, #eaf0fb 100%);
     padding: 80px 60px;
     font-family: var(--font-body);
     position: relative;
     overflow: hidden;
   }

   .culture-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     margin-top: 60px;
   }

   .culture-item {
     text-align: center;
     animation: slideInUp 0.6s ease-out;
     background: var(--color-white);
     border-radius: var(--radius-lg);
     overflow: hidden;
     box-shadow: var(--shadow-sm);
     border: 1px solid var(--color-border);
     padding: 10px;
     border-radius: 10px;
   }

   .culture-icon-box {
     width: 80px;
     height: 80px;
     margin: 0 auto 20px;
     background: linear-gradient(135deg, rgba(26, 171, 186, 0.15), rgba(91, 94, 232, 0.15));
     border: 2px solid rgba(26, 171, 186, 0.3);
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2.5rem;
     transition: all var(--tr-base);
   }

   .culture-item:hover .culture-icon-box {
     transform: scale(1.1);
     border-color: var(--color-teal);
     background: linear-gradient(135deg, rgba(26, 171, 186, 0.3), rgba(91, 94, 232, 0.3));
   }

   .culture-title {
     font-size: 1.3rem;
     font-weight: 700;
     margin-bottom: 10px;
     color: var(--color-text-dark);
   }

   .culture-desc {
     font-size: 0.95rem;
     color: var(--color-text-mid);
     line-height: 1.6;
   }

   /* SECTION SPACING */
   .job-details-section {
     padding: 80px 20px;
     background: var(--color-off-white);
     position: relative;
     overflow: hidden;
   }

   #jobDetailsSection {
     display: none;
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.5s ease;
   }

   #jobDetailsSection.active {
     display: block;
     opacity: 1;
     transform: translateY(0);
   }

   /* GRID */


   .job-container-wrapper {
     display: grid;
     grid-template-columns: 1.1fr 1fr;
     gap: 60px;
     align-items: center;
   }

   /* CARD BASE */
   .job-info,
   .job-form {
     background: rgba(255, 255, 255, 0.75);
     backdrop-filter: blur(16px);
     border-radius: 16px;
     padding: 32px;
     box-shadow: var(--shadow-md);
     border: 1px solid rgba(255, 255, 255, 0.4);
     position: relative;
     transition: all var(--tr-base);
   }

   /* HOVER EFFECT */
   .job-info:hover,
   .job-form:hover {
     transform: translateY(-6px);
     box-shadow: var(--shadow-lg);
   }

   /* LEFT SIDE CONTENT */
   .job-info h2 {
     font-size: 1.4rem;
     font-weight: 700;
     margin-bottom: 10px;
     color: var(--color-text-dark);
   }

   .job-info p {
     font-size: 14px;
     color: var(--color-text-mid);
     line-height: 1.7;
     margin-bottom: 16px;
   }

   /* SECTION HEADINGS */
   .job-info h4 {
     font-size: 15px;
     font-weight: 600;
     margin-top: 18px;
     margin-bottom: 8px;
     color: var(--color-indigo);
     position: relative;
   }

   .job-info h4::after {
     content: "";
     width: 30px;
     height: 2px;
     background: var(--color-teal);
     position: absolute;
     bottom: -4px;
     left: 0;
   }

   /* LIST */
   #jobResponsibilities li {
     font-size: 13px;
     padding-left: 20px;
     margin-bottom: 6px;
     position: relative;
     color: var(--color-text-mid);
     list-style-type: none;
   }

   #jobResponsibilities li::before {
     content: "✔";
     position: absolute;
     left: 0;
     color: var(--color-teal);
   }

   /* SHARE BUTTON */
   .job-info .btn-primary {
     margin-top: 20px;
     width: 100%;
   }

   /* RIGHT SIDE FORM */
   .job-form h3 {
     font-size: 1.4rem;
     font-weight: 700;
     margin-bottom: 10px;
     color: var(--color-text-dark);
     text-align: center;
   }

   /* FORM */


   .jobform-mainwrapper {
     width: 100%;
     margin-bottom: 10px;
   }

   /* INPUTS */
   .job-form input,
   .job-form textarea {
     width: 100%;
     padding: 12px 14px;
     border-radius: 8px;
     border: 2px solid #c1d2f596;
     font-size: 14px;
     font-family: var(--font-body);
     outline: none;
     transition: all var(--tr-fast);
     background: #fff;
     background: linear-gradient(135deg, rgba(91, 94, 232, 0.08), rgba(91, 94, 232, 0.05));
   }

   .job-form textarea {
     resize: none;
     height: 130px;
   }

   .jobform-label {
     font-size: 1.1rem;
     font-weight: 700;
     margin-bottom: 8px;
     color: var(--color-text-dark);
   }

   /* FOCUS EFFECT */
   .job-form input:focus,
   .job-form textarea:focus {
     border-color: var(--color-indigo);
     box-shadow: 0 0 0 3px rgba(91, 94, 232, 0.15);
   }

   /* FILE INPUT */
   .job-form input[type="file"] {
     padding: 8px;
     background: #fff;
   }

   /* SUBMIT BUTTON */
   .job-form .btn-primary {
     margin-top: 10px;
     width: 100%;
     justify-content: center;
   }

   /* BACKGROUND DECOR (SUBTLE) */
   .job-details-section::before {
     content: "";
     position: absolute;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(91, 94, 232, 0.15), transparent 70%);
     top: -100px;
     left: -100px;
   }

   .job-details-section::after {
     content: "";
     position: absolute;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(26, 171, 186, 0.15), transparent 70%);
     bottom: -100px;
     right: -100px;
   }


   /* Founder Message */

   .founder-message {
     background: linear-gradient(135deg, #f4fafc 0%, #e8f4f8 50%, #eaf0fb 100%);
     padding: 80px 60px;
     font-family: var(--font-body);
     position: relative;
     overflow: hidden;
   }

   /* Layout */
.foundermessage-wrapper {
    /* display: grid;*/
    display: block;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: stretch;
}

   .foundermessage-left {
     display: flex;
     flex-direction: column;
     justify-content: center;

   }

   .foundermessage-body {
     font-size: 16px;
     line-height: 1.8;
     color: var(--color-text-mid);
     margin-bottom: 10px;
     font-weight: 400;
     letter-spacing: 0.3px;

   }

   .foundermessage-body:last-of-type {
     margin-bottom: 0;
   }

   .foundermessage-body:first-of-type {
     margin-top: 15px;
   }

   /* / Founder Message */

   /* ============================================================
       INDUSTRIES SECTION
       ============================================================ */

   .industries {
     background: linear-gradient(135deg, #f4fafc 0%, #e8f4f8 50%, #eaf0fb 100%);
     padding: 80px 60px;
     font-family: var(--font-body);
     position: relative;
     overflow: hidden;
   }

   .industries-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
     gap: 32px;
     position: relative;
     z-index: 2;
   }


   .industry-card {
     position: relative;
     background: var(--color-white);
     border-radius: 16px;
     padding: 40px 32px;
     border: 2px solid var(--color-border);
     overflow: hidden;
     cursor: pointer;
     transition: all var(--tr-base);
     opacity: 0;
     animation: revealUp 0.8s var(--tr-slow) forwards;
     display: flex;
     flex-direction: column;
   }

   .industry-card:nth-child(1) {
     animation-delay: 0.1s;
   }

   .industry-card:nth-child(2) {
     animation-delay: 0.2s;
   }

   .industry-card:nth-child(3) {
     animation-delay: 0.3s;
   }

   .industry-card:nth-child(4) {
     animation-delay: 0.4s;
   }

   .industry-card:nth-child(5) {
     animation-delay: 0.5s;
   }

   .industry-card:nth-child(6) {
     animation-delay: 0.6s;
   }

   .industry-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, var(--color-teal), var(--color-indigo));
     transform: scaleX(0);
     transform-origin: left;
     transition: transform var(--tr-base);
   }

   .industry-card::after {
     content: '';
     position: absolute;
     top: -100%;
     right: -100%;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(26, 171, 186, 0.1) 0%, transparent 70%);
     border-radius: 50%;
     transition: all var(--tr-slow);
   }

   .industry-card:hover::before {
     transform: scaleX(1);
   }

   .industry-card:hover::after {
     top: -50%;
     right: -50%;
   }

   .industry-card:hover {
     border-color: var(--color-teal);
     box-shadow: var(--shadow-lg);
     transform: translateY(-8px);
   }

   .industry-card-visual {
     width: 100%;
     height: 160px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 28px;
     position: relative;
     z-index: 1;
   }

   .industry-icon {
     width: 100%;
     height: 100%;
   }

   .industry-card-content {
     position: relative;
     z-index: 1;
   }

   .industry-name {
     font-family: var(--font-head);
     font-size: 20px;
     font-weight: 700;
     color: var(--color-text-dark);
     margin-bottom: 12px;
   }

   .industry-desc {
     font-size: 14px;
     color: var(--color-text-muted);
     line-height: 1.7;
     margin-bottom: 20px;
     flex: 1;
   }

   .industry-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
   }

   .industry-tag {
     display: inline-block;
     font-size: 11px;
     font-weight: 600;
     padding: 6px 12px;
     background: var(--color-off-white);
     color: var(--color-text-mid);
     border-radius: 20px;
     transition: all var(--tr-fast);
   }

   .industry-card:hover .industry-tag {
     background: rgba(26, 171, 186, 0.15);
     color: var(--color-teal);
   }

   .industry-footer {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-top: 24px;
     padding-top: 20px;
     border-top: 1px solid var(--color-border);
     position: relative;
     z-index: 1;
   }

   .industry-link {
     font-size: 12px;
     font-weight: 600;
     color: var(--color-teal);
     text-decoration: none;
     cursor: pointer;
     transition: all var(--tr-fast);
     display: flex;
     align-items: center;
     gap: 6px;
   }

   .industry-link:hover {
     gap: 10px;
     color: var(--color-teal-dark);
   }

   .industry-arrow {
     transition: transform var(--tr-fast);
   }

   .industry-card:hover .industry-arrow {
     transform: translateX(4px);
   }

   .stat-mini {
     font-size: 13px;
     color: var(--color-text-muted);
     font-weight: 500;
   }

   /* Decorative elements */
   .industries-decoration {
     position: absolute;
     pointer-events: none;
     z-index: 1;
   }

   .decoration-top {
     top: 50px;
     right: -100px;
     opacity: 0.4;
   }

   .decoration-bottom {
     bottom: -150px;
     left: -100px;
     opacity: 0.3;
   }


   /* ============================================================
       DETAIL SECTION (FULL WIDTH - NOT MODAL)
       ============================================================ */
   .detail-section {
     background: linear-gradient(135deg, var(--color-off-white) 0%, rgba(91, 94, 232, 0.05) 100%);
     padding: 80px 60px;
     position: relative;
     z-index: 2;
     display: none;
     border-top: 3px solid var(--color-teal);
     overflow: hidden;
     margin-top: 50px;
   }

   .detail-section.active {
     display: block;
     animation: slideDown 0.6s var(--tr-slow) forwards;
   }

   @keyframes slideDown {
     from {
       opacity: 0;
       transform: translateY(-30px);
     }

     to {
       opacity: 1;
       transform: translateY(0);
     }
   }

   .detail-section::before {
     content: '';
     position: absolute;
     top: -100px;
     right: -100px;
     width: 400px;
     height: 400px;
     background: radial-gradient(circle, rgba(91, 94, 232, 0.1) 0%, transparent 70%);
     border-radius: 50%;
   }

   .detail-section::after {
     content: '';
     position: absolute;
     bottom: -50px;
     left: -50px;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(26, 171, 186, 0.08) 0%, transparent 70%);
     border-radius: 50%;
   }

   .detail-wrapper {
     position: relative;
     z-index: 1;
   }

   .detail-header {
     display: flex;
     align-items: center;
     gap: 24px;
     margin-bottom: 20px;
   }

   .detail-icon-box {
     width: 100px;
     height: 100px;
     background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-indigo) 100%);
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 50px;
     flex-shrink: 0;
     box-shadow: var(--shadow-md);
   }

   .detail-title-section {
     flex: 1;
   }

   .detail-title {
     font-family: var(--font-head);
     font-size: 40px;
     font-weight: 700;
     color: var(--color-text-dark);
     margin-bottom: 12px;
     line-height: 1.2;
   }

   .detail-subtitle {
     font-size: 16px;
     color: var(--color-text-muted);
   }

   .detail-close-btn {
     background: var(--color-white);
     border: 2px solid var(--color-border);
     width: 48px;
     height: 48px;
     border-radius: 50%;
     font-size: 24px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all var(--tr-base);
     color: var(--color-text-dark);
     flex-shrink: 0;
   }

   .detail-close-btn:hover {
     background: var(--color-border);
     transform: rotate(90deg);
   }

   .detail-grid {
     display: grid;
     grid-template-columns: 1.1fr 1fr;
     gap: 80px;
     margin-bottom: 60px;
   }



   /* Left side - Details */
   .detail-left {
     position: relative;
   }

   .detail-description {
     font-size: 16px;
     color: var(--color-text-mid);
     line-height: 1.9;
     margin-bottom: 20px;
     padding-bottom: 20px;
     border-bottom: 2px solid var(--color-border);
   }

   .detail-content-section {
     margin-bottom: 20px;
   }

   .detail-section-title {
     font-family: var(--font-head);
     font-size: 20px;
     font-weight: 700;
     color: var(--color-text-dark);
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 12px;
   }

   .detail-section-title::before {
     content: '';
     width: 5px;
     height: 28px;
     background: linear-gradient(180deg, var(--color-teal) 0%, var(--color-indigo) 100%);
     border-radius: 3px;
     flex-shrink: 0;
   }

   .detail-list {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 14px;
   }

   .detail-list-item {
     display: flex;
     align-items: flex-start;
     gap: 14px;
     font-size: 15px;
     color: var(--color-text-mid);
     line-height: 1.7;
   }

   .detail-list-item::before {
     content: '✓';
     color: var(--color-teal);
     font-weight: 800;
     font-size: 18px;
     flex-shrink: 0;
     margin-top: 1px;
   }

   .detail-stats {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 10px;


   }

   .detail-stat {
     text-align: center;
     background: var(--color-white);
     border-radius: 16px;
     border: 2px solid var(--color-border);
     box-shadow: var(--shadow-sm);
     padding: 10px;
   }

   .detail-stat-value {
     font-family: var(--font-head);
     font-size: 36px;
     font-weight: 700;
     color: var(--color-teal);
     margin-bottom: 8px;
   }

   .detail-stat-label {
     font-size: 13px;
     color: var(--color-text-muted);
     font-weight: 500;
     line-height: 1.5;
   }

   /* Right side - Contact Form */
   .detail-right {
     position: relative;
   }

   .form-container {
     background: var(--color-white);
     padding: 48px;
     border-radius: 20px;
     border: 2px solid var(--color-border);
     box-shadow: var(--shadow-md);
     position: sticky;
     top: 100px;
   }

   .form-title {
     font-family: var(--font-head);
     font-size: 26px;
     font-weight: 700;
     color: var(--color-text-dark);
     margin-bottom: 8px;
   }

   .form-subtitle {
     font-size: 14px;
     color: var(--color-text-muted);
     margin-bottom: 32px;
   }

   .form-group {
     margin-bottom: 22px;
   }

   .form-label {
     display: block;
     font-size: 13px;
     font-weight: 600;
     color: var(--color-text-dark);
     margin-bottom: 8px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
   }

   .form-input,
   .form-textarea {
     width: 100%;
     padding: 12px 16px;
     border: 2px solid var(--color-border);
     border-radius: 10px;
     font-family: var(--font-body);
     font-size: 14px;
     color: var(--color-text-dark);
     transition: all var(--tr-base);
     background: var(--color-white);
   }

   .form-input:focus,
   .form-textarea:focus {
     outline: none;
     border-color: var(--color-teal);
     background: var(--color-white);
     box-shadow: 0 0 0 3px rgba(26, 171, 186, 0.1);
   }

   .form-input::placeholder,
   .form-textarea::placeholder {
     color: var(--color-text-muted);
   }

   .form-textarea {
     resize: none;
     min-height: 120px;
     font-family: var(--font-body);
   }

   .form-button {
     width: 100%;
     padding: 14px 24px;
     background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-indigo) 100%);
     color: var(--color-white);
     border: none;
     border-radius: 10px;
     font-family: var(--font-head);
     font-size: 15px;
     font-weight: 600;
     cursor: pointer;
     transition: all var(--tr-base);
     margin-top: 24px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     position: relative;
     overflow: hidden;
   }

   .form-button::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, var(--color-teal-dark) 0%, #4b4ed6 100%);
     transition: left var(--tr-base);
     z-index: -1;
   }

   .form-button:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 30px rgba(26, 171, 186, 0.3);
   }

   .form-button:hover::before {
     left: 0;
   }

   .form-button:active {
     transform: translateY(0);
   }

   .success-message {
     display: none;
     padding: 16px;
     background: rgba(26, 171, 186, 0.1);
     border: 2px solid var(--color-teal);
     border-radius: 10px;
     color: var(--color-teal);
     font-size: 14px;
     font-weight: 600;
     text-align: center;
     margin-bottom: 24px;
     animation: slideDown 0.4s var(--tr-slow);
   }

   .success-message.show {
     display: block;
   }

   /* / INDUSTRIES SECTION */


   /* ********* */

   .contact-hero {
     position: relative;
     background: var(--color-navy);
     overflow: hidden;
     padding: clamp(80px, 12vh, 130px) 0 clamp(80px, 12vh, 120px);
   }

   .contact-hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background:
       radial-gradient(circle at 20% 50%, rgba(26, 171, 186, 0.1) 0%, transparent 50%),
       radial-gradient(circle at 80% 80%, rgba(91, 94, 232, 0.1) 0%, transparent 50%);
     z-index: 1;
     pointer-events: none;
   }

   .contact-hero::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-image:
       linear-gradient(rgba(26, 171, 186, 0.03) 1px, transparent 1px),
       linear-gradient(90deg, rgba(26, 171, 186, 0.03) 1px, transparent 1px);
     background-size: 40px 40px;
     opacity: 0.5;
     z-index: 1;
     pointer-events: none;
   }

   .contact-hero-inner {
     position: relative;
     z-index: 2;
   }

   .contact-hero .container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
     max-width: 90%;
     margin: 0 auto;
   }

   .contact-content {
     color: white;
   }

   .contact-headline {
     font-family: var(--font-display);
     font-size: clamp(2.2rem, 5vw, 3.5rem);
     font-weight: 800;
     margin-bottom: 20px;
     line-height: 1.2;
     animation: slideInUp 0.8s ease-out;
   }

   .contact-headline .accent {
     background: linear-gradient(135deg, var(--color-teal), #00d4e8);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
   }

   .contact-desc {
     font-size: 1.05rem;
     color: rgba(255, 255, 255, 0.85);
     margin-bottom: 30px;
     max-width: 500px;
     line-height: 1.7;
     animation: slideInUp 0.8s ease-out 0.1s backwards;
   }

   .contact-info-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
     margin-bottom: 40px;
     animation: slideInUp 0.8s ease-out 0.2s backwards;
   }

   .info-item {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: var(--radius-xl);
     padding: 15px;
     backdrop-filter: blur(12px);
         display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform var(--tr-base), color var(--tr-base);
    cursor: pointer;
   }

   .info-label {
     font-family: var(--font-head);
     font-size: 14px;
     font-weight: 500;
     color: var(--color-white);
     letter-spacing: 0.1px;

   }

   .info-icon {
     display: flex;
     justify-content: flex-start;
     align-items: center;
     gap: 10px;
   }

   .info-text {
     font-size: 12px;
     color: rgba(255, 255, 255, 0.45);
   }

   /* ********* */

   /*  */
   .contactus-section {
     background: linear-gradient(135deg, #f4fafc 0%, #e8f4f8 50%, #eaf0fb 100%);
     padding: 80px 60px;
     font-family: var(--font-body);
     position: relative;
     overflow: hidden;
   }

   .contact-wrapper {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
   }

   /* Contact Info Section */
   .contact-info {
     animation: fadeInLeft 0.8s ease 0.2s both;
   }

   .info-card {
     margin-bottom: 40px;
     padding: 0;
     display: flex;
     gap: 20px;
     align-items: flex-start;
     transition: transform var(--tr-base), color var(--tr-base);
     cursor: pointer;
   }

   .info-card:hover {
     transform: translateX(8px);
   }

   .info-icon {
     width: 56px;
     height: 56px;
     background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-light) 100%);
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     color: var(--color-white);
     flex-shrink: 0;
     box-shadow: var(--shadow-sm);
     transition: transform var(--tr-base);
   }

   .info-card:hover .info-icon {
     transform: scale(1.1);
   }

   .info-content h3 {
     font-family: var(--font-head);
     font-size: 18px;
     font-weight: 600;
     color: var(--color-text-dark);
     margin-bottom: 8px;
   }

   .info-content p {
     font-size: 16px;
     color: var(--color-text-muted);
     line-height: 1.5;
   }

   .info-content a {
     color: var(--color-teal);
     text-decoration: none;
     font-weight: 500;
     transition: color var(--tr-fast);
   }

   .info-content a:hover {
     color: var(--color-teal-dark);
   }

   /* Form Section */
   .contact-form {
     background: var(--color-white);
     border-radius: 20px;
     padding: 50px;
     box-shadow: var(--shadow-md);
     animation: fadeInRight 0.8s ease 0.2s both;
     border: 1px solid rgba(91, 94, 232, 0.08);
     backdrop-filter: blur(10px);
   }

   .form-group {
     margin-bottom: 24px;
   }

   .form-group label {
     display: block;
     font-family: var(--font-head);
     font-size: 15px;
     font-weight: 600;
     color: var(--color-text-dark);
     margin-bottom: 10px;
     transition: color var(--tr-fast);
   }

   .form-group input,
   .form-group textarea {
     width: 100%;
     padding: 14px 16px;
     font-family: var(--font-body);
     font-size: 15px;
     border: 2px solid var(--color-border);
     border-radius: 10px;
     background: var(--color-off-white);
     color: var(--color-text-dark);
     transition: all var(--tr-base);
     outline: none;
     resize: vertical;
     min-height: 44px;
   }

   .form-group textarea {
     resize: none;
     min-height: 120px;
     font-family: var(--font-body);
   }

   .form-group input:hover,
   .form-group textarea:hover {
     border-color: var(--color-teal-light);
     background: var(--color-white);
   }

   .form-group input:focus,
   .form-group textarea:focus {
     border-color: var(--color-teal);
     background: var(--color-white);
     box-shadow: 0 0 0 8px rgba(26, 171, 186, 0.08);
   }

   /* Two Column Input */
   .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
     margin-bottom: 24px;
   }

   .form-row .form-group {
     margin-bottom: 0;
   }

   /* Submit Button */



   @keyframes fadeInUp {
     from {
       opacity: 0;
       transform: translateY(30px);
     }

     to {
       opacity: 1;
       transform: translateY(0);
     }
   }

   @keyframes fadeInLeft {
     from {
       opacity: 0;
       transform: translateX(-30px);
     }

     to {
       opacity: 1;
       transform: translateX(0);
     }
   }

   @keyframes fadeInRight {
     from {
       opacity: 0;
       transform: translateX(30px);
     }

     to {
       opacity: 1;
       transform: translateX(0);
     }
   }

   /* Success Message (hidden by default) */
   .success-message {
     display: none;
     padding: 16px;
     background: rgba(26, 171, 186, 0.1);
     border: 1px solid var(--color-teal);
     border-radius: 10px;
     color: var(--color-teal-dark);
     text-align: center;
     margin-bottom: 20px;
     font-size: 14px;
     font-weight: 500;
     animation: fadeInUp 0.4s ease;
   }

   .success-message.show {
     display: block;
   }

   /*  */


   /* ============================================================
   RESPONSIVE — TABLET  ≤ 960px
   ============================================================ */

   @media(max-width:1199px) {
     .stat-val {
       font-size: clamp(26px, 3vw, 25px);
     }

     .stat-label {
       font-size: 11px;
       line-height: 15px;
     }
   }

   @media(max-width:1260px) {
     .hero-headline {
       font-size: clamp(32px, 5vw, 45px);
     }

     .hero-desc {
       font-size: clamp(15px, 2vw, 14px);
       margin-bottom: 30px;
     }

     .hero {

       padding: clamp(50px, 2vh, 35px) 0 clamp(50px, 2vh, 35px);
     }


   }

   @media (max-width: 960px) {
     .hero .container {
       grid-template-columns: 1fr;
       gap: 48px;
     }

     .hero-visual {
       max-width: 606px;
       min-width: 606px;
       margin: 0 auto;
     }

     .mv-panel {
       grid-template-columns: 1fr;
       gap: 40px;
     }

     .mv-panel.reverse {
       direction: ltr;
     }

     .howwe-steps {
       grid-template-columns: repeat(2, 1fr);
       gap: 40px;
       row-gap: 40px;
     }

     .howwe-steps::before {
       display: none;
     }

     .howwe-domains {
       grid-template-columns: 1fr;
     }

     .works-grid {
       grid-template-columns: repeat(2, 1fr);
     }

     .works-header {
       flex-direction: column;
       align-items: flex-start;
     }

     .hero-visual {
       height: 390px;
     }

     .float-badge {
       position: absolute;
       bottom: -17px;
     }

   }

   @media(max-width:900px) {
     .mv-header {
       text-align: center;
       margin-bottom: 15px;
     }
   }

   @media(max-width:767px) {
     .hero-visual {
       max-width: 100%;
       min-width: 100%;
       margin: 0 auto;
     }

     .hero-headline {
       font-size: clamp(20px, 5vw, 45px);
     }
   }



   /* ============================================================
   RESPONSIVE — MOBILE  ≤ 600px
   ============================================================ */
   @media (max-width: 680px) {
     .hero-stats {
       gap: 24px;
     }

     .hero-card {
       padding: 24px;
     }

     .mv-tabs {
       flex-direction: column;
       align-items: center;
     }

     .mv-tab {
       width: 200px;
       text-align: center;
     }

     .howwe-steps {
       grid-template-columns: 1fr;
     }

     .works-grid {
       grid-template-columns: 1fr;
     }

     .works-filter {
       display: none;
     }

     .float-badge {
       position: static;
       margin-top: 16px;
       display: inline-flex;
     }

     .works-cta-btns {
       flex-direction: column;
       align-items: center;
     }

     .btn-primary,
     .btn-secondary {
       width: 100%;
       max-width: 320px;
       justify-content: center;
     }

     .hero-desc {
       font-size: clamp(13px, 1vw, 14px);
       margin-bottom: 30px;
     }

     .mv-section {
       padding: 48px 20px;
     }

     .howwe-section {
       padding: 48px 20px;
     }

     .works-section {
       padding: 48px 20px;
     }

     /* .mv-section{
          padding: 48px 20px;
    } */


     .mv-corner-stat {
       bottom: 0px;
       right: 0px;
       padding: 14px 15px;
       z-index: 5;
     }

     .mv-illus-icon {
       font-size: 60px;
       margin-bottom: -3px;


     }

     .mv-illus-body {
       font-size: 13px;

       max-width: 100%;

       line-height: 1.45;
     }
   }

   @media(max-width: 420px) {
     .mv-corner-stat .val {
       margin-bottom: 5px;
       font-size: 19px;

       line-height: 1;
     }

     .mv-corner-stat .lbl {
       font-size: 8px;


     }
   }
.features-modern {
    background: linear-gradient(135deg, #f4fafc 0%, #e8f4f8 50%, #eaf0fb 100%);
    padding: 80px 20px;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.ab-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.features-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.features-left {
    flex: 1 1 500px;
}

.features-cards {
    flex: 1 1 500px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-sizing: border-box;
}

/* MOBILE */
@media (max-width: 768px) {
    .features-wrapper {
        flex-direction: column;
    }

    .features-cards {
        grid-template-columns: 1fr;
    }

    .features-modern {
        padding: 50px 15px;
    }
    .feature-card:nth-child(1) {
         transform: translateY(2px); 
    }
    .feature-card:nth-child(3) {
        transform: translateY(2px);
    }
    .feature-card:nth-child(4) {
        transform: translateY(-2px);
    }
    .industries-grid
    {
        display:block;
    }
    .contact-wrapper {
        display: block;
    }
}