  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'apple-system-ui', 'Segoe UI', sans-serif;
  }

  /* Prevent any element from causing horizontal overflow */
  *, *::before, *::after {
    max-width: 100%;
  }

  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
  }

  body {
    font-family: 'apple-system-ui', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  /* Full-Screen Hero Section */
  .umb-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
    gap: 0;
  }

  .umb-hero-media {
    position: relative;
    width: 60%;
    max-width: 800px;
    height: auto;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
  }

  .umb-hero-media img,
  .umb-hero-media video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    margin: 0;
    padding: 0;
    display: block;
  }

  .umb-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: inherit;
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.1) 50%,
      rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 2;
  }

  .umb-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
    opacity: 0;
    animation: heroFadeIn 1.5s ease-out 0.5s forwards;
    width: 100%;
    margin: 0;
    margin-top: -20px;
    flex-shrink: 0;
  }

  .umb-hero-title {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 700;
    margin: 0;
    padding: 0;
    /* background: linear-gradient(135deg, #ff6b35, #ff9500); */
    background-color: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.0;
    letter-spacing: 2px;
    white-space: nowrap;
    overflow: visible;
    width: 100%;
  }

  .umb-hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  }

  .umb-hero-cta {
  display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(6px, 2vw, 18px) clamp(20px, 2vw, 40px);
    background: linear-gradient(135deg, #ff6b35, #ff9500);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    /* min-width: 200px; */
    position: relative;
    overflow: hidden;
  }

  .umb-hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
  }

  .umb-hero-cta:umber::before {
    left: 100%;
  }

  .umb-hero-cta:umber {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #ff9500, #ffb347);
  }

  /* Scroll Indicator */
  .umb-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0.8;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 3;
  }

  .umb-scroll-indicator:umber {
    opacity: 1;
  }

  .umb-scroll-text {
    font-size: 0.8rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    font-weight: 500;
  }

  .umb-scroll-arrow {
    width: 20px;
    height: 20px;
    animation: bounce 2s infinite;
    color: white;
    fill: white;
  }

  .umb-scroll-arrow path {
    stroke: white;
    fill: none;
  }

  /* Performance Section */
  .umb-performance-section {
    position: relative;
    width: 100%;
    max-width: 100vw;
    min-height: auto;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 60px 0;
    overflow-x: hidden;
  }

  .umb-performance-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 min(40px, 5vw);
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
  }

  .umb-performance-text {
    color: #333;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
    margin-top: -40px;
  }

  .umb-performance-text.animate {
    opacity: 1;
    transform: translateX(0);
  }

  .umb-performance-text .umb-section-title {
    color: black;
    margin-bottom: 1.5rem;
  }

  .umb-performance-text .umb-section-subtitle {
    color: black;
    opacity: 0.8;
    margin-bottom: 2rem;
    font-size: clamp(1.10rem, 4vw, 1.50rem);
  }

  .umb-performance-text .umb-section-description {
    color: black;
    opacity: 0.7;
    margin-bottom: 2rem;
    text-align: justify;
  }

  /* Performance Description Box - Bordered container like the example */
  .umb-performance-description-box {
  
    /* padding: 1.5rem; */
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    /* margin-top: 2rem; */
    max-width: 900px;
  }

  .umb-performance-description-box .umb-section-description {
    margin-bottom: 1rem;
    text-align: left;
  }

  .umb-performance-description-box .umb-section-description:last-child {
    margin-bottom: 0;
  }

  /* Video Title Styling */
  .umb-video-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: left;
  }

  .umb-feature-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }

  .umb-feature-item h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
  }

  .umb-feature-item p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
    color: #666;
    margin: 0;
  }

  .umb-performance-video {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease 0.3s;
  }

  .umb-performance-video.animate {
    opacity: 1;
    transform: translateX(0);
  }

  .umb-video-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 9/16;
    transition: all 0.3s ease;
  }

  .umb-video-container:umber {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
  }

  .umb-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  .umb-fullscreen-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .umb-fullscreen-icon svg {
    stroke: white;
  }

  .umb-video-container:hover .umb-fullscreen-icon {
    opacity: 1;
  }

  .umb-click-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: none;
  }

  .umb-video-container:umber .umb-click-hint {
    opacity: 1;
  }

  .umb-video-placeholder {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 9/16;
  }

  .umb-video-placeholder p {
    margin: 0.5rem 0;
    text-align: center;
  }

  /* Fullscreen Video Styles */
  .umb-video-container:-webkit-full-screen {
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0 !important;
  }

  .umb-video-container:-moz-full-screen {
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0 !important;
  }

  .umb-video-container:fullscreen {
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0 !important;
  }

  .umb-video-container:-webkit-full-screen video {
    border-radius: 0 !important;
  }

  .umb-video-container:-moz-full-screen video {
    border-radius: 0 !important;
  }

  .umb-video-container:fullscreen video {
    border-radius: 0 !important;
  }

  /* Performance Section Version 2 */
  .umb-performance-section-v2 {
    position: relative;
    width: 100%;
    max-width: 100vw;
    min-height: auto;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    overflow-x: hidden;
  }

  .umb-performance-container-v2 {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 min(40px, 5vw);
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
  }

  .umb-performance-text-v2 {
    color: #333;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
  }

  .umb-performance-text-v2.animate {
    opacity: 1;
    transform: translateX(0);
  }

  .umb-performance-text-v2 .umb-section-title {
    color: black;
    margin-bottom: 1.5rem;
  }

  .umb-performance-text-v2 .umb-section-subtitle {
    color: black;
    opacity: 0.8;
    margin-bottom: 2rem;
    font-size: clamp(1.10rem, 4vw, 1.50rem);
  }

  .umb-performance-text-v2 .umb-section-description {
    color: black;
    opacity: 0.7;
    margin-bottom: 2rem;
    text-align: left;
    font-size: clamp(0.95rem, 4vw, 1.26rem);
  }

  .umb-performance-features-v2 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .umb-feature-item-v2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }

  .umb-feature-item-v2 h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
  }

  .umb-feature-item-v2 p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #666;
    line-height: 1.6;
    margin: 0;
  }

  .umb-performance-video-v2 {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease 0.3s;
  }

  .umb-performance-video-v2.animate {
    opacity: 1;
    transform: translateX(0);
  }

  .umb-video-container-v2 {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 9/16;
    transition: all 0.3s ease;
  }

  .umb-video-container-v2:umber {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
  }

  .umb-video-container-v2 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  .umb-video-container-v2 .umb-fullscreen-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .umb-video-container-v2 .umb-fullscreen-icon svg {
    stroke: white;
  }

  .umb-video-container-v2:hover .umb-fullscreen-icon {
    opacity: 1;
  }

  .umb-video-container-v2 .umb-click-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: none;
  }

  .umb-video-container-v2:umber .umb-click-hint {
    opacity: 1;
  }

  /* Fullscreen Video V2 Styles */
  .umb-video-container-v2:-webkit-full-screen {
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0 !important;
  }

  .umb-video-container-v2:-moz-full-screen {
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0 !important;
  }

  .umb-video-container-v2:fullscreen {
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0 !important;
  }

  .umb-video-container-v2:-webkit-full-screen video {
    border-radius: 0 !important;
  }

  .umb-video-container-v2:-moz-full-screen video {
    border-radius: 0 !important;
  }

  .umb-video-container-v2:fullscreen video {
    border-radius: 0 !important;
  }

  /* Tech Specs Section */
  .umb-specs-section {
    position: relative;
    width: 100%;
    max-width: 100vw;
    min-height: auto;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    overflow-x: hidden;
  }

  .umb-specs-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 min(40px, 5vw);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
  }

  .umb-specs-container.animate {
    opacity: 1;
    transform: translateY(0);
  }

  .umb-specs-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 3rem;
    /* background: linear-gradient(135deg, #ff6b35, #ff9500); */
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 1px;
  }

  .umb-specs-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .umb-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
  }

  .umb-spec-row:last-child {
    border-bottom: none;
  }

  .umb-spec-row:umber {
    background: rgba(255, 255, 255, 0.08);
  }



  .umb-spec-label {
    padding-right: 10px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    flex: 1;
  }

  .umb-spec-value {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 400;
    color: white;
    text-align: right;
    letter-spacing: 0.5px;
  }

  @keyframes slideInRow {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Technology Overview Section */
  .umb-tech-section {
    position: relative;
    width: 100%;
    max-width: 100vw;
    min-height: auto;
    background: #000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 50px 0;
    overflow-x: hidden;
  }

  .umb-tech-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 min(40px, 5vw);
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .umb-tech-text {
    text-align: left;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
  }

  .umb-tech-text.animate {
    opacity: 1;
    transform: translateY(0);
  }

  /* Grid Tower Title - Largest font size */
  .umb-tech-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    max-width: 1000px;
    line-height: 1.2;
    text-align: left;
  }

  /* Cost-effective maintenance - Medium font size */
  .umb-tech-subtitle {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 1000px;
    line-height: 1.3;
    text-align: left;
  }

  /* Insulator cleaning without the danger - Smaller than subtitle but larger than description */
  .umb-tech-subtitle-secondary {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 500;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 1000px;
    line-height: 1.4;
    text-align: left;
  }

  /* Description text - Smallest font size */
  .umb-tech-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 1200px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-align: justify;
  }

  .umb-tech-description span {
    color: #ff6b35;
    font-weight: 600;
  }

  .umb-tech-image {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease 0.2s;
  }

  .umb-tech-image.animate {
    opacity: 1;
    transform: translateY(0);
  }

  .umb-image-container {
    position: relative;
    width: 100%;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }

  .umb-image-container:umber {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
  }

  .umb-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
  }

  .umb-image-container .umb-fullscreen-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .umb-image-container .umb-fullscreen-icon svg {
    stroke: white;
  }

  .umb-image-container:hover .umb-fullscreen-icon {
    opacity: 1;
  }

  .umb-image-container .umb-click-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: none;
  }

  .umb-image-container:umber .umb-click-hint {
    opacity: 1;
  }

  /* Fullscreen Image Styles */
  .umb-image-container:-webkit-full-screen {
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0 !important;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .umb-image-container:-moz-full-screen {
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0 !important;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .umb-image-container:fullscreen {
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0 !important;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .umb-image-container:-webkit-full-screen img {
    border-radius: 0 !important;
    max-width: 95vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .umb-image-container:-moz-full-screen img {
    border-radius: 0 !important;
    max-width: 95vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .umb-image-container:fullscreen img {
    border-radius: 0 !important;
    max-width: 95vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .umb-tech-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .umb-tech-label {
    position: absolute;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
  }

  .umb-tech-image.animate .umb-tech-label {
    opacity: 1;
    transform: scale(1);
  }

  .umb-tech-label:nth-child(1) {
    transition-delay: 0.4s;
  }

  .umb-tech-label:nth-child(2) {
    transition-delay: 0.6s;
  }

  .umb-tech-label-text {
    display: inline-block;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    font-weight: 400;
    border: 1px solid rgba(255, 153, 0, 0.5);
    backdrop-filter: blur(10px);
    white-space: nowrap;
  }

  /* Full-Width Sections */
  .umb-section {
    position: relative;
    width: 100%;
    max-width: 100vw;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: rgb(24, 23, 23);
  }

  .umb-section-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .umb-section-media img,
  .umb-section-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .umb-section-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 min(40px, 5vw);
    color: white;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
  }

  .umb-section-content.animate {
    opacity: 1;
    transform: translateY(0);
  }

  .umb-section-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: black;
    max-width: 1000px;
    line-height: 1.2;
    text-align: left;
  }

  .umb-sectionp-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #ff9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: 1px;
    text-align: center;
  }

  .umb-section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
  }

  .umbp-section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    text-align: center;
  }

  .umb-section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    text-align: left;
  }

  /* Dark Overlay for Text Readability */
  .umb-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.1) 50%,
      rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 2;
  }

  /* Light Section Variant */
  .umb-section.light {
    background: #f8f9fa;
  }

  .umb-section.light .umb-section-content {
    color: #333;
  }

  .umb-section.light .umb-section-overlay {
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0.9) 100%
    );
  }

  /* Sticky Navigation Enhancement */
  .navbar {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10000 !important;
    background: rgba(0, 0, 0, 0.8) !important;
  }

  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translate(-50%, -40%);
    }
    to {
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }

  /* Responsive Design */

  /* 4K and Ultra-Wide Displays (2560px+) */
  @media (min-width: 2560px) {
    .umb-hero-content {
      max-width: 1200px;
    }

    /* Single line title for large screens */
    .umb-section-title {
      white-space: nowrap;
    }

    .umb-performance-container {
      max-width: 1800px;
      grid-template-columns: 1fr 500px;
      gap: 100px;
    }

    .umb-video-container {
      height: 750px;
    }

    .umb-performance-container-v2 {
      max-width: 1800px;
      grid-template-columns: 1fr 500px;
      gap: 100px;
    }

    .umb-specs-container {
      max-width: 1400px;
    }

    .umb-tech-content {
      max-width: 1800px;
      gap: 50px;
    }

    .umb-section-content {
      max-width: 1600px;
    }

    .umb-specs-title {
      margin-bottom: 4rem;
    }

    .umb-spec-row {
      padding: 25px 40px;
    }

    .umb-spec-label,
    .umb-spec-value {
      font-size: 1.3rem;
    }
  }

  /* Large Desktop (1440px - 2559px) */
  @media (min-width: 1440px) and (max-width: 2559px) {
    /* Single line title for large desktop */
    .umb-section-title {
      white-space: nowrap;
    }

    .umb-performance-container {
      max-width: 1600px;
      grid-template-columns: 1fr 450px;
      gap: 80px;
    }

    .umb-video-container {
      height: 650px;
    }

    .umb-performance-container-v2 {
      max-width: 1600px;
      grid-template-columns: 1fr 450px;
      gap: 80px;
    }

    .umb-specs-container {
      max-width: 1200px;
    }

    .umb-tech-content {
      max-width: 1600px;
      gap: 40px;
    }

    .umb-spec-row {
      padding: 22px 35px;
    }

    .umb-spec-label,
    .umb-spec-value {
      font-size: 1.2rem;
    }
  }

  /* Standard Desktop (1024px - 1439px) */
  @media (min-width: 1024px) and (max-width: 1439px) {
    /* Single line title for standard desktop */
    .umb-section-title {
      white-space: nowrap;
    }

    /* Original image size for laptops */
    .umb-hero-media {
      width: auto;
      max-width: none;
    }

    .umb-hero-media img {
      width: auto;
      height: auto;
      max-width: none;
      max-height: 60vh;
    }

    .umb-performance-container {
      max-width: 1200px;
      gap: 60px;
    }

    .umb-video-container {
      height: 550px;
    }

    .umb-performance-container-v2 {
      max-width: 1200px;
      gap: 60px;
    }

    .umb-specs-container {
      max-width: 900px;
    }

    .umb-tech-content {
      max-width: 1200px;
    }
  }

  /* Tablet Landscape (768px - 1023px) */
  @media (min-width: 768px) and (max-width: 1023px) {
    .umb-performance-container {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 0 30px;
    }

    .umb-performance-video {
      order: -1;
    }

    .umb-video-container {
      height: 450px;
      max-width: 350px;
      margin: 0 auto;
    }

    .umb-specs-container {
      padding: 0 30px;
    }

    .umb-spec-row {
      padding: 18px 25px;
    }

    .umb-tech-content {
      padding: 0 30px;
      gap: 30px;
    }

    .umb-section-content {
      padding: 0 30px;
    }

    .umb-hero-content {
      padding: 0 25px;
    }

    .umb-performance-text .umb-section-description {
      text-align: left;
    }

    /* Performance Description Box - Tablet Landscape */
    .umb-performance-description-box {
      max-width: 100%;
      /* padding: 1.2rem; */
    }

    .umb-video-title {
      font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    }

    /* Performance Section V2 Tablet Landscape - Keep side by side */
    .umb-performance-container-v2 {
      grid-template-columns: 1fr 300px;
      gap: 40px;
      padding: 0 30px;
    }

    .umb-video-container-v2 {
      height: 450px;
    }
  }

  /* Mobile Tablet Portrait (481px - 767px) */
  @media (min-width: 481px) and (max-width: 767) {
    .umb-section-content {
      padding: 0 25px;
    }

    .umb-scroll-indicator {
      bottom: 20px;
    }

    .umb-hero-content {
      padding: 0 20px;
    }

    .umb-hero-title {
      font-size: clamp(1.4rem, 7vw, 96px) !important;
      letter-spacing: clamp(0.5px, 0.1vw, 0.5px);
    }

    .umb-hero-subtitle {
      font-size: clamp(1rem, 4vw, 1.5rem);
    }

    .umb-tech-content {
      padding: 0 25px;
      gap: 25px;
    }

    .umb-tech-section {
      padding: 40px 0;
    }

    /* Responsive font sizes for tablet */
    .umb-tech-title,
    .umb-section-title {
      font-size: clamp(2.5rem, 7vw, 4rem);
    }

    .umb-tech-subtitle {
      font-size: clamp(1.5rem, 3.5vw, 2rem);
    }

    .umb-tech-subtitle-secondary {
      font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    }

    .umb-tech-description {
      font-size: clamp(0.95rem, 4vw, 1.15rem);
    }

    .umb-tech-label-text {
      font-size: clamp(0.75rem, 3vw, 0.95rem);
      padding: 8px 14px;
    }

    /* Performance Section Tablet */
    .umb-performance-container {
      grid-template-columns: 1fr 200px;
      gap: 25px;
      padding: 0 20px;
      max-width: 100%;
    }

    .umb-video-container {
      height: 350px;
      width: 100%;
      max-width: 200px;
    }

    .umb-performance-text .umb-section-description {
      text-align: left;
    }

    /* Tech Specs Tablet */
    .umb-specs-container {
      padding: 0 25px;
    }

    .umb-specs-title {
      margin-bottom: 2.5rem;
    }

    .umb-spec-row {
      padding: 16px 22px;
      flex-direction: row;
      align-items: center;
      gap: 0;
    }

    .umb-spec-label {
      font-size: clamp(0.85rem, 3vw, 1.05rem);
    }

    .umb-spec-value {
      font-size: clamp(0.85rem, 3vw, 1.05rem);
      text-align: right;
    }

    /* Performance Section V2 Mobile Tablet - Keep side by side */
    .umb-performance-container-v2 {
      grid-template-columns: 1fr 200px;
      gap: 25px;
      padding: 0 20px;
      max-width: 100%;
    }

    .umb-video-container-v2 {
      height: 350px;
      width: 100%;
      max-width: 200px;
    }

    .umb-performance-features-v2 {
      gap: 1.2rem;
    }

    /* Left-justify text content on mobile phones */
    .umb-tech-description,
    .umb-section-description,
    .umbp-section-description {
      text-align: left !important;
    }
  }

  /* Mobile (320px - 480px) */
  @media (max-width: 480px) {
    .umb-section-content {
      padding: 0 10px;
      max-width: 100%;
    }

    .umb-scroll-indicator {
      bottom: 15px;
    }

    .umb-hero-content {
      padding: 0 10px;
      max-width: 95vw;
    }

    .umb-hero-title {
      font-size: clamp(1rem, 7vw, 2rem);
      margin-bottom: clamp(0px, 3vh, 1.5rem);
      letter-spacing: 0px;
      line-height: 1.0;
      word-spacing: -1px;
      white-space: nowrap;
      overflow: visible;
      text-overflow: clip;
      text-align: center !important;
      display: block;
      width: 100%;
    }

    .umb-hero-subtitle {
      font-size: clamp(0.85rem, 5vw, 1.2rem);
      margin-bottom: 1.5rem;
      letter-spacing: 0.2px;
      line-height: 1.3;
    }

    .umb-tech-content {
      padding: 0 10px;
      gap: 20px;
      max-width: 100%;
    }

    .umb-tech-section {
      padding: 60px 0;
    }

    /* Responsive font sizes for mobile */
    .umb-tech-title,
    .umb-section-title {
      font-size: clamp(2rem, 6vw, 3rem);
    }

    .umb-tech-subtitle {
      font-size: clamp(1.3rem, 3vw, 1.6rem);
    }

    .umb-tech-subtitle-secondary {
      font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    }

    .umb-tech-description {
      font-size: clamp(0.9rem, 4.5vw, 1.1rem);
    }

    .umb-tech-label-text {
      font-size: clamp(0.7rem, 3.5vw, 0.9rem);
      padding: 6px 12px;
    }

    /* Performance Section Mobile */
    .umb-performance-section {
      padding: 40px 0;
    }

    .umb-performance-features {
      gap: 1.2rem;
    }

    .umb-performance-text .umb-section-description {
      text-align: left;
      margin-bottom: 1.5rem;
    }

    /* Performance Description Box - Mobile */
    .umb-performance-description-box {
      max-width: 100%;
      /* padding: 1rem; */
      margin-top: 1.5rem;
    }

    .umb-video-title {
      font-size: clamp(1.2rem, 4vw, 1.6rem);
      margin-bottom: 0.8rem;
    }

    /* Tech Specs Mobile */
    .umb-specs-section {
      padding: 40px 0;
    }

    .umb-specs-container {
      padding: 0 10px;
      max-width: 100%;
    }

    .umb-specs-title {
      margin-bottom: 2rem;
    }

    .umb-spec-row {
      padding: 14px 18px;
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
    }

    .umb-spec-label {
      font-size: clamp(0.8rem, 3.5vw, 1rem);
    }

    .umb-spec-value {
      font-size: clamp(0.8rem, 3.5vw, 1rem);
      text-align: left;
    }

    /* General Mobile Optimizations */
    .umb-section {
      min-height: 70vh;
    }

    .umb-section-title {
      margin-bottom: 1rem;
    }

    .umb-section-subtitle {
      margin-bottom: 1.5rem;
    }

    .umb-section-description {
      margin-bottom: 1.5rem;
    }

    /* Performance Section V2 Mobile - Keep side by side */
    .umb-performance-section-v2 {
      padding: 40px 0;
    }

    .umb-performance-container-v2 {
      grid-template-columns: 1fr 150px;
      gap: 15px;
      padding: 0 10px;
      max-width: 100%;
    }

    .umb-video-container-v2 {
      height: 250px;
      width: 100%;
      max-width: 150px;
    }

    .umb-performance-features-v2 {
      gap: 1rem;
    }

    .umb-performance-text-v2 .umb-section-description {
      margin-bottom: 1.5rem;
      text-align: left;
    }

    .umb-feature-item-v2 h4 {
      font-size: clamp(1rem, 4vw, 1.2rem);
    }

    .umb-feature-item-v2 p {
      font-size: clamp(0.85rem, 3.5vw, 0.95rem);
    }

    /* Left-justify text content on mobile phones */
    .umb-tech-description,
    .umb-section-description,
    .umbp-section-description,
    .umb-performance-text {
      text-align: left !important;
    }

    /* Mobile responsive for new sections */
    .umb-performance-container {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 0 20px !important;
    }

    .umb-performance-text {
      order: 1;
    }

    .umb-performance-video {
      order: 2;
      width: 100%;
      display: block !important;
      visibility: visible !important;
    }

    .umb-video-container {
      width: 100%;
      height: auto;
      min-height: 250px;
      display: block !important;
      visibility: visible !important;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      overflow: hidden;
    }

    .umb-video-container video {
      width: 100%;
      height: auto;
      min-height: 250px;
      object-fit: cover;
      display: block !important;
      visibility: visible !important;
    }

    .umb-showcase-section {
      height: 60vh;
    }

    .umb-showcase-content {
      padding: 0 20px;
    }

    .umb-specs-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .umb-spec-category {
      padding: 30px 20px;
    }

    .umb-cta-content {
      padding: 0 20px;
    }
  }

  /* Extra Small Mobile (320px and below) */
  @media (max-width: 320px) {

    .umb-performance-container-v2 {
      grid-template-columns: 1fr 120px;
      gap: 10px;
      padding: 0 8px;
    }

    .umb-video-container-v2 {
      height: 200px;
      max-width: 120px;
    }

    .umb-hero-content {
      padding: 0 8px;
      max-width: 98vw;
    }

    .umb-section-content,
    .umb-tech-content,
    .umb-specs-container {
      padding: 0 8px;
    }

    .umb-hero-title {
      font-size: clamp(0.8rem, 8vw, 1.5rem);
      margin-bottom: clamp(0px, 3vh, 1.5rem);
      letter-spacing: -0.5px;
      line-height: 1.0;
      word-spacing: -2px;
      white-space: nowrap;
      overflow: visible;
      text-overflow: clip;
      text-align: center !important;
      display: block;
      width: 100%;
    }

    .umb-hero-subtitle {
      font-size: clamp(0.8rem, 6vw, 1.1rem);
      margin-bottom: 1.2rem;
      letter-spacing: 0.1px;
      line-height: 1.2;
    }

    /* Left-justify text content on extra small mobile */
    .umb-tech-description,
    .umb-section-description,
    .umbp-section-description,
    .umb-performance-text {
      text-align: left !important;
    }

    /* Mobile responsive for new sections */
    .umb-performance-container {
      grid-template-columns: 1fr;
      gap: 30px;
      padding: 0 15px;
    }

    .umb-performance-text {
      order: 1;
    }

    .umb-performance-video {
      order: 2;
      width: 100%;
      display: block !important;
      visibility: visible !important;
    }

    .umb-video-container {
      width: 100%;
      height: auto;
      min-height: 200px;
      display: block !important;
      visibility: visible !important;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      overflow: hidden;
    }

    .umb-video-container video {
      width: 100%;
      height: auto;
      min-height: 200px;
      object-fit: cover;
      display: block !important;
      visibility: visible !important;
    }

    .umb-specs-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .umb-spec-category {
      padding: 25px 15px;
    }

    .umb-cta-content {
      padding: 0 15px;
    }
  }

  /* Stagger Animation Items */
  .umb-stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    margin-bottom: 2rem;
  }

  .umb-stagger-item.animate {
    opacity: 1;
    transform: translateY(0);
  }

  .umb-section-content.animate .umb-stagger-item {
    opacity: 1;
    transform: translateY(0);
  }

  .umb-stagger-item h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: inherit;
  }

  .umb-stagger-item p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    opacity: 0.8;
    line-height: 1.6;
  }

  /* Loading States */
  body:not(.loaded) .umb-hero-content {
    opacity: 0;
    transform: translateY(50px);
  }

  body.loaded .umb-hero-content {
    opacity: 1;
    
    transition: all 1s ease-out;
  }
  @media (min-width: 320px) and (min-height: 568px) {/*small/medium/large phone portrait*/
    .umb-hero-content {
      transform: translateY(50px);
      transition: all 1s ease-out;
    }
    .umb-hero-media img{
      transform: translateY(-30px);
      object-position: center center;
    }
  }
  @media (min-width: 568px) and (min-height: 320px) {/*small phone landscape*/
    .umb-hero-content {
      transform: translateY(30px);
      transition: all 1s ease-out;
    }
    .umb-hero-media img{
      transform: translateY(-30px);
      object-position: center center;
    }
  }
  @media (min-width: 666px) and (min-height: 375px) {/*medium phone landscape*/
    .umb-hero-content {
      transform: translateY(55px);
      transition: all 1s ease-out;
    }
  }
  @media (min-width: 755px) and (min-height: 425px) {/*large phone landscape*/
    .umb-hero-content {
      transform: translateY(80px);
      transition: all 1s ease-out;
    }
  }
  @media (min-width: 768px) and (min-height: 1024px) {/*tablet portrait*/
    .umb-hero-content {
      transform: translateY(100px);
      transition: all 1s ease-out;
    }
    .umb-hero-media img{
      transform: translateY(-40px);
      object-position: center center;
    }
  }
  @media (min-width: 1024px) and (min-height: 576px) {/*medium laptop and tablet landscape*/
    .umb-hero-content {
      transform: translateY(130px);
      transition: all 1s ease-out;
    }
    .umb-hero-media img{
      transform: translateY(-50px);
      object-position: center center;
    }
  }
  @media (min-width: 810px) and (min-height: 1440px) { /*large laptop landscape*/
    .umb-hero-content {
      transform: translateY(500px);
      transition: all 1s ease-out;
    }
    .umb-hero-media img{
      transform: translateY(-100px);
      object-position: center center;
    }
  }
  @media (min-width: 1440px) and (min-height: 810px) { /*large laptop landscape*/
    .umb-hero-content {
      transform: translateY(200px);
      transition: all 1s ease-out;
    }
    .umb-hero-media img{
      transform: translateY(-60px);
      object-position: center center;
    }
  }
  @media (min-width: 2560px) and (min-height: 1440px) { /*4k landscape*/
    .umb-hero-content {
      transform: translateY(400px);
      transition: all 1s ease-out;
    }
    .umb-hero-media img{
      transform: translateY(-120px);
      object-position: center center;
    }
  }
  @media (min-width: 1440px) and (min-height: 2560px) { /*4k portrait*/
    .umb-hero-content {
      transform: translateY(800px);
      transition: all 1s ease-out;
    }
    .umb-hero-media img{
      transform: translateY(-200px);
      object-position: center center;
    }
  }
  /* Enhanced Parallax Effect */
  .umb-hero-media img,
  .umb-section-media img {
  
    transition: transform 0.3s ease;
  }

  /* Smooth Transitions */
  .umb-section {
    transition: all 0.3s ease;
  }

  /* Enhanced Button Styles */
  .umb-hero-cta {
    position: relative;
    overflow: hidden;
  }

  .umb-hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
  }

  .umb-hero-cta:umber::before {
    left: 100%;
  }

  /* Responsive adjustments for image positioning */
  @media (max-width: 768px) {
    .umb-hero-media {
      width: 80%;
      margin-bottom: 0;
    }

    .umb-hero-content h1 {
      font-size: 2.5rem;
    }

    .umb-hero-content p {
      font-size: 1rem;
    }

    .umb-hero-content .btn {
      padding: 12px 24px;
      font-size: 0.9rem;
    }
  }

  @media (max-width: 480px) {
    .umb-hero-media {
      width: 90%;
      margin-bottom: 0;
    }

    .umb-hero-content h1 {
      font-size: 2rem;
    }
  }

  @media (min-width: 1200px) {
    .umb-hero-media {
      width: 50%;
      margin-bottom: 0;
    }
  }

  /* Text Selection Styling */
  ::selection {
    background: rgba(255, 255, 255, 0.2);
    color: white;
  }

  ::-moz-selection {
    background: rgba(255, 255, 255, 0.2);
    color: white;
  }

  /* Custom Scrollbar - Matching badassheli.php */
  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background: #1a1a1a;
  }

  ::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6b35, #ff9500);
    border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:umber {
    background: linear-gradient(135deg, #ff9500, #ffb347);
  }

  /* Product Showcase Section */
  .umb-showcase-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  .umb-showcase-slide {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .umb-showcase-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }

  .umb-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .umb-showcase-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
  }

  .umb-showcase-content h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ff6b35, #ff9500);

  }

  .umb-showcase-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }

  .umb-showcase-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .umb-showcase-btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
  }

  .umb-btn-primary {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
  }

  .umb-btn-primary:umber {
    background: transparent;
    color: #ff6b35;
    border-color: #ff6b35;
    transform: translateY(-2px);
  }

  .umb-btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
  }

  .umb-btn-secondary:umber {
    background: white;
    color: #333;
    transform: translateY(-2px);
  }

  /* High Voltage Tower Style CTA Buttons */
  .umb-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .umb-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    min-width: 180px;
    position: relative;
    overflow: hidden;
  }

  .umb-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
  }

  .umb-cta-btn:umber::before {
    left: 100%;
  }

  .umb-cta-primary {
    background: linear-gradient(135deg, rgb(255,153,0), #ffb347);
    color: white;
  }

  .umb-cta-primary:umber {
    background: linear-gradient(135deg, #ffb347, #ffc266);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 153, 0, 0.4);
  }

  .umb-cta-secondary {
    background: transparent;
    color: rgb(255,153,0);
    border-color: rgb(255,153,0);
  }

  .umb-cta-secondary:umber {
    background: rgb(255,153,0);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 153, 0, 0.3);
  }

  .umb-showcase-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
  }

  .umb-showcase-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 30px;
    background: white;
    margin: 10px auto 0;
    opacity: 0.6;
  }

  /* Responsive Design for Showcase */
  @media (max-width: 768px) {
    .umb-showcase-content h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
    }

    .umb-showcase-content p {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }

    .umb-showcase-buttons {
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }

    .umb-showcase-btn {
      padding: 12px 30px;
      font-size: 0.9rem;
    }
  }

  @media (max-width: 480px) {
    .umb-showcase-content h2 {
      font-size: 2rem;
    }

    .umb-showcase-content p {
      font-size: 1rem;
    }

    .umb-showcase-content {
      padding: 0 15px;
    }
  }

  /* Innovation Section */
  .umb-innovation-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  }

  .umb-innovation-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .umb-innovation-text {
    color: white;
  }

  .umb-innovation-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
  }

  .umb-innovation-image {
    position: relative;
  }

  /* Performance Section */
  .umb-performance-section {
    padding: 120px 0;
    background: white;
  }

  .umb-performance-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
  }

  .umb-performance-text {
    color: #333;
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .umb-performance-text .umb-section-title {
    margin-bottom: 0.5rem;
  }

  .umb-performance-text .umb-section-description {
    /* margin-top: 2rem; */
    /* padding: 1.5rem; */
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    max-width: 700px;
  }

  .umb-performance-features {
    display: grid;
    gap: 30px;
    margin-top: 40px;
  }

  .umb-feature-item {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
  }

  .umb-feature-item:umber {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-5px);
  }

  .umb-feature-item h4 {
    color: #ff6b35;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .umb-feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
  }

  .umb-performance-video {
    position: relative;
    order: 2;
  }

  .umb-video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
  }

  .umb-video-container:umber {
    transform: scale(1.02);
  }

  .umb-video-container video {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Showcase Section */
  .umb-showcase-section {
    height: 70vh;
    position: relative;
    overflow: hidden;
  }

  .umb-showcase-slide {
    height: 100%;
    position: relative;
  }

  .umb-showcase-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }

  .umb-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .umb-showcase-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 40px;
  }

  .umb-showcase-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #ff9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .umb-showcase-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .umb-showcase-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .umb-showcase-btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .umb-btn-primary {
    background: linear-gradient(135deg, #ff6b35, #ff9500);
    color: white;
  }

  .umb-btn-primary:umber {
    background: linear-gradient(135deg, #ff9500, #ffb347);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  }

  .umb-btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
  }

  .umb-btn-secondary:umber {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
  }

  /* Specs Grid Layout */
  .umb-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    align-items: stretch;
  }

  .umb-spec-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
  }

  .umb-spec-category:umber {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-5px);
  }

  .umb-spec-category h3 {
    /* color: #ff6b35; */
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    flex-shrink: 0;
  }

  .umb-spec-category .umb-spec-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }

  .umb-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
  }

  .umb-spec-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }

  .umb-spec-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 400;
  }

  .umb-spec-value {
    /* color: #ff6b35; */
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: right;
  }

  .umb-specs-button-container {
    text-align: center;
  }

  .umb-specs-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff6b35, #ff9500);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .umb-specs-btn:umber {
    background: linear-gradient(135deg, #ff9500, #ffb347);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  }

  /* CTA Section */
  .umb-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
  }

  .umb-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 149, 0, 0.05) 100%);
  }

  .umb-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
    padding: 0 40px;
    position: relative;
    z-index: 2;
  }

  .umb-cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #ff9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .umb-cta-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
  }

  .umb-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .umb-cta-btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .umb-cta-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
  }

  .umb-cta-secondary:umber {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
  }

  /* Explore More Section */
  .umb-explore-section {
    padding: 120px 0;
    /* background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); */
    background: white;
    position: relative;
  }

  .umb-explore-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255, 153, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }

  .umb-explore-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .umb-explore-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 4rem;
    /* background: white; */
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .umb-explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
  }

  .umb-explore-card {
    background: black;
    border-radius: 25px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 153, 0, 0.1);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
    cursor: pointer;
  }

  .umb-explore-card.animate {
    opacity: 1;
    transform: translateY(0);
  }

  .umb-explore-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(255, 153, 0, 0.2);
    border-color: rgba(255, 153, 0, 0.3);
  }

  .umb-explore-card.animate:hover {
    transform: translateY(-15px);
  }

  .umb-explore-image {
    position: relative;
    height: 250px;
    overflow: hidden;
  }

  .umb-explore-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .umb-explore-card:hover .umb-explore-image img {
    transform: scale(1.1);
  }

  .umb-explore-content {
    padding: 2rem;
  }

  .umb-explore-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
  }

  .umb-explore-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
  }

  .umb-explore-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .umb-explore-link:hover {
    color: #ff6b35;
    transform: translateX(5px);
  }

  /* Desktop and Tablet Layout - Video on Right */
  @media (min-width: 901px) {
    .umb-performance-text {
      order: 1;
    }

    .umb-performance-video {
      order: 2;
    }
  }

  /* Responsive for Specs Grid */
  @media (max-width: 1200px) {
    .umb-specs-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
  }

  @media (max-width: 900px) {
    .umb-specs-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  }

  /* Mobile Performance Video Fix */
  @media (max-width: 900px) {
    .umb-performance-container {
      display: grid !important;
      grid-template-columns: 1fr !important;
      gap: 40px;
    }

    .umb-performance-video {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
      order: 2;
      width: 100%;
      margin-top: 30px;
    }

    .umb-video-container {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
      width: 100%;
      min-height: 250px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      overflow: hidden;
    }

    .umb-video-container video {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
      width: 100%;
      height: auto;
      min-height: 250px;
    }
  }

  /* Mobile Responsive for Explore More */
  @media (max-width: 1200px) {
    .umb-explore-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }
  }

  @media (max-width: 768px) {
    .umb-explore-section {
      padding: 80px 0;
    }

    .umb-explore-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .umb-explore-container {
      padding: 0 20px;
    }
  }

  @media (max-width: 768px) {
    .umb-cta-buttons {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .umb-cta-btn {
      min-width: 250px;
    }
  }

  @media (max-width: 480px) {
    .umb-explore-grid {
      grid-template-columns: repeat(1, 1fr);
      gap: 2rem;
    }
    .umb-explore-section {
      padding: 60px 0;
    }

    .umb-explore-container {
      padding: 0 15px;
    }

    .umb-explore-image {
      height: 200px;
    }

    .umb-explore-content {
      padding: 1.5rem;
    }

    .umb-cta-btn {
      min-width: 200px;
      padding: 12px 25px;
      font-size: 1rem;
    }
  }

  /* Remove gaps between image and title for all laptops and desktops (1024px and above) */
  @media (min-width: 1024px) {
    .umb-hero-media {
      width: 90%;
      max-width: 1200px;
      margin-bottom: -40px;
    }

    .umb-hero-media img {
      width: 100%;
      height: auto;
      max-width: 100%;
      max-height: 80vh;
      object-fit: contain;
      object-position: center center;
    }

    .umb-hero-content {
      margin-top: -40px;
    }
  }

  /* Additional gap removal for larger screens */
  @media (min-width: 1440px) {
    .umb-hero-media {
      margin-bottom: -50px;
    }

    .umb-hero-content {
      margin-top: -50px;
    }

    .umb-hero-media img {
      width: 100%;
      height: auto;
      max-width: 100%;
      max-height: 90vh;
      object-fit: contain;
      object-position: center center;
    }
  }