   .hero-wrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .hero-carousel .owl-stage-outer {
      height: 100%;
    }

    .hero-slide {
      position: relative;
      width: 100%;
      min-height: 758px;
      display: flex;
      align-items: center;
      color: #fff;
      background-size: cover;
      background-position: center center;
    }

    /* Left dark gradient overlay */
    .hero-slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90.00deg, rgba(0, 22.97, 48.13, 1),rgba(14, 77, 146, 0) 100%);
      z-index: 1;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1440px;
      margin: 0 auto;
      padding: 30px 20px 30px;
      display: flex;
      flex-direction: column;
      width: 100%;
    } 

    .hero-eyebrow {
      font-size: 15px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      opacity: 0.8;
    }

    .hero-title {
        font-size: 4.5rem;
        line-height: 83px;
        margin-bottom: 13px;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 48px;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }

    .hero-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 56px 16px 56px;
        border-radius: 999px;
        font-size: 1.125rem;
        font-weight: 500;
        border: 1px solid transparent;
        cursor: pointer;
        text-decoration: none;
        transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .hero-btn-primary {
      background: #A98534;
      color: #fff;
      
    }

    .hero-btn-primary:hover {
      background: #A98534;
      transform: translateY(-1px);
    }

    .hero-btn-ghost {
      border-color: rgba(255, 255, 255, 0.6);
      color: #f9fafb;
      background: transparent;
    }

    .hero-btn-ghost:hover {
      background: #A98534;
      border-color: #A98534;
      transform: translateY(-1px);
      color: #fff;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      margin-top: 94px;
    }

    .hero-badge {
        box-sizing: border-box;
        border: 1px solid rgba(255, 215, 0, 0.32);
        border-radius: 40px;
        backdrop-filter: blur(38.5px);
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 5px 16px 5px 8px;
    }

    .hero-badge__icon {
        flex-shrink: 0;
    }
    .hero-badge__label {
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 17px;
        text-align: left;
    }
    .hero-badge__label span{
        color: #FFD700;
    }

    /* Base element animation states */
    .hero-animate {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    /* Active slide → turn on animations with stagger */
    .hero-carousel .owl-item.active .hero-slide .hero-animate-1 {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.15s;
    }

    .hero-carousel .owl-item.active .hero-slide .hero-animate-2 {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.35s;
    }

    .hero-carousel .owl-item.active .hero-slide .hero-animate-3 {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.55s;
    }

    .hero-carousel .owl-item.active .hero-slide .hero-animate-4 {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.75s;
    }

    .hero-carousel .owl-item.active .hero-slide .hero-animate-5 {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.95s;
    }

    /* Owl controls styling */
    .hero-carousel .owl-dots {
      position: absolute;
      left: 48px;
      bottom: 40px;
    }

    .hero-carousel .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 3px;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.7);
      transition: all 0.2s ease;
    }

    .hero-carousel .owl-dot.active span {
      width: 24px;
      background: #f6b23a;
    }

    .hero-carousel .owl-nav {
      position: absolute;
      right: 32px;
      bottom: 60px;
      display: flex;
      gap: 8px;
    }

    .hero-carousel .owl-nav button {
      width: 38px;
      height: 38px;
      border-radius: 999px;
      background: #A98534 !important;
      color: #e5e7eb !important;
      border: none !important;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 20px !important;
      line-height: 0 !important;
      transition: all .3s ease-in-out;
    }
  .hero-carousel .owl-nav button svg{
    fill: #fff;
    width: 20px;
  }
    .hero-carousel .owl-nav button:hover {
      opacity: .8;
      transform: translateY(-1px);
    }
@media(max-width:1440px){
	.hero-slide {
		min-height: 670px;
	}

}
    /* Responsive */
    @media (max-width: 1024px) {
      .hero-title {
        font-size: 3.8rem;
        }
        .hero-badges {
            gap:10px;
            margin-top: 50px;
        }

      .hero-carousel .owl-dots {
        left: 32px;
      }
      .hero-subtitle {
        margin-bottom: 30px;
        }
        .hero-slide {
            min-height: 600px;
        }
        .hero-btn {
            padding: 12px 30px 12px 30px;
            font-size: 1rem;
        }
    }

    @media (max-width: 767px) {
      .hero-inner {
        min-width: 100%;
      }

      .hero-title {
        font-size: 3.2rem;
        text-align: center;
    }
    .hero-eyebrow {
        text-align: center;
    }
      .hero-subtitle {
        max-width: none;
         text-align: center;
         font-size: 1rem;
      }

      .hero-buttons {
        justify-content: center;
        gap: 5px;
    }
    .hero-btn {
        padding: 10px 15px 10px 15px;
        font-size: 1rem;
    }
      .hero-carousel .owl-nav {
      right: 20px;
      bottom: 26px;
      width: calc(100% - 40px);
      justify-content: center;
    }

      .hero-carousel .owl-dots {
        left: 20px;
        bottom: 26px;
      }

      .hero-badges {
            gap: 5px;
            margin-top: 30px;
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
      .hero-title {
        font-size: 1.9rem;
      }
    }