/********** Template CSS **********/
:root {
    --primary: #FF5E14;
    --secondary: #5F656F;
    --light: #F5F5F5;
    --dark: #02245B;
    --darksky: #0c749f;
    --main-font: 'Montserrat', sans-serif;
}

body {
    font-family: var(--main-font);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 700 !important;
    font-family: var(--main-font);
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 600 !important;
    font-family: var(--main-font);
}

h5,
h6,
.h5,
.h6,
.p,
.fw-semi-bold {
    font-weight: 500 !important;
    font-family: var(--main-font);
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-lg-circle {
    width: 60px;
    height: 40px;
}

.btn-circle-square {
    width: 50px;
    height: 50px;
}

.btn-lg-circle-services {
    width: 50px;
    height: 45px;
    /* margin: 10px 0px; */
}

.btn-square,
.btn-sm-square,
.btn-lg-square,
.btn-lg-circle,
.btn-circle-square,
.btn-lg-circle-services {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


.topbar-right {
    position: relative;
    background: var(--primary);
}

.topbar-right::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    left: -15px;
    transform: skewX(-30deg);
    background-color: var(--primary);
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

/* A Code header // like that */

/* .navbar .navbar-brand {
    position: relative;
    padding-right: 50px;
    height: 75px;
    display: flex;
    align-items: center;
    background: var(--primary);
} */

/* .navbar .navbar-brand::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 100%;
    top: 0;
    right: -25px;
    transform: skewX(-30deg);
    background-color: var(--primary);
} */

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 420px) {
    .btn-sm-square {
        width: 42px;
        height: 32px;
    }

    .btn-circle-square {
        width: 62px;
        height: 50px;
    }
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
        padding-left: 20px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 1rem;
    clear: both;
    font-weight: 500;
    color: #14183e;
    text-align: inherit;
    white-space: nowrap;
    background-color: rgba(0, 0, 0, 0);
    border: 0;
    font-size: 0.95rem;
}

/* This code for mobile menu sub dropdown */
@media (min-width: 320px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    ul.dropdown-menu {
        display: none !important;
    }

    .menu-item.dropdown:hover ul.dropdown-menu {
        display: block !important;
        box-shadow: 0 0 12px rgb(196 185 185);
    }
}

.btn-primary {
    color: #ffffff;
    background-color: #c0422b !important;
    border-color: #c0422b !important;
}

.btn-primary:hover {
    color: #000;
    background-color: #c0422b !important;
    border-color: #c0422b !important;
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 3.5rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/index/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Home ***/

.vcs-service-box {
    background: #f3e8e8;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.vcs-service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.vcs-icon {
    font-size: 2rem;
    color: #c0422b;
    margin-bottom: 15px;
}

.vcs-service-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.card-box-a {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    height: 400px;
    width: 100%;
}

.card-box-a:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-left: 0px;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 27%, rgba(0, 0, 0, 0.65) 90%);
}

.card-box-a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.card-box-a img:hover {
    transform: scale(1.3);
}

.card-overlay-a-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    transition: all 0.5s ease-in;
    padding: 10px;
    font-size: 22px;
}

.card-box-a:hover .card-overlay-a-content {
    bottom: 50px;
}

.card-header-a h2 {
    font-size: 1.25rem;
    margin: 0;
}

.card-title-a a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.card-body-a {
    z-index: 2;
    transition: all 0.5s ease-in;
    padding: 1.5rem 0;
}

.card-box-a {
    height: 400px;
}

.price-a {
    font-weight: bold;
    color: #fff;
}

.link-a {
    color: white;
    text-decoration: none;
}

.card-footer-a {
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 2;
    height: 60px;
    background-color: #d96d3c;
}

.card-info {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-around;
    color: white;
    font-weight: 500;
}

.card-info-title {
    font-size: 15px;
    margin-bottom: 4px;
}

.card-info span {
    font-size: 14px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background-color: #c0422b;
}

.feature-box:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    transition: all 0.3s ease;
}

.services-box {
    background: #f3e8e8;
}

@media (max-width: 420px) {
    .icon-circle {
        width: 110px;
        height: 70px;
        background-color: #c0422b;
    }
}


/*** Facts ***/
.facts {
    position: relative;
    margin: 6rem 0;
    background: var(--dark);
}

.facts .border {
    border-color: rgba(255, 255, 255, .1) !important;
}


/*** Service ***/
.service-item {
    position: relative;
    margin: 65px 0 25px 0;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    padding: 12px;
    width: 180px;
    height: 180px;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .service-detail {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.service-item .service-title {
    position: absolute;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-title {
    top: -100%;
}

.service-item .service-text {
    position: absolute;
    overflow: hidden;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    display: flex;
    align-items: center;
    text-align: center;
    background: rgba(192, 66, 43, 0.7);
    transition: .5s;
}

.service-item:hover .service-text {
    top: 0;
}

.service-item .service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    top: -100%;
    left: 0;
    transform: skewY(-12deg);
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-text::before {
    top: -55px;
}

.service-item .btn {
    position: absolute;
    width: 130px;
    height: 50px;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: #FFFFFF;
    border: none;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Project ***/
.project-carousel {
    position: relative;
    background: var(--dark);
}

.project-item {
    position: relative;
    display: block;
}

.project-item img {
    transition: .5s;
}

.project-item:hover img,
.project-carousel .owl-item.center img {
    margin-top: -60px;
}

.project-item .project-title {
    position: absolute;
    padding: 0 15px;
    width: 100%;
    height: 80px;
    bottom: -110px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark);
    transition: .5s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title {
    bottom: -60px;
}

.project-item .project-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30px;
    top: -15px;
    left: 0;
    transform: skewY(-5deg);
    background: var(--dark);
    transition: .5s;
}

.project-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    transition: .5s;
    opacity: 0;
    z-index: 1;
}

.project-carousel:hover .owl-nav {
    opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}


/*** Management Team ***/
.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    background: var(--primary);
    transition: .5s;
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}

/*** About ***/

.section-title {
    color: #FF5E14;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-weight: 600;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #ff6b00;
}

.overview-card, .history-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
}

.overview-card:hover, .history-card:hover {
    transform: translateY(-5px);
}

.card-header {
    background-color: #FF5E14;
    color: white;
    padding: 15px 20px;
    border-bottom: none;
}

.card-header h3 {
    margin: 0;
    font-size: 1.25rem;
}


.tagline {
    font-style: italic;
    font-weight: 500;
    color: #ff6b00;
    margin: 20px 0;
    padding: 10px 15px;
    border-left: 4px solid #ff6b00;
    background-color: rgba(255, 107, 0, 0.05);
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .card-header h3 {
        font-size: 1.1rem;
    }
    
    .founder-img {
        width: 80px;
        height: 80px;
    }
}
/*  */

.about-img-fluid {
    width: 100%;
    height: 450px;
}

.projects .nav-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .09);
}

.projects-item .projects-content {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.projects .nav-item a.active {
    background: var(--bs-primary);
}

.projects .nav-item a span {
    color: var(--bs-dark);
    padding: 10px;
    font-size: 20px;
}

.projects .nav-item a.active span {
    color: var(--bs-white);
}

.projects .nav-item a.active .projects-icon {
    background: var(--bs-dark) !important;
}

.projects .nav-item a.active .projects-icon span {
    color: var(--bs-primary);
}

/*** About Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.about-team-item {
    width: 90%;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: -100%;
    z-index: 9;
    transition: 0.5s;
}

.team .team-item:hover .team-img .team-icon {
    right: 25px;
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(246, 138, 10, .2);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

.team .team-item .team-content {
    transition: 0.5s;
}

.team .team-item:hover .team-content {
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

/*** About Team End ***/

.service .nav .nav-link.active h5 i {
    color: #FFFFFF !important;
}

/*** Services Success Stories Start ***/
.success-stories .nav .nav-item {
    width: 75%;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
}

.success-stories .nav .nav-item a {
    display: flex;
    justify-content: center;
}

.success-stories .nav-item a.active {
    background: var(--bs-primary);
}

.success-stories .nav-item a span {
    color: var(--bs-dark);
}

.success-stories .nav-item a.active span {
    color: var(--bs-white);
}

.success-carousel .owl-nav .owl-prev,
.success-carousel .owl-nav .owl-next {
    position: absolute;
    padding: 10px 35px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-dark);
    background: var(--bs-light);
    transition: 0.5s;
}

.success-carousel .owl-nav .owl-prev:hover,
.success-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.success-img-tab {
    width: 100%;
    height: 400px;
}

@media (max-width: 420px) {
    .success-img-tab {
        width: 100%;
        height: 300px;
    }
}

@media (min-width: 992px) {
    .success-carousel .owl-nav .owl-prev {
        top: 0;
        left: -115px;
    }

    .success-carousel .owl-nav .owl-next {
        bottom: 0;
        left: -115px;
    }
}

@media (max-width: 991px) {
    .success-carousel .owl-nav .owl-prev {
        bottom: -70px;
        left: 0;
    }

    .success-carousel .owl-nav .owl-next {
        bottom: -70px;
        right: 0;
    }

    .success-stories .nav {
        display: flex;
        justify-content: center;
    }
}

/*** Success Stories End ***/


/*** Career Page ***/
.career-img-fluid {
    max-width: 100%;
    height: 280px;
    object-fit: cover;
}

.company-culture-img {
    width: 100%;
    height: 100%;
}

/*** Life at VCS Section ***/
.life-at-vcs .rounded-circle {
    transition: all 0.3s ease;
}

.life-at-vcs .shadow {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.life-at-vcs .shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.life-at-vcs .shadow:hover .rounded-circle {
    background-color: #2c5b8e !important;
    transform: rotateY(180deg);
}

.life-at-vcs p {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*** Life at VCM ***/
.vcm-life img {
    transition: .5s;
}

.vcm-life a:hover img {
    transform: scale(1.1);
}

/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

/*** FAQs Start ***/
.faq-section .accordion .accordion-item {
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    border: none;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: #FF5E14;
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-dark);
    background: var(--bs-light);
}

/*** FAQs End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.blog .blog-item .blog-img {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.3);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-content {
    position: relative;
    background: var(--bs-light);
}

.blog .blog-item .blog-content .blog-date {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    padding: 12px 25px;
    /* border-radius: 10px; */
    color: var(--bs-white);
    background: var(--bs-primary);
}

.blog .blog-item .blog-content .blog-comment {
    display: flex;
    justify-content: space-between;
}

/*** Blog End ***/


/* VCS Projects Section */
.vcs-projects {
    position: relative;
}

.vcs-projects .vcs-pills {
    flex-wrap: wrap;
    gap: 10px;
}

.vcs-projects .vcs-pills .nav-item {
    margin-bottom: 0;
}

.vcs-projects .vcs-pills .nav-link {
    background: white;
    color: var(--bs-dark);
    border: 1px solid var(--bs-primary);
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.vcs-projects .vcs-pills .nav-link.active {
    background: var(--bs-primary);
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.vcs-projects .vcs-pills .nav-link:hover:not(.active) {
    background: rgba(var(--bs-primary-rgb), 0.1);
    transform: translateY(-2px);
}

.vcs-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.vcs-projects .vcs-pills .nav-link.active .vcs-icon {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .vcs-projects .vcs-pills .nav-link {
        padding: 12px 20px;
    }
}

@media (max-width: 991px) {
    .vcs-projects .vcs-pills {
        justify-content: flex-start;
    }

    .vcs-projects .vcs-pills .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .vcs-icon {
        width: 35px;
        height: 35px;
        margin-right: 8px !important;
    }
}

@media (max-width: 767px) {
    .vcs-projects .vcs-pills {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .vcs-projects .vcs-pills .nav-link {
        white-space: normal;
        text-align: left;
    }
}

/* Tab content animations */
#vcsProjectsContent .tab-pane {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* A code for download page */
.download-card {
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgb(196 185 185);
    background-color: #fff;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-blue);
}

.filter-section {
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 20px;
}

.section-divider {
    border-top: 2px solid var(--primary-blue);
    opacity: 0.2;
    margin: 40px 0;
}

.btn-primary-custom {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.nav-pills .nav-link {
    color: rgb(0, 0, 0);
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
    margin: 5px;
}

.accordion-button:not(.collapsed) {
    color: #ffffff;
}

.accordion-item.mb-2.border-0 {
    background: var(--bs-light);
}

.shadow-download {
    border: none;
    background-color: #fff;
    box-shadow: none !important;
}


/*** Food Menu ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}

.wpcf7-response-output, .wpcf7-f86-o1 {
  display: none !important;
}

/*Contact Form 7*/

.wpcf7-response-output, .wpcf7-f86-o1 {
  display: none !important;
}

.screen-reader-response {
    background-color: #FF5E14 !important;
    color: white !important;
}