/*====================================================
  GLOBAL RESET & VARIABLES
====================================================*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --main-color: #F5AD18;
    --secondary-color: #2E7D32;
    --black: #000;
    --white: #fff;
    --grey: #666;
    --light-bg: #f9f9f9;
    --custom-border: 0.5rem solid var(--secondary-color);
    --border-radius-1: 0.5rem;
    --border-radius-2: 1rem;
    --border-radius-3: 50%;
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    --text-shadow: 0.2rem 0.2rem 0.2rem rgba(0, 0, 0, 0.1);
    --font-family-1: "Montserrat", sans-serif;
    --font-family-2: "Playfair Display", serif;
    --font-family-3: "Roboto", sans-serif;
}

* {
    font-family: var(--font-family-3);
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-transform: capitalize;
    border: none;
    outline: none;
}

*::selection {
    color: var(--white);
    background-color: var(--main-color);
}

body {
    background: #f2f3f8;
    overflow-x: hidden;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

section {
    padding: 4rem 5%;
}

::-webkit-scrollbar {
    width: 0.8rem;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    border-radius: var(--border-radius-1);
    background: var(--main-color);
}

p {
    color: var(--grey);
    font-size: 1.6rem;
    line-height: 1.6;
}

img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! TYPOGRAPHY & BUTTONS STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.heading {
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.heading span {
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-family-1);
}

.heading h2 {
    font-size: 4rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-family: var(--font-family-2);
    text-shadow: var(--text-shadow);
}

.btn {
    display: inline-block;
    font-size: 1.6rem;
    padding: 1.2rem 2.5rem;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: var(--border-radius-1);
}

.btn:hover {
    background-color: var(--main-color);
    transform: translateY(-3px);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! TYPOGRAPHY & BUTTONS ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! LOGO STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 11rem;
    width: auto;
    transition: all 0.3s ease;
    display: block;
    max-width: 100%;
}

.logo h3 {
    display: none;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! LOGO STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER & NAVIGATION STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .header-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--secondary-color);
    padding: 0.8rem 5%;
}

.header .header-contacts {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
    flex-wrap: wrap;
}

.header .header-contacts li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    color: var(--white);
}

.header .header-contacts li i {
    font-size: 1.4rem;
}

.header .header-contacts li span {
    text-transform: none;
}

.header .social-contacts {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.header .social-contacts li a {
    height: 3rem;
    width: 3rem;
    font-size: 1.6rem;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.header .social-contacts li a:hover {
    color: var(--main-color);
    transform: translateY(-2px);
}

.header .header-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 11rem;
    background-color: var(--white);
    padding: 0rem 5%;
    gap: 2rem;
    box-shadow: var(--box-shadow);
}

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
    justify-content: flex-end;
}

.header #menu-btn {
    cursor: pointer;
    display: none;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.header .navbar {
    display: flex;
    height: 100%;
    gap: 2rem;
    align-items: center;
}

.header .dropdown-menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .navbar .nav-btn {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-family: var(--font-family-2);
    cursor: pointer;
    background: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.header .navbar .nav-btn:hover {
    color: var(--main-color);
}

.header .dropdown-menu.products-dropdown .dropdown-content {
    width: 26rem;
    right: 0;
    left: auto;
}

.header .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    width: 22rem;
    box-shadow: var(--box-shadow);
    flex-direction: column;
    display: none;
    z-index: 1000;
    border-radius: var(--border-radius-1);
    overflow: hidden;
}

.header .dropdown-menu:hover .dropdown-content {
    display: flex;
}

.header .dropdown-content a {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--secondary-color);
    padding: 1.2rem 1.5rem;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.header .dropdown-content a:hover {
    color: var(--white);
    background: var(--secondary-color);
    padding-left: 2rem;
}

.header .icon-container {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.header .icon-container .icon {
    font-size: 2rem;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.header .icon-container .icon:hover {
    color: var(--main-color);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER & NAVIGATION ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! MOBILE MENU STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.mobile-menu {
    display: none;
    position: fixed;
    top: 11rem;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 999;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-navbar .nav-link {
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.mobile-navbar .main-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-navbar .nav-btn {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 600;
    background: none;
    cursor: pointer;
}

.mobile-navbar .sub-nav-link {
    padding-left: 2rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-navbar .sub-nav-link a {
    font-size: 1.6rem;
    color: var(--grey);
    text-transform: capitalize;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! MOBILE MENU ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HOME SLIDER STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.home {
    padding: 0;
    margin-top: 11rem;
}

.home-item {
    height: 70rem;
    position: relative;
}

.home-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HOME SLIDER ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FEATURES SECTION STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.features .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
    padding: 2rem 5%;
}

.feature-item {
    text-align: center;
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-2);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.feature-item:hover i {
    color: var(--main-color);
}

.feature-item h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: var(--font-family-2);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FEATURES SECTION ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCT CATEGORIES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.product-categories {
    background: var(--light-bg);
}

.category-slider {
    padding: 1rem 0;
}

.category-item {
    position: relative;
    height: 35rem;
    overflow: hidden;
    display: block;
    border-radius: var(--border-radius-2);
}

.category-item img {
    transition: transform 0.5s ease;
}

.category-item:hover img {
    transform: scale(1.1);
}

.category-item .content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
    width: 100%;
}

.category-item h3 {
    font-size: 2.5rem;
    color: var(--white);
    font-family: var(--font-family-2);
}

.category-item p {
    color: var(--main-color);
    font-weight: 600;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCT CATEGORIES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! COUNTING / STATS SECTION STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.counting {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url("img/Counter.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 6rem 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.counting .box {
    flex: 1 1 22rem;
    text-align: center;
    border-right: 0.2rem dashed var(--main-color);
}

.counting .box:last-child {
    border: none;
}

.counting .info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.counting .box i {
    height: 7rem;
    width: 7rem;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    border-radius: 50%;
}

.counting .count {
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
}

.counting .box h3 {
    color: var(--main-color);
    font-size: 2rem;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! COUNTING / STATS SECTION ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! PREMIUM PRODUCT CARD STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.products .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 2rem;
}

.product-item {
    background: var(--white);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    border-radius: var(--border-radius-2);
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item .image {
    position: relative;
    overflow: hidden;
    height: 25rem;
}

.product-item .options {
    position: absolute;
    top: 1rem;
    left: -100%;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    transition: 0.3s ease;
}

.product-item:hover .options {
    left: 1rem;
}

.product-item .options a {
    height: 4rem;
    width: 4rem;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.product-item .options a:hover {
    background: var(--main-color);
    color: var(--white);
}

.product-item .content {
    padding: 1.5rem;
    text-align: center;
}

.product-item h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 1rem 0;
    font-family: var(--font-family-2);
}

.product-item h3:hover {
    color: var(--main-color);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! PREMIUM PRODUCT CARD STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! TAB BUTTONS & SECTIONS STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-buttons .button {
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    cursor: pointer;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-buttons .button.active,
.tab-buttons .button:hover {
    background: var(--main-color);
    transform: translateY(-2px);
}

.tab-section {
    display: none;
}

.tab-section.active {
    display: block;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! TAB BUTTONS & SECTIONS ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! GET IN TOUCH SECTION STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.touch-section {
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    margin: 2rem 0;
    border-radius: 2rem;
}

.touch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 4rem;
    align-items: start;
}

.company-info {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: var(--border-radius-2);
    color: var(--white);
}

.company-info h3 {
    font-size: 2.8rem;
    font-family: var(--font-family-2);
    margin-bottom: 2rem;
    color: var(--main-color);
}

.company-info .info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.company-info .info-item i {
    font-size: 2.5rem;
    color: var(--main-color);
    width: 4rem;
}

.company-info .info-item p,
.company-info .info-item span {
    color: #f0f0f0;
    font-size: 1.6rem;
    text-transform: none;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-2);
    box-shadow: var(--box-shadow);
}

.contact-form h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-family: var(--font-family-2);
}

.contact-form .inputBox {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.6rem;
    border: 0.1rem solid #ddd;
    border-radius: var(--border-radius-1);
    transition: 0.3s;
    text-transform: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--main-color);
}

.contact-form textarea {
    resize: vertical;
    height: 12rem;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! GET IN TOUCH SECTION ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.about {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 5rem 5%;
    border-radius: 0;
    margin: 0;
}

.about .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    align-items: center;
}

.about .image {
    flex: 1 1 45rem;
    border-radius: var(--border-radius-2);
    overflow: hidden;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.15);
}

.about .image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about .image img:hover {
    transform: scale(1.02);
}

.about .content {
    flex: 1 1 45rem;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-2);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.08);
}

.about .heading.sideheading {
    text-align: left;
    align-items: flex-start;
    padding-bottom: 1rem;
}

.about .heading.sideheading span {
    font-size: 1.8rem;
}

.about .heading.sideheading h2 {
    font-size: 3.2rem;
}

.about .features {
    padding: 2rem 0;
}

.about .features li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-bottom: 1.5rem;
    list-style: none;
    font-size: 1.6rem;
    color: var(--secondary-color);
    font-weight: 500;
    border-bottom: 0.1rem dashed rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

.about .features li:last-child {
    border-bottom: none;
}

.about .features i {
    color: var(--main-color);
    font-size: 2rem;
    background: rgba(245, 173, 24, 0.15);
    padding: 0.8rem;
    border-radius: 50%;
}

.about .btn {
    margin-top: 1rem;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! GALLERY SECTION STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.gallery {
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    height: 28rem;
    overflow: hidden;
    border-radius: var(--border-radius-2);
    cursor: pointer;
    box-shadow: var(--box-shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    text-align: center;
    transform: translateY(100%);
    transition: 0.3s ease;
    color: white;
    font-size: 1.6rem;
    font-weight: 500;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! GALLERY SECTION ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! MODAL / LIGHTBOX STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.modal.active {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.modal-content img {
    width: auto;
    max-width: 100%;
    max-height: 90vh;
    border-radius: 1rem;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: -4rem;
    right: 0;
    font-size: 3rem;
    color: white;
    background: var(--secondary-color);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    background: var(--main-color);
    transform: rotate(90deg);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! MODAL / LIGHTBOX ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! SWIPER CUSTOM STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.swiper-pagination-bullet-active {
    background: var(--main-color) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--main-color);
    background: rgba(255, 255, 255, 0.8);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.8rem;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! SWIPER CUSTOM STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER SECTION STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.footer {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), url("img/Footer.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 5rem;
    margin-top: 3rem;
}

.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 3rem;
    padding: 2rem 5%;
}

.footer-item:first-child {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-2);
    padding: 2rem;
}

.footer-item:first-child .logo img {
    height: 9rem;
}

.footer-item:first-child p {
    color: var(--grey);
}

.footer-item h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    font-family: var(--font-family-2);
}

.footer-item h2:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 5rem;
    height: 0.3rem;
    content: "";
    background-color: var(--main-color);
}

.footer-item p {
    color: #ddd;
    font-size: 1.5rem;
}

.footer-item>p {
    color: var(--grey);
    padding-top: 1rem;
}

.footer-item .social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.footer .social a {
    height: 3.5rem;
    width: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.15rem solid var(--secondary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-item .social a i {
    color: var(--secondary-color);
    font-size: 1.6rem;
}

.footer-item .social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-item .social a:hover i {
    color: var(--white);
}

.footer-item .info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.footer-item .links p i {
    color: var(--main-color);
    font-size: 1rem;
}

.footer-item .links a {
    color: #ddd;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: none;
}

.footer-item .links a:hover {
    color: var(--main-color);
    padding-left: 0.5rem;
}

.footer-item .timing-row {
    margin-bottom: 1.2rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 0.1rem dashed rgba(255, 255, 255, 0.2);
    padding-bottom: 0.8rem;
}

.footer-item .timing-row:last-child {
    border-bottom: none;
}

.footer-item .timing-row .days {
    color: var(--main-color);
    font-size: 1.6rem;
    font-weight: 600;
}

.footer-item .timing-row .hours {
    font-size: 1.5rem;
    color: #ddd;
}

.footer-item .connect i {
    font-size: 1.8rem;
    color: var(--main-color);
    width: 3rem;
}

.footer-item .connect span {
    text-transform: none;
    color: #ddd;
    font-size: 1.5rem;
}

.footer .content {
    text-align: center;
    padding: 2rem 0;
    background-color: var(--main-color);
    margin-top: 2rem;
}

.footer .content p {
    font-size: 1.6rem;
    color: var(--secondary-color);
    font-weight: 600;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER SECTION ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE MEDIA QUERIES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
@media (max-width: 991px) {
    html {
        font-size: 55%;
    }

    .logo img {
        height: 10rem;
    }

    .header .header-2 {
        height: 10rem;
    }

    .home {
        margin-top: 10rem;
    }

    .mobile-menu {
        top: 10rem;
    }
}

@media (max-width: 768px) {
    .header .navbar {
        display: none;
    }

    .header #menu-btn {
        display: block;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu.active {
        display: block;
    }

    .header .header-1 {
        display: none;
    }

    .home {
        margin-top: 9rem;
    }

    .home-item {
        height: 50rem;
    }

    .counting .box {
        border-right: none;
        margin-bottom: 2rem;
    }

    .about .image {
        flex: 1 1 100%;
    }

    .logo img {
        height: 8.5rem;
    }

    .header .header-2 {
        height: 9rem;
    }

    .mobile-menu {
        top: 9rem;
    }

    .about .content {
        padding: 2rem;
    }

    .touch-grid {
        gap: 2rem;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }

    .header .icon-container .btn {
        display: none;
    }

    .logo img {
        height: 7.5rem;
    }

    .header .header-2 {
        height: 8.5rem;
        padding: 0 4%;
    }

    .home {
        margin-top: 8.5rem;
    }

    .home-item {
        height: 40rem;
    }

    .category-item {
        height: 28rem;
    }

    .gallery-item {
        height: 22rem;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE MEDIA QUERIES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/



/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCT SPECIFICATIONS SECTION STARTS !!!AAAAAAAAAAAAAAAAAAA*/

/* Main Section Container */
.product-specs {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 5%;
    margin: 2rem 0;
}

/* Specifications Container - 2 Column Grid */
.specs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius-2);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Left Column - Image Styles */
.specs-image {
    position: relative;
    height: 100%;
    min-height: 45rem;
    overflow: hidden;
    background: var(--secondary-color);
}

.specs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.specs-image:hover img {
    transform: scale(1.05);
}

.specs-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--main-color);
    color: var(--secondary-color);
    padding: 0.8rem 1.8rem;
    border-radius: 5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    box-shadow: 0 0.3rem 0.8rem rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.specs-badge i {
    font-size: 1.6rem;
}

.specs-badge span {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Right Column - Content Styles */
.specs-content {
    padding: 3rem 3rem 3rem 0;
}

.product-title {
    font-size: 3.2rem;
    font-family: var(--font-family-2);
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-title i {
    color: var(--main-color);
    font-size: 2.8rem;
}

.product-subtitle {
    font-size: 1.6rem;
    color: var(--main-color);
    font-weight: 500;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 0.2rem dashed rgba(46, 125, 50, 0.2);
}

/* Specifications Table Styles */
.specs-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2.5rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.5rem;
}

.specs-table tr {
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.08);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.spec-label {
    padding: 1.2rem 1rem 1.2rem 0;
    font-weight: 700;
    color: var(--secondary-color);
    width: 40%;
    background: transparent;
    letter-spacing: 0.3px;
}

.spec-label i {
    color: var(--main-color);
    width: 2.5rem;
    margin-right: 0.8rem;
    font-size: 1.4rem;
}

.spec-value {
    padding: 1.2rem 0 1.2rem 1rem;
    color: var(--grey);
    font-weight: 500;
    text-transform: none;
    width: 60%;
}

/* Bulk Order Information Card */
.bulk-info {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05) 0%, rgba(245, 173, 24, 0.08) 100%);
    border-radius: var(--border-radius-2);
    padding: 2rem;
    margin-top: 2rem;
    display: flex;
    gap: 1.8rem;
    align-items: flex-start;
    border-left: 0.4rem solid var(--main-color);
}

.bulk-icon {
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bulk-icon i {
    font-size: 2.2rem;
    color: var(--secondary-color);
}

.bulk-text {
    flex: 1;
}

.bulk-text h4 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-family: var(--font-family-2);
}

.bulk-text p {
    font-size: 1.4rem;
    color: var(--grey);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    text-transform: none;
}

.bulk-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bulk-features span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.bulk-features span i {
    color: var(--main-color);
    font-size: 1.2rem;
}

.specs-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius-1);
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.specs-btn:hover {
    background: var(--main-color);
    transform: translateX(0.5rem);
    gap: 1.2rem;
}

.specs-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.specs-btn:hover i {
    transform: translateX(0.3rem);
}

/* Responsive Styles for Product Specifications */
@media (max-width: 992px) {
    .specs-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .specs-image {
        min-height: 35rem;
        max-height: 40rem;
    }
    
    .specs-content {
        padding: 2.5rem;
    }
    
    .product-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .product-specs {
        padding: 3rem 4%;
    }
    
    .specs-content {
        padding: 2rem;
    }
    
    .product-title {
        font-size: 2.4rem;
    }
    
    .bulk-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bulk-icon {
        width: 4rem;
        height: 4rem;
    }
    
    .bulk-icon i {
        font-size: 1.8rem;
    }
    
    .bulk-features {
        gap: 1rem;
    }
    
    .bulk-features span {
        font-size: 1.2rem;
        width: calc(50% - 1rem);
    }
}

@media (max-width: 480px) {
    .specs-table .spec-label,
    .specs-table .spec-value {
        display: block;
        width: 100%;
        padding: 0.8rem 0;
    }
    
    .spec-label {
        padding-bottom: 0;
    }
    
    .spec-value {
        padding-top: 0;
        padding-left: 2.8rem;
    }
    
    .bulk-features span {
        width: 100%;
    }
    
    .product-title {
        font-size: 2rem;
    }
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCT SPECIFICATIONS SECTION ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT US BANNER FORCE FIX STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.about-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--main-color) 100%);
    padding: 10rem 5%;
    margin: 0;
    text-align: center;
    width: 100%;
    display: block;
}

.about-banner-content {
    display: block;
    width: 100%;
}

.about-banner-content h2 {
    font-size: 5rem !important;
    font-family: var(--font-family-2) !important;
    color: #ffffff !important;
    margin-bottom: 1.5rem !important;
    text-align: center !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

.about-banner-content p {
    font-size: 1.8rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-transform: none !important;
    line-height: 1.6 !important;
}

@media (max-width: 768px) {
    .about-banner {
        padding: 6rem 4%;
    }
    .about-banner-content h2 {
        font-size: 3.5rem !important;
    }
    .about-banner-content p {
        font-size: 1.5rem !important;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT US BANNER FORCE FIX ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/


/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT US BANNER FIX STARTS !!!AAAAAAAAAAAAAAAAAAA*/

/* Remove any existing about-banner styles first - replace with this */

.about-banner {
    background: linear-gradient(135deg, #2E7D32 0%, #F5AD18 100%);
    padding: 15rem 5% 8rem 5%;
    text-align: center;
    width: 100%;
    min-height: 35rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-banner-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-banner-content h2 {
    font-size: 6rem;
    font-family: "Playfair Display", serif;
    color: #ffffff;
    margin: 0;
    padding: 0;
    font-weight: 700;
    line-height: 1.2;
    display: block;
    letter-spacing: 0.2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-banner {
        padding: 12rem 4% 5rem 4%;
        min-height: 28rem;
    }
    .about-banner-content h2 {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .about-banner {
        padding: 10rem 4% 4rem 4%;
        min-height: 22rem;
    }
    .about-banner-content h2 {
        font-size: 3rem;
    }
}

/* Hide home section if needed */
.home {
    display: none !important;
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT US BANNER FIX ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/


/* Fix for Swiper container - Add at the end of your CSS file */
.swiper-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.home-slider {
    width: 100%;
    height: 100%;
}

.category-slider {
    width: 100%;
    padding: 2rem 0;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    height: auto;
}

/* Ensure home section is visible */
.home {
    display: block !important;
    margin-top: 11rem;
}