* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Montserrat", sans-serif;
        }

        :root {
            --primary-color: #159b94;
            --primary-dark: #0f766f;
            --primary-soft: #e8f7f5;
            --success-color: #159b94;
            --text-primary: #111827;
            --text-secondary: #5f6b76;
            --bg-light: #f4f8f8;
            --bg-white: #ffffff;
            --border-color: #d9e6e4;
            --gray-900: #0f1720;
            --gray-800: #16212b;
            --gray-700: #32414e;
            --shadow-soft: 0 18px 45px rgba(15, 23, 32, 0.08);
            --bg: #0f1720;
            --text: #f4f8f8;
            --accent: #159b94;
            --muted: rgba(244, 248, 248, 0.58);
            --surface: #16212b;
            --radius: 28px;
            --transition: 0.6s ease;
        }

        body {
             
            line-height: 1.6;
            color: var(--text-primary);
            background: linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
        }

        html {
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
.nav-bar{
    position: sticky;
    top: 0;
    z-index: 1000;
}
        /* Trust Bar */
        .trust-bar {
            background: #eff8f7;
            border-bottom: 1px solid var(--border-color);
            padding: 10px 0;
            font-size: 12px;
        }

        .trust-bar-content {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
        }

        .trust-bar-left {
            display: flex;
            align-items: center;
            
            flex-wrap: nowrap;
            gap: 18px;
            color: var(--text-secondary);
            width: 100%;
            text-align: center;
        }

        .trust-socials {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .trust-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            position: relative;
            line-height: 1.3;
            font-weight: 500;
            white-space: nowrap;
        }

        .trust-item-wide {
            white-space: nowrap;
        }

        .icon-inline {
            width: 16px;
            height: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            flex-shrink: 0;
        }

        .icon-inline svg,
        .industry-icon svg,
        .why-card-icon svg {
            width: 100%;
            height: 100%;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s, background-color 0.3s, border-color 0.3s, transform 0.3s;
        }

        .social-link svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        .social-link-compact {
            width: 30px;
            height: 30px;
            justify-content: center;
            border-radius: 50%;
            background: rgba(21, 155, 148, 0.1);
            color: var(--primary-color);
            border: 1px solid rgba(21, 155, 148, 0.12);
        }

        .social-link-compact:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-1px);
        }

        /* Navigation */
        nav {
            position: sticky;
            top: 0;
            background-color: #ffffff;
            border-bottom: 1px solid rgba(21, 155, 148, 0.12);
            z-index: 1000;
            box-shadow: 0 14px 40px rgba(15, 23, 32, 0.06);
            backdrop-filter: none;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 0;
            gap: 24px;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            background: linear-gradient(135deg, var(--primary-color), #0d6f69);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .logo img{
                height: 68px;
                width: auto;
                display: block;
        }

        .nav-links {
            display: flex;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 700;
            font-size: 13px;
            transition: color 0.3s;
            position: relative;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .nav-buttons {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .btn {
            padding: 12px 20px;
            border: none;
            border-radius: 999px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            font-size: 14px;
            letter-spacing: 0.01em;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), #0f7f79);
            color: white;
            box-shadow: 0 12px 28px rgba(21, 155, 148, 0.28);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-1px);
        }

        .btn-success {
            background-color: rgba(21, 155, 148, 0.1);
            color: var(--primary-color);
            border: 1px solid rgba(21, 155, 148, 0.18);
        }

        .btn-success:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .btn-light {
            background: white;
            color: var(--primary-color);
            border: 1px solid rgba(255, 255, 255, 0.75);
            box-shadow: 0 12px 28px rgba(255, 255, 255, 0.18);
        }

        .btn-light:hover {
            background: #f6fffd;
            color: var(--primary-dark);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary-color);
            border: 1px solid rgba(21, 155, 148, 0.22);
        }

        .btn-outline:hover {
            background: var(--primary-soft);
            color: var(--primary-dark);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            background-color: var(--bg-white);
            border-top: 1px solid var(--border-color);
            padding: 20px;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu a {
            display: block;
            padding: 10px 0;
            text-decoration: none;
            color: var(--text-primary);
            border-bottom: 1px solid var(--border-color);
        }

        .mobile-menu .btn {
            width: 100%;
            justify-content: center;
            margin-top: 10px;
        }

        /* Hero Section */
        .hero {
            background-image: url('assets/auditorium/heroimg.jpg');
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            color: white;
            padding: 126px 0 88px;
            min-height: calc(100vh - 120px);
            position: relative;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            background:
                linear-gradient(90deg, rgba(9, 20, 28, 0.9) 0%, rgba(9, 20, 28, 0.62) 50%, rgba(9, 20, 28, 0.28) 100%);
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
            position: relative;
            z-index: 1;
        }

        .hero-copy {
            max-width: 640px;
            padding-top: 18px;
        }

        .hero-kicker {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.16);
            color: #d9f5f2;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .hero h1 {
            font-size: 52px;
            font-weight: bold;
            margin-bottom: 16px;
            line-height: 1.1;
            color: white;
        }

        .hero-subtitle {
            font-size: 19px;
            color: rgba(255, 255, 255, 0.82);
            max-width: 560px;
            margin-bottom: 24px;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 0;
        }

        .hero-panel {
            display: grid;
            gap: 20px;
            justify-self: end;
            width: min(100%, 410px);
            margin-top: 10px;
        }

        .hero-panel-card,
        .hero-stat {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 24px;
            backdrop-filter: blur(12px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
        }

        .hero-panel-card {
            padding: 28px;
        }

        .hero-panel-label {
            color: #9ee1dc;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .hero-panel-card h3 {
            font-size: 26px;
            line-height: 1.2;
            margin-bottom: 12px;
        }

        .hero-panel-card p {
            color: rgba(255, 255, 255, 0.78);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .hero-stat {
            padding: 18px 16px;
            text-align: left;
        }

        .hero-stat strong {
            display: block;
            font-size: 24px;
            color: white;
            margin-bottom: 6px;
        }

        .hero-stat span {
            color: rgba(255, 255, 255, 0.72);
            font-size: 13px;
        }


        .lead-capture {
            background: linear-gradient(180deg, #ffffff 0%, var(--primary-soft) 100%);
            padding: 72px 0;
        }

        .lead-capture-shell {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
            gap: 28px;
            align-items: stretch;
            max-width: 1140px;
            margin: 0 auto;
            padding: 30px;
            border-radius: 32px;
            background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(232,247,245,0.92));
            border: 1px solid rgba(21, 155, 148, 0.12);
            box-shadow: 0 28px 60px rgba(15, 23, 32, 0.09);
        }

        .lead-copy {
            padding: 8px 6px;
        }

        .lead-badge {
            display: inline-flex;
            align-items: center;
            padding: 7px 12px;
            border-radius: 999px;
            background: rgba(21, 155, 148, 0.12);
            color: var(--primary-color);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .lead-capture h2 {
            font-size: 38px;
            text-align: left;
            margin-bottom: 14px;
            font-weight: bold;
            color: var(--gray-900);
        }

        .lead-capture-subtitle {
            text-align: left;
            color: var(--text-secondary);
            margin-bottom: 26px;
            font-size: 17px;
            line-height: 1.8;
        }

        .lead-points {
            display: grid;
            gap: 14px;
        }

        .lead-point {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-primary);
            font-weight: 600;
        }

        .lead-point::before {
            content: "";
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary-color);
            box-shadow: 0 0 0 6px rgba(21, 155, 148, 0.12);
            flex-shrink: 0;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-bottom: 0;
            max-width: none;
            margin-left: 0;
            margin-right: 0;
            padding: 28px;
            background: rgba(255, 255, 255, 0.96);
            border: 1px solid rgba(21, 155, 148, 0.12);
            border-radius: 24px;
            box-shadow: var(--shadow-soft);
            align-content: start;
        }

        .form-grid input {
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 14px;
            transition: border-color 0.3s;
        }

        .form-grid input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(21, 155, 148, 0.12);
        }

        .form-submit {
            grid-column: 1 / -1;
            padding: 14px 20px;
            background: linear-gradient(135deg, var(--primary-color), #0f7f79);
            color: white;
            border: none;
            border-radius: 999px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .form-submit:hover {
            background-color: var(--primary-dark);
        }

        /* Products Section */
        .products {
            padding: 100px 0;
            background:
                radial-gradient(circle at top right, rgba(21, 155, 148, 0.08), transparent 28%),
                linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
        }

        .product-icon img{
            width: 100%;
            height: 240px;
            object-fit: cover;
            border-radius: 22px;
        }

        .section-title {
            font-size: 42px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 15px;
            color: var(--gray-900);
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-secondary);
            margin-bottom: 48px;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 28px;
        }

        .product-card {
            background: linear-gradient(180deg, #ffffff 0%, #f9fcfc 100%);
            border: 1px solid rgba(21, 155, 148, 0.1);
            border-radius: 28px;
            padding: 16px;
            text-align: left;
            transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
            cursor: pointer;
            box-shadow: 0 22px 48px rgba(15, 23, 32, 0.08);
            overflow: hidden;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 26px 60px rgba(15, 23, 32, 0.14);
            border-color: rgba(21, 155, 148, 0.24);
        }

        .product-icon {
            margin-bottom: 20px;
            position: relative;
        }

        .product-icon::after {
            content: "";
            position: absolute;
            inset: auto 18px -8px 18px;
            height: 24px;
            border-radius: 999px;
            background: rgba(21, 155, 148, 0.12);
            filter: blur(18px);
            z-index: 0;
        }

        .product-card h3 {
            font-size: 22px;
            margin-bottom: 12px;
            font-weight: bold;
            color: var(--gray-900);
        }

        .product-card p {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 18px;
            line-height: 1.7;
        }

        .product-card a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 800;
            transition: color 0.3s, transform 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .product-card a:hover {
            color: var(--primary-dark);
            transform: translateX(3px);
        }

        .product-card a::after {
            content: ">";
            font-size: 13px;
        }

        /* Manufacturer Section */
        .manufacturer {
            background: linear-gradient(135deg, #0f1720, #16242d);
            color: white;
            padding: 84px 0;
        }

        .manufacturer-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .manufacturer-image {
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 100px;
        }
.manufacturer-image img{
        width: 100%;
        height: 350px;
        object-fit: cover;
        border-radius: 28px;
        box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}
        .manufacturer h2 {
            font-size: 32px;
            margin-bottom: 25px;
            font-weight: bold;
            color: white;
        }

        .manufacturer-features {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 25px;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
        }

        .feature::before {
            content: "";
            background: radial-gradient(circle at center, var(--primary-color) 0%, var(--primary-color) 40%, rgba(21, 155, 148, 0.2) 42%, rgba(21, 155, 148, 0.2) 100%);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-weight: bold;
        }

        /* Industries Section */
        .industries {
            padding: 96px 0;
            background:
                linear-gradient(180deg, #f7fbfb 0%, #eef7f6 100%);
        }

        .industries-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px;
        }

        .industry-card {
            background:
                linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,248,248,0.98) 100%);
            border-radius: 24px;
            padding: 30px 24px;
            text-align: center;
            transition: box-shadow 0.3s, transform 0.3s;
            border: 1px solid rgba(21, 155, 148, 0.12);
            box-shadow: 0 20px 45px rgba(15, 23, 32, 0.08);
            width: calc(25% - 18px);
            min-width: 220px;
            max-width: 260px;
        }

        .industry-card:hover {
            box-shadow: 0 24px 52px rgba(15, 23, 32, 0.12);
            transform: translateY(-6px);
        }

        .industry-icon {
            width: 64px;
            height: 64px;
            border-radius: 18px;
            background: linear-gradient(180deg, #ffffff 0%, var(--primary-soft) 100%);
            border: 1px solid rgba(21, 155, 148, 0.12);
            color: var(--primary-color);
            margin: 0 auto 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
            box-shadow: inset 0 -8px 18px rgba(21, 155, 148, 0.08);
        }

        .industry-card p {
            font-weight: 800;
            color: var(--text-primary);
            font-size: 16px;
            letter-spacing: 0.01em;
        }

        /* Why Choose Us */
        .why-us {
            background: linear-gradient(135deg, #10232a, #0f1720);
            color: white;
            padding: 84px 0;
        }

        .why-us .section-title {
            color: white;
            margin-bottom: 40px;
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .why-card {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 30px;
            text-align: center;
            transition: background-color 0.3s, transform 0.3s, border-color 0.3s;
        }

        .why-card:hover {
            background-color: rgba(21, 155, 148, 0.14);
            border-color: rgba(21, 155, 148, 0.24);
            transform: translateY(-6px);
        }

        .why-card-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            margin: 0 auto 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(21, 155, 148, 0.12);
            color: #9ee1dc;
            padding: 14px;
        }

        .why-card p {
            font-size: 18px;
            font-weight: bold;
        }

        /* Portfolio Section */
    .slider-body {
      background: var(--bg);
      color: var(--text);
      font-family: "Montserrat", sans-serif;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }
 
    .slider-wrapper {
      width: 100%;
      max-width: 1280px;
     
    }
 
    .slider-label {
      font-family: "Space Grotesk", sans-serif;
      font-size: clamp(1.6rem, 4vw, 2.6rem);
      letter-spacing: -0.02em;
      margin-bottom: 1.8rem;
      color: var(--text);
      text-align: center;
    }
 
    .slider-label span {
      color: var(--primary-color);
    }
 
    /* Track */
    .slider-track-container {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--surface);
      aspect-ratio: auto;
      box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    }
 
    .slider-track {
      display: flex;
      height: 100%;
      transition: transform var(--transition);
      will-change: transform;
      gap: 24px;
      padding: 24px;
    }
 
    .slide {
      min-width: calc(33.333% - 16px);
      height: 520px;
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      cursor: pointer;
      outline: none;
    }

    .slide:focus-visible {
      box-shadow: 0 0 0 3px rgba(21, 155, 148, 0.45);
    }
 
    .slide-bg {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.8s ease;
    }
 
    .slide:hover .slide-bg {
      transform: scale(1.03);
    }
 
    .slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
    }
 
    .slide-content {
      position: absolute;
      bottom: 0;
      left: 0;
      padding: 2.2rem 2.5rem;
      z-index: 2;
      pointer-events: none;
    }
 
    .slide-tag {
      display: inline-block;
      background: rgba(255, 255, 255, 0.14);
      color: #ffffff;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.45rem 0.85rem;
      border-radius: 100px;
      margin-bottom: 0.75rem;
      border: 1px solid rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(10px);
    }
 
    .slide-title {
      font-size: clamp(1.2rem, 3vw, 1.9rem);
      line-height: 1.25;
      margin-bottom: 0.4rem;
      color: var(--primary-color);
    }
 
    .slide-sub {
    color: rgba(240, 236, 228, 0.65);
    font-weight: 300;
    font-size: 15px;
    }
 
    /* Arrows */
    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      color: var(--text);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: background 0.25s, border-color 0.25s, transform 0.25s;
      backdrop-filter: blur(6px);
    }
 
    .arrow:hover {
      background: var(--accent);
      border-color: var(--accent);
      color: #111;
      transform: translateY(-50%) scale(1.08);
    }
 
    .arrow svg { width: 18px; height: 18px; pointer-events: none; }
    .arrow-prev { left: 1rem; }
    .arrow-next { right: 1rem; }
 
    /* Counter */
    .slider-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 1.4rem;
    }
 
    .dots {
      display: flex;
      gap: 0.5rem;
      align-items: center;
    }
 
    .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--muted);
      cursor: pointer;
      transition: background 0.3s, width 0.3s, border-radius 0.3s;
    }
 
    .dot.active {
      background: var(--accent);
      width: 22px;
      border-radius: 4px;
    }
 
    .counter {
      font-size: 0.8rem;
      color: var(--muted);
      letter-spacing: 0.08em;
    }
 
    .counter strong { color: var(--text); font-weight: 500; }
 
    /* Progress bar */
    .progress-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      background: var(--accent);
      width: 0%;
      transition: width 0.1s linear;
      border-radius: 0 2px 2px 0;
      z-index: 5;
    }
 
    /* Autoplay toggle */
    .autoplay-btn {
      background: none;
      border: 1px solid var(--muted);
      color: var(--muted);
      padding: 0.4rem 1rem;
      border-radius: 100px;
      font-size: 0.75rem;
      cursor: pointer;
      letter-spacing: 0.08em;
      transition: color 0.2s, border-color 0.2s;
      font-family: "Montserrat", sans-serif;
    }
 
    .autoplay-btn:hover, .autoplay-btn.active {
      color: var(--accent);
      border-color: var(--accent);
    }

        /* Testimonials Section */
        .testimonials {
            padding: 92px 0;
            background:
                radial-gradient(circle at top left, rgba(21, 155, 148, 0.12), transparent 30%),
                linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
        }

        .testimonial-shell {
            background: white;
            border: 1px solid rgba(21, 155, 148, 0.12);
            border-radius: 32px;
            padding: 32px;
            box-shadow: var(--shadow-soft);
        }

        .testimonial-head {
            display: flex;
            justify-content: space-between;
            align-items: end;
            gap: 20px;
            margin-bottom: 28px;
        }

        .testimonial-summary {
            max-width: 620px;
        }

        .testimonial-badge {
            display: inline-flex;
            align-items: center;
            padding: 7px 12px;
            border-radius: 999px;
            background: var(--primary-soft);
            color: var(--primary-color);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .testimonial-summary h3 {
            font-size: 32px;
            line-height: 1.2;
            color: var(--gray-900);
        }

        .testimonial-nav {
            display: flex;
            gap: 12px;
        }

        .testimonial-arrow {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1px solid rgba(21, 155, 148, 0.18);
            background: white;
            color: var(--primary-color);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-arrow:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }

        .testimonial-arrow svg {
            width: 18px;
            height: 18px;
        }

        .testimonials-viewport {
            overflow: hidden;
        }

        .testimonials-track {
            display: flex;
            gap: 24px;
            transition: transform 0.45s ease;
            will-change: transform;
        }

        .testimonial-card {
            min-width: calc(50% - 12px);
            background: linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
            border-radius: 24px;
            padding: 30px;
            border: 1px solid rgba(21, 155, 148, 0.12);
            box-shadow: 0 18px 40px rgba(15, 23, 32, 0.08);
        }

        .stars {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 999px;
            background: var(--primary-soft);
            margin-bottom: 15px;
        }

        .star-icon {
            color: #fbbf24;
            font-size: 14px;
            line-height: 1;
        }

        .testimonial-text {
            color: var(--text-secondary);
            margin-bottom: 24px;
            font-style: italic;
            font-size: 16px;
            line-height: 1.75;
            min-height: 168px;
        }

        .testimonial-meta {
            padding-top: 18px;
            border-top: 1px solid rgba(21, 155, 148, 0.12);
        }

        .testimonial-author {
            font-weight: bold;
            color: var(--text-primary);
        }

        .testimonial-company {
            font-size: 13px;
            color: var(--text-secondary);
        }

        /* FAQ Section */
        .faq {
            padding: 84px 0;
            background-color: var(--bg-light);
        }

        .faq .section-title {
            margin-bottom: 40px;
            color: var(--gray-900);
        }

        .faq-container {
            max-width: 920px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: var(--bg-white);
            border: 1px solid rgba(21, 155, 148, 0.12);
            border-radius: 22px;
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .faq-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 45px rgba(15, 23, 32, 0.09);
        }

        .faq-question {
            padding: 24px 26px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            background-color: var(--bg-white);
            border: none;
            width: 100%;
            text-align: left;
            color: var(--gray-900);
            transition: background-color 0.3s;
            font-size: 17px;
        }

        .faq-question:hover {
            background-color: var(--bg-light);
        }

        .faq-toggle {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-soft);
            color: var(--primary-color);
            transition: transform 0.3s, background-color 0.3s;
            flex-shrink: 0;
        }

        .faq-toggle svg {
            width: 16px;
            height: 16px;
        }

        .faq-icon-line {
            transition: opacity 0.25s ease, transform 0.25s ease;
            transform-origin: center;
        }

        .faq-toggle.active {
            background: var(--primary-color);
            color: white;
        }

        .faq-toggle.active .faq-icon-vertical {
            opacity: 0;
            transform: scaleY(0);
        }

        .faq-answer {
            display: none;
            padding: 0 26px 24px 26px;
            color: var(--text-secondary);
            border-top: 1px solid rgba(21, 155, 148, 0.12);
            line-height: 1.75;
        }

        .faq-answer.active {
            display: block;
        }

        /* Final CTA Section */
        .final-cta {
            background: linear-gradient(135deg, #10232a, #0f1720);
            color: white;
            padding: 84px 0;
            text-align: center;
        }

        .final-cta h2 {
            font-size: 36px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .final-cta-text {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.74);
            margin-bottom: 30px;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Footer */
        footer {
            background-color: #0c141b;
            color: #d1d5db;
            padding: 40px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            color: white;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 8px;
            font-size: 14px;
        }

        .footer-section a {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-socials {
            display: grid;
            gap: 12px;
        }

        .footer-socials .social-link {
            color: #d1d5db;
        }

        .footer-socials .social-link svg {
            width: 20px;
            height: 20px;
            color: var(--primary-color);
        }

        .footer-socials .social-link:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid var(--gray-700);
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
        }

        .footer-bottom a {
            color: #d1d5db;
            text-decoration: none;
            margin: 0 10px;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal.active {
            display: flex;
        }

        .media-modal {
            position: fixed;
            inset: 0;
            background: rgba(7, 13, 18, 0.82);
            backdrop-filter: blur(12px);
            z-index: 2100;
            padding: 24px;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .media-modal.active {
            display: flex;
        }

        .media-modal-dialog {
            width: min(1100px, 100%);
            max-height: 92vh;
            background: rgba(15, 23, 32, 0.96);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 28px 90px rgba(0, 0, 0, 0.4);
            position: relative;
        }

        .media-modal-close {
            position: absolute;
            top: 18px;
            right: 18px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.16);
            background: rgba(255, 255, 255, 0.08);
            color: white;
            font-size: 28px;
            line-height: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 2;
        }

        .media-modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 52px;
            height: 52px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.16);
            background: rgba(255, 255, 255, 0.08);
            color: white;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 2;
            backdrop-filter: blur(10px);
            transition: all 0.25s ease;
        }

        .media-modal-nav:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
        }

        .media-modal-nav svg {
            width: 20px;
            height: 20px;
        }

        .media-modal-prev {
            left: 18px;
        }

        .media-modal-next {
            right: 18px;
        }

        .media-modal-stage {
            background: #0b1218;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: min(72vh, 760px);
        }

        .media-modal-stage img,
        .media-modal-stage video,
        .media-modal-stage iframe {
            width: 100%;
            max-height: 72vh;
            border: 0;
            display: block;
            object-fit: contain;
            background: #0b1218;
        }

        .media-modal-stage iframe {
            aspect-ratio: 16 / 9;
        }

        .media-modal-caption {
            padding: 22px 26px 24px;
            color: white;
            background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.04) 100%);
        }

        .media-modal-caption h3 {
            font-size: 24px;
            margin-bottom: 6px;
        }

        .media-modal-caption p {
            color: rgba(255, 255, 255, 0.72);
        }

        .modal-content {
            background:
                linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,248,248,0.98) 100%);
            border-radius: 28px;
            padding: 34px;
            max-width: 540px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            border: 1px solid rgba(21, 155, 148, 0.12);
            box-shadow: 0 28px 80px rgba(15, 23, 32, 0.22);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 24px;
        }

        .modal-heading {
            max-width: 400px;
        }

        .modal-badge {
            display: inline-flex;
            align-items: center;
            padding: 7px 12px;
            border-radius: 999px;
            background: rgba(21, 155, 148, 0.12);
            color: var(--primary-color);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .modal-header h2 {
            font-size: 30px;
            font-weight: bold;
            line-height: 1.15;
            margin-bottom: 0;
            color: var(--gray-900);
        }

        .modal-close {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 1px solid rgba(21, 155, 148, 0.12);
            background: white;
            font-size: 26px;
            cursor: pointer;
            color: var(--text-primary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .modal-close:hover {
            color: var(--primary-color);
        }

        .modal-form {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }

        .modal-form input {
            min-height: 54px;
            padding: 16px 18px;
            border: 1px solid rgba(21, 155, 148, 0.16);
            border-radius: 16px;
            font-size: 14px;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.98);
            color: var(--gray-900);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
            transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
        }

        .modal-form input::placeholder {
            color: #7a8793;
        }

        .modal-form input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(21, 155, 148, 0.12);
            transform: translateY(-1px);
        }

        .modal-submit {
            grid-column: 1 / -1;
            padding: 14px 20px;
            background: linear-gradient(135deg, var(--primary-color), #0f7f79);
            color: white;
            border: none;
            border-radius: 999px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
            box-shadow: 0 16px 34px rgba(21, 155, 148, 0.24);
        }

        .modal-submit:hover {
            background-color: var(--primary-dark);
        }

        .form-submit.is-loading,
        .modal-submit.is-loading {
            position: relative;
            pointer-events: none;
            opacity: 0.92;
            color: transparent;
        }

        .form-submit.is-loading::before,
        .modal-submit.is-loading::before {
            content: "";
            width: 18px;
            height: 18px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.35);
            border-top-color: #ffffff;
            animation: button-spin 0.8s linear infinite;
            position: absolute;
            top: 50%;
            left: calc(50% - 42px);
            transform: translate(-50%, -50%);
        }

        .form-submit.is-loading::after,
        .modal-submit.is-loading::after {
            content: "Sending...";
            position: absolute;
            top: 50%;
            left: calc(50% + 16px);
            transform: translate(-50%, -50%);
            color: #ffffff;
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 0.2px;
        }

        .page-submit-loader {
            position: fixed;
            inset: 0;
            background: rgba(255, 255, 255, 0.58);
            backdrop-filter: blur(3px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.2s ease, visibility 0.2s ease;
        }

        body.is-submitting-form .page-submit-loader {
            opacity: 1;
            visibility: visible;
        }

        .page-submit-loader .loader-pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            border-radius: 999px;
            background: #ffffff;
            border: 1px solid rgba(15, 76, 201, 0.14);
            color: #18407d;
            font-size: 14px;
            font-weight: 700;
            box-shadow: 0 10px 28px rgba(21, 48, 89, 0.14);
        }

        .page-submit-loader .loader-dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 2px solid rgba(24, 64, 125, 0.24);
            border-top-color: #18407d;
            animation: button-spin 0.8s linear infinite;
        }

        @keyframes button-spin {
            to {
                transform: rotate(360deg);
            }
        }

        .modal-note {
            font-size: 13px;
            color: var(--text-secondary);
            text-align: center;
            margin-top: 16px;
        }

        /* Sticky WhatsApp Button */
        .whatsapp-button {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background: linear-gradient(135deg, var(--primary-color), #0f7f79);
            color: white;
            width: 64px;
            height: 64px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 18px 36px rgba(21, 155, 148, 0.3);
            text-decoration: none;
            transition: all 0.3s;
            z-index: 30;
        }

        .whatsapp-button:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
        }

        .whatsapp-icon {
            width: 28px;
            height: 28px;
            display: inline-flex;
        }

        .whatsapp-icon svg {
            width: 100%;
            height: 100%;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .trust-bar {
                display: none;
            }

            .trust-bar-content {
                flex-direction: column;
                gap: 15px;
            }

            .trust-bar-left {
                flex-direction: column;
                align-items: center;
                width: 100%;
                gap: 10px;
            }

            .trust-socials {
                width: 100%;
                justify-content: center;
            }

            .trust-item-wide {
                white-space: normal;
            }

            .nav-links {
                display: none;
            }

            .menu-toggle {
                display: flex;
            }

            .nav-buttons {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero-panel {
                width: 100%;
                justify-self: stretch;
                margin-top: 0;
            }

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

            .hero-buttons {
                flex-direction: column;
            }

            .hero-buttons .btn {
                width: 100%;
                justify-content: center;
            }

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

            .lead-capture-shell {
                grid-template-columns: 1fr;
                padding: 22px;
            }

            .lead-capture h2 {
                font-size: 30px;
            }

            .manufacturer-content,
            .layout-content {
                grid-template-columns: 1fr;
            }

            .manufacturer-image,
            .layout-image {
                display: none;
            }

            .section-title {
                font-size: 28px;
            }

            .section-subtitle {
                margin-bottom: 30px;
                font-size: 14px;
                line-height: 1.6;
                padding: 0 4px;
            }

            .products {
                padding: 68px 0;
            }

            .products-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }

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

            .industry-card {
                width: 100%;
                min-width: 0;
                max-width: none;
            }

            .product-card {
                padding: 14px;
                border-radius: 22px;
            }

            .product-icon {
                margin-bottom: 14px;
            }

            .product-icon img {
                height: 190px;
                border-radius: 16px;
            }

            .product-card h3 {
                font-size: 20px;
                line-height: 1.3;
            }

            .product-card p {
                font-size: 14px;
                line-height: 1.6;
                margin-bottom: 14px;
            }


            .testimonial-shell {
                padding: 22px;
            }

            .testimonial-head {
                flex-direction: column;
                align-items: flex-start;
            }

            .testimonial-summary h3 {
                font-size: 24px;
            }

            .testimonials-track {
                gap: 0;
            }

            .testimonial-card {
                min-width: 100%;
            }

            .testimonial-text {
                min-height: auto;
            }

            .slider-track-container {
                aspect-ratio: 16/9;
                overflow: hidden;
            }

            .slider-track {
                gap: 0;
                padding: 0;
            }

            .slide {
                min-width: 100%;
                height: 100%;
                border-radius: 0;
            }

            .why-us-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .cta-buttons .btn {
                width: 100%;
            }

            .final-cta h2 {
                font-size: 28px;
            }

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

        @media (min-width: 769px) and (max-width: 1180px) {
            .products-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .industry-card {
                width: calc(50% - 12px);
                max-width: none;
            }
        }

        @media (max-width: 480px) {
            .trust-item {
                font-size: 12px;
            }

            .logo {
                font-size: 18px;
            }

            .hero h1 {
                font-size: 24px;
            }

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

            .modal-content {
                padding: 20px;
            }

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

            .product-card,
            .why-card {
                padding: 20px;
            }

            .media-modal {
                padding: 14px;
            }

            .media-modal-dialog {
                border-radius: 20px;
            }

            .media-modal-nav {
                width: 44px;
                height: 44px;
            }

            .media-modal-prev {
                left: 12px;
            }

            .media-modal-next {
                right: 12px;
            }

            .media-modal-stage {
                min-height: auto;
            }

            .media-modal-caption h3 {
                font-size: 20px;
            }
        }
