/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #495057;
    background: #dddddd;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #0e4c12;
}

a {
    color: #666666;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #d5d310;
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}


.wrapper {
    position: relative;
    width: 100%;    
    margin: 0 auto;
    background-color: #dbdbdb;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #d5d310;
    color: #121518;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    color: #d5d310;
    background: #121518;
}

.back-to-top i {
    padding-top: 10px;
}

.btn {
    transition: .3s;
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: fit-content;
        border-bottom: 1px solid #ffffff17;
    background: #0e4c12;
}

.top-bar .logo {
    padding: 0px 0;
    text-align: left;
    overflow: hidden;
    text-align: center !important;
}

.top-bar .logo h1 {
    margin: 0;
    color: #0e4c12;
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
}

.top-bar .logo img {
    max-width: 100%;
    max-height: 92px;
}

.top-bar .top-bar-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .top-bar-icon {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar .top-bar-icon [class^="flaticon-"]::before {
    margin: 0;
    color: #0e4c12;
    font-size: 40px;
}

.top-bar .top-bar-text {
    padding-left: 15px;
}

.top-bar .top-bar-text h3 {
    margin: 0 0 5px 0;
    color: #0e4c12;
    font-size: 16px;
    font-weight: 400;
}

.top-bar .top-bar-text p {
    margin: 0;
    color: #0e4c12;
    font-size: 13px;
    font-weight: 400;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}

@media (max-width: 991.98px) {
    .top-bar .logo {
        text-align: center;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/

.nav-bar {
    background: #0e4c12;
    transition: .3s;
}
.nav-bar-sticky {
    position: sticky;
    top: 0;
    z-index: 1050;
}
.nav-bar.nav-scrolled {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.nav-bar.nav-scrolled .nav-link {
    color: #0e4c12 !important;
}
.nav-bar.nav-scrolled .navbar-toggler {
    border-color: #0e4c12;
}
.nav-bar.nav-scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(14,76,18,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-bar .container-fluid {
    padding: 0;
}

.nav-bar.nav-sticky {
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    z-index: 999;
}

.nav-bar .navbar {
    height: 100%;
    background: transparent  !important;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 30px 8px 10px;
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #d5d310;
    transition: none;
}

.nav-bar .dropdown-menu {
    margin-top: 0;
    z-index: 9999 !important;
    border: 0;
    border-radius: 0;
    background: #0e4c12;
}
.dropdown-item.active, .dropdown-item{
        font-weight: 500;
        color: #fff;
}
.nav-bar .btn {
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 0;
}

.nav-bar .btn:hover {
    color: #0e4c12;
    background: #d5d310;
    border-color: #d5d310;
}

@media (min-width: 992px) {
    .nav-bar {
        padding: 0 75px;
    }
    
    .nav-bar.nav-sticky {
        padding: 0;
    }
    
    .nav-bar .navbar {
        padding: 20px 0px;
    }
    

    
    .nav-bar a.nav-link {
        padding: 8px 15px;
        font-size: 16px;
        text-transform: uppercase;
    }
}

@media (max-width: 991.98px) {
    .nav-bar .navbar {
        padding: 15px;
    }
    
    .nav-bar a.nav-link {
        padding: 5px;
    }
    
    .nav-bar .dropdown-menu {
        box-shadow: none;
    }
    
    .nav-bar .btn {
        display: none;
    }
}


/*******************************/
/******** Carousel CSS *********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 170px);
    min-height: 400px;
    max-height: 550px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.carousel .carousel-inner,
.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(0 0 0 / 36%);
}

.carousel .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*height: calc(100vh - 170px);*/
    min-height: 400px;
}

.carousel .carousel-caption p {
    color: #ffffff;
    font-size: 30px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.carousel .carousel-caption h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 35px;
}

.carousel .carousel-caption .btn {
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 0;
    transition: .3s;
}

.carousel .carousel-caption .btn:hover {
    color: #0e4c12;
    background: #d5d310;
    border-color: #d5d310;
}

@media (max-width: 767.98px) {
    .carousel .carousel-caption h1 {
        font-size: 40px;
        font-weight: 700;
    }
    
    .carousel .carousel-caption p {
        font-size: 20px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 12px 30px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-caption h1 {
        font-size: 40px;
        font-weight: 700;
    }
    
    .carousel .carousel-caption p {
        font-size: 16px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0;
    }
}

.carousel .animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    padding: 8px 0;
    text-align: center;
    z-index: 0 !important;
    background: #d5d310;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

.page-header h2 {
    position: relative;
    color: #0e4c12;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #0e4c12;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    color: #0e4c12;
    z-index: 0 !important;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #121518;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 8px 0;
    }
    
    .page-header h2 {
        font-size: 45px;
    }
    
    .page-header a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 8px 0;
    }
    
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

.section-header p {
    color: #c3c100;
    font-size: 18px;
    font-weight: 600 !important;
    margin-bottom: 5px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
}

.feature .col-md-12 {
    background: #0e4c12;
}
    
.feature .col-md-12:nth-child(2n) {
    color: #0e4c12;
    background: #d5d310;
}

.feature .feature-item {
    min-height: 250px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feature .feature-icon {
    position: relative;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature .feature-icon::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    top: -20px;
    left: -10px;
    border: 2px dotted #ffffff;
    border-radius: 60px;
    z-index: 1;
}

.feature .feature-icon::after {
    position: absolute;
    content: "";
    width: 79px;
    height: 79px;
    top: -18px;
    left: -9px;
    background: #0e4c12;
    border-radius: 60px;
    z-index: 2;
}

.feature .col-md-12:nth-child(2n) .feature-icon::after {
    background: #d5d310;
}

.feature .feature-icon [class^="flaticon-"]::before {
    position: relative;
    margin: 0;
    color: #d5d310;
    font-size: 60px;
    line-height: 60px;
    z-index: 3;
}

.feature .feature-text {
    padding-left: 30px;
}

.feature .feature-text h3 {
    margin: 0 0 10px 0;
    color: #d5d310;
    font-size: 25px;
    font-weight: 600;
}

.feature .feature-text p {
    margin: 0;
    color: #d5d310;
    font-size: 18px;
    font-weight: 400;
}

.feature .col-md-12:nth-child(2n) [class^="flaticon-"]::before,
.feature .col-md-12:nth-child(2n) h3,
.feature .col-md-12:nth-child(2n) p {
    color: #0e4c12;
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 65px 0;
}

.about .section-header {
    margin-bottom: 10px;
}

.about .about-img {
    position: relative;
    height: 100%;
}

.about .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .about-text p {
    font-size: 16px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #0e4c12;
    border-radius: 0;
    background: #d5d310;
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: #d5d310;
    background: #0e4c12;
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}


/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.fact .col-6 {
    display: flex;
    align-items: flex-start;
}

.fact .fact-icon {
    position: relative;
    margin: 7px 15px 0 15px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fact .fact-icon [class^="flaticon-"]::before {
    margin: 0;
    font-size: 60px;
    line-height: 60px;
    background-image: linear-gradient(#ffffff, #d5d310);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fact .fact-right .fact-icon [class^="flaticon-"]::before {
    background-image: linear-gradient(#ffffff, #0e4c12);
}

.fact .fact-left,
.fact .fact-right {
    padding-top: 60px;
    padding-bottom: 60px;
}

.fact .fact-text h2 {
    font-size: 35px;
    font-weight: 700;
}

.fact .fact-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.fact .fact-left {
    color: #d5d310;
    background: #0e4c12;
}

.fact .fact-right {
    color: #0e4c12;
    background: #d5d310;
}

.fact .fact-left h2 {
    color: #d5d310;
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.service .service-img {
    position: relative;
    overflow: hidden;
}

.service .service-img img {
    width: 100%;
}

.service .service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, .7);
    transition: .5s;
    opacity: 0;
}

.service .service-item:hover .service-overlay {
    opacity: 1;
}

.service .service-overlay p {
    margin: 0;
    color: #ffffff;
}

.service .service-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: #0e4c12;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service .service-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    font-size: 20px;
    font-weight: 700;
    color: #d5d310;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service .service-item a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #0e4c12;
    background: #d5d310;
    border-radius: 0;
    transition: .3s;
}

.service .service-item:hover a.btn {
    color: #ffffff;
}


/*******************************/
/********** Video CSS **********/
/*******************************/
.video {
    position: relative;
    margin: 45px 0;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(3, 15, 39, .9), rgba(3, 15, 39, .9)), url(../img/carousel-1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #d5d310;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #d5d310;
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play:hover:after {
    background-color: darken(#d5d310, 10%);
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #0e4c12;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.team .team-img {
    position: relative;
}

.team .team-img img {
    width: 100%;
}

.team .team-text {
    position: relative;
    padding: 25px 15px;
    text-align: center;
    background: #0e4c12;
    transition: .5s;
}

.team .team-text h2 {
    font-size: 20px;
    font-weight: 600;
    color: #d5d310;
    transition: .5s;
}

.team .team-text p {
    margin: 0;
    color: #ffffff;
}

.team .team-item:hover .team-text {
    background: #d5d310;
}

.team .team-item:hover .team-text h2 {
    color: #0e4c12;
    letter-spacing: 1px;
}

.team .team-social {
    position: absolute;
    width: 100px;
    top: 0;
    left: -50px;
    display: flex;
    flex-direction: column;
    font-size: 0;
}

.team .team-social a {
    position: relative;
    left: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
}

.team .team-item:hover .team-social a:first-child {
    background: #00acee;
    left: 50px;
    transition: .3s 0s;
}

.team .team-item:hover .team-social a:nth-child(2) {
    background: #3b5998;
    left: 50px;
    transition: .3s .1s;
}

.team .team-item:hover .team-social a:nth-child(3) {
    background: #0e76a8;
    left: 50px;
    transition: .3s .2s;
}

.team .team-item:hover .team-social a:nth-child(4) {
    background: #3f729b;
    left: 50px;
    transition: .3s .3s;
}


/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.faqs .row {
    position: relative;
}

.faqs .row::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: calc(50% - .5px);
    background: #d5d310;
}

.faqs #accordion-1 {
    padding-right: 15px;
}

.faqs #accordion-2 {
    padding-left: 15px;
}

@media(max-width: 767.98px) {
    .faqs .row::after {
        display: none;
    }
    
    .faqs #accordion-1,
    .faqs #accordion-2 {
        padding: 0;
    }
    
    .faqs #accordion-2 {
        padding-top: 15px;
    }
}

.faqs .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 0;
}

.faqs .card:last-child {
    margin-bottom: 0;
}

.faqs .card-header {
    padding: 0;
    border: none;
    background: #ffffff;
}

.faqs .card-header a {
    display: block;
    padding: 10px 25px;
    width: 100%;
    color: #121518;
    font-size: 16px;
    line-height: 40px;
    border: 1px solid rgba(0, 0, 0, .1);
    transition: .5s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"] {
    background: #d5d310;
}

.faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: #d5d310;
    font-size: 12px;
    font-weight: 900;
    transition: .5s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: #0e4c12;
    font-size: 12px;
    font-weight: 900;
    transition: .5s;
}

.faqs .card-body {
    padding: 20px 25px;
    font-size: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-top: none;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    margin: 45px 0;
    padding: 90px 0;
    text-align: center;
    background: linear-gradient(rgba(3, 15, 39, .9), rgba(3, 15, 39, .9)), url(../img/carousel-1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .container {
    max-width: 760px;
}

.about-page .testimonial {
    padding-bottom: 90px;
}

.testimonial .testimonial-slider-nav {
    position: relative;
    width: 300px;
    margin: 0 auto;
}

.testimonial .testimonial-slider-nav .slick-slide {
    position: relative;
    opacity: 0;
    transition: .5s;
}

.testimonial .testimonial-slider-nav .slick-active {
    opacity: 1;
    transform: scale(1.3);
}

.testimonial .testimonial-slider-nav .slick-center {
    transform: scale(1.8);
    z-index: 1;
}

.testimonial .testimonial-slider-nav .slick-slide img {
    position: relative;
    display: block;
    margin-top: 37px;
    width: 100%;
    height: auto;
    border-radius: 100px;
}

.testimonial .testimonial-slider {
    position: relative;
    margin-top: 15px;
    padding-top: 50px;
}

.testimonial .testimonial-slider::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 50px;
    top: 0;
    left: calc(50% - 30px);
    background: url(../img/quote.png) top center no-repeat;
}

.testimonial .testimonial-slider h3 {
    color: #d5d310;
    font-size: 22px;
    font-weight: 700;
}

.testimonial .testimonial-slider h4 {
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial .testimonial-slider p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.blog .blog-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.blog .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-title {
    display: flex;
    align-items: center;
    height: 60px;
    background: #0e4c12;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.blog .blog-title h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 18px;
    font-weight: 700;
    color: #d5d310;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.blog .blog-title a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #0e4c12;
    background: #d5d310;
    border-radius: 0;
    transition: .3s;
}

.blog .blog-item:hover a.btn {
    color: #ffffff;
}

.blog .blog-meta {
    position: relative;
    padding: 25px 0 10px 0;
    background: #f3f6ff;
}

.blog .blog-meta::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 1px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #d5d310;
}

.blog .blog-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    color: #666666;
}

.blog .blog-meta p a {
    margin-left: 5px;
    font-style: normal;
}

.blog .blog-text {
    padding: 10px 25px 25px 25px;
    background: #f3f6ff;
}

.blog .blog-text p {
    margin: 0;
    font-size: 16px;
}

.blog .pagination .page-link {
    color: #0e4c12;
    border-radius: 0;
    border-color: #d5d310;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #d5d310;
    background: #0e4c12;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}


/*******************************/
/******* Single Post CSS *******/
/*******************************/
.single {
    position: relative;
    padding: 45px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.single .single-content img {
    margin-bottom: 20px;
    width: 100%;
}

.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    border: 1px solid #dddddd;
}

.single .single-tags a:hover {
    color: #d5d310;
    background: #0e4c12;
}

.single .single-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: #f3f6ff;
    display: flex;
}

.single .single-bio-img {
    width: 100%;
    max-width: 100px;
}

.single .single-bio-img img {
    width: 100%;
}

.single .single-bio-text {
    padding-left: 30px;
}

.single .single-bio-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.single .single-bio-text p {
    margin: 0;
}

.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item {
    margin: 0 15px;
}

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img {
    width: 100%;
    max-width: 80px;
}

.single .post-item .post-img img {
    width: 100%;
}

.single .post-item .post-text {
    padding-left: 15px;
}

.single .post-item .post-text a {
    font-size: 16px;
    font-weight: 400;
}

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px;
    right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0e4c12;
    background: #d5d310;
    font-size: 16px;
    transition: .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: #d5d310;
    background: #0e4c12;
}

.single .single-comment {
    position: relative;
    margin-bottom: 45px;
}

.single .single-comment h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-list {
    list-style: none;
    padding: 0;
}

.single .comment-child {
    list-style: none;
}

.single .comment-body {
    display: flex;
    margin-bottom: 30px;
}

.single .comment-img {
    width: 60px;
}

.single .comment-img img {
    width: 100%;
}

.single .comment-text {
    padding-left: 15px;
    width: calc(100% - 60px);
}

.single .comment-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single .comment-text span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 5px;
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 14px;
    color: #0e4c12;
    background: #dddddd;
    border-radius: 0;
}

.single .comment-text .btn:hover {
    background: #d5d310;
}

.single .comment-form {
    position: relative;
}

.single .comment-form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-form form {
    padding: 30px;
    background: #f3f6ff;
}

.single .comment-form form .form-group:last-child {
    margin: 0;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 0;
}

.single .comment-form .btn {
    padding: 15px 30px;
    color: #0e4c12;
    background: #d5d310;
}

.single .comment-form .btn:hover {
    color: #d5d310;
    background: #0e4c12;
}


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 30px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #d5d310;
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 0;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #d5d310;
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover {
    color: #0e4c12;
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #d5d310;
    background: #0e4c12;
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #0e4c12;
    background: #d5d310;
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px; 
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0; 
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #d5d310;
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    border: 1px solid #dddddd;
}

.single .tag-widget a:hover {
    color: #d5d310;
    background: #0e4c12;
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 45px 0;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-flters li,
.portfolio .load-more .btn {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    color: #0e4c12;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 0;
    background: #d5d310;
    border: none;
    transition: .3s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #0e4c12;
    color: #d5d310;
}

.portfolio .load-more {
    text-align: center;
}

.portfolio .load-more .btn {
    padding: 15px 35px;
    font-size: 16px;
    transition: .3s;
}

.portfolio .load-more .btn:hover {
    color: #d5d310;
    background: #0e4c12;
}

.portfolio .portfolio-warp {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.portfolio .portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-img img {
    width: 100%;
    transition: .3s;
}

.portfolio .portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio .portfolio-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, .7);
    transition: .5s;
    opacity: 0;
}

.portfolio .portfolio-warp:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio .portfolio-overlay p {
    margin: 0;
    color: #ffffff;
}

.portfolio .portfolio-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: #0e4c12;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.portfolio .portfolio-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 20px;
    font-weight: 700;
    color: #d5d310;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.portfolio .portfolio-warp a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #0e4c12;
    background: #ffffff;
    border-radius: 0;
    transition: .3s;
}

.portfolio .portfolio-warp:hover a.btn {
    color: #ffffff;
    background: #d5d310;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.contact .col-md-6 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.contact .col-md-6:first-child {
    background: #0e4c12;
}

.contact .col-md-6:last-child {
    background: #d5d310;
}

.contact .contact-info {
    position: relative;
    width: 100%;
    padding: 0 15px;
}

.contact .contact-item {
    position: relative;
    margin-bottom: 30px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    border: 1px solid rgba(256, 256, 256, .2);
}

.contact .contact-item [class^="flaticon-"]::before {
    margin: 0;
    color: #d5d310;
    font-size: 40px;
}

.contact .contact-text {
    position: relative;
    width: auto;
    padding-left: 20px;
}

.contact .contact-text h2 {
    color: #d5d310;
    font-size: 20px;
    font-weight: 600;
}

.contact .contact-text p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
}

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

.contact .contact-form {
    position: relative;
    padding: 0 15px;
}

.contact .contact-form input {
    color: #ffffff;
    height: 40px;
    border-radius: 0;
    border-width: 1px;
    border-color: rgba(256, 256, 256, .4);
    background: transparent;
}

.contact .contact-form textarea {
    color: #ffffff;
    height: 185px;
    border-radius: 0;
    border-width: 1px;
    border-color: rgba(256, 256, 256, .4);
    background: transparent;
}

.contact .contact-form input:focus,
.contact .contact-form textarea {
    box-shadow: none;
}

.contact .contact-form .form-control::placeholder {
  color: #ffffff;
  opacity: 1;
}

.contact .contact-form .form-control::-ms-input-placeholder {
  color: #ffffff;
}

.contact .contact-form .form-control::-ms-input-placeholder {
  color: #ffffff;
}

.contact .contact-form .btn {
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #d5d310;
    background: #0e4c12;
    border: none;
    border-radius: 0;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    color: #0e4c12;
    background: #ffffff;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    box-shadow: 0px -3px 5px rgba(0, 0, 0, .3);
    padding-top: 0px;
    background: #0e4c12;
    color: #ffffff;
}

.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
    position: relative;
    margin-bottom: 45px;
}

.footer h2 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #d5d310;
}

.footer h2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #d5d310;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #d5d310;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 7px 0;
    text-align: center;
    border: 1px solid rgba(256, 256, 256, .3);
    border-radius: 60px;
    transition: .3s;
}

.footer .footer-social a i {
    font-size: 15px;
    color: #ffffff;
}

.footer .footer-social a:hover {
    background: #d5d310;
    border-color: #d5d310;
}

.footer .footer-social a:hover i {
    color: #0e4c12;
}

.footer .newsletter .form {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.footer .newsletter input {
    height: 50px;
    border: 2px solid #121518;
    border-radius: 0;
}

.footer .newsletter .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #d5d310;
    background: #121518;
    border-radius: 0;
    border: 2px solid #d5d310;
    transition: .3s;
}

.footer .newsletter .btn:hover {
    color: #121518;
    background: #d5d310;
}

.footer .footer-menu .f-menu {
    position: relative;
    padding: 15px 0;
    font-size: 0;
    text-align: center;
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.footer .footer-menu .f-menu a {
    color: #ffffff;
    font-size: 16px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu .f-menu a:hover {
    color: #d5d310;
}

.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


.footer .copyright {
    padding: 30px 15px;
}

.footer .copyright p {
    margin: 0;
    color: #ffffff;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #d5d310;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer .copyright p a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}


/*******************************/

.line-break-left{
    padding-top: 10px;
    background-color: #0e4c12;
}

.line-break-right{
    padding-top: 10px;
    background-color: #d5d310;
}

.primary-color{
    color: #0e4c12 !important;
}

.primary-background{
    background-color: #0e4c12 !important;
}

.project-img{
    height: 100%;
    background-position: bottom !important;
    width: 100%;
    background: #000000;
}

.project-head{
    background: #0e4c12;
    border-radius: 5vh;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

.project-body{
    height: 100%;
}

.vision-head{
    background: #0e4c12;
    padding: 5px 15px !important;
    color: #fff;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

.bg-light-gray{
    background: #ddd9d7;
}

.custom-shadow-bottom{
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

.green-border-bottom{
    border-bottom: 3px solid #0e4c12;
}

.list-group-item{
    border: none !important;
    margin: 0px 0px 10px 0px;
}



.list-group-item:first-child{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.list-group-item:last-child{
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.pr-img{
    background: red;
    height: 300px;
    background-size: cover;
    background-position: center;

}

.project1{
    background-image: url('../img/project1.png')
}
.project2{
    background-image: url('../img/project2.png')
}
.project3{
    background-image: url('../img/project3.png')
}
.project4{
    background-image: url('../img/project4.png')
}

.about .banner-img{
    background-image: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)), url(../img/banner2.png);
    height: 48vh;
    background-size: cover;
    background-position: center;
}


.about .banner-img-two{
    background-image: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)), url(../img/banner2.png);
    height: 48vh;
    background-size: cover;
    background-position: center;
}

.about .banner-img-three{
    background-image: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)), url(../img/banner3.png);
    height: 48vh;
    background-size: cover;
    background-position: center;
}

.material-icons {
    vertical-align: bottom;
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
  }

  .gallery-thumbnail{
    line-height: 0;
  }

  .gallery-thumbnail div.image-container{
    width: 50% !important;
    display: inline-table;
    height: 8rem !important;
  }

 

/*********sticky action bar***********/
.sticky-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: #fff;
    border-top: 2px solid #e0e0e0;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 12px 24px;
}
.sticky-bar-btn {
    padding: 10px 28px;
    border-radius: 8px;
    font-size: 0.875rem;
    white-space: nowrap;
    letter-spacing: 0.5px;
    transition: all 0.25s;
}
.sticky-bar-btn-contact {
    background: #0e4c12;
    border-color: #0e4c12;
    color: #fff;
}
.sticky-bar-btn-contact:hover {
    background: #0a3a0d;
    border-color: #0a3a0d;
    color: #fff;
}
.sticky-bar-btn-outline {
    background: transparent;
    border: 2px solid #0e4c12;
    color: #0e4c12;
}
.sticky-bar-btn-outline:hover {
    background: #0e4c12;
    color: #fff;
}
.sticky-bar-btn-profile {
    background: #d5d310;
    border-color: #d5d310;
    color: #121518;
}
.sticky-bar-btn-profile:hover {
    background: #bfbd0e;
    border-color: #bfbd0e;
    color: #121518;
}
/* pad page bottom so content isn't hidden behind the bar */
body {
    padding-bottom: 64px;
}
/*********sticky action bar***********/

/* ==========================================
   NEW PAGE COMPONENTS & ANIMATIONS
   ========================================== */

/* ---- Hero Buttons ---- */
.btn-hero {
    background: #d5d310;
    color: #121518;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 10px;
    border: 2px solid #d5d310;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}
.btn-hero:hover {
    background: transparent;
    color: #d5d310;
}

/* ---- Stats Box ---- */
.stats-box {
    background: #0e4c12;
    color: #fff;
    padding: 30px 20px;
    margin-top: 20px;
    border-radius: 10px;
}
.stat-item {
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-bottom: none; }
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d5d310;
    line-height: 1;
}
.stat-plus {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d5d310;
}
.stat-item p {
    color: #fff;
    margin: 5px 0 0;
    font-size: 14px;
}

/* ---- Section Sub-heading ---- */
.section-sub {
    color: #d5d310;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 5px;
    display: block;
}

/* ---- Service Cards (Homepage) ---- */
.services-section {
    padding: 65px 0;
    background: #0e4c12;
}
.services-section .section-header h2 {
    color: #fff;
}
.services-section .section-header .section-sub {
    color: #d5d310;
}
.service-card {
    display: block;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(213,211,16,0.2);
    padding: 30px 20px;
    margin-bottom: 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.35s;
    height: 100%;
    border-radius: 10px;
}
.service-card:hover {
    background: rgba(213,211,16,0.15);
    border-color: #d5d310;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    text-decoration: none;
}
.service-icon {
    font-size: 2.5rem;
    color: #d5d310;
    margin-bottom: 15px;
}
.service-card h5 {
    color: #d5d310;
    font-size: 17px;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
}
.service-link {
    font-size: 13px;
    color: #d5d310;
    font-weight: 600;
}

/* ---- Why Us Section ---- */
.why-us-section {
    padding: 65px 0;
    background: #fff;
}
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-left: 3px solid #0e4c12;
    background: #f9f9f9;
    transition: all 0.3s;
    border-radius: 10px;
}
.why-item:hover {
    border-left-color: #d5d310;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.why-icon {
    font-size: 1.4rem;
    color: #0e4c12;
    flex-shrink: 0;
    margin-top: 2px;
}
.why-item strong { color: #0e4c12; }
.why-item p { margin-bottom: 0; font-size: 13px; }

/* ---- CEO Quote ---- */
.ceo-quote {
    background: #dbdbdb;
    color: #fff;
    padding: 35px;
    border-left: 5px solid #d5d310;
    font-size: 15px;
    font-style: italic;
    line-height: 1.8;
    border-radius: 10px;
}
.ceo-quote p { color: #0e4c12; margin-bottom: 15px; font-size: 15px; }
.ceo-quote footer { color: #d5d310; font-style: normal; font-weight: 600; }
.ceo-quote cite { color:#0e4c12; font-style: italic; }

/* ---- Sectors Section ---- */
.sectors-section {
    padding: 65px 0;
    background: #f9f9f9;
}
.sector-item {
    text-align: center;
    padding: 25px 10px;
    background: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    border-bottom: 3px solid #0e4c12;
    transition: all 0.3s;
    border-radius: 10px;
}
.sector-item:hover {
    border-bottom-color: #d5d310;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.sector-item i {
    font-size: 2rem;
    color: #0e4c12;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s;
}
.sector-item:hover i { color: #d5d310; }
.sector-item p { margin: 0; font-size: 13px; font-weight: 600; color: #0e4c12; }

/* ---- CTA Section ---- */
.cta-section {
    padding: 65px 0;
    background: #d5d310;
    display: none;
}
.cta-section h2 { color: #0e4c12; }
.cta-section p { color: #121518; margin-bottom: 25px; }
.btn-cta {
    background: #0e4c12;
    color: #fff;
    padding: 12px 32px;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}
.btn-cta:hover {
    background: #121518;
    color: #d5d310;
}
.btn-cta-outline {
    background: transparent;
    color: #fff;
    padding: 12px 32px;
    border-radius: 10px;
    border: 2px solid #fff;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}
.btn-cta-outline:hover {
    background: #fff;
    color: #0e4c12;
}

/* ---- Director Card (About page) ---- */
.director-card {
    background: #0e4c12;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.director-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #d5d310;
    margin-bottom: 15px;
}
.director-info h5 { color: #d5d310; margin-bottom: 5px; }
.director-info p { color: #fff; font-size: 14px; margin-bottom: 5px; }
.director-info .small { color: rgba(255,255,255,0.6); }

/* ---- Value Cards (About page) ---- */
.value-card {
    background: #fff;
    padding: 30px 25px;
    margin-bottom: 20px;
    border-bottom: 3px solid #0e4c12;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: all 0.35s;
    height: 100%;
}
.value-card:hover {
    border-bottom-color: #d5d310;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}
.value-icon {
    font-size: 2rem;
    color: #d5d310;
    margin-bottom: 15px;
}
.value-card h5 { color: #0e4c12; margin-bottom: 12px; }

/* ---- Principle List ---- */
.principle-list { margin-top: 15px; }
.principle-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    transition: color 0.2s;
}
.principle-item i { color: #0e4c12; font-size: 1rem; flex-shrink: 0; transition: color 0.2s; }
.principle-item:hover i { color: #d5d310; }
.principle-item span { font-size: 14px; }

/* ---- Batho Pele Box ---- */
.batho-pele-box {
    background: #0e4c12;
    color: #fff;
    padding: 20px;
    border-left: 4px solid #d5d310;
}
.batho-pele-box h6 { color: #d5d310; margin-bottom: 8px; }
.batho-pele-box p { color: rgba(255,255,255,0.9); font-size: 14px; }

/* ---- Info Box ---- */
.info-box {
    background: #f9f9f9;
    border-left: 4px solid #0e4c12;
    padding: 20px;
}
.info-box h6 { color: #0e4c12; margin-bottom: 10px; }
.info-box ul { padding-left: 18px; margin-bottom: 0; }
.info-box li { font-size: 14px; margin-bottom: 4px; }

/* ---- Compliance Box ---- */
.compliance-box {
    background: #0e4c12;
    color: #fff;
    padding: 20px;
}
.compliance-box h6 { color: #d5d310; margin-bottom: 8px; }
.compliance-box p, .compliance-box ul { color: rgba(255,255,255,0.9); font-size: 13px; margin-bottom: 0; }
.compliance-box li { margin-bottom: 4px; }

/* ---- Discipline Cards (About page) ---- */
.discipline-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-bottom: 3px solid #0e4c12;
    padding: 25px 20px;
    margin-bottom: 20px;
    text-align: center;
    color: #495057;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.discipline-card:hover {
    border-bottom-color: #d5d310;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.disc-learn-more {
    margin-top: 16px;
    padding: 8px 16px;
    background: #0e4c12;
    color: #fff;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.25s, color 0.25s;
}
.disc-learn-more:hover {
    background: #d5d310;
    color: #121518;
}
.discipline-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    margin-bottom: 12px;
    border-radius: 6px;
    transition: opacity 0.3s;
}
.discipline-card:hover .discipline-card-img { opacity: 0.88; }
.discipline-card p { font-size: 15px; margin-bottom: 0; }
.discipline-card h6 {
    font-weight: 700;
    color: #0e4c12;
    font-size: 16px;
    margin-bottom: 8px;
}

/* ---- Service Detail Cards (Engineering page) ---- */
.service-detail-card {
    background: #fff;
    border-left: 3px solid #0e4c12;
    padding: 18px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s;
}
.service-detail-card:hover { border-left-color: #d5d310; }
.service-detail-card h6 { color: #0e4c12; margin-bottom: 10px; }
.service-detail-card ul { padding-left: 18px; margin-bottom: 0; }
.service-detail-card li { font-size: 14px; margin-bottom: 4px; }

/* ---- Sector Tags ---- */
.sector-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 15px; }
.sector-tag {
    background: #0e4c12;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 2px;
    transition: background 0.2s;
}
.sector-tag:hover { background: #d5d310; color: #121518; }

/* ---- Refrigeration Cards ---- */
.refrig-card {
    background: #fff;
    border-bottom: 3px solid #0e4c12;
    padding: 22px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.35s;
}
.refrig-card:hover { border-bottom-color: #d5d310; transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,0.1); }
.refrig-card h6 { color: #0e4c12; margin-bottom: 12px; }
.refrig-card ul { padding-left: 18px; margin-bottom: 0; }
.refrig-card li { font-size: 14px; margin-bottom: 4px; }

/* ---- IAQ Grid ---- */
.iaq-grid { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.iaq-item {
    background: #0e4c12;
    color: #fff;
    padding: 15px 12px;
    text-align: center;
    flex: 1 1 calc(33% - 10px);
    min-width: 90px;
    transition: background 0.3s;
}
.iaq-item:hover { background: #d5d310; }
.iaq-item:hover p { color: #121518; }
.iaq-item i { font-size: 1.4rem; color: #d5d310; display: block; margin-bottom: 6px; transition: color 0.3s; }
.iaq-item:hover i { color: #0e4c12; }
.iaq-item p { font-size: 12px; color: #fff; margin: 0; }

/* ---- ESG Pillars ---- */
.esg-pillars { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.esg-pillar {
    flex: 1 1 80px;
    min-width: 80px;
    text-align: center;
    padding: 25px 15px;
    color: #fff;
    transition: transform 0.3s;
}
.esg-pillar:hover { transform: translateY(-5px); }
.esg-pillar i { font-size: 2rem; display: block; margin-bottom: 10px; }
.esg-pillar h6 { color: #fff; font-size: 13px; margin: 0; }
.environmental { background: #2d6a4f; }
.social { background: #0e4c12; }
.governance { background: #1b4332; }

/* ---- ESG Items ---- */
.esg-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}
.esg-item:last-child { border-bottom: none; padding-bottom: 0; }
.esg-item-icon {
    width: 50px;
    height: 50px;
    background: #0e4c12;
    color: #d5d310;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: background 0.3s;
}
.esg-item:hover .esg-item-icon { background: #d5d310; color: #0e4c12; }
.esg-item strong { color: #0e4c12; display: block; margin-bottom: 6px; }
.esg-item p { font-size: 14px; margin-bottom: 0; }

/* ---- Net-Zero Steps ---- */
.netzero-box {
    background: #0e4c12;
    color: #fff;
    padding: 30px;
}
.netzero-box h5 { color: #d5d310; margin-bottom: 15px; }
.netzero-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.netzero-step:last-child { border-bottom: none; margin-bottom: 0; }
.step-num {
    width: 30px;
    height: 30px;
    background: #d5d310;
    color: #121518;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}
.netzero-step strong { color: #d5d310; display: block; margin-bottom: 3px; }
.netzero-step p { color: rgba(255,255,255,0.85); font-size: 13px; margin: 0; }

/* ---- Social Cards (ESG page) ---- */
.social-card {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-bottom: 3px solid #0e4c12;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.35s;
    height: 100%;
}
.social-card:hover { border-bottom-color: #d5d310; transform: translateY(-3px); }
.social-icon { font-size: 2rem; color: #d5d310; margin-bottom: 12px; }
.social-card h6 { color: #0e4c12; margin-bottom: 10px; }
.social-card p { font-size: 14px; margin-bottom: 0; }

/* ---- SDG Items ---- */
.sdg-item { text-align: center; margin-bottom: 20px; }
.sdg-badge {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: transform 0.3s;
}
.sdg-badge:hover { transform: scale(1.1); }
.sdg-item p { font-size: 13px; font-weight: 600; color: #0e4c12; margin: 0; }

/* ---- Maintenance Cards ---- */
.maint-card {
    background: #fff;
    padding: 30px 25px;
    margin-bottom: 25px;
    border-top: 4px solid #0e4c12;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    transition: all 0.35s;
    height: 100%;
}
.maint-card:hover { border-top-color: #d5d310; transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.maint-icon { font-size: 2.2rem; color: #0e4c12; margin-bottom: 15px; transition: color 0.3s; }
.maint-card:hover .maint-icon { color: #d5d310; }
.maint-card h5 { color: #0e4c12; font-size: 17px; margin-bottom: 12px; }
.maint-card ul { padding-left: 18px; }
.maint-card li { font-size: 14px; margin-bottom: 4px; }

/* ---- Contract Cards ---- */
.contract-card {
    background: #fff;
    border: 2px solid #ddd;
    margin-bottom: 25px;
    transition: all 0.35s;
}
.contract-card:hover { border-color: #0e4c12; transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,0.1); }
.contract-card.featured { border-color: #d5d310; box-shadow: 0 4px 16px rgba(213,211,16,0.3); }
.contract-header {
    background: #0e4c12;
    color: #fff;
    padding: 20px 25px;
}
.contract-card.featured .contract-header { background: #d5d310; }
.contract-card.featured .contract-header h5,
.contract-card.featured .contract-header p { color: #121518; }
.contract-header h5 { color: #d5d310; margin-bottom: 3px; }
.contract-header p { color: rgba(255,255,255,0.8); font-size: 13px; margin: 0; }
.contract-body { padding: 20px 25px; }
.contract-body ul { list-style: none; padding: 0; margin: 0; }
.contract-body li { padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 14px; }
.contract-body li:last-child { border-bottom: none; }
.contract-body li i { margin-right: 8px; }
.contract-body li .fa-check { color: #0e4c12; }
.contract-body li .fa-times { color: #ccc; }
.contract-body li.text-muted { color: #aaa !important; }

/* ---- Navbar Dropdown Styling ---- */
.nav-bar .dropdown-menu {
    background: #0e4c12;
    border: none;
    border-top: 3px solid #d5d310;
    border-radius: 0;
    padding: 0;
    min-width: 220px;
}
.nav-bar .dropdown-item {
    color: #fff;
    padding: 12px 20px;
    font-size: 14px;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-bar .dropdown-item:hover,
.nav-bar .dropdown-item:focus {
    background: rgba(213,211,16,0.15);
    color: #d5d310;
}
.nav-bar .dropdown-divider { border-color: rgba(255,255,255,0.2); margin: 0; }

/* ---- Responsive Adjustments ---- */
@media (max-width: 768px) {
    .service-card { margin-bottom: 15px; }
    .stats-box { margin-top: 25px; }
    .ceo-quote { margin-top: 25px; }
    .iaq-item { flex: 1 1 calc(50% - 10px); }
    .esg-pillars { gap: 8px; }
    .netzero-box { margin-top: 25px; }
    .contract-card { margin-bottom: 20px; }
    .director-card { margin-top: 25px; }
    .services-section { padding: 40px 0; }
    .cta-section { padding: 40px 0; }
}

/**** end new components ****/

/* ===========================================
   VGS Homepage Redesign
   =========================================== */

/* --- Hero --- */
.vgs-hero {
    background: #0e4c12;
}
.vgs-hero-inner {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 50px 40px 45px;
}
.vgs-hero-content {
    flex: 1;
    min-width: 0;
}
.vgs-hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 14px;
    letter-spacing: 1px;
}
.vgs-hero-tagline {
    font-style: italic;
    color: #d5d310;
    font-size: 1.05rem;
    margin-bottom: 22px;
}
.vgs-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.vgs-badge {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.45);
    color: rgba(255,255,255,0.9);
    font-size: 10.5px;
    font-weight: 600;
    padding: 4px 13px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* --- Net-Zero Panel --- */
.vgs-netzero {
    width: 240px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 22px 18px;
    text-align: center;
    color: #fff;
}
.vgs-netzero-leaf {
    font-size: 2rem;
    margin-bottom: 8px;
}
.vgs-netzero h3 {
    color: #fff;
    font-weight: 900;
    font-size: 1.35rem;
    letter-spacing: 3px;
    margin-bottom: 8px;
}
.vgs-netzero p {
    font-size: 12.5px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 10px;
    line-height: 1.5;
}
.vgs-netzero-divider {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin: 12px 0;
}
.vgs-netzero-sub {
    font-size: 11.5px;
    color: rgba(255,255,255,0.65);
}

/* --- Body Layout --- */
.vgs-body-wrap {
    background: #fff;
}
.vgs-body-inner {
    display: flex;
    align-items: stretch;
    max-width: 1280px;
    margin: 0 auto;
}
.vgs-content {
    flex: 1;
    min-width: 0;
    padding: 35px 35px 40px 40px;
}
.vgs-sidebar {
    width: 240px;
    flex-shrink: 0;
    background: #0e4c12;
    color: #fff;
    padding: 30px 20px;
}

/* --- Sections --- */
.vgs-section {
    margin-bottom: 38px;
}
.vgs-section-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #0e4c12;
    text-transform: uppercase;
    border-left: 4px solid #0e4c12;
    padding-left: 12px;
    margin-bottom: 16px;
}
.vgs-section > p {
    font-size: 1rem;
    color: #495057;
    line-height: 1.75;
    margin-bottom: 10px;
}

/* --- Service Cards --- */
.vgs-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.vgs-card {
    display: flex;
    flex-direction: column;
    background: #0e4c12;
    border-radius: 10px;
    padding: 18px 16px;
    color: #fff;
    text-decoration: none;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.vgs-card:hover {
    background: #1a6320;
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}
.vgs-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.vgs-card-icon {
    font-size: 1.5rem;
    color: #d5d310;
    flex-shrink: 0;
}
.vgs-card h5 {
    color: #d5d310;
    font-size: 13.5px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}
.vgs-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.88);
    margin: 0 0 12px;
    line-height: 1.6;
    flex: 1;
}
.vgs-card-link {
    font-size: 12px;
    color: #d5d310;
    font-weight: 600;
}

/* --- Why Cards --- */
.vgs-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}
.vgs-why-card {
    background: #0e4c12;
    border-radius: 10px;
    padding: 15px 14px;
    color: #fff;
}
.vgs-why-top {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 6px;
}
.vgs-why-top i {
    color: #d5d310;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.vgs-why-top strong {
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.4;
}
.vgs-why-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
    padding-left: 23px;
    line-height: 1.55;
}

/* --- Quote --- */
.vgs-quote {
    background: #0e4c12;
    color: #fff;
    border-left: 5px solid #d5d310;
    border-radius: 10px;
    padding: 22px 26px;
    font-style: italic;
    margin: 0;
}
.vgs-quote p {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.75;
}
.vgs-quote footer {
    color: #d5d310;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
}
.vgs-quote cite {
    color: rgba(255,255,255,0.75);
    font-style: italic;
}

/* --- Sidebar Sections --- */
.vgs-sb-section {
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.vgs-sb-title {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #d5d310;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.vgs-sb-fact {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 13px;
}
.vgs-sb-fact i {
    color: #d5d310;
    font-size: 13px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 15px;
    text-align: center;
}
.vgs-sb-fact strong {
    display: block;
    color: #d5d310;
    font-size: 9.5px;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 3px;
}
.vgs-sb-fact span {
    font-size: 12px;
    color: rgba(255,255,255,0.82);
    line-height: 1.5;
}
.vgs-sb-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.88);
    margin-bottom: 8px;
}
.vgs-sb-check i {
    color: #d5d310;
    font-size: 12px;
    flex-shrink: 0;
}
.vgs-sb-sector {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    color: rgba(255,255,255,0.88);
    margin-bottom: 8px;
}
.vgs-sb-sector i {
    color: #d5d310;
    font-size: 12px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

/* --- Sidebar CTA --- */
.vgs-sb-cta {
    background: #d5d310;
    border-radius: 10px;
    padding: 18px 16px;
    text-align: center;
    margin-top: 8px;
}
.vgs-sb-cta h5 {
    color: #0e4c12;
    font-weight: 800;
    font-size: 13.5px;
    margin-bottom: 8px;
    line-height: 1.4;
}
.vgs-sb-cta p {
    color: #1a1a1a;
    font-size: 11.5px;
    margin-bottom: 12px;
    line-height: 1.5;
}
.vgs-btn-cta {
    display: block;
    background: #0e4c12;
    color: #fff;
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.25s, color 0.25s;
}
.vgs-btn-cta:hover {
    background: #121518;
    color: #d5d310;
    text-decoration: none;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .vgs-hero-inner,
    .vgs-body-inner {
        flex-direction: column;
    }
    .vgs-netzero {
        width: 100%;
    }
    .vgs-sidebar {
        width: 100%;
    }
    .vgs-content {
        padding: 28px 25px;
    }
    .vgs-hero-inner {
        padding: 40px 25px 35px;
    }
}
@media (max-width: 640px) {
    .vgs-hero-title {
        font-size: 1.85rem;
    }
    .vgs-cards-grid,
    .vgs-why-grid {
        grid-template-columns: 1fr;
    }
    .vgs-content {
        padding: 22px 18px;
    }
    .vgs-hero-inner {
        padding: 30px 18px 28px;
    }
}

/* ===========================================
   Project Cards
   =========================================== */
.proj-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #0e4c12;
    margin-bottom: 28px;
    transition: transform 0.25s, border-color 0.25s;
}
.proj-card:hover {
    transform: translateY(-4px);
    border-color: #d5d310;
}
.proj-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    width: 100%;
    border: 3px solid #0e4c12;
    border-bottom: none;
}
.proj-title {
    background: #0e4c12;
    color: #fff;
    padding: 14px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}
.proj-title i {
    color: #d5d310;
    margin-right: 8px;
}
.proj-body {
    padding: 18px;
}
.proj-body p {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 14px;
    line-height: 1.65;
}
.proj-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #eee;
    padding-top: 12px;
}
.proj-meta li {
    font-size: 0.9rem;
    color: #555;
    padding: 4px 0;
    border-bottom: 1px solid #f3f3f3;
}
.proj-meta li:last-child {
    border-bottom: none;
}
.proj-meta strong {
    color: #0e4c12;
    margin-right: 4px;
}

/* ===========================================
   About Page (vab-*)
   =========================================== */

/* Hero breadcrumb */
.vgs-hero-breadcrumb {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}
.vgs-hero-breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}
.vgs-hero-breadcrumb a:hover {
    color: #d5d310;
}

/* Director section */
.vab-director-wrap {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: #fff;
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}
.vab-director-text {
    flex: 1;
    min-width: 0;
}
.vab-director-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0e4c12;
    margin-bottom: 16px;
}
.vab-director-text p {
    font-size: 1rem;
    color: #495057;
    line-height: 1.75;
    margin-bottom: 12px;
}
.vab-director-card {
    width: 175px;
    flex-shrink: 0;
    background: #0e4c12;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}
.vab-director-img {
    width: 100%;
    display: block;
    object-fit: cover;
}
.vab-director-info {
    padding: 14px 12px;
    color: #fff;
}
.vab-director-info h5 {
    font-size: 13.5px;
    font-weight: 700;
    color: #d5d310;
    margin-bottom: 5px;
}
.vab-director-info p {
    font-size: 12px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 4px;
    line-height: 1.45;
}
.vab-director-info .small {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* Foundation intro quote */
.vab-intro {
    font-size: 1rem;
    color: #495057;
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
    border-left: 4px solid #d5d310;
    padding-left: 14px;
}

/* Value / Vision / Mission cards — white with green top border */
.vab-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.vab-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-top: 4px solid #0e4c12;
    border-radius: 10px;
    padding: 20px 16px;
    transition: box-shadow 0.25s, transform 0.25s;
}
.vab-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.09);
    transform: translateY(-3px);
}
.vab-card-icon {
    font-size: 1.4rem;
    color: #0e4c12;
    margin-bottom: 10px;
}
.vab-card h5 {
    font-size: 14px;
    font-weight: 700;
    color: #0e4c12;
    margin-bottom: 10px;
}
.vab-card p {
    font-size: 1rem;
    color: #495057;
    line-height: 1.65;
    margin: 0;
}

/* Principles checklist */
.vab-principles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 18px 0 14px;
}
.vab-principle {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 1rem;
    color: #495057;
    padding: 10px 12px;
    background: #f7f9f7;
    border-radius: 8px;
    border-left: 3px solid #0e4c12;
    line-height: 1.5;
}
.vab-principle i {
    color: #0e4c12;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Batho Pele box */
.vab-batho-pele {
    background: #f7f9f7;
    border-left: 4px solid #d5d310;
    border-radius: 8px;
    padding: 14px 18px;
}
.vab-batho-pele h6 {
    color: #0e4c12;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 7px;
}
.vab-batho-pele h6 i {
    color: #d5d310;
    margin-right: 5px;
}
.vab-batho-pele p {
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

/* Discipline cards — white with green left border */
.vab-discipline-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.vab-discipline-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #0e4c12;
    border-radius: 10px;
    padding: 18px 16px;
    color: #333;
    text-decoration: none;
    transition: box-shadow 0.25s, transform 0.25s, border-left-color 0.25s;
}
.vab-discipline-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
    border-left-color: #d5d310;
    color: #333;
    text-decoration: none;
}
.vab-discipline-card i {
    font-size: 1.6rem;
    color: #0e4c12;
    margin-bottom: 10px;
    transition: color 0.25s;
}
.vab-discipline-card:hover i {
    color: #d5d310;
}
.vab-discipline-card h6 {
    font-size: 13.5px;
    font-weight: 700;
    color: #0e4c12;
    margin-bottom: 6px;
}
.vab-discipline-card p {
    font-size: 0.95rem;
    color: #495057;
    margin: 0;
    line-height: 1.5;
}

/* About responsive */
@media (max-width: 768px) {
    .vab-director-wrap {
        flex-direction: column;
    }
    .vab-director-card {
        width: 100%;
        max-width: 240px;
    }
    .vab-cards-row {
        grid-template-columns: 1fr;
    }
    .vab-principles {
        grid-template-columns: 1fr;
    }
    .vab-discipline-grid {
        grid-template-columns: 1fr;
    }
}