:root {
      --red: #B91C1C;
      --red-dark: #7F1D1D;
      --red-light: #EF4444;
      --gold: #F59E0B;
      --gold-dark: #D97706;
      --white: #FFFFFF;
      --off-white: #F9F6F2;
      --light-grey: #F3F4F6;
      --charcoal: #1F2937;
      --mid-grey: #4B5563;
      --border: #E5E7EB;
    }

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

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 96px;
      overflow-x: hidden;
    }

    body {
      font-family: 'Nunito Sans', sans-serif;
      color: var(--charcoal);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ===== HEADER ===== */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: transparent;
      backdrop-filter: none;
      border-bottom: 1px solid transparent;
      box-shadow: none;
      transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    header.scrolled {
      background: var(--red);
      border-bottom-color: rgba(245, 158, 11, 0.45);
      box-shadow: 0 4px 28px rgba(0, 0, 0, 0.22);
    }

    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 88px;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-icon-img {
      height: 48px;
      width: auto;
      object-fit: contain;
      display: block;
    }

    .logo-text-img {
      height: 48px;
      width: auto;
      object-fit: contain;
      display: block;
    }

    .logo-text-scrolled {
      display: none;
    }

    header.scrolled .logo-text-default {
      display: none;
    }

    header.scrolled .logo-text-scrolled {
      display: block;
    }

    nav {
      display: flex;
      gap: 6px;
      align-items: center;
    }

    nav a {
      font-size: 14px;
      font-weight: 800;
      color: white;
      text-decoration: none;
      padding: 7px 12px;
      border-radius: 6px;
      transition: all 0.2s;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
    }

    nav a:hover {
      background: var(--red);
      color: white;
    }

    .header-cta {
      background: var(--gold);
      color: var(--charcoal) !important;
      padding: 9px 18px !important;
      border-radius: 6px;
      font-weight: 700 !important;
      transform: translateZ(0);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      will-change: auto;
      isolation: isolate;
    }

    .header-cta:hover {
      background: var(--gold-dark) !important;
      color: white !important;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
    }

    .hamburger span {
      width: 26px;
      height: 2px;
      background: white;
      transition: all 0.3s;
    }

    /* ===== HERO SLIDER ===== */
    #hero {
      margin-top: 0;
      position: relative;
      height: 100vh;
      height: 100svh;
      height: 100dvh;
      min-height: 100vh;
      min-height: 100svh;
      min-height: 100dvh;
      padding: 0;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1s ease;
      display: flex;
      align-items: center;
    }

    .slide.active {
      opacity: 1;
    }

    .slide-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      overflow: hidden;
    }

    .banner-1 {
      background-image: url("public/banners/hp.webp");
    }

    .banner-2 {
      background-image: url("public/banners/ntpc.webp");
    }

    .banner-3 {
      background-image: url("public/banners/bhel.webp");
    }

    .banner-4 {
      background-image: url("public/banners/vizagsteel.webp");
    }

    .banner-5 {
      background-image: url("public/banners/navi.webp");
    }




    .slide-overlay {
      position: absolute;
      inset: 0;
    }

    .slide-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
      width: 100%;
    }

    .slide-tag {
      display: inline-block;
      background: var(--gold);
      color: var(--charcoal);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 18px;
    }

    .slide-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(28px, 4vw, 52px);
      font-weight: 700;
      color: white;
      line-height: 1.05;
      margin-bottom: 16px;
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    }

    .slide-title span {
      color: var(--gold);
    }

    .slide-sub {
      font-size: clamp(13px, 1.5vw, 16px);
      color: rgba(255, 255, 255, 0.96);
      max-width: 600px;
      line-height: 1.7;
      margin-bottom: 32px;
      text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    }

    .slide-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--red);
      color: white;
      padding: 14px 32px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      transition: all 0.25s;
      letter-spacing: 0.5px;
      border: none;
      cursor: pointer;
    }

    .btn-primary:hover {
      background: var(--red-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(185, 28, 28, 0.4);
    }

    .btn-secondary {
      background: transparent;
      color: white;
      padding: 14px 32px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      transition: all 0.25s;
      border: 2px solid rgba(255, 255, 255, 0.7);
    }

    .btn-secondary:hover {
      background: white;
      color: var(--charcoal);
      border-color: white;
    }

    /* slide 1 */

    .s1 .slide-overlay {
      background: linear-gradient(90deg, rgba(10, 5, 0, 0.75) 0%, rgba(10, 5, 0, 0.4) 55%, rgba(0, 0, 0, 0.1) 100%);
    }

    /* slide 2 */
    .s2 .slide-overlay {
      background: linear-gradient(90deg, rgba(60, 5, 0, 0.82) 0%, rgba(20, 2, 0, 0.5) 55%, rgba(0, 0, 0, 0.1) 100%);
    }

    /* slide 3 */
    .s3 .slide-overlay {
      background: linear-gradient(90deg, rgba(5, 10, 0, 0.75) 0%, rgba(5, 10, 0, 0.4) 55%, rgba(0, 0, 0, 0.1) 100%);
    }

    /* slide 4 */
    .s4 .slide-overlay {
      background: linear-gradient(90deg, rgba(10, 5, 0, 0.78) 0%, rgba(10, 5, 0, 0.45) 55%, rgba(0, 0, 0, 0.1) 100%);
    }

    .s5 .slide-overlay {
      background: linear-gradient(90deg, rgba(0, 10, 40, 0.82) 0%, rgba(0, 10, 40, 0.5) 55%, rgba(0, 0, 0, 0.15) 100%);
    }

    /* decorative geometric element on slides */
    .slide-deco {
      display: none;
    }

    .slide-deco2 {
      display: none;
    }

    /* slide indicators */
    .slide-dots {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      cursor: pointer;
      transition: all 0.3s;
    }

    .dot.active {
      background: var(--gold);
      width: 28px;
      border-radius: 5px;
    }

    /* slide arrows */
    .slide-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background: rgba(255, 255, 255, 0.15);
      border: 2px solid rgba(255, 255, 255, 0.3);
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
      backdrop-filter: blur(4px);
    }

    .slide-arrow:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--charcoal);
    }

    .slide-arrow.prev {
      left: 20px;
    }

    .slide-arrow.next {
      right: 20px;
    }

    @media(max-width: 768px) {
      .slide-arrow {
        width: 34px;
        height: 34px;
      }
      .slide-arrow.prev { left: 10px; }
      .slide-arrow.next { right: 10px; }
      .slide-arrow svg { width: 16px; height: 16px; }
    }

    /* ===== STATS BAR ===== */
    .stats-bar {
      background: var(--red);
      padding: 0;
    }

    .stats-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .stat-item {
      padding: 22px 24px;
      text-align: center;
      border-right: 1px solid rgba(255, 255, 255, 0.15);
      position: relative;
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-num {
      font-family: 'Oswald', sans-serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }

    .stat-label {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.85);
      margin-top: 4px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    /* ===== SECTIONS ===== */
    section {
      padding: 80px 0;
    }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section-tag {
      display: inline-block;
      background: rgba(185, 28, 28, 0.1);
      color: var(--red);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 14px;
    }

    .section-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 700;
      color: var(--charcoal);
      line-height: 1.15;
      margin-bottom: 12px;
    }

    .section-title span {
      color: var(--red);
    }

    .section-sub {
      font-size: 17px;
      color: var(--mid-grey);
      max-width: 640px;
      line-height: 1.75;
      font-weight: 400;
      letter-spacing: 0.01em;
    }

    .section-header {
      margin-bottom: 48px;
    }

    .section-header.center {
      text-align: center;
    }

    .section-header.center .section-sub {
      margin: 0 auto;
    }

    /* ===== ABOUT ===== */
    #about {
      background: var(--off-white);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .about-text p {
      color: #374151;
      line-height: 1.8;
      font-size: 15px;
      margin-bottom: 16px;
    }

    .about-text p strong {
      color: var(--red);
    }

    .motto-box {
      background: var(--red);
      color: white;
      padding: 28px 32px;
      border-radius: 12px;
      margin-top: 28px;
      position: relative;
      overflow: hidden;
    }

    .motto-box::before {
      content: '❝';
      position: absolute;
      top: -10px;
      right: 20px;
      font-size: 80px;
      opacity: 0.1;
      font-family: serif;
    }

    .motto-text {
      font-family: 'Oswald', sans-serif;
      font-size: 18px;
      font-weight: 600;
      line-height: 1.5;
      margin-bottom: 8px;
    }

    .motto-attr {
      font-size: 12px;
      opacity: 0.8;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .about-visual {
      position: relative;
    }

    .about-card {
      background: white;
      border-radius: 16px;
      padding: 32px;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
      border-left: 5px solid var(--red);
    }

    .about-card-title {
      font-family: 'Oswald', sans-serif;
      font-size: 20px;
      color: var(--red);
      margin-bottom: 16px;
      font-weight: 600;
    }

    .value-item {
      display: flex;
      gap: 14px;
      margin-bottom: 18px;
      align-items: flex-start;
    }

    .value-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    .value-title {
      font-weight: 700;
      font-size: 14px;
      color: var(--charcoal);
      margin-bottom: 3px;
    }

    .value-desc {
      font-size: 13px;
      color: var(--mid-grey);
      line-height: 1.5;
    }

    .established-badge {
      position: absolute;
      top: -20px;
      right: -20px;
      background: var(--gold);
      color: var(--charcoal);
      width: 100px;
      height: 100px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
      text-align: center;
    }

    .est-year {
      font-family: 'Oswald', sans-serif;
      font-size: 26px;
      font-weight: 700;
      line-height: 1;
    }

    .est-label {
      font-size: 9px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-top: 2px;
    }

    /* ===== SERVICES ===== */
    #services {
      background: var(--white);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    /* ===== SERVICE SECTION REDESIGN ===== */
    #services {
      background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    /* FLIP CARD STRUCTURE */
    .service-card {
      perspective: 1200px;
      height: 400px;
      cursor: pointer;
    }

    .service-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
      transform-style: preserve-3d;
    }

    .service-card.flipped .service-card-inner {
      transform: rotateY(180deg);
    }

    .service-front,
    .service-back {
      position: absolute;
      inset: 0;
      border-radius: 20px;
      padding: 32px;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      overflow: hidden;
    }

    /* FRONT FACE */
    .service-front {
      background: white;
      border: 2px solid var(--border);
      display: flex;
      flex-direction: column;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .service-front::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--red), var(--gold));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .service-card:hover .service-front {
      border-color: transparent;
      box-shadow: 0 16px 48px rgba(185, 28, 28, 0.18);
      transform: scale(1.01);
    }

    .service-card:hover .service-front::before {
      transform: scaleX(1);
    }

    /* icon */
    .service-icon-wrap {
      width: 64px;
      height: 64px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      position: relative;
      transition: all 0.3s;
    }

    .service-icon-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 18px;
      background: linear-gradient(135deg, var(--red), #d97706);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .service-icon-wrap svg {
      position: relative;
      z-index: 1;
      transition: all 0.3s;
    }

    .s-ic-1 {
      background: rgba(185, 28, 28, 0.08);
    }

    .s-ic-2 {
      background: rgba(245, 158, 11, 0.1);
    }

    .s-ic-3 {
      background: rgba(59, 130, 246, 0.08);
    }

    .s-ic-4 {
      background: rgba(16, 185, 129, 0.08);
    }

    .s-ic-5 {
      background: rgba(139, 92, 246, 0.08);
    }

    .s-ic-6 {
      background: rgba(236, 72, 153, 0.08);
    }

    .service-card:hover .service-icon-wrap::after {
      opacity: 1;
    }

    .service-card:hover .service-icon-wrap svg {
      filter: brightness(0) invert(1);
    }

    .service-num {
      font-size: 10px;
      letter-spacing: 3px;
      color: var(--mid-grey);
      text-transform: uppercase;
      margin-bottom: 6px;
      font-weight: 700;
    }

    .service-title {
      font-family: 'Oswald', sans-serif;
      font-size: 21px;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 12px;
      line-height: 1.25;
    }

    .service-short {
      font-size: 15px;
      color: #374151;
      line-height: 1.75;
      flex: 1;
      font-weight: 400;
    }

    .flip-cta {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 16px;
      font-size: 12px;
      font-weight: 700;
      color: var(--red);
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .flip-cta svg {
      transition: transform 0.2s;
    }

    .service-card:hover .flip-cta svg {
      transform: translateX(4px);
    }

    /* BACK FACE */
    .service-back {
      background: var(--charcoal);
      transform: rotateY(180deg);
      display: flex;
      flex-direction: column;
    }

    .service-back::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(185, 28, 28, 0.9) 0%, rgba(127, 29, 29, 0.95) 100%);
    }

    .service-back-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .service-back-icon {
      width: 42px;
      height: 42px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }

    .service-back-title {
      font-family: 'Oswald', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: white;
      margin-bottom: 14px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .service-back ul {
      list-style: none;
      flex: 1;
    }

    .service-back ul li {
      padding: 6px 0;
      font-size: 12.5px;
      color: rgba(255, 255, 255, 0.88);
      display: flex;
      gap: 8px;
      align-items: flex-start;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .service-back ul li:last-child {
      border-bottom: none;
    }

    .service-back ul li svg {
      flex-shrink: 0;
      margin-top: 2px;
    }

    .flip-back-cta {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
      text-align: center;
      margin-top: 12px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    @media(max-width:1024px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width:640px) {
      .services-grid {
        grid-template-columns: 1fr;
      }

      /* Replace 3D flip with simple show/hide on mobile */
      .service-card {
        height: auto;
        perspective: none;
      }

      .service-card-inner,
      .service-card.flipped .service-card-inner {
        transform: none !important;
        transition: none;
        height: auto;
        display: flex;
        flex-direction: column;
      }

      .service-front,
      .service-back {
        position: relative;
        inset: auto;
        padding: 22px 20px;
        border-radius: 16px;
        backface-visibility: visible;
        -webkit-backface-visibility: visible;
      }

      .service-back {
        transform: none !important;
        display: none;
        overflow: visible;
      }

      .service-card.flipped .service-front {
        display: none;
      }

      .service-card.flipped .service-back {
        display: flex;
      }

      .service-title {
        font-size: 17px;
      }

      .service-short {
        font-size: 12.5px;
      }

      .service-back ul li {
        font-size: 13px;
        padding: 8px 0;
      }

      .flip-back-cta {
        margin-top: 16px;
      }
    }

    /* ===== INDUSTRIES ===== */
    #industries {
      background: #2e335d;
      padding: 70px 0;
    }

    .ind-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      margin-top: 48px;
    }

    .ind-item {
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .ind-item-img {
      background: white;
      border-radius: 12px;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--border);
      transition: all 0.3s;
      height: 118px;
      width: 100%;
      overflow: hidden;
    }

    .ind-item:hover .ind-item-img {
      border-color: var(--red);
      box-shadow: 0 6px 24px rgba(185, 28, 28, 0.2);
      transform: translateY(-3px);
    }

    .ind-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .ind-icon {
      display: none;
    }

    .ind-name {
      display: none;
      font-size: 11px;
      font-weight: 800;
      color: rgba(255, 255, 255, 0.92);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      text-align: center;
      line-height: 1.35;
    }

    /* ===== INDUSTRY DETAIL PANEL ===== */
    .industry-panel {
      position: fixed;
      top: 0;
      right: -100%;
      width: 500px;
      height: 100vh;
      background: white;
      box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
      z-index: 2000;
      transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      overflow-y: auto;
    }

    .industry-panel.active {
      right: 0;
    }

    .panel-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
    }

    .panel-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .panel-header {
      position: sticky;
      top: 0;
      background: var(--red);
      color: white;
      padding: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 10;
    }

    .panel-title {
      font-family: 'Oswald', sans-serif;
      font-size: 24px;
      font-weight: 700;
      margin: 0;
    }

    .panel-close {
      background: rgba(255, 255, 255, 0.2);
      border: none;
      color: white;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }

    .panel-close:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: rotate(90deg);
    }

    .panel-content {
      padding: 32px 24px;
    }

    .panel-icon {
      width: 64px;
      height: 64px;
      background: var(--red);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .panel-icon svg {
      width: 36px;
      height: 36px;
      stroke: white;
    }

    .panel-section {
      margin-bottom: 28px;
    }

    .panel-section-title {
      font-family: 'Oswald', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .panel-section-title svg {
      width: 20px;
      height: 20px;
      stroke: var(--red);
    }

    .panel-text {
      font-size: 15.5px;
      line-height: 1.75;
      color: #374151;
      margin-bottom: 12px;
    }

    .panel-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .panel-list li {
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      font-size: 14px;
      color: var(--charcoal);
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .panel-list li:last-child {
      border-bottom: none;
    }

    .panel-list li svg {
      width: 18px;
      height: 18px;
      stroke: var(--gold);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .panel-cta {
      background: var(--red);
      color: white;
      padding: 14px 28px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      display: inline-block;
      margin-top: 20px;
      transition: all 0.3s;
    }

    .panel-cta:hover {
      background: var(--red-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(185, 28, 28, 0.4);
    }

    @media(max-width:768px) {
      .industry-panel {
        width: 100%;
        right: -100%;
      }

      .industry-panel.active {
        right: 0;
      }
    }

    /* ===== CUSTOMERS ===== */
    #customers {
      background: #b1740b;
      position: relative;
      overflow: hidden;
    }

    #customers::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 20% 50%, rgba(185,28,28,0.10) 0%, transparent 60%),
                  radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.07) 0%, transparent 50%);
      pointer-events: none;
    }

    #customers .section-tag {
      background: rgba(201,168,76,0.2);
      color: var(--gold);
      border: 1px solid rgba(201,168,76,0.3);
    }

    #customers .section-title { color: white; }
    #customers .section-sub { color: rgba(255,255,255,0.72); }

    .customers-tabs {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 40px;
      justify-content: center;
      padding: 6px;
      background: rgba(255,255,255,0.06);
      border-radius: 50px;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
      border: 1px solid rgba(255,255,255,0.1);
    }

    .ctab {
      padding: 10px 24px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      background: transparent;
      color: rgba(255,255,255,0.65);
      transition: all 0.25s;
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }

    .ctab.active,
    .ctab:hover {
      background: var(--red);
      color: white;
      box-shadow: 0 4px 16px rgba(185,28,28,0.4);
    }

    .customer-panel { display: none; }

    .customer-panel.active {
      display: block;
      animation: panelFadeIn 0.4s ease;
    }

    @keyframes panelFadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Client cards — identical structure to ind-item / ind-item-img */
    .customer-logos {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      margin-top: 0;
    }

    .client-item {
      cursor: default;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .client-item-img {
      background: white;
      border-radius: 12px;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--border);
      transition: all 0.3s;
      height: 118px;
      width: 100%;
      overflow: hidden;
    }

    .client-item:hover .client-item-img {
      border-color: var(--gold);
      box-shadow: 0 6px 24px rgba(201,168,76,0.3);
      transform: translateY(-3px);
    }

    .client-item-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
      padding: 0;
    }

    .client-name {
      display: none;
      font-size: 11px;
      font-weight: 800;
      color: rgba(255,255,255,0.88);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      text-align: center;
      line-height: 1.35;
    }

    .org-badge {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Oswald', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: white;
      text-align: center;
      line-height: 1.1;
    }

    /* ===== CAPABILITIES ===== */
    #capabilities {
      background: white;
    }

    .cap-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .cap-card {
      border-radius: 16px;
      padding: 32px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s;
    }

    .cap-card:nth-child(odd) {
      background: linear-gradient(135deg, var(--red), var(--red-dark));
    }

    .cap-card:nth-child(even) {
      background: white;
      border: 2px solid var(--border);
    }

    .cap-card:nth-child(even):hover {
      border-color: var(--red);
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(185, 28, 28, 0.1);
    }

    .cap-card:nth-child(odd):hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(185, 28, 28, 0.3);
    }

    .cap-icon {
      font-size: 36px;
      margin-bottom: 16px;
      display: block;
    }

    .cap-title {
      font-family: 'Oswald', sans-serif;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .cap-card:nth-child(odd) .cap-title {
      color: white;
    }

    .cap-card:nth-child(even) .cap-title {
      color: var(--charcoal);
    }

    .cap-desc {
      font-size: 15px;
      line-height: 1.7;
    }

    .cap-card:nth-child(odd) .cap-desc {
      color: rgba(255, 255, 255, 0.95);
    }

    .cap-card:nth-child(even) .cap-desc {
      color: #374151;
    }

    .cap-deco {
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
    }

    /* ===== ADVANTAGES ===== */
    #advantages {
      background: linear-gradient(135deg, var(--red-dark), var(--red));
    }

    .adv-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .adv-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 16px;
      padding: 36px 28px;
      text-align: center;
      transition: all 0.3s;
    }

    .adv-card:hover {
      background: rgba(255, 255, 255, 0.18);
      transform: translateY(-6px);
    }

    .adv-icon {
      font-size: 44px;
      margin-bottom: 20px;
      display: block;
    }

    .adv-title {
      font-family: 'Oswald', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .adv-desc {
      font-size: 15.5px;
      color: rgba(255, 255, 255, 0.96);
      line-height: 1.75;
    }

    /* ===== SEO SERVICE AREAS ===== */
    #seo-services {
      display: none !important;
    }

    .seo-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 32px;
      align-items: start;
    }

    .seo-copy {
      font-size: 15.5px;
      color: #374151;
      line-height: 1.8;
    }

    .seo-copy p {
      margin-bottom: 16px;
    }

    .keyword-clusters {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .keyword-card {
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 22px;
      background: var(--off-white);
    }

    .keyword-card h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 18px;
      color: var(--red);
      margin-bottom: 10px;
    }

    .keyword-card ul {
      list-style: none;
    }

    .keyword-card li {
      font-size: 13.5px;
      color: #4B5563;
      line-height: 1.6;
      padding: 6px 0;
      border-bottom: 1px solid rgba(31, 41, 55, 0.08);
    }

    .keyword-card li:last-child {
      border-bottom: none;
    }

    .seo-locations {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }

    .seo-location {
      background: rgba(185, 28, 28, 0.08);
      color: var(--red);
      border: 1px solid rgba(185, 28, 28, 0.16);
      border-radius: 999px;
      padding: 7px 14px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.4px;
    }

    /* ===== FAQ ===== */
    #faq {
      background: var(--off-white);
    }

    .faq-grid {
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 860px;
      margin: 0 auto;
    }

    .faq-item {
      background: white;
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
      transition: box-shadow 0.25s;
    }

    .faq-item.open {
      box-shadow: 0 8px 32px rgba(185,28,28,0.1);
      border-color: rgba(185,28,28,0.25);
    }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 22px 28px;
      cursor: pointer;
      user-select: none;
    }

    .faq-question h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 17px;
      font-weight: 600;
      color: var(--charcoal);
      line-height: 1.35;
      margin: 0;
    }

    .faq-item.open .faq-question h3 {
      color: var(--red);
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      min-width: 28px;
      border-radius: 50%;
      background: rgba(185,28,28,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.25s, transform 0.35s;
    }

    .faq-item.open .faq-icon {
      background: var(--red);
      transform: rotate(45deg);
    }

    .faq-icon svg {
      stroke: var(--red);
      transition: stroke 0.25s;
    }

    .faq-item.open .faq-icon svg {
      stroke: white;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
      padding: 0 28px;
    }

    .faq-item.open .faq-answer {
      max-height: 800px;
      padding: 0 28px 24px;
    }

    .faq-answer p {
      font-size: 15px;
      color: #374151;
      line-height: 1.75;
      margin-bottom: 12px;
    }

    .faq-answer ul {
      margin: 8px 0 12px 4px;
      padding: 0;
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 8px 16px;
    }

    .faq-answer ul li {
      font-size: 14px;
      color: #374151;
      line-height: 1.5;
      padding-left: 18px;
      position: relative;
      flex: 0 0 calc(50% - 8px);
    }

    .faq-answer ul li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--red);
      font-weight: 700;
    }

    @media(max-width:768px) {
      .faq-answer ul li { flex: 0 0 100%; }
    }

    /* ===== TEAM ===== */
    #team {
      background: var(--off-white);
    }

    .team-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .team-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
      transition: all 0.3s;
    }

    .team-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
    }

    .team-header {
      background: linear-gradient(135deg, var(--red-dark), var(--red));
      padding: 40px 32px;
      display: flex;
      gap: 24px;
      align-items: center;
    }

    .team-photo {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      border: 4px solid var(--gold);
      object-fit: cover;
      object-position: center top;
      flex-shrink: 0;
      background: #c0c0c0;
    }

    .team-photo-placeholder {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      border: 4px solid var(--gold);
      background: rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      flex-shrink: 0;
    }

    .team-name {
      font-family: 'Oswald', sans-serif;
      font-size: 24px;
      font-weight: 700;
      color: white;
      margin-bottom: 4px;
    }

    .team-role {
      font-size: 13px;
      color: var(--gold);
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .team-exp {
      background: rgba(255, 255, 255, 0.15);
      color: white;
      font-size: 12px;
      padding: 4px 12px;
      border-radius: 12px;
      display: inline-block;
      font-weight: 600;
    }

    .team-body {
      padding: 28px 32px;
    }

    .team-body p {
      font-size: 14px;
      color: #374151;
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .team-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 8px;
    }

    .tag {
      background: rgba(185, 28, 28, 0.08);
      color: var(--red);
      font-size: 11px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 20px;
      letter-spacing: 0.5px;
    }

    /* ===== CONTACT ===== */
    #contact {
      background: var(--charcoal);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
    }

    .contact-info h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 30px;
      color: white;
      margin-bottom: 8px;
    }

    .contact-info .sub {
      color: rgba(255, 255, 255, 0.88);
      font-size: 15.5px;
      margin-bottom: 32px;
      line-height: 1.7;
    }

    .contact-block {
      margin-bottom: 24px;
    }

    .contact-block-title {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .contact-line {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      margin-bottom: 8px;
    }

    .contact-icon {
      font-size: 16px;
      margin-top: 1px;
      flex-shrink: 0;
    }

    .contact-text {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.82);
      line-height: 1.6;
    }

    .contact-text a {
      color: var(--gold);
      text-decoration: none;
    }

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

    .contact-form-wrap {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 36px;
    }

    .form-title {
      font-family: 'Oswald', sans-serif;
      font-size: 22px;
      color: white;
      margin-bottom: 6px;
    }

    .form-sub {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 24px;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-group label {
      font-size: 12px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.7);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      display: block;
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 8px;
      padding: 12px 16px;
      color: white;
      font-size: 14px;
      font-family: 'Nunito Sans', sans-serif;
      outline: none;
      transition: border-color 0.2s;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--gold);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.3);
    }

    .form-group select option {
      background: #1f2937;
      color: white;
    }

    .form-group textarea {
      height: 100px;
      resize: none;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .submit-btn {
      width: 100%;
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      color: white;
      border: none;
      padding: 15px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Oswald', sans-serif;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: all 0.3s;
      margin-top: 8px;
    }

    .submit-btn:hover {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--charcoal);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
    }

    /* ===== FOOTER ===== */
    footer {
      background: linear-gradient(180deg, #0f1923 0%, #0a1018 100%);
      padding: 48px 0 0;
      border-top: 3px solid var(--red);
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-brand-logo {
      width: 170px;
      height: auto;
      display: block;
      margin-bottom: 14px;
    }

    .footer-logo-area {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }

    .footer-logo-icon {
      height: 48px;
      width: auto;
      object-fit: contain;
      display: block;
    }

    .footer-logo-text {
      height: 48px;
      width: auto;
      object-fit: contain;
      display: block;
    }

    .footer-brand p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.7;
      margin-bottom: 16px;
      max-width: 280px;
    }

    .footer-col h4 {
      font-family: 'Oswald', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .footer-col a {
      display: block;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      padding: 4px 0;
      transition: all 0.2s;
      border-left: 2px solid transparent;
      padding-left: 0;
    }

    .footer-col a:hover {
      color: var(--gold);
      border-left-color: var(--red);
      padding-left: 8px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
      flex-wrap: wrap;
      gap: 12px;
      border-top: 1px solid rgba(185, 28, 28, 0.3);
    }

    .footer-copy {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.3);
    }

    .footer-badges {
      display: flex;
      gap: 8px;
    }

    .badge {
      background: rgba(185, 28, 28, 0.2);
      color: var(--gold);
      font-size: 10px;
      padding: 4px 12px;
      border-radius: 12px;
      font-weight: 700;
      letter-spacing: 0.5px;
      border: 1px solid rgba(185, 28, 28, 0.3);
    }

    /* ===== SCROLL ANIMATIONS ===== */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-in-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-in-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .fade-in-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-in-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    /* stagger delays */
    .delay-1 {
      transition-delay: 0.1s;
    }

    .delay-2 {
      transition-delay: 0.2s;
    }

    .delay-3 {
      transition-delay: 0.3s;
    }

    .delay-4 {
      transition-delay: 0.4s;
    }

    .delay-5 {
      transition-delay: 0.5s;
    }

    /* ===== MOBILE NAV ===== */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 88px;
      left: 0;
      right: 0;
      background: linear-gradient(180deg, var(--red-dark), var(--red));
      z-index: 999;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
      flex-direction: column;
      padding: 16px;
    }

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

    .mobile-nav a {
      padding: 12px 16px;
      font-weight: 700;
      color: white;
      text-decoration: none;
      border-radius: 8px;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .mobile-nav a:hover {
      background: rgba(255, 255, 255, 0.14);
      color: white;
    }

    /* ===== RESPONSIVE ===== */
    @media(max-width:1024px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .ind-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .seo-grid {
        grid-template-columns: 1fr;
      }
    }

    @media(max-width:768px) {
      nav {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      section {
        padding: 52px 0;
      }

      .about-grid,
      .team-grid,
      .contact-grid,
      .adv-grid,
      .cap-grid {
        grid-template-columns: 1fr;
      }

      .stats-inner {
        grid-template-columns: repeat(2, 1fr);
      }

      .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .section-header {
        margin-bottom: 32px;
      }

      .ind-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .customer-logos {
        grid-template-columns: repeat(3, 1fr);
      }

      .customers-tabs {
        width: 100%;
        border-radius: 16px;
        justify-content: flex-start;
      }

      .client-item-img {
        height: 90px;
      }

      .keyword-clusters,
      .faq-grid {
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .established-badge {
        top: -10px;
        right: 0px;
        width: 80px;
        height: 80px;
      }

      .est-year {
        font-size: 20px;
      }

      .slide-content {
        padding: 0 24px;
      }
    }

    @media(max-width:480px) {
      .ind-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }

      .ind-item-img {
        height: 96px;
      }

      .customer-logos {
        grid-template-columns: repeat(2, 1fr);
      }

      .logo-card {
        height: 96px;
      }

      .stats-inner {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* floating contact bar */
    .float-bar {
      position: fixed;
      bottom: 24px;
      right: 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 999;
    }

    .float-btn {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
      text-decoration: none;
      transition: transform 0.2s;
    }

    .float-btn:hover {
      transform: scale(1.12);
    }

    .float-wa {
      background: #25D366;
    }

    .float-call {
      background: var(--red);
    }

    .float-top {
      background: var(--charcoal);
      font-size: 18px;
      color: white;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease, transform 0.3s ease;
      transform: translateY(10px);
    }

    .float-top.visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

.service-card.service-highlight {
      outline: 3px solid var(--gold, #C9A84C);
      outline-offset: 4px;
      box-shadow: 0 0 24px rgba(201, 168, 76, 0.55);
      transition: outline 0.3s, box-shadow 0.3s;
    }
    .ind-item.ind-highlight {
      outline: 3px solid var(--gold, #C9A84C);
      outline-offset: 4px;
      box-shadow: 0 0 28px rgba(201, 168, 76, 0.6);
      transition: outline 0.3s, box-shadow 0.3s;
    }

    /* ===== WHY DADUSHA SECTION ===== */
    .wd-header {
      background: var(--charcoal);
      padding: 64px 0 0;
    }

    .wd-tab-nav {
      display: flex;
      gap: 0;
      flex-wrap: wrap;
      margin-top: 36px;
      border-bottom: 2px solid rgba(255,255,255,0.12);
    }

    .wd-tab {
      background: transparent;
      border: none;
      color: rgba(255,255,255,0.5);
      font-size: 12px;
      font-weight: 700;
      padding: 14px 20px;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      position: relative;
      transition: color 0.25s;
      font-family: 'Nunito Sans', sans-serif;
      white-space: nowrap;
    }

    .wd-tab::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform 0.3s;
    }

    .wd-tab.active { color: var(--gold); }
    .wd-tab.active::after { transform: scaleX(1); }
    .wd-tab:hover { color: white; }

    .wd-panels-wrap { background: white; }

    .wd-panel { display: none; }
    .wd-panel.active { display: block; animation: panelFadeIn 0.4s ease; }

    .wd-panel-label {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 8px;
    }

    .wd-panel-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(22px, 3vw, 34px);
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 14px;
      line-height: 1.2;
    }

    .wd-panel-title span { color: var(--red); }

    .wd-panel-intro {
      font-size: 15.5px;
      color: #374151;
      line-height: 1.8;
      margin-bottom: 36px;
      max-width: 800px;
    }

    .wd-panel-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    /* NOT panel */
    .wd-not-list {
      list-style: none;
      padding: 0;
      margin: 0 0 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .wd-not-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      font-size: 14.5px;
      color: #374151;
      line-height: 1.6;
      padding: 12px 16px;
      background: rgba(239,68,68,0.05);
      border-left: 3px solid rgba(239,68,68,0.35);
      border-radius: 0 8px 8px 0;
    }

    .wd-x {
      color: #ef4444;
      font-weight: 900;
      font-size: 16px;
      min-width: 16px;
    }

    .wd-positive-card {
      background: linear-gradient(135deg, var(--red-dark), var(--red));
      color: white;
      padding: 32px;
      border-radius: 16px;
      height: 100%;
    }

    .wd-positive-badge {
      background: rgba(255,255,255,0.15);
      display: inline-block;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .wd-positive-card > p {
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 18px;
      color: rgba(255,255,255,0.9);
    }

    .wd-check-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .wd-check-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 14px;
      color: rgba(255,255,255,0.88);
      line-height: 1.55;
    }

    .wd-check-list li::before {
      content: '✓';
      color: var(--gold);
      font-weight: 900;
      font-size: 15px;
      min-width: 16px;
    }

    /* Steps panel */
    .wd-steps {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px 40px;
    }

    .wd-step {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      padding: 20px;
      background: var(--off-white);
      border-radius: 12px;
      border-left: 4px solid var(--red);
      transition: all 0.25s;
    }

    .wd-step:hover {
      background: white;
      box-shadow: 0 6px 24px rgba(185,28,28,0.1);
      transform: translateY(-2px);
    }

    .wd-step-num {
      width: 40px;
      height: 40px;
      min-width: 40px;
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Oswald', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: white;
    }

    .wd-step-title {
      font-family: 'Oswald', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 6px;
    }

    .wd-step-desc {
      font-size: 13.5px;
      color: #4B5563;
      line-height: 1.65;
    }

    /* Who panel */
    .wd-icon-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .wd-icon-list li {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      font-size: 15px;
      color: #374151;
      line-height: 1.6;
      padding: 14px 18px;
      background: var(--off-white);
      border-radius: 10px;
      transition: all 0.2s;
    }

    .wd-icon-list li:hover {
      background: rgba(185,28,28,0.06);
    }

    .wd-icon-dot {
      width: 10px;
      height: 10px;
      min-width: 10px;
      background: var(--red);
      border-radius: 50%;
      margin-top: 6px;
    }

    /* Trust panel */
    .wd-trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .wd-trust-card {
      background: var(--off-white);
      border-radius: 14px;
      padding: 24px 20px;
      text-align: center;
      transition: all 0.3s;
      border-bottom: 3px solid transparent;
    }

    .wd-trust-card:hover {
      background: white;
      border-bottom-color: var(--red);
      box-shadow: 0 8px 28px rgba(0,0,0,0.08);
      transform: translateY(-4px);
    }

    .wd-trust-icon {
      width: 56px;
      height: 56px;
      background: rgba(185, 28, 28, 0.08);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 14px;
      transition: background 0.3s;
    }

    .wd-trust-card:hover .wd-trust-icon {
      background: rgba(185, 28, 28, 0.15);
    }

    .wd-trust-card p {
      font-size: 13.5px;
      color: #374151;
      line-height: 1.6;
      margin: 0;
    }

    /* Market presence panel */
    .wd-impact-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .wd-impact-list li {
      display: flex;
      gap: 12px;
      align-items: center;
      font-size: 15px;
      color: var(--charcoal);
      font-weight: 600;
      padding: 14px 18px;
      background: var(--off-white);
      border-radius: 10px;
      transition: all 0.2s;
    }

    .wd-impact-list li:hover {
      background: rgba(185,28,28,0.07);
    }

    .wd-arrow {
      color: var(--red);
      font-weight: 900;
      font-size: 18px;
    }

    /* Compare table */
    .wd-compare-wrap {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    }

    .wd-compare-table {
      width: 100%;
      border-collapse: collapse;
    }

    .wd-compare-table thead th {
      padding: 18px 28px;
      font-family: 'Oswald', sans-serif;
      font-size: 18px;
      font-weight: 700;
      text-align: left;
      width: 50%;
    }

    .wd-compare-table thead th:first-child {
      background: #374151;
      color: rgba(255,255,255,0.7);
    }

    .wd-compare-table thead th:last-child {
      background: var(--red);
      color: white;
    }

    .wd-compare-table tbody td {
      padding: 16px 28px;
      font-size: 14.5px;
      line-height: 1.55;
      border-bottom: 1px solid var(--border);
      vertical-align: middle;
    }

    .wd-compare-table tbody tr:last-child td { border-bottom: none; }

    .wd-compare-table tbody td:first-child {
      background: #f9fafb;
      color: #6b7280;
    }

    .wd-compare-table tbody tr:nth-child(even) td:first-child { background: #f3f4f6; }

    .wd-compare-table tbody td:last-child {
      background: rgba(185,28,28,0.04);
      color: var(--charcoal);
      font-weight: 600;
    }

    .wd-compare-table tbody tr:nth-child(even) td:last-child { background: rgba(185,28,28,0.08); }

    /* FAQ section */
    .wd-faq-wrap {
      background: var(--charcoal);
      padding: 64px 0;
    }

    .wdfaq-grid {
      display: flex;
      flex-direction: column;
      gap: 36px;
      max-width: 900px;
      margin: 0 auto;
    }

    .wdfaq-group { display: flex; flex-direction: column; gap: 10px; }

    .wdfaq-group-label {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .wdfaq-group-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(245,158,11,0.3);
    }

    /* Responsive */
    @media(max-width:1024px) {
      .wd-trust-grid { grid-template-columns: repeat(2,1fr); }
    }

    @media(max-width:768px) {
      .wd-tab { font-size: 10px; padding: 10px 12px; }
      .wd-panel-grid { grid-template-columns: 1fr; gap: 28px; }
      .wd-steps { grid-template-columns: 1fr; }
      .wd-trust-grid { grid-template-columns: 1fr 1fr; }
      .wd-impact-list { grid-template-columns: 1fr; }
      .wd-compare-table thead th, .wd-compare-table tbody td { padding: 12px 16px; font-size: 13px; }
    }

    @media(max-width:480px) {
      .wd-trust-grid { grid-template-columns: 1fr; }
    }

    /* ===== REDESIGNED FAQ ===== */
    .wd-faq-wrap {
      background: linear-gradient(160deg, #111827 0%, #1a2535 60%, #111827 100%);
      padding: 72px 0 80px;
    }

    .wdfaq-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .wdfaq-grid {
      display: flex;
      flex-direction: column;
      gap: 48px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .wdfaq-group { display: flex; flex-direction: column; gap: 16px; }

    /* Group header strip */
    .wdfaq-group-header {
      display: flex;
      align-items: center;
      gap: 16px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(245,158,11,0.25);
      margin-bottom: 4px;
    }

    .wdfaq-cat-pill {
      font-family: 'Oswald', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 3px;
      color: white;
      background: var(--red);
      padding: 6px 18px;
      border-radius: 4px;
      flex-shrink: 0;
    }

    .wdfaq-cat-text {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }

    /* Items grid */
    .wdfaq-items {
      display: grid;
      gap: 14px;
      align-items: start;
    }

    .wdfaq-3col { grid-template-columns: repeat(3, 1fr); }
    .wdfaq-2col { grid-template-columns: repeat(2, 1fr); }

    /* Card */
    .wdfaq-card {
      background: #1f2937;
      border: 1px solid rgba(255,255,255,0.07);
      border-left: 4px solid var(--red);
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
      box-shadow: 0 2px 16px rgba(0,0,0,0.3);
    }

    .wdfaq-card:hover {
      border-left-color: var(--gold);
      box-shadow: 0 8px 32px rgba(0,0,0,0.4);
      transform: translateY(-3px);
    }

    .wdfaq-card.open {
      border-left-color: var(--gold);
      border-color: rgba(245,158,11,0.3);
      box-shadow: 0 12px 40px rgba(0,0,0,0.45);
    }

    /* Question number */
    .wdfaq-qnum {
      display: block;
      font-family: 'Oswald', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2.5px;
      color: var(--red);
      margin-bottom: 8px;
      transition: color 0.25s;
    }

    .wdfaq-card:hover .wdfaq-qnum,
    .wdfaq-card.open .wdfaq-qnum {
      color: var(--gold);
    }

    /* Q inner */
    .wdfaq-q-inner { flex: 1; }

    /* faq-question override for wdfaq-card */
    .wdfaq-card .faq-question {
      flex: 1;
      padding: 22px 20px;
      align-items: flex-start;
      gap: 12px;
      min-height: 90px;
      border-bottom: none;
    }

    .wdfaq-card .faq-question h3 {
      font-family: 'Nunito Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: rgba(255,255,255,0.88);
      line-height: 1.55;
      margin: 0;
      transition: color 0.25s;
    }

    .wdfaq-card:hover .faq-question h3,
    .wdfaq-card.open .faq-question h3 {
      color: white;
    }

    /* Icon override */
    .wdfaq-card .faq-icon {
      width: 28px;
      height: 28px;
      min-width: 28px;
      border-radius: 50%;
      background: rgba(185,28,28,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
      transition: background 0.25s, transform 0.35s;
    }

    .wdfaq-card .faq-icon svg { stroke: var(--red); transition: stroke 0.25s; }

    .wdfaq-card:hover .faq-icon,
    .wdfaq-card.open .faq-icon {
      background: rgba(245,158,11,0.2);
    }

    .wdfaq-card:hover .faq-icon svg,
    .wdfaq-card.open .faq-icon svg { stroke: var(--gold); }

    .wdfaq-card.open .faq-icon,
    .wdfaq-card:hover .faq-icon { transform: rotate(45deg); }

    /* Answer override */
    .wdfaq-card .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 22px;
      background: rgba(0,0,0,0.25);
      border-top: none;
      transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
    }

    /* Open on HOVER (desktop) */
    @media (hover: hover) and (pointer: fine) {
      .wdfaq-card:hover .faq-answer {
        max-height: 500px;
        padding: 18px 22px 22px;
        border-top: 1px solid rgba(255,255,255,0.06);
      }
    }

    /* Open on CLICK (mobile / touch) */
    .wdfaq-card.open .faq-answer {
      max-height: 500px;
      padding: 18px 22px 22px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .wdfaq-card .faq-answer p {
      font-size: 13.5px;
      color: rgba(255,255,255,0.65);
      line-height: 1.8;
      margin-bottom: 10px;
    }

    .wdfaq-card .faq-answer p:last-child { margin-bottom: 0; }

    /* Responsive */
    @media(max-width: 1024px) {
      .wdfaq-3col { grid-template-columns: repeat(2, 1fr); }
    }

    @media(max-width: 768px) {
      .wdfaq-3col,
      .wdfaq-2col { grid-template-columns: 1fr; }
      .wdfaq-card { height: auto; }
    }
