/* style.css - COMPLETE FULLY RESPONSIVE FILE */
/* WITH MOBILE/TABLET MEDIA QUERIES - FIXED STICKY HEADER FOR MOBILE */

/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESET & BASE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #444;
    line-height: 1.8em;
    font-weight: 400;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    padding-top: 0;
}

:root {
    --primary-color-1: #2e7d32;
    --primary-color-2: #151515;
    --secondary-color: #f8f8f8;
}

.fluid-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

.clearfix::after,
.clearfix::before {
    display: table;
    content: '';
    clear: both;
}

ul, li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #3563a9;
}

a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESET & BASE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.main-header {
    position: relative;
    left: 0px;
    top: 0px;
    z-index: 999;
    width: 100%;
    transition: all 500ms ease;
}

.main-header .top_header {
    position: relative;
    font-size: 13px;
    padding: 9px 0px 7px;
    background: #151515;
    color: #ffffff;
    z-index: 1;
    display: block;
}

.main-header .top_header::after {
    width: 60%;
    background: var(--primary-color-1);
    content: '';
    height: 100%;
    position: absolute;
    top: 0;
    display: block;
    z-index: -1;
    transform: skewX(30deg);
    left: 3%;
    max-width: 800px;
}

.main-header .top_header a {
    color: #ffffff;
    transition: all 300ms ease;
}

.main-header .top_header a:hover {
    color: var(--primary-color-1);
}

.top_infowrp.top-right {
    float: right;
}

.main-header .top_infoitem li {
    position: relative;
    float: left;
    margin-right: 25px;
}

.main-header .top-right .top_infoitem li {
    margin-right: 0px;
    margin-left: 25px;
}

.main-header .top_infoitem li a {
    position: relative;
    line-height: 26px;
    font-size: 14px;
    text-transform: capitalize;
}

.main-header .top_infoitem li .fa {
    padding-right: 8px;
    font-size: 16px;
    color: var(--primary-color-1);
}

.main-header .top_socialinfo li {
    display: inline-block;
}

.main-header .top_socialinfo li a {
    display: block;
    width: 25px;
    height: 25px;
    text-align: center;
}

.main-header .middle_header {
    position: relative;
    padding: 20px 0px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mdlheader-wrp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 90px;
}

.main-header .main-logo {
    flex: 0 0 auto;
    width: auto;
    max-width: 200px;
}

.main-header .main-logo img {
    max-height: 70px;
    width: auto;
    display: block;
}

.main-header .middle_header .middle-right {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: 20px;
}

.desktop-menu-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    gap: 20px;
}

.call-now-btn {
    background: var(--primary-color-1);
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    flex: 0 0 auto;
    margin-left: 10px;
    border: 2px solid var(--primary-color-1);
}

.call-now-btn:hover {
    background: transparent;
    color: var(--primary-color-1);
    border-color: var(--primary-color-1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.main-menu {
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    flex: 1 1 auto;
}

.main-menu .navigation {
    position: relative;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    list-style: none;
    align-items: center;
}

.main-menu .navigation > li > a {
    position: relative;
    display: block;
    padding: 12px 18px;
    font-size: 16px;
    color: #222;
    line-height: 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 500ms ease;
    white-space: nowrap;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a {
    color: var(--primary-color-1)!important;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! STICKY HEADER STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.sticky-navbar {
    position: fixed;
    top: -100px;
    left: 0px;
    width: 100%;
    padding: 10px 0;
    background: #ffffff;
    z-index: 1000;
    border-bottom: 1px solid #cccccc;
    transition: all 300ms ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
}

.sticky-navbar.active {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.sticky-navbar .fluid-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 60px;
}

.sticky-navbar .logo img {
    max-height: 50px;
    width: auto;
    display: block;
}

.sticky-navbar .sticky-menu .navigation {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.sticky-navbar .sticky-menu .navigation > li > a {
    color: #181818;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.sticky-navbar .sticky-call-btn {
    flex: 0 0 auto;
    background: var(--primary-color-1);
    color: white;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 15px;
    border: 2px solid var(--primary-color-1);
}

.sticky-navbar .sticky-call-btn:hover {
    background: transparent;
    color: var(--primary-color-1);
    border-color: var(--primary-color-1);
    transform: translateY(-2px);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! STICKY HEADER ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! MOBILE HEADER STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.mobile-header {
    display: none;
    padding: 15px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 999;
}

.mobile-header .fluid-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo img {
    max-height: 50px;
    width: auto;
    display: block;
}

.mobile-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-phone {
    background: var(--primary-color-1);
    color: white;
    padding: 8px 15px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 4px;
}

.mobile-menu-btn {
    background: var(--primary-color-1);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: white;
    z-index: 1001;
    transition: all 0.3s ease;
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    overflow-y: auto;
    padding: 20px;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-nav li a {
    display: block;
    padding: 12px 15px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! MOBILE HEADER ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SLIDER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.hero-slider {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    margin-top: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/Green-cardamom.png');
    background-size: cover;
    background-position: center;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slider-slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.slider-subtitle {
    font-size: 18px;
    color: var(--primary-color-1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.slider-title {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.slider-description {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
}

.slider-btn {
    display: inline-block;
    background: var(--primary-color-1);
    color: #fff;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #151515;
    transform: translateY(-3px);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(46, 125, 50, 0.8);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.slider-dot.active {
    background: var(--primary-color-1);
    transform: scale(1.2);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SLIDER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.about-section {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--primary-color-1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #151515;
    line-height: 1.2;
}

.text-white {
    color: #fff !important;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-color-1);
    color: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-btn {
    display: inline-block;
    background: var(--primary-color-1);
    color: #fff;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! PREMIUM PRODUCT CARD STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.products-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.product-info {
    padding: 25px;
}

.product-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.product-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    text-align: center;
    flex: 1;
}

.product-btn.view-details {
    background: var(--primary-color-1);
    color: #fff;
}

.product-btn.quote-btn {
    background: transparent;
    color: var(--primary-color-1);
    border: 2px solid var(--primary-color-1);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! PREMIUM PRODUCT CARD STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/


/*AAAAAAAAAAAAAAAAAAAAAAA!!! GALLERY SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.gallery-section {
    padding: 100px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! GALLERY SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! CONTACT SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(rgba(21, 21, 21, 0.95), rgba(21, 21, 21, 0.95)), url('img/Black-pepper.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.company-info {
    background: rgba(0, 0, 0, 0.75);
    padding: 35px;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(46, 125, 50, 0.4);
    transition: all 0.3s ease;
}

.company-info:hover {
    border-color: var(--primary-color-1);
    background: rgba(0, 0, 0, 0.85);
}

.company-info-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color-1);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color-1);
}

.info-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color-1);
}

.info-content p {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: #e0e0e0;
}

.info-content strong {
    color: var(--primary-color-1);
    font-weight: 600;
    min-width: 140px;
    display: inline-block;
}

.info-content a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-content a:hover {
    color: var(--primary-color-1);
}

.export-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.country-tag {
    background: var(--primary-color-1);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
}

.contact-form {
    background: rgba(0, 0, 0, 0.75);
    padding: 35px;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(46, 125, 50, 0.4);
    transition: all 0.3s ease;
}

.contact-form:hover {
    border-color: var(--primary-color-1);
    background: rgba(0, 0, 0, 0.85);
}

.contact-form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color-1);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color-1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-control:focus {
    border-color: var(--primary-color-1);
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

select.form-control option {
    background: #151515;
    color: white;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: var(--primary-color-1);
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #1b5e20;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.submit-btn i {
    margin-right: 8px;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! CONTACT SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.footer-section {
    background: #0a0a0a;
    color: #fff;
    padding: 70px 0 20px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about p {
    color: #aaaaaa;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 55px;
    width: auto;
    display: block;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color-1);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #aaaaaa;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 14px;
    text-decoration: none;
}

.footer-links ul li a:hover {
    color: var(--primary-color-1);
    transform: translateX(5px);
}

.footer-links ul li a i {
    margin-right: 10px;
    color: var(--primary-color-1);
    font-size: 12px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 18px;
}

.contact-info h4 {
    font-size: 15px;
    margin-bottom: 5px;
    color: #ffffff;
    font-weight: 600;
}

.contact-info p {
    color: #aaaaaa;
    word-break: break-word;
    font-size: 13px;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary-color-1);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    color: #888888;
}

.footer-bottom p {
    font-size: 13px;
    line-height: 1.6;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/* ========== ABOUT BANNER SECTION STYLES START ========== */
.about-banner {
    background: linear-gradient(135deg, #1a472a 0%, #2d6a4f 100%);
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: visible;
    min-height: auto;
}

.about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 215, 120, 0.08) 2px, transparent 2px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.banner-title {
    font-family: 'Poppins', 'Segoe UI', 'Montserrat', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #FFD966;
    margin: 0;
    padding: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    display: inline-block;
    max-width: 100%;
    overflow: visible;
}
/* ========== ABOUT BANNER SECTION STYLES END ========== */

/* AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA */
/* ========== COMPLETE RESPONSIVE MEDIA QUERIES FOR MOBILE & TABLET ========== */
/* AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA */

/* TABLET DEVICES (768px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .section-main-title {
        font-size: 36px;
    }
    
    .slider-title {
        font-size: 48px;
    }
    
    .main-menu .navigation > li > a {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .call-now-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .about-img {
        height: 400px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE DEVICES (max-width: 768px) - FULLY RESPONSIVE */
@media (max-width: 768px) {
    
    /* ===== HIDE DESKTOP HEADER COMPLETELY ON MOBILE ===== */
    .main-header {
        display: none !important;
    }
    
    /* ===== SHOW MOBILE HEADER ===== */
    .mobile-header {
        display: block !important;
        position: sticky;
        top: 0;
        z-index: 1000;
        background: white;
        width: 100%;
    }
    
    /* ===== STICKY NAVBAR (DESKTOP) - HIDE ON MOBILE ===== */
    .sticky-navbar {
        display: none !important;
    }
    
    /* ===== SECTION PADDINGS REDUCED FOR MOBILE ===== */
    .about-section,
    .products-section,
    .gallery-section,
    .contact-info-section {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-main-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    /* ===== HERO SLIDER MOBILE STYLES ===== */
    .hero-slider {
        height: 500px;
    }
    
    .slider-title {
        font-size: 32px;
    }
    
    .slider-subtitle {
        font-size: 14px;
    }
    
    .slider-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .slider-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .slider-prev { left: 10px; }
    .slider-next { right: 10px; }
    
    /* ===== ABOUT SECTION MOBILE ===== */
    .about-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-image {
        min-width: auto;
        width: 100%;
    }
    
    .about-img {
        height: 350px;
    }
    
    .about-experience {
        bottom: -20px;
        right: -10px;
        padding: 15px 20px;
    }
    
    .experience-years {
        font-size: 24px;
        font-weight: bold;
    }
    
    .experience-text {
        font-size: 12px;
    }
    
    .about-content {
        width: 100%;
    }
    
    .feature-item {
        margin-bottom: 20px;
    }
    
    .about-btn {
        padding: 12px 25px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
    
    /* ===== PRODUCTS GRID MOBILE - 1 COLUMN ===== */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .product-img {
        height: 220px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .product-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .product-btn {
        text-align: center;
        padding: 10px;
    }
    
    /* ===== GALLERY GRID MOBILE - 1 COLUMN ===== */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    /* ===== CONTACT SECTION MOBILE - 1 COLUMN ===== */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .company-info,
    .contact-form {
        padding: 25px;
    }
    
    .company-info-title,
    .contact-form-title {
        font-size: 22px;
    }
    
    .info-item h4 {
        font-size: 18px;
    }
    
    .info-content p {
        font-size: 14px;
    }
    
    .info-content strong {
        min-width: 120px;
    }
    
    .submit-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* ===== FOOTER MOBILE STYLES ===== */
    .footer-section {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-about {
        text-align: center;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-logo img {
        margin: 0 auto;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul li a {
        justify-content: center;
    }
    
    .footer-contact .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
    
    /* ===== ABOUT BANNER MOBILE ===== */
    .about-banner {
        padding: 80px 20px;
    }
    
    .banner-title {
        font-size: 36px;
        white-space: normal;
        word-break: keep-all;
        text-align: center;
    }
    
    /* ===== EXTRA SMALL DEVICES (max-width: 480px) ===== */
    @media (max-width: 480px) {
        .hero-slider {
            height: 450px;
        }
        
        .slider-title {
            font-size: 26px;
        }
        
        .slider-description {
            font-size: 13px;
        }
        
        .section-main-title {
            font-size: 24px;
        }
        
        .about-img {
            height: 280px;
        }
        
        .company-info,
        .contact-form {
            padding: 20px;
        }
        
        .info-content strong {
            display: block;
            margin-bottom: 5px;
            min-width: auto;
        }
        
        .export-countries {
            justify-content: center;
        }
        
        .banner-title {
            font-size: 28px;
        }
        
        .mobile-phone {
            padding: 6px 12px;
            font-size: 13px;
        }
        
        .mobile-menu-btn {
            padding: 6px 12px;
            font-size: 18px;
        }
        
        .mobile-logo img {
            max-height: 45px;
        }
    }
    
    /* ===== VERY SMALL DEVICES (max-width: 360px) ===== */
    @media (max-width: 360px) {
        .slider-title {
            font-size: 22px;
        }
        
        .section-main-title {
            font-size: 22px;
        }
        
        .banner-title {
            font-size: 24px;
        }
    }
}

/* ===== TABLET PORTRAIT MODE FIXES (768px to 1024px) ===== */
@media (min-width: 768px) and (max-width: 1024px) {
    .mobile-header {
        display: none !important;
    }
    
    .main-header {
        display: block !important;
    }
}

/* ===== ENSURE PROPER STICKY BEHAVIOR ON ALL DEVICES ===== */
@media (max-width: 768px) {
    .mobile-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 1000 !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
    }
}

/* ===== FIX FOR TOUCH DEVICES - BETTER BUTTONS ===== */
@media (max-width: 768px) {
    .product-btn,
    .slider-btn,
    .about-btn,
    .submit-btn,
    .mobile-phone,
    .mobile-menu-btn {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .product-btn:active,
    .slider-btn:active,
    .about-btn:active,
    .submit-btn:active {
        transform: scale(0.98);
    }
    
    /* Better spacing for touch targets */
    .navigation li a,
    .mobile-menu-nav li a,
    .footer-links ul li a {
        padding: 10px 0;
        display: inline-block;
    }
}
/* AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA */
/* ========== END OF RESPONSIVE MEDIA QUERIES ========== */
/* AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA */



/* ========== PRODUCT SPECIFICATIONS SECTION STARTS ========== */
.product-specs-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.specs-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.specs-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.specs-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.specs-img:hover {
    transform: scale(1.02);
}

.specs-content {
    flex: 1.5;
    min-width: 300px;
}

.specs-product-title {
    font-size: 28px;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.specs-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    font-family: 'Open Sans', sans-serif;
}

/* Table Styles */
.specs-table-wrapper {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #eee;
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 12px 20px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

.specs-table td:first-child {
    font-weight: 600;
    background: #f5f5f5;
    width: 40%;
}

/* Bulk Order Section */
.bulk-order-info {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    padding: 20px 25px;
    border-radius: 15px;
    color: white;
}

.bulk-order-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.bulk-order-info h4 i {
    margin-right: 8px;
}

.bulk-order-info p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0.95;
}

.bulk-order-btn {
    display: inline-block;
    background: white;
    color: #1b5e20;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.bulk-order-btn:hover {
    background: #ffc107;
    color: #1b5e20;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .specs-container {
        flex-direction: column;
    }
    
    .specs-image {
        text-align: center;
    }
    
    .specs-img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .product-specs-section {
        padding: 50px 0;
    }
    
    .specs-table td {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .specs-product-title {
        font-size: 24px;
    }
}
/* ========== PRODUCT SPECIFICATIONS SECTION ENDS ========== */


/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1B5E20;
    margin: 0;
    padding-right: 30px;
    font-family: 'Poppins', sans-serif;
}

.faq-toggle {
    font-size: 20px;
    color: #2e7d32;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 25px 25px 25px;
    border-top: 1px solid #eee;
    background: #fff;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 15px;
    }
    .faq-question {
        padding: 15px 18px;
    }
    .faq-answer {
        padding: 0 18px 18px 18px;
    }
}