/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESET & BASE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: #6d6d6d;
    background: #fff;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESET & BASE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! CONTAINER & GRID SYSTEM STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-12,
.col-md-3, .col-md-4, .col-md-6, .col-md-8, .col-md-9, .col-md-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-md-9 { flex: 0 0 75%; max-width: 75%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 992px) {
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
    .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

.align-self-center { align-self: center; }
.float-right { float: right; }
.text-center { text-align: center; }
.text-right { text-align: right; }
/*AAAAAAAAAAAAAAAAAAAAAAA!!! CONTAINER & GRID SYSTEM ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER TOP STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.xs-header-top {
    position: relative;
    background: #008435;
}
@media (max-width: 991px) {
    .xs-header-top {
        display: none;
    }
}
.xs-header-top .header-top-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 45px;
}
.xs-header-top .header-top-info ul li {
    display: inline-flex;
    align-items: center;
    color: #FFFFFF;
    line-height: 45px;
    font-family: "Open Sans", sans-serif;
    padding-left: 55px;
    white-space: nowrap;
}
.xs-header-top .header-top-info ul li i { 
    margin-right: 8px;
    font-size: 14px;
}
.xs-header-top .header-top-info ul li:first-child { padding-left: 0; }
.xs-header-top .header-top-social ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 45px;
}
.xs-header-top .header-top-social ul li { display: inline-flex; }
.xs-header-top .header-top-social ul li a {
    font-size: 14px;
    color: #FFFFFF;
    padding: 0 0 0 24px;
    line-height: 45px;
    transition: all 500ms ease;
    text-decoration: none;
    display: inline-block;
}
.xs-header-top .header-top-social ul li a:hover { color: #004b1e; }
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER TOP STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! DESKTOP STICKY HEADER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.desktop-sticky-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #008435;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 10px 0;
    transition: all 0.3s ease;
}
.desktop-sticky-header .sticky-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.desktop-sticky-header .sticky-logo img {
    height: 45px;
    width: auto;
    max-height: 45px;
    object-fit: contain;
}
.desktop-sticky-header .sticky-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.desktop-sticky-header .sticky-menu ul li {
    display: inline-block;
}
.desktop-sticky-header .sticky-menu ul li a {
    color: #FFFFFF;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.desktop-sticky-header .sticky-menu ul li a:hover {
    background: #004b1e;
    border-radius: 4px;
}
.desktop-sticky-header .sticky-number {
    background: #fff;
    color: #008435;
    padding: 8px 18px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.desktop-sticky-header .sticky-number:hover {
    background: #004b1e;
    color: #fff;
}
@media (min-width: 992px) {
    .desktop-sticky-header.show {
        display: block;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! DESKTOP STICKY HEADER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER MIDDLE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.xs-header-middle {
    position: relative;
    padding: 30px 0;
    background: #fff;
}
@media (max-width: 991px) {
    .xs-header-middle {
        display: none;
    }
}
.logo img { 
    max-width: 100%; 
    max-height: 70px;
    object-fit: contain;
}
.xs-header-middle .header-middle-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.xs-header-middle .header-middle-info ul li {
    display: inline-block;
    position: relative;
    padding-left: 50px;
    margin-left: 76px;
}
.xs-header-middle .header-middle-info ul li:first-child { margin-left: 0; }
.xs-header-middle .header-middle-info ul li label {
    margin-bottom: 0;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #282828;
    line-height: 18px;
    display: block;
}
.xs-header-middle .header-middle-info ul li p { margin-bottom: 0; }
.xs-header-middle .header-middle-info ul li i {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    font-size: 30px;
    color: #008435;
    top: 45%;
    transform: translateY(-50%);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER MIDDLE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! MOBILE STICKY HEADER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.mobile-sticky-header {
    display: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #008435;
    padding: 12px 20px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.mobile-sticky-header .mobile-logo-img img {
    height: 40px;
    width: auto;
    max-height: 40px;
    object-fit: contain;
}
.mobile-sticky-header .mobile-call-btn {
    background: #fff;
    color: #008435;
    padding: 8px 15px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.mobile-sticky-header .mobile-call-btn i {
    font-size: 16px;
}
.mobile-sticky-header .mobile-menu-toggle {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
}
.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: #008435;
    z-index: 999;
    flex-direction: column;
    padding: 10px 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.mobile-nav-menu a {
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 500;
    display: block;
    border-bottom: 1px solid #148e45;
}
.mobile-nav-menu a:last-child {
    border-bottom: none;
}
.mobile-nav-menu a:hover {
    background: #004b1e;
}
@media (max-width: 991px) {
    .mobile-sticky-header {
        display: flex;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! MOBILE STICKY HEADER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! MAIN NAVIGATION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.xs-header-nav {
    position: relative;
    min-height: 30px;
    margin-bottom: -50px;
    z-index: 100;
}
@media (max-width: 991px) {
    .xs-header-nav {
        display: none;
    }
}
.xs-header-nav .menu-item { margin: 0; }
.xs-header-nav .header-nav {
    background: #008435;
    height: auto;
    min-height: 65px;
    position: relative;
    z-index: 22;
    width: 100%;
}
.xs-header-nav .header-nav:after {
    position: absolute;
    right: -20px;
    top: 0;
    content: '';
    border-style: solid;
    border-width: 30px 0 0 20px;
    border-color: transparent transparent transparent #004b1e;
}
.xs-header-nav .header-nav .mobile-logo { display: none; }
.xs-header-nav .header-nav .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
}
.xs-header-nav .header-nav .nav-menu > li {
    display: inline-block;
    float: left;
    position: relative;
}
.xs-header-nav .header-nav .nav-menu > li > a {
    font-size: 14px;
    line-height: 27px;
    color: #FFFFFF;
    height: auto;
    padding: 20px 27px;
    border-left: 1px solid #148e45;
    border-right: 1px solid #007730;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none;
    display: inline-block;
}
.xs-header-nav .header-nav .nav-menu > li:first-child > a { border-left: none; }
.xs-header-nav .header-nav .nav-menu > li:last-child > a { border-right: none; }
.xs-header-nav .header-nav .nav-menu > li > a:hover,
.xs-header-nav .header-nav .nav-menu > li.active > a { background: #004b1e; }
.xs-header-nav .header-nav .nav-menu > li .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 0;
    margin: 0;
}
.xs-header-nav .header-nav .nav-menu > li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
}
.xs-header-nav .header-nav .nav-menu > li .nav-dropdown > li > a {
    padding: 13px 20px;
    font-size: 13px;
    color: #282828;
    border-bottom: 1px solid #f1f1f1;
    text-transform: capitalize;
    text-decoration: none;
    display: block;
}
.xs-header-nav .header-nav .nav-menu > li .nav-dropdown > li > a:hover { color: #008435; }
.xs-header-nav .header-nav .header-nav-right-info {
    padding: 20px 30px;
    background: #191919;
    float: right;
    position: relative;
}
.xs-header-nav .header-nav .header-nav-right-info label {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0;
}
.xs-header-nav .header-nav .header-nav-right-info label i {
    font-size: 20px;
    margin-right: 12px;
    position: relative;
    top: 3px;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! MAIN NAVIGATION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! BANNER SLIDER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.xs-banner-sec {
    position: relative;
    margin-top: 0;
    padding-top: 0;
    z-index: 1;
}
.banner-slider-item {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 714px;
}
@media (max-width: 991px) {
    .banner-slider-item {
        height: 400px;
        background-size: cover;
        background-position: center center;
    }
}
@media (max-width: 576px) {
    .banner-slider-item {
        height: 350px;
    }
}
.banner-slider-item:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(0, 0, 0, 0.4);
}
.slider-table {
    display: table;
    width: 100%;
    height: 100%;
}
.slider-table-cell {
    display: table-cell;
    width: 100%;
    height: auto;
    vertical-align: middle;
}
.banner-content h2 {
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 26px;
    font-size: 72px;
    line-height: 60px;
}
@media (max-width: 991px) {
    .banner-content h2 {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 15px;
    }
}
@media (max-width: 576px) {
    .banner-content h2 {
        font-size: 28px;
        line-height: 36px;
    }
}
.banner-content p {
    color: #ededed;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 34px;
}
@media (max-width: 991px) {
    .banner-content p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 20px;
    }
}
.xs-btn {
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #FFFFFF;
    background: #008435;
    display: inline-block;
    line-height: 54px;
    padding: 0 40px;
    border: 1px solid #008435;
    border-radius: 2px;
    transition: all 0.5s ease;
    text-decoration: none;
}
@media (max-width: 576px) {
    .xs-btn {
        padding: 0 20px;
        line-height: 44px;
        font-size: 13px;
    }
}
.xs-btn:hover {
    background: #004b1e;
    border-color: #004b1e;
    color: #FFFFFF;
}
.xs-btn.fill {
    background: transparent;
    border-color: #f2f2f2;
    margin-left: 18px;
}
@media (max-width: 576px) {
    .xs-btn.fill {
        margin-left: 10px;
    }
}
.xs-btn.fill:hover {
    background: #004b1e;
    border-color: #004b1e;
}
.owl-nav > div {
    position: absolute;
    left: 0;
    width: 53px;
    height: 53px;
    background: rgba(255, 255, 255, 0.14);
    display: block;
    text-align: center;
    font-size: 16px;
    color: #FFFFFF;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
@media (max-width: 768px) {
    .owl-nav > div {
        width: 35px;
        height: 35px;
        font-size: 14px;
        line-height: 35px;
    }
}
.owl-nav > div.owl-prev { left: 3%; right: auto; }
.owl-nav > div.owl-next { right: 3%; left: auto; }
.owl-dots {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
}
.owl-dot {
    width: 12px;
    height: 12px;
    background: #fff;
    display: inline-block;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
}
.owl-dot.active { background: #008435; }
/*AAAAAAAAAAAAAAAAAAAAAAA!!! BANNER SLIDER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! SECTION COMMON STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.section-padding {
    padding: 80px 0;
}
@media (max-width: 991px) {
    .section-padding {
        padding: 50px 0;
    }
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #282828;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
@media (max-width: 991px) {
    .section-title h2 {
        font-size: 28px;
    }
}
.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #008435;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! SECTION COMMON STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.about-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: #008435;
    margin-bottom: 20px;
}
@media (max-width: 991px) {
    .about-content h3 {
        font-size: 24px;
        margin-top: 25px;
    }
    .about-content {
        padding: 0 10px;
    }
}
.about-content p {
    margin-bottom: 20px;
    font-size: 15px;
}
@media (max-width: 991px) {
    .about-content p {
        font-size: 14px;
        line-height: 24px;
    }
}
.row.align-items-center {
    align-items: center;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! PREMIUM PRODUCT CARD STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.product-card {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-img {
    height: 280px;
    overflow: hidden;
}
@media (max-width: 576px) {
    .product-img {
        height: 220px;
    }
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img img {
    transform: scale(1.05);
}
.product-info {
    padding: 20px;
    text-align: center;
}
.product-info h3 {
    font-size: 22px;
    font-weight: 600;
    color: #282828;
    margin-bottom: 10px;
}
.product-info p {
    color: #6d6d6d;
    margin-bottom: 20px;
}
.btn-sm {
    display: inline-block;
    padding: 8px 20px;
    background: #008435;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    margin: 0 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-sm:hover {
    background: #004b1e;
}
.btn-sm.outline {
    background: transparent;
    border: 1px solid #008435;
    color: #008435;
}
.btn-sm.outline:hover {
    background: #008435;
    color: #fff;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! PREMIUM PRODUCT CARD STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! GALLERY SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 30px;
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
@media (max-width: 576px) {
    .gallery-item img {
        height: 200px;
    }
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,132,53,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay i {
    font-size: 40px;
    color: #fff;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! GALLERY SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! POPUP MODAL STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}
.modal-content {
    max-width: 90%;
    max-height: 90%;
}
.modal-content img {
    width: auto;
    max-width: 100%;
    max-height: 90vh;
    border-radius: 5px;
}
.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.close-modal:hover {
    color: #008435;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! POPUP MODAL STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! CONTACT SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.contact-info {
    background: #008435;
    padding: 40px 30px;
    border-radius: 10px;
    color: #fff;
    height: 100%;
}
@media (max-width: 991px) {
    .contact-info {
        margin-bottom: 30px;
        padding: 30px 20px;
    }
}
.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
}
@media (max-width: 576px) {
    .contact-info h3 {
        font-size: 20px;
    }
}
.contact-info p {
    margin-bottom: 25px;
    opacity: 0.9;
}
.contact-info ul {
    list-style: none;
    padding: 0;
}
.contact-info ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.contact-info ul li i {
    width: 35px;
    font-size: 18px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}
.contact-form textarea {
    height: 120px;
    resize: none;
}
.contact-form button {
    background: #008435;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}
.contact-form button:hover {
    background: #004b1e;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! CONTACT SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.xs-footer-sec {
    position: relative;
    background: #1a1a1a;
    margin-top: 50px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.xs-footer-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}
.xs-footer-sec .container { position: relative; z-index: 2; }
.footer-item { padding-top: 80px; }
@media (max-width: 991px) {
    .footer-item { padding-top: 50px; }
}
.widgets { margin-bottom: 30px; }
.footer-logo { margin-bottom: 20px; }
.footer-logo img { max-width: 180px; }
.xs-footer-sec .footer-item .widgets .widget-title {
    color: #FFFFFF;
    border-bottom: 1px solid #4b4b4b;
    padding-bottom: 20px;
    margin-bottom: 26px;
    font-size: 20px;
}
@media (max-width: 991px) {
    .xs-footer-sec .footer-item .widgets .widget-title {
        font-size: 18px;
    }
}
.xs-footer-sec .footer-item .widgets p, .xs-footer-sec .footer-item .widgets ul li {
    color: #d7d7d7;
}
.widgets ul {
    list-style: none;
    padding-left: 0;
}
.widgets ul li a {
    color: #d7d7d7;
    text-decoration: none;
    transition: all 0.3s ease;
}
.widgets ul li a:hover {
    color: #008435;
}
.widgets .footer-social li { display: inline-block; }
.widgets .footer-social li a {
    display: block;
    font-size: 14px;
    color: #c7c7c7;
    margin-right: 15px;
    transition: all 0.5s ease;
    text-decoration: none;
}
.widgets .footer-social li a:hover { color: #008435; }
.copyright-content {
    padding: 22px 0;
    margin-top: 20px;
    border-top: 1px solid #4d4d4d;
}
@media (max-width: 768px) {
    .copyright-content .text-right {
        text-align: left !important;
        margin-top: 10px;
    }
}
.copyright-content p { color: #adadad; margin-bottom: 0; }
.copyright-content p a { color: #008435; text-decoration: none; }
.footer-bottom-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-bottom-menu li {
    display: inline-block;
    margin-left: 20px;
}
.footer-bottom-menu li a {
    color: #adadad;
    text-decoration: none;
}
@media (max-width: 768px) {
    .footer-bottom-menu li {
        margin-left: 0;
        margin-right: 20px;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/