
nav.navbar.responsive-sticky .navbar-brand img {
    top: 68%!important;
}



    .mb-10px {
        margin-bottom: 10px!important;
    }
    
    .mb-0 {
        margin-bottom: 0!important;
    }
    
    .ls-minus-2px {
        letter-spacing: -0.02em!important;
    }
    
    .opacity-6 {
        opacity: 0.6;
    }
    
    .fw-600 {
        font-weight: 600 !important;
    }
    
    .mb-10px {
        margin-bottom: 10px !important;
    }
    
    .ls-minus-2px {
        letter-spacing: -2px !important;
    }
    
    .text-highlight {
        color: #004920 !important;
    }
    
    .bg-base-color {
        background-color: #004920 !important;
    }
    
    .bg-very-light-gray {
        background-color: #f8f9fa !important;
    }
    
    .border-radius-10px {
        border-radius: 10px;
    }
    
    .border-radius-6px {
        border-radius: 6px;
    }
    
    .tab-border {
        height: 3px;
        width: 100%;
        display: block;
        margin-top: 5px;
    }
    
    .nav-tabs .nav-link.active {
        color: #004920 !important;
        font-weight: 600;
    }
    
    .nav-tabs .nav-link {
        color: #666;
        padding: 10px 20px;
        border: none;
        background: none;
    }
    
    .nav-tabs .nav-link:hover {
        color: #004920 !important;
    }
    
    .text-dark-gray {
        color: #333 !important;
    }
    
    .text-white {
        color: white !important;
    }
    
    .video-container {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
    }
    
    .video-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* New styles for overlapping images */
    .w-75 {
        width: 75% !important;
    }
    
    .w-55 {
        width: 55% !important;
    }
    
    .sm-w-80 {
        width: 80% !important;
    }
    
    .xs-w-55 {
        width: 55% !important;
    }
    
    .right-15px {
        right: 15px !important;
    }
    
    .bottom-minus-50px {
        bottom: -50px !important;
    }
    
    .box-shadow-quadruple-large {
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1) !important;
    }
    
    .overflow-hidden {
        overflow: hidden !important;
    }
    
    .position-absolute {
        position: absolute !important;
    }
    .ps-7
 {
    padding-left: 1% !important;
}

.pe-15px {
    padding-right: 1px !important; */
}
    /* Fixed height var (change value as needed) */
:root {
  --variant-height: 520px; /* ← adjust this to your desired height */
}

/* Force both columns to a fixed height and align content at top */
.variant-row-fixed {
  display: flex;
  flex-wrap: nowrap;     /* keep columns side-by-side on desktop */
  align-items: flex-start; /* start at top */
  gap: 0;
  min-height: var(--variant-height);
  height: var(--variant-height);
  box-sizing: border-box;
}

/* Left column */
.variant-left-fixed {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* start content at top */
  padding-right: 1rem;
  box-sizing: border-box;
  height: 100%;
}

/* Make the green heading fill the top portion (full height if you want) */
.variant-heading-fixed {
  /* If you want heading to fill the full height, use flex: 1; 
     if you want it only to be top-aligned and not stretch, remove flex:1 */
  /* flex: 1; */               /* comment out if you don't want full-height heading */
  margin: 0;
  background-color: #004920 !important;
  color: #ffffff !important;
  padding: 12px 15px;
  display: block;
  box-sizing: border-box;
  align-self: stretch;
}

/* Keep the description paragraph below heading but still inside left column */
.variant-copy-fixed {
  color: #004920;
  text-align: justify;
  margin-top: 1rem;
}

/* Right column (image) */
.variant-right-fixed {
  padding-left: 1rem;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  align-items: flex-start; /* align image to top */
  justify-content: center;
}

/* Make figure and img fill the column height so image top equals column top */
.variant-right-fixed figure {
  width: 100%;
  height: 100%;
  margin: 0;
  display: block;
  box-sizing: border-box;
}

.variant-right-fixed img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills box without empty space */
  display: block;
  border-radius: 18px; /* optional */
}

/* Responsive: remove forced heights on small screens so stacking behaves normally */
@media (max-width: 991.98px) {
  .variant-row-fixed {
    flex-wrap: wrap;
    min-height: 0;
    height: auto;
  }
  .variant-left-fixed, .variant-right-fixed {
    height: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .variant-right-fixed img {
    height: auto;
    object-fit: contain;
  }
}
.variant-right-fixed img {
    border-radius: 0 0px 0px 0 !important; /* square top, rounded sides */
}

.variant-right-fixed {
    position: relative;
}

.variant-right-fixed::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;    /* how far the curve goes inside */
    height: 40px;   /* match the curve radius area */
    background: #004920;
    z-index: 1;
}

.variant-right-fixed img {
    position: relative;
    z-index: 2;
}


