:root {
    --herb-green: #2c4c3b;
    --muted-gold: #075f50;
    --soft-bg: #fdfdfd;
    --border-light: #ececec;
}
.header {
    height: 60px;
    z-index: 10000;
    will-change: transform;
    -webkit-transition: position .5s ease-in-out, background-color .3s ease-in-out, -webkit-transform .5s ease-in-out;
    transition: position .5s ease-in-out, transform .5s ease-in-out, background-color .3s ease-in-out, -webkit-transform .5s ease-in-out;
    -o-transition: position .5s ease-in-out, transform .5s ease-in-out, background-color .3s ease-in-out
}

.header.sticky {
    position: fixed;
    background-color: #fff;
    width: 100%;
    top: 0;
    left: 0;
    -webkit-box-shadow: 0 0 15px rgba(37, 143, 103, .1);
    box-shadow: 0 0 15px rgba(37, 143, 103, .1)
}

.header.opened {
    -webkit-box-shadow: none;
    box-shadow: none
}

.header--pinned {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.header--unpinned {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%)
}

.header_logo {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

.header_logo span:not(.logo) {
    display: none
}

.header_nav {
    width: 100%;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    height: 0;
    overflow: hidden;
    -webkit-transition: height .5s, padding-top .5s;
    -o-transition: height .5s, padding-top .5s;
    transition: height .5s, padding-top .5s;
    font-family: NunitoSans, sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #214842;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff
}

.header_nav.active {
    height: 100vh;
    padding-top: 30px;
    overflow-y: scroll;
    -webkit-box-shadow: 0 30px 15px rgba(37, 143, 103, .07);
    box-shadow: 0 30px 15px rgba(37, 143, 103, .07)
}

.header_nav .nav-item {
    -webkit-transition: color .3s ease-in-out;
    -o-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
    font-size: 17px;
    line-height: 1.3
}

.header_nav .nav-item.active,
.header_nav .nav-item:hover {
    color: #258f67
}

.header_nav .dropdown-toggle {
    margin-bottom: 20px
}

.header_nav .dropdown-toggle .icon {
    font-size: 14px;
    margin-left: 5px
}

.header_nav .dropdown-menu {
    padding-bottom: 15px
}

.header_nav .dropdown .nav-item {
    margin-bottom: 20px
}

.header_nav .dropdown .nav-item:last-of-type {
    margin-bottom: 0
}

.header_user {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.header_user-action {
    border-radius: 50%;
    background: #efc368;
    color: #214842;
    width: 40px;
    height: 40px;
    font-size: 16px
}

.header_user-action:first-of-type {
    margin-right: 15px
}

.header_user-search_field {
    display: none
}

.header_trigger {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 30px;
    height: 28px;
    margin-right: 15px
}

.header_trigger .line {
    border-radius: 2px;
    background: #214842;
    height: 4px;
    width: 100%;
    -webkit-transition: width .3s ease-in-out;
    -o-transition: width .3s ease-in-out;
    transition: width .3s ease-in-out
}

.header_trigger .line--short {
    width: 75%
}

.header_trigger.active .line--short {
    width: 100%
}

@media screen and (min-width:767.98px) {
    .header_logo span:not(.logo) {
        display: inline
    }
    .header_logo .accent {
        color: #214842
    }
    .header_logo .logo {
        margin-right: 10px;
        width: 200px;
    }
    .header_nav.active {
        height: 50vh
    }
    .header_user-search {
        position: relative;
        margin-right: 15px
    }
    .header_user-search_field {
        display: inline;
        padding: 0 20px;
        height: 40px;
        border: 1px solid #c6c6c6;
        border-radius: 20px;
        background: #fff
    }
    .header_user-search_field::-webkit-input-placeholder {
        color: #214842;
        -webkit-transition: opacity .3s ease-in-out;
        transition: opacity .3s ease-in-out;
        font-size: 14px
    }
    .header_user-search_field::-moz-placeholder {
        color: #214842;
        -moz-transition: opacity .3s ease-in-out;
        transition: opacity .3s ease-in-out;
        font-size: 14px
    }
    .header_user-search_field:-ms-input-placeholder {
        color: #214842;
        -ms-transition: opacity .3s ease-in-out;
        transition: opacity .3s ease-in-out;
        font-size: 14px
    }
    .header_user-search_field::-ms-input-placeholder {
        color: #214842;
        -ms-transition: opacity .3s ease-in-out;
        transition: opacity .3s ease-in-out;
        font-size: 14px
    }
    .header_user-search_field::placeholder {
        color: #214842;
        -webkit-transition: opacity .3s ease-in-out;
        -o-transition: opacity .3s ease-in-out;
        transition: opacity .3s ease-in-out;
        font-size: 14px
    }
    .header_user-search_field:focus::-webkit-input-placeholder {
        opacity: 0
    }
    .header_user-search_field:focus::-moz-placeholder {
        opacity: 0
    }
    .header_user-search_field:focus:-ms-input-placeholder {
        opacity: 0
    }
    .header_user-search_field:focus::-ms-input-placeholder {
        opacity: 0
    }
    .header_user-search_field:focus::placeholder {
        opacity: 0
    }
    .header_user-search_btn {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        margin: 0 !important
    }
}

@media screen and (min-width:1199.98px) {
    .header {
        height: 80px;
        -webkit-transition: height .3s ease-in, background-color .2s, -webkit-transform .5s ease-in-out;
        transition: transform .5s ease-in-out, height .3s ease-in, background-color .2s, -webkit-transform .5s ease-in-out;
        -o-transition: transform .5s ease-in-out, height .3s ease-in, background-color .2s
    }
    .header.sticky {
        height: 90px
    }
    .header_user-search {
        margin-right: 150px
    }
    .header_user-action:first-of-type {
        margin-right: 30px
    }
    .header_nav {
        position: static;
        background: 0 0;
        padding: 0 !important;
        height: unset;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-left: 60px;
        font-size: 17px
    }
	 .header_nav {
        width: auto !important;
        margin-left: auto !important;
    }
	
    .header_nav-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
    .header_nav-list_item {
        margin-right: 40px
    }
    .header_nav-list_item:last-of-type {
        margin-right: 0
    }
    .header_nav-list_item .nav-link {
        margin-bottom: 0
    }
    .header_nav .dropdown-menu {
        position: absolute;
        opacity: 0;
        max-height: unset;
        text-align: left;
        visibility: hidden;
        padding-top: 15px;
        -webkit-transition: opacity .3s;
        -o-transition: opacity .3s;
        transition: opacity .3s
    }
    .header_nav .dropdown-menu .dropdown-list {
        background: #fff;
        -webkit-box-shadow: 0 0 15px rgba(37, 143, 103, .07);
        box-shadow: 0 0 15px rgba(37, 143, 103, .07);
        border-radius: 8px;
        padding: 30px
    }
    .header_nav .dropdown-menu .dropdown-list .nav-item {
        margin-bottom: 30px;
        -webkit-transition: color .3s;
        -o-transition: color .3s;
        transition: color .3s
    }
    .header_nav .dropdown-menu .dropdown-list .nav-item:last-of-type {
        margin-bottom: 0
    }
    .header_nav .dropdown-menu .dropdown-list .nav-item.active:before,
    .header_nav .dropdown-menu .dropdown-list .nav-item:hover:before {
        display: none
    }
    .header_nav .dropdown-menu.active {
        opacity: 1;
        visibility: visible
    }
}

.footer_main img {
    width: 200px;
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
}

.section-header { margin-bottom: 3rem; }
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--brand-green);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.lead-text { color: #556260; max-width: 500px; }

/* Section 1: Floating Cards */
.solution-card {
  height: 100%;
  padding: 1px; /* for border gradient effects if desired */
}
.card-inner {
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 2.5rem 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}
.solution-card:hover .card-inner {
  border-color: var(--brand-green);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transform: translateY(-5px);
}
.solution-card .title {
  
  margin-bottom: 1rem;
 
}
.solution-card .text {
 
  line-height: 1.6;
  color: #556260;
}

/* Section 2: Grid Layout */
.apps-section { padding: 80px 0; background: var(--light-gray); }
.application-box {
  padding: 3rem 2rem;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: #fff;
  transition: background 0.3s ease;
}
.application-box:hover { background: #fdfdfd; }
.application-box .num {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--brand-green);
    display: block;
    margin-bottom: 1rem;
    opacity: 0.5;
}
.application-box .title { font-size: 1.2rem; margin-bottom: 0.75rem; }
.application-box .text {
    font-size: 1.1rem;
    color: #556260;
}
.solutions-section {
	padding:80px 0;
}
.mt-20 {
	margin-top:20px !important;
}

@media screen and (min-width: 991.98px) {
    .footer_secondary {
        padding: 10px 0 !important;
    }
}

.services-section { padding: 100px 0; background-color: var(--soft-bg); }

/* Header Styling */
.elegant-header { max-width: 800px; margin-bottom: 80px; }
.upper-title { 
    font-size: 13px; letter-spacing: 4px; color: var(--muted-gold); 
    font-weight: 700; display: block; margin-bottom: 15px; text-transform: uppercase;
}

.intro-lead { font-size: 1.15rem; color: #556260; line-height: 1.7; margin-top: 20px; }

/* Service Info Box */
.service-label { font-size: 0.9rem; color: var(--muted-gold); font-weight: 700; margin-bottom: 10px; }
.service-title {
    font-size: 2.6rem;
    color: var(--herb-green);
    margin-bottom: 20px;
    font-weight: 700;
}
.service-desc { color: #777; line-height: 1.6; }

/* R&D Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.cap-item {
    background: #fff;
    padding: 20px;
    border: 1px solid var(--border-light);
    font-size: 1.1rem;
    color: var(--herb-green);
    transition: 0.3s;
}
.cap-item:hover { border-color: var(--muted-gold); transform: translateX(5px); }

/* Feature Cards for Tech Services */
.feature-list-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.feat-card {
    border-left: 3px solid var(--muted-gold);
    padding-left: 20px;
    margin-bottom: 10px;
}
.feat-card h5 { font-size: 1.1rem; color: var(--herb-green); margin-bottom: 5px; }
.feat-card p { font-size: 1.2rem; color: #556260; margin: 0; }

.elegant-divider { border: 0; height: 1px; background: linear-gradient(to right, transparent, #ddd, transparent); margin: 60px 0; }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .capabilities-grid, .feature-list-modern { grid-template-columns: 1fr; }
    .service-info-box { margin-bottom: 30px; }
}
@media (max-width: 767px) {
.header_logo .logo {
	width:140px !important
}
}