:root {
    --gold: #AE7F3A;
    --gold-light: #B1833E;
    --navy: #043165;
    --navy-dark: #074173;
}

body {
    font-family: 'Poppins', sans-serif;
}
.company-name {
    font-family: "Times New Roman", Times, serif !important;
}

.text-gold { color: #AE7F3A; }
.text-navy { color: #043165; }
.bg-gold { background-color: #AE7F3A; }
.bg-navy { background-color: #043165; }
.border-gold { border-color: #AE7F3A; }

.gold-gradient {
    background: linear-gradient(90deg, #AE7F3A, #d4a453);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navbar */
.navbar-glass {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(4,49,101,0.1);
}

/* Bottom nav */
.bottom-nav {
    background: #043165;
    box-shadow: 0 -4px 20px rgba(4,49,101,0.3);
}

/* Trusted badge */
.trusted-badge {
    background: linear-gradient(90deg, #AE7F3A, #B1833E);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
}

/* Search bar */
.search-bar {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #AE7F3A, #B1833E);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    padding: 10px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 14px;
}
.btn-primary:hover { 
    transform: translateY(-1px); 
    box-shadow: 0 8px 24px rgba(174,127,58,0.4); 
}

.btn-outline {
    border: 1.5px solid rgba(255,255,255,0.6);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    padding: 10px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 14px;
    backdrop-filter: blur(4px);
}
.btn-outline:hover { 
    background: rgba(255,255,255,0.15); 
}

.btn-navy {
    background: #043165;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    padding: 11px 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 14px;
}
.btn-navy:hover { 
    background: #074173; transform: translateY(-1px); 
}

.btn-gold-outline {
    border: 2px solid #AE7F3A;
    color: #AE7F3A;
    font-weight: 600;
    border-radius: 6px;
    padding: 11px 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 14px;
}
.btn-gold-outline:hover { 
    background: #AE7F3A; color: white; 
}

/* Feature icon boxes */
.feature-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}

/* Product category cards */
.cat-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    background: white;
    transition: all 0.3s;
    cursor: pointer;
}
.cat-card:hover { 
    box-shadow: 0 8px 32px rgba(4,49,101,0.12); 
    transform: translateY(-2px); 
    border-color: #AE7F3A; 
}

/* Process steps */
.step-card{
    position:relative;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    border-radius:18px;
    padding:18px 15px;
    text-align:center;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease,
        background .4s ease;
    cursor:pointer;
    overflow:hidden;
}

.step-card:hover{
    transform: translateY(-10px) scale(1.03);
    border-color:rgba(174,127,58,.5);
    background:rgba(255,255,255,.12);
    box-shadow:
        0 20px 40px rgba(0,0,0,.18),
        0 8px 20px rgba(174,127,58,.15);
}

.step-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(
        90deg,
        #AE7F3A,
        #d4af37
    );
    transform:scaleX(0);
    transition:.4s ease;
}

.step-card:hover::before{
    transform:scaleX(1);
}
.step-card p{
    color: rgba(255,255,255,.75) !important;
}
.step-card .w-10{
    transition:
        transform .4s ease,
        background .4s ease;
}

.step-card:hover .w-10{
    transform:scale(1.15) rotate(8deg);
    background:rgba(174,127,58,.25);
}

/* Cert logos */
/* Certification Cards */
.cert-card{
    background:#fff;
    border-radius:20px;
    padding:28px 20px;
    text-align:center;
    border:1px solid #eef2f7;

    box-shadow:
        0 10px 30px rgba(4,49,101,.06),
        0 2px 8px rgba(4,49,101,.04);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
    cursor:pointer;
    overflow:hidden;
    position:relative;
}

/* Gold top border animation */
.cert-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        #AE7F3A,
        #d4af37
    );

    transform:scaleX(0);
    transform-origin:left;
    transition:.4s ease;
}

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

/* Hover effect */
.cert-card:hover{
    transform:translateY(-10px);
    border-color:rgba(174,127,58,.25);
    box-shadow:
        0 25px 50px rgba(4,49,101,.12),
        0 10px 25px rgba(174,127,58,.10);
}

/* Icon animation */
.cert-card .w-14{
    transition:all .35s ease;
}

.cert-card:hover .w-14{
    transform:scale(1.1) rotate(6deg);
}

/* Hero carousel dots */
.dot { 
    width: 8px; 
    height: 8px; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.4); 
}
.dot.active { 
    background: #AE7F3A; 
    width: 24px; border-radius: 4px; 
}

/* About image */
.about-img {
    border-radius: 16px;
    min-height: 380px;
}

/* Q1 badge */
.q1-badge {
    background: #AE7F3A;
    color: white;
    border-radius: 10px;
    padding: 14px 20px;
    text-align: center;
    position: absolute;
    bottom: -20px;
    right: -16px;
}

/* Section eyebrow */
.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #AE7F3A;
}

/* Fulfillment section bg */
.fulfillment-bg{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at top left,
            rgba(174,127,58,.18),
            transparent 35%),
        radial-gradient(circle at bottom right,
            rgba(255,255,255,.08),
            transparent 35%),
        linear-gradient(
            135deg,
            #03254f 0%,
            #043165 50%,
            #074173 100%
        );
}

.fulfillment-bg::before{
    content:'';
    position:absolute;
    inset:0;
    /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); */
    pointer-events:none;
}

/* Footer */
.footer-bg { background: #03254f; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #AE7F3A; border-radius: 3px; }

/* Mobile menu overlay */
#mobile-menu-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(4,49,101,0.97);
    z-index: 999;
    flex-direction: column;
}
#mobile-menu-overlay.open { display: flex; }

/* Active bottom nav */
.bottom-nav-item.active .bottom-nav-icon { color: #AE7F3A; }
.bottom-nav-item.active .bottom-nav-label { color: #AE7F3A; }

/* Responsive pb for bottom nav */
/* @media (max-width: 1023px) {
    body { padding-bottom: 72px; }
} */

/* Mobile Products Submenu */

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: all .4s ease;
}

.mobile-submenu.open {
    max-height: 300px;
    padding-bottom: 15px;
}

.mobile-submenu-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 20px;
    margin: 6px 0;

    color: rgba(255,255,255,.75);
    text-decoration: none;

    border-radius: 12px;

    transition: all .3s ease;
}

.mobile-submenu-item i {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(174,127,58,.15);

    color: #AE7F3A;
    border-radius: 10px;
}

.mobile-submenu-item:hover {
    background: rgba(255,255,255,.08);
    color: #fff;
}

/* Arrow in process */
.process-arrow {
    color: rgba(255,255,255,0.4);
    font-size: 20px;
    display: flex;
    align-items: center;
}
.hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transform:scale(1.08);
    transition:
        opacity 1.2s ease,
        transform 6s ease;
    z-index:1;
}

.hero-slide.active{
    opacity:1;
    transform:scale(1);
    z-index:2;
}

.hero-slide::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(4,49,101,.85) 0%,
        rgba(7,65,115,.75) 50%,
        rgba(0,0,0,.55) 100%
    );
}

.hero-bg{
    position:relative;
    overflow:hidden;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: .3s;
}

.dot.active {
    background: #d4af37;
    width: 28px;
}
/* ==========================
   Product Dropdown Menu
========================== */

.product-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 180%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow:
        0 20px 40px rgba(0,0,0,.12),
        0 5px 10px rgba(0,0,0,.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all .35s ease;
    z-index: 999;
}

.product-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    color: #374151;
    text-decoration: none;
    transition: all .3s ease;
}

.dropdown-item i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(174,127,58,.1);
    color: #AE7F3A;
    font-size: 15px;
    transition: .3s;
}

.dropdown-item:hover {
    background: rgba(4,49,101,.05);
    transform: translateX(5px);
}

.dropdown-item:hover i {
    background: #AE7F3A;
    color: #fff;
}

.dropdown-item span {
    font-size: 14px;
    font-weight: 600;
}

/* =================================
   WHY CHOOSE US ANIMATION
================================= */

.choose-card {
    transform: translateY(80px);
    transition:
        opacity .8s ease,
        transform .8s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}

.choose-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effect */
.choose-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(4,49,101,.12),
        0 8px 20px rgba(174,127,58,.12);
    border-color: rgba(174,127,58,.4);
}

/* Icon animation */

.choose-card .feature-icon {
    transition: all .4s ease;
}

.choose-card:hover .feature-icon {
    transform: rotate(8deg) scale(1.1);
}

/* Gradient top border */

.choose-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #043165,
        #AE7F3A
    );

    transform: scaleX(0);
    transition: .4s ease;
    border-radius: 20px 20px 0 0;
}

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

/* Different hover colors */

.choose-card:nth-child(1):hover {
    background: linear-gradient(
        180deg,
        rgba(59,130,246,.05),
        white
    );
}

.choose-card:nth-child(2):hover {
    background: linear-gradient(
        180deg,
        rgba(34,197,94,.05),
        white
    );
}

.choose-card:nth-child(3):hover {
    background: linear-gradient(
        180deg,
        rgba(245,158,11,.05),
        white
    );
}

.choose-card:nth-child(4):hover {
    background: linear-gradient(
        180deg,
        rgba(107,114,128,.05),
        white
    );
}

.animate-delay-1 { transition-delay: .1s; }
.animate-delay-2 { transition-delay: .25s; }
.animate-delay-3 { transition-delay: .4s; }
.animate-delay-4 { transition-delay: .55s; }

/* Contact us page */
 .gmb-gradient-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #155e75 50%, #047857 100%);
    margin-top: 90px;
}
.gmb-custom-yellow {
    color: #AE7F3A;
}
.gmb-custom-blue {
    color: #043165;
}
.gmb-custom-ship-blue {
    color: #074173;
}
.gmb-btn-yellow {
    background-color: #AE7F3A;
    color: white;
    transition: all 0.3s ease;
}
.gmb-btn-yellow:hover {
    background-color: #B1833E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(174, 127, 58, 0.3);
}
.gmb-btn-blue {
    background-color: #074173;
    color: white;
    transition: all 0.3s ease;
}
.gmb-btn-blue:hover {
    background-color: #053b5c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(7, 65, 115, 0.3);
}
.gmb-contact-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}
.gmb-contact-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.gmb-icon-container {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.gmb-icon-phone {
    background-color: #dbeafe;
    color: #2563eb;
}

.gmb-icon-email {
    background-color: #dcfce7;
    color: #16a34a;
}

.gmb-icon-location {
    background-color: #fed7aa;
    color: #ea580c;
}

.gmb-icon-time {
    background-color: #f3e8ff;
    color: #a855f7;
}

.gmb-contact-item {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
}

.gmb-contact-item:last-child {
    margin-bottom: 0;
}

.gmb-contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #999;
    text-transform: uppercase;
}

.gmb-contact-value {
    font-weight: 600;
    color: #043165;
    margin-top: 0.25rem;
}

.gmb-cta-button {
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.gmb-cta-whatsapp {
    background-color: #10b981;
}

.gmb-cta-whatsapp:hover {
    background-color: #059669;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.gmb-cta-email {
    background-color: #2563eb;
}

.gmb-cta-email:hover {
    background-color: #1d4ed8;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.gmb-icon-envelope {
    width: 32px;
    height: 32px;
}

.gmb-icon-chat {
    width: 32px;
    height: 32px;
}

.gmb-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 50;
}

.gmb-chat-widget:hover {
    background-color: #059669;
    transform: scale(1.1);
}

.gmb-online-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 16px;
    height: 16px;
    background-color: #ef4444;
    border: 3px solid white;
    border-radius: 50%;
}

.gmb-section-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.gmb-responsive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .gmb-responsive-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.gmb-cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gmb-cta-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .gmb-contact-card {
        padding: 1.5rem;
    }

    .gmb-gradient-header {
        padding: 2rem 1.5rem;
    }
}
/* privacy policy and terms and condition page styles */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content.active {
    animation: slideIn 0.3s ease-in-out;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Custom scrollbar for content */
.policy-content::-webkit-scrollbar {
    width: 8px;
}

.policy-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.policy-content::-webkit-scrollbar-thumb {
    background: #043165;
    border-radius: 10px;
}

.policy-content::-webkit-scrollbar-thumb:hover {
    background: #AE7F3A;
}
/* product page */
.gmb-pro-header{
    margin-top: 70px;
}
/* product detail page */
.gmb-pro-det-header{
    margin-top: 70px;
}
 .gmb-global-phase-card {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  }
  .gmb-global-phase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -18px rgba(4,49,101,0.28);
    border-color: rgba(174,127,58,0.45);
  }
  .gmb-global-phase-card .gmb-global-phase-icon {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s ease, color 0.35s ease;
  }
  .gmb-global-phase-card:hover .gmb-global-phase-icon {
    transform: scale(1.08) rotate(-4deg);
    background-color: #043165;
    color: #fff;
  }
  .gmb-global-phase-card.gmb-global-phase-active:hover {
    transform: translateY(-6px) scale(1.01);
  }

  .gmb-global-truck-mark { 
    color: #E7ECF3; 
    margin-right: 4%;
  }

  .gmb-global-stub {
    position: relative;
    background: #fff;
    border-radius: 18px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  }
  .gmb-global-stub::before,
  .gmb-global-stub::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 22px;
    height: 22px;
    background: #EEF1F6;
    border-radius: 999px;
    transform: translateY(-50%);
    z-index: 2;
  }
  .gmb-global-stub::before { left: -11px; }
  .gmb-global-stub::after { right: -11px; }
  .gmb-global-stub-tear {
    border-left: 2px dashed rgba(4,49,101,0.18);
  }
  .gmb-global-stub:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px -20px rgba(4,49,101,0.35);
  }
  .gmb-global-stub-stamp {
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.45s ease;
    transform: rotate(-18deg) scale(0.85);
    opacity: 0;
  }
  .gmb-global-stub:hover .gmb-global-stub-stamp {
    transform: rotate(-12deg) scale(1);
    opacity: 1;
  }

  .gmb-global-rail-fill {
    transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .gmb-global-rail-group:hover .gmb-global-rail-fill {
    filter: brightness(1.08);
  }

  @keyframes gmb-global-fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .gmb-global-reveal {
    animation: gmb-global-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) both;
  }
  .gmp-global-logistic {
    margin-top: 60px;
  }

  /* why choose us */
  .gmb-global-why-item {
    position: relative;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #E7E9EF;
    overflow: hidden;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
  }
  .gmb-global-why-item:hover {
    border-color: rgba(174,127,58,0.4);
    box-shadow: 0 14px 32px -18px rgba(4,49,101,0.25);
  }
  .gmb-global-why-item[data-open="true"] {
    border-color: #AE7F3A;
    box-shadow: 0 18px 40px -16px rgba(174,127,58,0.3);
  }

  .gmb-global-why-trigger {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  /* numbered index badge */
  .gmb-global-why-index {
    transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1);
  }
  .gmb-global-why-item[data-open="true"] .gmb-global-why-index {
    background-color: #043165;
    color: #fff;
    transform: scale(1.06);
  }

  /* chevron rotate */
  .gmb-global-why-chevron {
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), color 0.35s ease;
  }
  .gmb-global-why-item[data-open="true"] .gmb-global-why-chevron {
    transform: rotate(180deg);
    color: #AE7F3A;
  }

  /* connecting index rail (desktop) */
  .gmb-global-why-rail {
    position: relative;
  }
  .gmb-global-why-rail::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: repeating-linear-gradient(
      to bottom,
      rgba(4,49,101,0.12) 0,
      rgba(4,49,101,0.12) 6px,
      transparent 6px,
      transparent 12px
    );
    z-index: 0;
  }

  /* answer panel grid-rows trick for smooth height animation */
  .gmb-global-why-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.22,1,0.36,1);
  }
  .gmb-global-why-item[data-open="true"] .gmb-global-why-panel {
    grid-template-rows: 1fr;
  }
  .gmb-global-why-panel-inner {
    overflow: hidden;
    min-height: 0;
  }

  /* filed accent bar */
  .gmb-global-why-accent {
    background: linear-gradient(90deg, #AE7F3A, #B1833E);
  }