/* .carousel-inner img {
    width: 100%;
    height: 500px;
    object-fit: fill;
} */
.hero {
    padding: 0;
    object-fit: fill;
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 1;
}

.header .logo img {
    max-height: 66px;
    margin-right: 8px;
}

.header {
    color: var(--default-color);
    background-color: #116530;
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

.slider-section {
    color: var(--default-color);
    /* background-color: var(--background-color); */
    scroll-margin-top: 100px;
    overflow: clip;
    height: 60vh;
}

.hero .carousel {
    width: 100%;
    min-height: calc(60vh - 100px);
    padding: 0;
    margin: 0;
    background-color: var(--background-color);
    position: relative;
}

@keyframes growAnimation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}

svg {
    animation: growAnimation 2s infinite ease-in-out;
}

.hero .carousel-container {
    position: absolute;
    inset: 90px 64px 64px 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 3;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 316px;
    animation: rotate 10s linear infinite;
}

.img-overlap {
    border-radius: 52px;
}

.post-img {
    border-radius: 40px 40px 0px 0px;
}

.post-item {
    border-radius: 40px;
}

.services-2 .service-item img {
    transition: 0.5s all ease;
    transform: scale(1);
    border-radius: 40px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
    height: 208px;
}

.footer .footer-top {
    background-color:
        color-mix(in srgb, #116530, white 5%);
    padding-top: 50px;
}

.footer .copyright {
    padding: 30px 0;
    box-shadow: 83px 80px 84px rgba(0, 0, 0, 0.3);
    background: #1d6229;
}


.services-2 .service-item:hover img {
    transform: scale(1.2);
    border-radius: 40px;
}

.service-img {
    border-radius: 40px;
}

body {
    font-family: Arial, sans-serif;
}

.value-box {
    padding: 20px;
    background: #fff;
}

.value-header {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 13px;
}

.value-box svg {
    width: 30px;
    height: 30px;
}

.our-values {
    color: #306e3d;
    font-family: var(--heading-font);
    font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-weight: 700;
}

img {
    background: none !important;
    display: block;
    width: 100%;
    /* Adjust the size as needed */
    height: auto;
}

.container {
    margin: auto;
}

.accordion-item {
    margin-bottom: 10px;
    border-radius: 10px;
    /* Added border-radius */
    border: 1px solid #ddd;
    /* Border color */
    padding: 10px;
    transition: box-shadow 0.3s ease;
}

.accordion-button {
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
}

.accordion-body {
    padding: 15px;
    background-color: #f9f9f9;
}

.image-container img {
    max-width: 100%;
    height: 65vh;
    border-radius: 36px;
}

.fixed-image {
    height: 300px;
    /* Fixed height */
    object-fit: cover;
}

.accordion-item:not(:first-of-type) {
    border: 0px solid black;
    box-shadow: 0 7px 12px rgba(0, 0, 0, 0.2);
}

.accordion-item:first-of-type {
    border-top-left-radius: var(--bs-accordion-border-radius);
    border-top-right-radius: var(--bs-accordion-border-radius);
    border: 0px solid black;
    box-shadow: 0 7px 12px rgba(0, 0, 0, 0.2);
}

.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: white;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.content-section {
    margin-bottom: 40px;
}

.content-section img {
    max-width: 100%;
    border-radius: 8px;
}

.content-section .row {
    align-items: center;
    margin-top: 66px;
}

.content-section1 {
    background-color: rgb(245, 241, 241);
}

.solution-img {
    border-radius: 15px;
}

.btn-custom {
    border: 2px solid #0a581c;
    border-radius: 5px;
    color: #0e551e;
    background-color: white;
    transition: all 0.3s ease-in-out;
    padding: 10px 20px 10px 20px;
}

.btn-custom:hover {
    background-color: #0a581c;
    color: white;
}

.btn-custom.active {
    background-color: #0a581c !important;
    color: white !important;
}

.card {
    overflow: hidden;
    /* Image ko card ke andar limit karega */
    border-radius: 10px;
    /* Initial border */
    transition: border-radius 0.5s ease-in-out, box-shadow 0.4s ease-in-out;
}

.card-img-top {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: border-radius 0.5s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.4s ease-in-out;
    border-radius: 5px;

}

.card-img-top:hover {
    border-radius: 20px;
    transform: scale(1.05);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
    /* Inner border effect */
    opacity: 0.4;
}

.services .content .service-item .number {
    position: absolute;
    right: 10px;
    top: 10px;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.number {
    position: absolute;
    right: 10px;
    top: 10px;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.services .content .service-item {
    background-color: var(--surface-color);
    padding: 20px 30px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    position: relative;
}

.list-group-item {
    background: transparent;
    border: none;
    color: #d1d5db;
    transition: background 0.3s ease;
}

.list-group-item:hover {
    background-color: #374151;
    color: white;
}

.network-container {
    padding: 40px;
}

.network-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.network-card:hover {
    transform: translateY(-5px);
}

.connection {
    width: 3px;
    height: 40px;
    background-color: #6c757d;
    margin: 20px auto;
}

.fa-warehouse {
    color: #0d6efd;
    margin-bottom: 10px;
    font-size: 30px;
}

.control-label {
    font-weight: 500;
    color: #2c2c2c;
    display: inline-block;
    margin-bottom: 2px;
}

.form-control {
    font-size: 14px;
    padding: 0.6125rem 1rem;
    border: 1px solid #c7def7;
    height: 43px;
    padding-left: 15px;
    border-radius: 0.3125rem;
    color: #afafb5;
}

placeholder {
    color: #afafb5;
}

.stats span {
    font-size: 22px;
    font-weight: bold;
}

.stats p {
    margin: 0;
    color: #116530;
    font-size: 14px;
}

.nav-tabs .nav-link.active {
    background-color: #116530;
    color: white;
    border: none;
}

.nav-tabs .nav-link {
    color: black;
}

.content-section {
    text-align: justify;
}

.carousel-inner img {
    height: 250px;
    object-fit: cover;
}

@media (max-width: 576px) {
    .stats span {
        font-size: 18px;
    }

    .carousel-inner img {
        height: 180px;
    }
}


@media (min-width: 1200px) {

    .navmenu a,
    .navmenu a:focus {
        color: #ffffff;
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: #6bbf8a;
    }

}

@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: #fcfdff;
        font-size: 56px;
        line-height: 0;
        margin-right: 67px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .header .logo {
        line-height: 1;
        margin-left: 50px;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 20px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: green;
        color: white;
        font-weight: 900;
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
        border-bottom: 2px solid #86a989;
        margin: 10px;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        border-bottom: 2px solid #86a989;
        margin: 10px;
        font-weight: 600;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .header {
        color: var(--default-color);
        background-color: #116530;
        padding: 6px 0;
        transition: all 0.5s;
        z-index: 997;
    }

    .value-box {
        padding: 0px;
        background: #fff;
    }
}

/* Large Phones (Phablets) */
@media (min-width: 577px) and (max-width: 768px) {
    .mobile-nav-toggle {
        color: #fcfdff;
        font-size: 36px;
        line-height: 0;
        margin-right: 67px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .header .logo {
        line-height: 1;
        margin-left: 50px;
    }

    .header {
        color: var(--default-color);
        background-color: #116530;
        padding: 6px 0;
        transition: all 0.5s;
        z-index: 997;
    }

    .value-box {
        padding: 0px;
        background: #fff;
    }

}

/* Medium Phones */
@media (min-width: 321px) and (max-width: 576px) {
    .mobile-nav-toggle {
        color: #fcfdff;
        font-size: 36px;
        line-height: 0;
        margin-right: 7px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .header .logo {
        line-height: 1;
        margin-left: 0px;
    }

    .header {
        color: var(--default-color);
        background-color: #116530;
        padding: 0px 0;
        transition: all 0.5s;
        z-index: 997;
    }

    .value-box {
        padding: 0px;
        background: #fff;
    }
}

/* Small Phones */
@media (max-width: 320px) {
    .mobile-nav-toggle {
        color: #fcfdff;
        font-size: 36px;
        line-height: 0;
        margin-right: 7px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .header .logo {
        line-height: 1;
        margin-left: 0px;
    }

    .header {
        color: var(--default-color);
        background-color: #116530;
        padding: 0px 0;
        transition: all 0.5s;
        z-index: 997;
    }

    .value-box {
        padding: 0px;
        background: #fff;
    }
}