/* ============================================================
   Unmit Enterprise — Corporate Website Stylesheet
   Color System (extracted from logo):
   Primary:   #303080
   Secondary: #202070
   Accent:    #5050a0
   Light BG:  #eef0f8
   Dark Text: #12162b
   ============================================================ */

   :root {
    --primary: #303080;
    --primary-dark: #202070;
    --primary-light: #5050a0;
    --accent: #6b6bb8;
    --light-bg: #eef0f8;
    --light-bg-alt: #f8f9fc;
    --dark-text: #12162b;
    --muted-text: #5a5f7a;
    --white: #ffffff;
    --border: rgba(48, 48, 128, 0.12);
    --shadow-sm: 0 4px 16px rgba(18, 22, 43, 0.06);
    --shadow-md: 0 8px 32px rgba(18, 22, 43, 0.1);
    --shadow-lg: 0 16px 48px rgba(18, 22, 43, 0.14);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;
    --contact-map-height: 280px;
  }
  
  /* ---- Base ---- */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
  }
  
  body {
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark-text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark-text);
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  ul {
    padding-left: 0;
    list-style: none;
  }
  
  section {
    padding: 80px 0;
    position: relative;
  }
  
  .section-alt {
    background: var(--light-bg);
  }
  
  .section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
  }
  
  .section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 12px;
  }
  
  .section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 16px;
  }
  
  .section-desc {
    color: var(--muted-text);
    font-size: 1.0625rem;
    margin-bottom: 0;
  }
  
  /* ---- Buttons ---- */
  .btn-primary-custom {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  
  .btn-primary-custom:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(48, 48, 128, 0.35);
  }
  
  .btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 12px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  
  .btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
  }
  
  .btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
  }
  
  /* ---- Header / Navigation ---- */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
  }
  
  .site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
  }
  
  .navbar-custom {
    height: var(--header-height);
    padding: 0;
  }
  
  .navbar-brand img {
    height: 62px;
    width: auto;
    transition: transform var(--transition);
  }
  
  .navbar-brand:hover img {
    transform: scale(1.02);
  }
  
  .navbar-nav .nav-link {
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 8px 16px !important;
    position: relative;
  }
  
  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform var(--transition);
  }
  
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: var(--primary);
  }
  
  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
  }
  
  .nav-cta {
    margin-left: 8px;
  }
  
  .navbar-toggler {
    border: none;
    padding: 8px;
    box-shadow: none !important;
  }
  
  .navbar-toggler-icon-custom {
    width: 28px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .navbar-toggler-icon-custom span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition);
  }
  
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(2) {
    opacity: 0;
  }
  
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  /* ---- Hero Section ---- */
  .hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 45%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
  }
  
  .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../assets/hero-pattern.svg") repeat;
    opacity: 0.5;
  }
  
  .hero-section::after {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  
  .hero-title {
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
  }
  
  .hero-title span {
    background: linear-gradient(90deg, #ffffff 0%, #c8c8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-text {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 2vw, 1.125rem);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.8;
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
  }
  
  .hero-focus-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .hero-focus-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
  }
  
  .hero-visual {
    position: relative;
    z-index: 2;
  }
  
  .hero-graphic {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(8px);
  }
  
  .hero-graphic-inner {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-lg);
  }
  
  .hero-stat-float {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .hero-stat-float.stat-1 {
    top: -16px;
    right: -16px;
  }
  
  .hero-stat-float.stat-2 {
    bottom: -16px;
    left: -16px;
  }
  
  .hero-stat-float .stat-icon {
    width: 42px;
    height: 42px;
    background: var(--light-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.125rem;
  }
  
  .hero-stat-float .stat-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
  }
  
  .hero-stat-float .stat-label {
    font-size: 0.75rem;
    color: var(--muted-text);
    font-weight: 600;
  }
  
  /* ---- About Section ---- */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  
  .about-image-wrap {
    position: relative;
  }
  
  .about-image-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  
  .about-image-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../assets/hero-pattern.svg") repeat;
    opacity: 0.3;
  }
  
  .about-image-box img {
    position: relative;
    z-index: 1;
    max-height: 120px;
    width: auto;
    filter: brightness(0) invert(1);
  }
  
  .about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    box-shadow: var(--shadow-md);
    text-align: center;
  }
  
  .about-experience-badge .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
  }
  
  .about-experience-badge .text {
    font-size: 0.8125rem;
    color: var(--muted-text);
    font-weight: 600;
  }
  
  .about-content p {
    color: var(--muted-text);
    margin-bottom: 20px;
  }
  
  .vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
  }
  
  .vm-card {
    background: var(--light-bg);
    border-radius: var(--radius-md);
    padding: 24px;
    border-left: 4px solid var(--primary);
    transition: transform var(--transition), box-shadow var(--transition);
  }
  
  .vm-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
  }
  
  .vm-card h4 {
    font-size: 1.0625rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .vm-card p {
    font-size: 0.9375rem;
    margin-bottom: 0;
  }
  
  /* ---- Counter Section ---- */
  .counter-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 64px 0;
    position: relative;
  }
  
  .counter-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../assets/hero-pattern.svg") repeat;
    opacity: 0.3;
  }
  
  .counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
  }
  
  .counter-item {
    text-align: center;
    color: var(--white);
  }
  
  .counter-item .counter-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.375rem;
  }
  
  .counter-item .counter-number {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
  }
  
  .counter-item .counter-number .suffix {
    font-size: 0.6em;
  }
  
  .counter-item .counter-label {
    font-size: 0.9375rem;
    opacity: 0.85;
    font-weight: 500;
  }
  
  /* ---- Products Section ---- */
  #products .row.g-4 > [class*="col-"] {
    display: flex;
  }

  .product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    height: 100%;
    width: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
  }
  
  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }
  
  .product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: #f8f9fc;
    border-bottom: 1px solid var(--border);
  }

  .product-card-image[data-product-modal] {
    cursor: pointer;
  }
  
  .product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
  }

  .product-card-carousel .product-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .product-card-carousel .product-carousel-track img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.5s ease;
  }

  .product-card-carousel .product-carousel-track img.active {
    opacity: 1;
    z-index: 1;
  }

  .product-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    opacity: 1;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  }

  .product-carousel-btn i {
    font-size: 0.875rem;
    pointer-events: none;
  }

  .product-carousel-btn:hover,
  .product-carousel-btn:focus-visible {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    outline: none;
  }

  .product-carousel-prev {
    left: 10px;
  }

  .product-carousel-next {
    right: 10px;
  }

  .product-card-carousel-single .product-carousel-btn {
    display: none;
  }

  .product-card:hover .product-card-image:not(.product-card-carousel) img,
  .product-card:hover .product-card-carousel .product-carousel-track img.active {
    transform: scale(1.03);
  }
  
  .product-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 220px;
  }
  
  .product-card-body h3 {
    font-size: 1.1875rem;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .product-features {
    margin-bottom: 16px;
    flex: 1;
  }
  
  .product-features li {
    font-size: 0.8125rem;
    color: var(--muted-text);
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
  }
  
  .product-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-size: 0.6875rem;
  }
  
  .product-card-body .btn-outline-dark {
    align-self: flex-start;
    margin-top: auto;
  }
  
  /* ---- Our Customers ---- */
  .customers-section {
    padding: 0 0 64px;
  }

  #about + .customers-section {
    padding-top: 0;
  }

  #about:has(+ .customers-section) {
    padding-bottom: 48px;
  }

  .our-customers {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }

  .our-customers-title {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 28px;
    color: var(--primary);
  }

  .customers-slider {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  }

  .customers-slider-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: customersScroll 28s linear infinite;
  }

  .customers-slider:hover .customers-slider-track {
    animation-play-state: paused;
  }

  @keyframes customersScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  .customer-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 72px;
    padding: 8px 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
  }

  .customer-logo:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

  .customer-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  
  /* ---- Industries Section ---- */
  .industry-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--transition);
    height: 100%;
  }
  
  .industry-card:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
  }
  
  .industry-card:hover .industry-icon,
  .industry-card:hover h4,
  .industry-card:hover p {
    color: var(--white);
  }
  
  .industry-icon {
    width: 72px;
    height: 72px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    color: var(--primary);
    transition: all var(--transition);
  }
  
  .industry-card:hover .industry-icon {
    background: rgba(255, 255, 255, 0.15);
  }
  
  .industry-card h4 {
    font-size: 1.0625rem;
    margin-bottom: 8px;
    transition: color var(--transition);
  }
  
  .industry-card p {
    font-size: 0.875rem;
    color: var(--muted-text);
    margin-bottom: 0;
    transition: color var(--transition);
  }
  
  /* ---- Why Choose Us ---- */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .why-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
  }
  
  .why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: height var(--transition);
  }
  
  .why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
  }
  
  .why-card:hover::before {
    height: 100%;
  }
  
  .why-card .why-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.375rem;
    margin-bottom: 20px;
  }
  
  .why-card h4 {
    font-size: 1.0625rem;
    margin-bottom: 10px;
  }
  
  .why-card p {
    font-size: 0.9375rem;
    color: var(--muted-text);
    margin-bottom: 0;
  }
  
  /* ---- CTA Section ---- */
  .cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
  }
  
  .cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../assets/hero-pattern.svg") repeat;
    opacity: 0.25;
  }
  
  .cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
  }
  
  .cta-content h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 16px;
  }
  
  .cta-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.0625rem;
    margin-bottom: 32px;
  }
  
  .cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  
  /* ---- Careers Section ---- */
  .careers-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  
  .careers-content p {
    color: var(--muted-text);
    margin-bottom: 24px;
  }
  
  .openings-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .opening-item {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    transition: all var(--transition);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
  }
  
  .opening-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
  }

  .opening-item:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
  }
  
  .opening-item .opening-icon {
    width: 44px;
    height: 44px;
    background: var(--light-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
  }

  .opening-info {
    flex: 1;
    min-width: 0;
  }
  
  .opening-item h5 {
    font-size: 0.9375rem;
    margin-bottom: 4px;
  }

  .opening-experience {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--muted-text);
    font-weight: 500;
  }

  .opening-experience i {
    color: var(--primary-light);
    font-size: 0.75rem;
  }

  .opening-arrow {
    color: var(--primary-light);
    font-size: 0.875rem;
    flex-shrink: 0;
    transition: transform var(--transition);
  }

  .opening-item:hover .opening-arrow {
    transform: translateX(4px);
    color: var(--primary);
  }

  .career-modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }

  .career-modal-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--muted-text);
    font-weight: 500;
  }

  .career-modal-meta i {
    color: var(--primary);
  }

  .modal-body h6 {
    font-size: 1rem;
    color: var(--primary);
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .modal-body h6:first-of-type {
    margin-top: 0;
  }
  
  .careers-apply-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
    text-align: center;
  }
  
  .careers-apply-box h3 {
    color: var(--white);
    margin-bottom: 16px;
  }
  
  .careers-apply-box p {
    opacity: 0.9;
    margin-bottom: 24px;
  }
  
  .careers-apply-box .apply-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    transition: transform var(--transition);
  }
  
  .careers-apply-box .apply-email:hover {
    transform: translateY(-2px);
    color: var(--primary);
  }
  
  /* ---- Contact Section ---- */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: stretch;
  }
  
  .contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }
  
  .contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all var(--transition);
  }
  
  .contact-info-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
  }
  
  .contact-info-card .contact-icon {
    width: 48px;
    height: 48px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.125rem;
    flex-shrink: 0;
  }
  
  .contact-info-card h5 {
    font-size: 0.9375rem;
    margin-bottom: 4px;
  }
  
  .contact-info-card p,
  .contact-info-card a {
    font-size: 0.9375rem;
    color: var(--muted-text);
    margin-bottom: 0;
  }
  
  .contact-info-card a:hover {
    color: var(--primary);
  }
  
  .contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .contact-form-wrap h3 {
    font-size: 1.375rem;
    margin-bottom: 8px;
  }
  
  .contact-form-wrap > p {
    color: var(--muted-text);
    font-size: 0.9375rem;
    margin-bottom: 28px;
  }

  .contact-form-wrap form {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .contact-form-wrap .contact-message-col {
    display: flex;
    flex-direction: column;
  }
  
  .form-control-custom {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.9375rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
  }
  
  .form-control-custom:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(48, 48, 128, 0.12);
  }
  
  .form-control-custom::placeholder {
    color: #a0a4b8;
  }
  
  textarea.form-control-custom {
    flex: 1;
    min-height: var(--contact-map-height);
    resize: vertical;
  }
  
  .contact-map {
    margin-top: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    height: var(--contact-map-height);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }

  .contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
  }

  .contact-map-link {
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 0.9375rem;
  }

  .contact-map-link a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition);
  }

  .contact-map-link a:hover {
    color: var(--primary-light);
  }
  
  /* ---- Footer ---- */
  .site-footer {
    background: var(--dark-text);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 64px;
  }
  
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-brand img {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
  }
  
  .footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .footer-social {
    display: flex;
    gap: 10px;
  }
  
  .footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition);
  }
  
  .footer-social a:hover {
    background: var(--primary);
    transform: translateY(-2px);
  }
  
  .footer-col h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition), padding-left var(--transition);
  }
  
  .footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
  }
  
  .footer-bottom {
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 0.875rem;
  }
  
  .footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
  }
  
  .footer-bottom-links a:hover {
    color: var(--white);
  }
  
  /* ---- Back to Top ---- */
  .back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
    z-index: 1040;
    box-shadow: var(--shadow-md);
  }
  
  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-4px);
  }
  
  /* ---- Scroll Animations ---- */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  
  .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
  }
  
  .animate-on-scroll.delay-1 { transition-delay: 0.1s; }
  .animate-on-scroll.delay-2 { transition-delay: 0.2s; }
  .animate-on-scroll.delay-3 { transition-delay: 0.3s; }
  .animate-on-scroll.delay-4 { transition-delay: 0.4s; }
  
  /* ---- Responsive ---- */
  @media (max-width: 1199.98px) {
    .footer-top {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 991.98px) {
    section {
      padding: 64px 0;
    }
  
    .about-grid,
    .careers-wrap,
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 36px;
    }
  
    .why-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .counter-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .vision-mission-grid {
      grid-template-columns: 1fr;
    }
  
    .hero-visual {
      margin-top: 48px;
    }
  
    .hero-stat-float.stat-1 {
      right: 0;
    }
  
    .hero-stat-float.stat-2 {
      left: 0;
    }
  
    .navbar-collapse {
      background: var(--white);
      padding: 16px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-md);
      margin-top: 8px;
    }
  
    .nav-cta {
      margin-left: 0;
      margin-top: 8px;
    }
  }
  
  @media (max-width: 767.98px) {
    .customers-slider-track {
      gap: 32px;
      animation-duration: 22s;
    }

    .customer-logo {
      width: 140px;
      height: 64px;
    }

    :root {
      --header-height: 70px;
    }
  
    section {
      padding: 56px 0;
    }
  
    .section-header {
      margin-bottom: 40px;
    }
  
    .why-grid {
      grid-template-columns: 1fr;
    }
  
    .counter-grid {
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
  
    .footer-top {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-actions {
      flex-direction: column;
    }
  
    .hero-actions .btn-primary-custom,
    .hero-actions .btn-outline-custom {
      width: 100%;
      justify-content: center;
    }
  
    .contact-form-wrap {
      padding: 24px;
    }
  
    .about-experience-badge {
      right: 16px;
      bottom: -16px;
    }
  }
  
  @media (max-width: 575.98px) {
    .counter-grid {
      grid-template-columns: 1fr;
    }
  
    .hero-focus-list {
      flex-direction: column;
    }
  
    .hero-focus-item {
      text-align: center;
    }
  }
  
  /* ---- Bootstrap Overrides ---- */
  .text-brand {
    color: var(--primary) !important;
  }
  
  .modal-header {
    border-bottom-color: var(--border);
  }
  
  .modal-content {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
  }
  
  .modal-body ul {
    padding-left: 0;
  }
  
  .modal-body ul li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: var(--muted-text);
  }
  
  .modal-body ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-size: 0.75rem;
  }

  /* ---- Modal Product Carousel ---- */
  .modal-product-carousel {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #f8f9fc;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
  }

  .modal-product-carousel .modal-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .modal-product-carousel .modal-carousel-track img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
  }

  .modal-product-carousel .modal-carousel-track img.active {
    opacity: 1;
    z-index: 1;
  }

  .modal-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  }

  .modal-carousel-btn:hover,
  .modal-carousel-btn:focus-visible {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    outline: none;
  }

  .modal-carousel-prev {
    left: 12px;
  }

  .modal-carousel-next {
    right: 12px;
  }

  .modal-product-carousel-single .modal-carousel-btn {
    display: none;
  }
  